*, *::before, *::after { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body, button, input, textarea, select {
    font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  }
  body {
    -webkit-font-smoothing: antialiased;
    background: var(--omni-darker);
    color: var(--omni-white);
    overflow-x: hidden;
  }
  /* Forzo Outfit su tutti gli elementi tipografici principali per evitare fallback */
  h1, h2, h3, h4, h5, h6, p, span, div, a, label, li {
    font-family: inherit;
  }

  :root {
    --omni-lime:    #C8E066;
    --omni-lime-2:  #D6EB80;
    --omni-lime-soft: rgba(200, 224, 102, 0.12);
    --omni-dark:    #1F1F1F;
    --omni-darker:  #141414;
    --omni-deepest: #0A0A0A;
    --omni-olive:   #6B6B6B;
    --omni-olive-2: #888888;
    --omni-orange:  #BB6826;
    --omni-orange-2:#E08440;
    --omni-pink:    #C88282;
    --omni-offwhite:#F0F0F0;
    --omni-white:   #FFFFFF;
    --placeholder-red: #E04848;
  }

  /* ============================================ */
  /* HEADER STICKY                                */
  /* ============================================ */
  /* Default: header CHIARO (per hero scuro e tutte le sezioni dark) */
  .header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: padding 0.3s ease, background 0.4s ease, color 0.4s ease;
    color: var(--omni-dark);
  }
  .header.scrolled { padding: 12px 5%; }
  
  /* Header invertito (scuro su sfondo chiaro: serve contrasto) */
  .header.on-light {
    background: rgba(20, 20, 20, 0.92);
    color: var(--omni-white);
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
  }
  .brand-logo {
    height: 32px;
    width: auto;
    flex-shrink: 0;
    object-fit: contain;
  }
  /* Logo dark visibile di default (sfondo scuro), light nascosto */
  .brand-logo.brand-logo-dark { display: block; }
  .brand-logo.brand-logo-light { display: none; }
  /* Quando l'header è "on-light" (sopra sezioni chiare): inverto la visibilità */
  .header.on-light .brand-logo.brand-logo-dark { display: none; }
  .header.on-light .brand-logo.brand-logo-light { display: block; }
  
  /* Nav desktop */
  .header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  .header-nav a:not(.header-cta) {
    color: inherit;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    opacity: 0.75;
    transition: opacity 0.2s ease, color 0.2s ease;
  }
  .header-nav a:not(.header-cta):hover {
    opacity: 1;
    color: var(--omni-orange);
  }
  .header.on-light .header-nav a:not(.header-cta):hover {
    color: var(--omni-lime);
  }
  
  .header-cta {
    display: inline-flex;
    align-items: center;
    background: var(--omni-lime);
    color: var(--omni-dark);
    text-decoration: none;
    padding: 11px 20px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: background .2s, transform .15s;
  }
  .header-cta:hover { background: var(--omni-lime-2); }
  .header-cta:active { transform: scale(0.97); }

  /* ============================================ */
  /* VOCI NAV "SOON" · per pagine non ancora live */
  /* ============================================ */
  .header-nav a[data-soon="true"],
  .mobile-drawer a[data-soon="true"] {
    cursor: default;
    opacity: 0.45;
    pointer-events: none;
    position: relative;
  }
  .header-nav a[data-soon="true"]::after {
    content: 'presto';
    position: absolute;
    top: -6px;
    right: -2px;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--omni-orange-2);
    opacity: 0.85;
    line-height: 1;
  }
  .drawer-soon {
    display: inline-block;
    margin-left: 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--omni-orange-2);
    opacity: 0.7;
    vertical-align: middle;
  }

  /* ============================================ */
  /* DROPDOWN MENU · desktop hover, mobile accord  */
  /* Versione semplificata: solo testo, niente     */
  /* icone, niente sottotitoli, niente tag presto. */
  /* ============================================ */
  .nav-item-has-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
  }
  /* Trigger: la voce principale resta cliccabile, va alla pagina indice.
     Il caret a destra è solo decorativo. */
  .nav-item-has-dropdown > a.nav-trigger {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding-right: 16px;
    position: relative;
  }
  .nav-item-has-dropdown > a.nav-trigger::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-75%) rotate(45deg);
    opacity: 0.55;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .nav-item-has-dropdown:hover > a.nav-trigger::after,
  .nav-item-has-dropdown:focus-within > a.nav-trigger::after {
    transform: translateY(-25%) rotate(225deg);
    opacity: 1;
  }

  /* Pannello tendina */
  .nav-dropdown {
    position: absolute;
    top: 100%;
    left: -8px;
    min-width: 220px;
    background: var(--omni-deepest);
    padding: 8px 0;
    margin-top: 14px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0s linear 0.25s;
    z-index: 60;
  }
  /* Ponte invisibile per mantenere hover quando si va dal trigger al menu */
  .nav-dropdown::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 14px;
    background: transparent;
  }
  .nav-item-has-dropdown:hover > .nav-dropdown,
  .nav-item-has-dropdown:focus-within > .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
  }

  /* Voci del menu — solo testo */
  .nav-dropdown a {
    display: block;
    padding: 11px 22px;
    color: var(--omni-white) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 0;
    text-decoration: none;
    line-height: 1.3;
    transition: background 0.15s ease, color 0.15s ease, padding-left 0.18s ease;
  }
  .nav-dropdown a:hover {
    background: rgba(200, 224, 102, 0.08);
    color: var(--omni-lime) !important;
    padding-left: 26px;
  }
  /* Voci "presto" smorzate · niente tag, solo colore tenue */
  .nav-dropdown a[data-soon="true"] {
    pointer-events: none;
    color: var(--omni-olive-2) !important;
    opacity: 0.55;
  }

  /* Variante header on-light: dropdown comunque dark dentro
     (più leggibile, non si fonde con sfondo chiaro sotto) */
  .header.on-light .nav-item-has-dropdown > a.nav-trigger::after {
    border-color: var(--omni-dark);
  }


  /* ============================================ */
  /* MOBILE DRAWER ACCORDION                      */
  /* Sostituisce il dropdown su mobile            */
  /* ============================================ */
  .mobile-drawer .drawer-group {
    display: flex;
    flex-direction: column;
    border-bottom: 0;
    position: relative;
  }
  .mobile-drawer .drawer-group::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
  }
  .mobile-drawer .drawer-group:last-of-type::after {
    display: none;
  }
  .mobile-drawer .drawer-group-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 12px;
    color: var(--omni-white);
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    background: transparent;
    border: 0;
    width: 100%;
    text-align: left;
    font-family: inherit;
  }
  .mobile-drawer .drawer-group-trigger .chev {
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--omni-olive-2);
    border-bottom: 2px solid var(--omni-olive-2);
    transform: rotate(45deg);
    transition: transform 0.25s ease;
  }
  .mobile-drawer .drawer-group.is-open .drawer-group-trigger .chev {
    transform: rotate(-135deg);
  }
  .mobile-drawer .drawer-group-list {
    list-style: none;
    padding: 0 0 8px;
    margin: 0;
    display: none;
  }
  .mobile-drawer .drawer-group.is-open .drawer-group-list {
    display: block;
  }
  .mobile-drawer .drawer-group-list a {
    display: block;
    padding: 10px 12px 10px 24px;
    color: var(--omni-olive-2);
    font-size: 14px;
    font-weight: 500;
  }
  .mobile-drawer .drawer-group-list a.is-live {
    color: var(--omni-lime);
  }
  .mobile-drawer .drawer-group-list a[data-soon="true"] {
    pointer-events: none;
  }
  .mobile-drawer .drawer-group-list a[data-soon="true"] .drawer-soon {
    margin-left: 6px;
  }

  /* Hamburger button (mobile) */
  .hamburger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
    color: inherit;
    flex-shrink: 0;
  }
  .hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    position: relative;
    transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
  }
  .hamburger span::before,
  .hamburger span::after {
    content: '';
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: currentColor;
    transition: transform 0.3s ease, top 0.3s ease;
  }
  .hamburger span::before { top: -7px; }
  .hamburger span::after  { top: 7px; }
  .hamburger.open span { background: transparent; }
  .hamburger.open span::before { top: 0; transform: rotate(45deg); }
  .hamburger.open span::after  { top: 0; transform: rotate(-45deg); }

  /* Mobile drawer */
  .mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(86vw, 380px);
    height: 100vh;
    background: var(--omni-deepest);
    z-index: 99;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    padding: 88px 32px 40px;
    overflow-y: auto;
  }
  .mobile-drawer.open { transform: translateX(0); }
  .mobile-drawer a {
    color: var(--omni-white);
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
    padding: 16px 0;
    letter-spacing: -0.01em;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color 0.2s ease, padding-left 0.2s ease;
  }
  .mobile-drawer a:hover {
    color: var(--omni-lime);
    padding-left: 6px;
  }
  .mobile-drawer .mobile-cta {
    margin-top: 32px;
    background: var(--omni-lime);
    color: var(--omni-dark);
    text-align: center;
    padding: 18px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    border: 0;
  }
  .mobile-drawer .mobile-cta:hover {
    color: var(--omni-dark);
    padding-left: 18px;
  }
  
  /* Backdrop dietro al drawer */
  .drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 98;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .drawer-backdrop.open {
    opacity: 1;
    pointer-events: auto;
  }

  /* Scroll-to-top button (mobile fallback) */
  .scroll-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--omni-lime);
    color: var(--omni-dark);
    border: 0;
    cursor: pointer;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease;
  }
  .scroll-top.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }
  .scroll-top:hover { background: var(--omni-lime-2); }
  .scroll-top:active { transform: scale(0.92); }

  /* ============================================ */
  /* HERO                                         */
  /* ============================================ */
  .hero {
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 5%;
    position: relative;
    overflow: hidden;
    background: var(--omni-darker);
  }
  .hero-bg-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(110vh, 95vw);
    height: auto;
    opacity: 0.045;
    pointer-events: none;
    user-select: none;
    z-index: 0;
  }
  .hero-inner {
    max-width: 1280px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  .hero h1 {
    font-weight: 900;
    font-size: clamp(48px, 7.5vw, 112px);
    line-height: 1;
    letter-spacing: -0.025em;
    margin: 0 0 56px;
    color: var(--omni-white);
  }

  /* Rotate words */
  .rotate-words {
    display: inline-block;
    position: relative;
    color: var(--omni-orange-2);
    vertical-align: bottom;
    transition: width 0.5s cubic-bezier(0.65, 0, 0.35, 1);
    will-change: width;
    overflow: hidden;
    height: 1em;
    line-height: 1;
    /* Fallback senza JS: il container ha la dimensione minima della prima parola */
    min-width: 1em;
  }
  .rw-word {
    position: absolute;
    left: 0;
    top: 0;
    white-space: nowrap;
    transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }
  /* Fallback: la prima parola è visibile da subito (no opacity 0). Le altre sono nascoste. */
  .rw-word { opacity: 0; transform: translateY(85%); }
  .rw-word.active { opacity: 1; transform: translateY(0); }
  .rw-word.leaving { opacity: 0; transform: translateY(-85%); }

  /* ============================================ */
  /* GENERIC                                      */
  /* ============================================ */
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none;
    background: var(--omni-lime);
    color: var(--omni-dark);
    transition: background .2s, transform .15s;
    cursor: pointer;
    border: 0;
    font-family: inherit;
  }
  .btn-primary:hover { background: var(--omni-lime-2); }
  .btn-primary:active { transform: scale(0.97); }
  .btn-arrow { display: inline-block; transition: transform .2s; }
  .btn-primary:hover .btn-arrow { transform: translateX(3px); }

  /* Variante per usare il primary su sfondo lime: testo bianco, sfondo dark */
  .btn-primary-dark {
    background: var(--omni-dark);
    color: var(--omni-white);
  }
  .btn-primary-dark:hover {
    background: #2a2a2a;
  }

  /* ============================================ */
  /* CTA STRIP — riga di chiamata all'azione      */
  /* ============================================ */
  .cta-strip {
    padding: 64px 5%;
  }
  .cta-strip-lime {
    background: var(--omni-lime);
    color: var(--omni-dark);
  }
  .cta-strip-dark {
    background: var(--omni-dark);
    color: var(--omni-white);
  }
  .cta-strip-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
  }
  .cta-strip-text {
    flex: 1;
    min-width: 280px;
  }
  .cta-strip h3 {
    font-weight: 800;
    font-size: clamp(28px, 3.5vw, 44px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 12px;
  }
  .cta-strip p {
    margin: 0;
    font-size: 17px;
    line-height: 1.5;
    max-width: 880px;
  }
  /* Su mobile, br invisibili nei sub-testi */
  @media (max-width: 700px) {
    .cta-strip p br { display: none; }
  }
  .cta-strip-lime p { color: rgba(31, 31, 31, 0.75); }
  .cta-strip-dark p { color: var(--omni-olive-2); }

  /* CTA wrap dentro la sezione ROI */
  .roi-cta-wrap {
    margin-top: 48px;
  }

  .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 17px 32px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    background: rgba(255,255,255,0.06);
    color: var(--omni-white);
    transition: background .2s, transform .15s;
    cursor: pointer;
  }
  .btn-ghost:hover { background: rgba(255,255,255,0.12); }
  .btn-ghost:active { transform: scale(0.97); }

  /* Section base */
  section {
    position: relative;
    padding: 140px 5%;
  }
  .section-light { background: var(--omni-offwhite); color: var(--omni-dark); }
  .section-dark { background: var(--omni-darker); color: var(--omni-white); }
  .section-darker { background: var(--omni-deepest); color: var(--omni-white); }
  .section-inner { max-width: 1280px; margin: 0 auto; }

  .eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 24px;
  }
  .section-light .eyebrow { color: var(--omni-orange); }
  .section-dark .eyebrow, .section-darker .eyebrow { color: var(--omni-lime); }

  .section-title {
    font-weight: 900;
    font-size: clamp(40px, 5vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin: 0 0 32px;
  }
  .section-title .accent-lime { color: var(--omni-lime); }
  .section-title .accent-orange { color: var(--omni-orange-2); }
  .section-light .section-title .accent-orange { color: var(--omni-orange); }
  .section-light .section-title .accent-lime { color: var(--omni-orange); }

  .section-sub {
    font-size: clamp(17px, 1.4vw, 21px);
    line-height: 1.5;
    max-width: 900px;
    margin: 0 0 64px;
  }
  /* I br nei sub forzano l'a capo nei punti giusti su desktop.
     Su mobile li nascondo: il testo va a capo naturalmente. */
  @media (max-width: 700px) {
    .section-sub br { display: none; }
  }
  .section-light .section-sub { color: var(--omni-olive); }
  .section-dark .section-sub, .section-darker .section-sub { color: var(--omni-olive-2); }

  /* ============================================ */
  /* APPLE-STYLE REVEAL ON SCROLL                 */
  /* ============================================ */
  .reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.985);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
  }
  .reveal.in {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  .reveal.delay-1 { transition-delay: 0.08s; }
  .reveal.delay-2 { transition-delay: 0.16s; }
  .reveal.delay-3 { transition-delay: 0.24s; }
  .reveal.delay-4 { transition-delay: 0.32s; }
  .reveal.delay-5 { transition-delay: 0.40s; }
  .reveal.delay-6 { transition-delay: 0.48s; }

  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .rw-word, .rotate-words { transition: none; }
  }

  /* ============================================ */
  /* TEAM · GRIGLIA RESPONSIVA                    */
  /* Sezione scura, card BIANCHE per max contrasto */
  /* ============================================ */
  .team-section {
    background: var(--omni-deepest);
    position: relative;
  }
  .team-header {
    margin-bottom: 64px;
  }

  /* Griglia auto-fit: 4 colonne desktop, 3 a tablet large, 2 tablet small, 1 mobile */
  .team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .team-card {
    background: var(--omni-white);
    color: var(--omni-dark);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform .35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .35s ease, outline-color .25s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
    min-width: 0;
    outline: 3px solid transparent;
    outline-offset: 0;
  }
  .team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(200, 224, 102, 0.35);
    outline-color: var(--omni-lime);
    z-index: 2;
  }

  /* Card linkata: cliccabile, mostra hint "Scopri" al hover */
  .team-card.team-card-link {
    cursor: pointer;
    text-decoration: none;
  }
  .team-card-link-hint {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(31, 31, 31, 0.08);
    font-size: 13px;
    font-weight: 700;
    color: var(--omni-orange);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity .3s ease, transform .3s cubic-bezier(0.16, 1, 0.3, 1), gap .25s ease;
  }
  .team-card.team-card-link:hover .team-card-link-hint {
    opacity: 1;
    transform: translateY(0);
    gap: 12px;
  }
  /* Su mobile, il hint è sempre visibile (no hover su touch) */
  @media (hover: none) {
    .team-card-link-hint {
      opacity: 1;
      transform: none;
    }
  }

  /* Ritratto: lime soft con iniziale scura */
  .team-portrait {
    position: relative;
    aspect-ratio: 4/5;
    background: var(--omni-lime);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .team-portrait::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(31,31,31,0.08), transparent 60%);
  }
  .portrait-initial {
    font-weight: 900;
    font-size: clamp(64px, 7vw, 96px);
    color: var(--omni-dark);
    line-height: 1;
    letter-spacing: -0.04em;
    z-index: 1;
    transition: transform .4s ease;
  }
  .team-card:hover .portrait-initial {
    transform: scale(1.08);
  }
  .portrait-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .team-card:hover .portrait-img {
    transform: scale(1.05);
  }
  .team-portrait::after {
    content: attr(data-photo-desc);
    position: absolute;
    inset: 0;
    background: rgba(31, 31, 31, 0.96);
    color: var(--omni-lime);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 11px;
    line-height: 1.5;
    letter-spacing: 0.04em;
    opacity: 0;
    transition: opacity .3s ease;
    z-index: 2;
    font-style: italic;
  }
  /* L'overlay descrizione appare solo sulle card con placeholder, NON su quelle con foto reale */
  .team-card:hover .team-portrait:not(.has-photo)::after {
    opacity: 1;
  }
  /* Per le card con foto reale: hover diverso, la foto si mostra meglio (zoom + saturazione) */
  .team-portrait.has-photo {
    transition: filter .4s ease;
  }
  .team-card:hover .team-portrait.has-photo {
    filter: brightness(1.05) saturate(1.1);
  }

  /* Body card: testo scuro su sfondo bianco */
  .team-card-body {
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .team-name {
    font-weight: 800;
    font-size: 26px;
    letter-spacing: -0.02em;
    color: var(--omni-dark);
    margin-bottom: 12px;
  }
  /* Ruolo: pillola ARANCIONE (colore brand) con testo bianco. Stacca dal nero del titolo
     e dal lime del ritratto, ed è un punto colore caldo che fa risaltare il professionale */
  .team-role {
    display: inline-block;
    align-self: flex-start;
    font-size: 12px;
    font-weight: 700;
    color: var(--omni-white);
    background: var(--omni-orange);
    padding: 6px 14px;
    border-radius: 999px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
  }
  /* Skill: lista verticale, una per riga, font più leggibile */
  .team-skills {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
    list-style: none;
    padding: 0;
  }
  .skill-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--omni-dark);
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    letter-spacing: 0;
    line-height: 1.35;
  }
  /* Pallino lime davanti ad ogni skill */
  .skill-chip::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--omni-lime);
    flex-shrink: 0;
  }
  /* Block prezzo: spinto al fondo della card */
  .team-price-block {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(31, 31, 31, 0.08);
  }
  .team-price {
    font-size: 11px;
    color: var(--omni-olive);
    margin-bottom: 4px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
  }
  .team-price-value {
    font-weight: 700;
    font-size: 18px;
    color: var(--placeholder-red);
    letter-spacing: -0.01em;
  }
  .team-price-note {
    font-size: 10px;
    color: var(--placeholder-red);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-top: 4px;
    font-weight: 600;
  }

  /* ===== Card extra nascoste finché non clicchi su "Mostra tutti" ===== */
  .team-card-extra {
    display: none;
  }
  .team-card-extra.is-revealed {
    display: flex;
  }

  /* ===== Card "Mostra tutti" — agisce da CTA ===== */
  /* Stile open: niente rettangolo pieno, contorno tratteggiato lime */
  .team-card-cta {
    background: transparent;
    border: 2px dashed rgba(200, 224, 102, 0.4);
    cursor: pointer;
    font-family: inherit;
    text-align: center;
    color: var(--omni-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 40px 28px;
    min-height: 100%;
    transition: background .3s ease, border-color .3s ease, transform .3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: none;  /* Override sull'hover delle card normali */
  }
  .team-card-cta:hover {
    background: rgba(200, 224, 102, 0.08);
    border-color: var(--omni-lime);
    transform: translateY(-4px);
    box-shadow: none;
  }
  .team-card-cta:active { transform: scale(0.98); }
  /* Versione link (anchor): tolgo underline e cursor è già pointer */
  .team-card-cta-link {
    text-decoration: none;
  }
  
  /* ============================================ */
  /* SHOW/HIDE LOGIC TEAM CTA                     */
  /* Default: + visibile, "Mostra meno" nascosto */
  /* Espanso: + nascosto, "Mostra meno" visibile */
  /* Uso doppia classe per battere la specificità di .team-card */
  /* ============================================ */
  .team-card.team-card-cta-collapse { display: none; }
  .team-section.is-expanded .team-card.team-card-cta { display: none; }
  .team-section.is-expanded .team-card.team-card-cta-collapse {
    display: flex;
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 18px;
    padding: 28px;
    min-height: auto;
    margin-top: 8px;
  }
  .team-card-cta-collapse .cta-icon {
    width: 52px;
    height: 52px;
  }
  .team-card-cta-collapse .cta-icon svg { width: 24px; height: 24px; }
  .team-card-cta-collapse .cta-label { text-align: left; }
  .team-card-cta-collapse .cta-title {
    font-size: 18px;
    margin-bottom: 4px;
  }

  /* Cerchio + */
  .cta-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--omni-lime);
    color: var(--omni-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
  }
  .team-card-cta:hover .cta-icon {
    transform: rotate(90deg) scale(1.05);
  }
  .cta-label {
    text-align: center;
  }
  .cta-title {
    display: block;
    font-weight: 800;
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: var(--omni-white);
    margin-bottom: 8px;
  }
  .cta-hint {
    display: block;
    font-size: 12px;
    color: var(--omni-olive-2);
    letter-spacing: 0.04em;
  }

  /* Responsive */
  @media (max-width: 1240px) {
    .team-grid { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 900px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .team-name { font-size: 22px; }
    .cta-title { font-size: 20px; }
  }
  @media (max-width: 560px) {
    .team-grid { grid-template-columns: 1fr; gap: 16px; }
    .team-card-cta {
      flex-direction: row;
      align-items: center;
      justify-content: flex-start;
      text-align: left;
      padding: 24px;
      gap: 18px;
      min-height: auto;
    }
    .cta-icon { width: 52px; height: 52px; }
    .cta-icon svg { width: 24px; height: 24px; }
    .cta-label { text-align: left; }
    .cta-title { font-size: 18px; margin-bottom: 4px; }
    .cta-title br { display: none; }
    .team-section.is-expanded .team-card-cta-collapse {
      grid-column: auto;
    }
  }

  /* ============================================ */
  /* COME FUNZIONA — pin/sticky                   */
  /* ============================================ */
  .how-section {
    background: var(--omni-offwhite);
    color: var(--omni-dark);
    padding: 0;
  }
  .how-pin-wrap {
    position: relative;
    height: 300vh; /* 3 step × 100vh ciascuno */
  }
  .how-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 80px 5%;
    max-width: 1320px;
    margin: 0 auto;
  }
  .how-text {
    position: relative;
  }
  .how-text-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--omni-orange);
    margin-bottom: 24px;
  }
  .how-text-title {
    font-weight: 900;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin: 0 0 64px;
    color: var(--omni-dark);
  }

  .how-step-stack {
    position: relative;
    min-height: 280px;
  }
  .how-step {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
  }
  .how-step.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .how-step-num {
    font-weight: 900;
    font-size: 18px;
    color: var(--omni-orange);
    letter-spacing: 0.18em;
    margin-bottom: 16px;
  }
  .how-step-title {
    font-weight: 800;
    font-size: clamp(28px, 3.2vw, 42px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--omni-dark);
    margin: 0 0 16px;
  }
  .how-step-desc {
    font-size: 17px;
    line-height: 1.5;
    color: var(--omni-olive);
    max-width: 480px;
  }

  /* Visual lato destro: sequenza connessa con frecce */
  .how-visual {
    position: relative;
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
    background: var(--omni-white);
  }
  .how-node {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 28px;
    background: var(--omni-offwhite);
    transition: background .5s ease, transform .5s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(0);
  }
  .how-node.is-active {
    background: var(--omni-lime);
    transform: translateX(8px);
  }
  .how-node.is-done {
    background: var(--omni-dark);
    color: var(--omni-lime);
  }
  .how-node-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--omni-dark);
    color: var(--omni-lime);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    transition: background .5s ease;
  }
  .how-node.is-active .how-node-num {
    background: var(--omni-dark);
    color: var(--omni-lime);
  }
  .how-node.is-done .how-node-num {
    background: var(--omni-lime);
    color: var(--omni-dark);
  }
  .how-node-text {
    flex: 1;
  }
  .how-node-title {
    font-weight: 700;
    font-size: 20px;
    color: var(--omni-dark);
    letter-spacing: -0.01em;
    line-height: 1.2;
  }
  .how-node.is-done .how-node-title {
    color: var(--omni-lime);
  }
  .how-node-hint {
    font-size: 14px;
    color: var(--omni-olive);
    margin-top: 4px;
  }
  .how-node.is-active .how-node-hint { color: rgba(31, 31, 31, 0.7); }
  .how-node.is-done .how-node-hint { color: rgba(200, 224, 102, 0.6); }

  /* Frecce connettrici (animate, lime quando lo step è attivo) */
  .how-connector {
    align-self: center;
    width: 2px;
    height: 32px;
    background: var(--omni-pink);
    opacity: 0.3;
    position: relative;
    transition: background .5s ease, opacity .5s ease;
  }
  .how-connector::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0; height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid var(--omni-pink);
    opacity: 0.3;
    transition: border-top-color .5s ease, opacity .5s ease;
  }
  .how-connector.is-active {
    background: var(--omni-lime);
    opacity: 1;
  }
  .how-connector.is-active::after {
    border-top-color: var(--omni-lime);
    opacity: 1;
  }

  /* Progress bar verticale (solo desktop) */
  .how-progress {
    position: absolute;
    left: -40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(31, 31, 31, 0.1);
  }
  .how-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--omni-orange);
    height: 0%;
    transition: height 0.3s ease;
  }

  /* ============================================ */
  /* SETTORI                                      */
  /* ============================================ */
  /* ============================================ */
  /* SETTORI · sezione scura, card BIANCHE        */
  /* ============================================ */
  .section-darker { background: var(--omni-deepest); }
  
  .sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .sector-card {
    background: var(--omni-white);
    padding: 36px 32px;
    text-decoration: none;
    color: var(--omni-dark);
    transition: transform .35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .35s ease, outline-color .25s ease;
    position: relative;
    overflow: hidden;
    cursor: default;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    outline: 3px solid transparent;
  }
  .sector-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(200, 224, 102, 0.35);
    outline-color: var(--omni-lime);
    z-index: 2;
  }
  .sector-num {
    font-size: 13px;
    color: var(--omni-orange);
    letter-spacing: 0.2em;
    font-weight: 800;
  }
  .sector-name {
    font-weight: 800;
    font-size: 28px;
    letter-spacing: -0.02em;
    color: var(--omni-dark);
    margin: 28px 0 14px;
    line-height: 1.15;
  }
  .sector-desc {
    font-size: 15px;
    color: var(--omni-olive);
    line-height: 1.55;
  }
  .sector-team {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(31, 31, 31, 0.08);
    font-size: 13px;
    color: var(--omni-orange);
    letter-spacing: 0.04em;
    font-weight: 700;
  }

  /* Show/hide: 3 settori extra nascosti finché non si clicca */
  .sector-card-extra { display: none; }
  #settori.is-expanded .sector-card-extra {
    display: flex;
  }

  /* Bottone "Scopri tutti i settori" — riga full-width sotto la griglia */
  .sector-show-more {
    grid-column: 1 / -1;
    margin-top: 12px;
    background: transparent;
    border: 2px dashed rgba(200, 224, 102, 0.4);
    color: var(--omni-white);
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    padding: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transition: background .3s ease, border-color .3s ease, transform .2s ease;
  }
  .sector-show-more:hover {
    background: rgba(200, 224, 102, 0.08);
    border-color: var(--omni-lime);
    transform: translateY(-2px);
  }
  .sector-show-more:active { transform: scale(0.99); }
  .sector-show-more-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--omni-lime);
    color: var(--omni-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .sector-show-more:hover .sector-show-more-icon {
    transform: rotate(90deg);
  }
  /* Stato espanso: scompare il "Scopri tutti", appare il "Mostra meno" */
  .sector-show-less { display: none; }
  #settori.is-expanded #sector-show-more { display: none; }
  #settori.is-expanded .sector-show-less {
    display: flex;
  }
  #settori.is-expanded .sector-show-less:hover .sector-show-more-icon {
    transform: none;
  }

  /* ============================================ */
  /* NUMERI                                       */
  /* ============================================ */
  .numbers-section {
    background: var(--omni-deepest);
    padding: 120px 5%;
    overflow: hidden;
  }
  .numbers-grid {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    align-items: stretch;
  }
  .number-cell {
    padding: 48px 40px;
    border-right: 1px solid rgba(255,255,255,0.05);
  }
  .number-cell:last-child { border-right: 0; }
  .number-value {
    font-weight: 900;
    font-size: clamp(80px, 9vw, 140px);
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--omni-lime);
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    gap: 4px;
  }
  .number-value .suffix {
    font-size: 0.4em;
    color: var(--omni-olive-2);
    font-weight: 700;
  }
  .number-label {
    font-size: 16px;
    color: var(--omni-white);
    line-height: 1.4;
    max-width: 280px;
  }

  /* ============================================ */
  /* STORIA IN EVIDENZA (placeholder)             */
  /* ============================================ */
  .story-section {
    background: var(--omni-offwhite);
    color: var(--omni-dark);
  }
  .story-card {
    background: var(--omni-white);
    padding: 64px 56px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .story-photo-placeholder {
    aspect-ratio: 4/5;
    background: var(--omni-offwhite);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px;
  }
  .story-photo-placeholder::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    bottom: 14px;
    border: 2px dashed rgba(31,31,31,0.15);
  }
  .story-photo-desc {
    position: relative;
    color: var(--placeholder-red);
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0.04em;
    font-style: italic;
    max-width: 240px;
  }
  .story-num-tag {
    position: absolute;
    top: 32px;
    left: 32px;
    background: var(--omni-lime);
    color: var(--omni-dark);
    padding: 16px 24px;
    font-weight: 900;
    font-size: 28px;
    letter-spacing: -0.02em;
    z-index: 2;
  }
  .story-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--placeholder-red);
    margin-bottom: 24px;
  }
  .story-headline {
    font-weight: 800;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--omni-dark);
    margin: 0 0 24px;
  }
  .story-body {
    font-size: 16px;
    line-height: 1.6;
    color: var(--omni-olive);
    margin-bottom: 32px;
  }
  .story-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    font-size: 13px;
    color: var(--omni-olive);
    letter-spacing: 0.04em;
  }
  .story-meta-label {
    color: var(--placeholder-red);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.16em;
    margin-bottom: 4px;
  }
  .story-meta-value {
    font-weight: 600;
    color: var(--omni-dark);
  }

  .placeholder-banner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px;
    background: rgba(224, 72, 72, 0.1);
    color: var(--placeholder-red);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 32px;
  }
  .placeholder-banner::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--placeholder-red);
  }

  /* ============================================ */
  /* ROI TEASER                                   */
  /* ============================================ */
  .roi-section {
    background: var(--omni-darker);
    text-align: center;
  }
  .roi-question {
    font-weight: 900;
    font-size: clamp(48px, 6vw, 96px);
    line-height: 1;
    letter-spacing: -0.025em;
    margin: 0 0 32px;
    color: var(--omni-white);
  }
  .roi-question .accent { color: var(--omni-lime); }
  .roi-sub {
    font-size: 19px;
    line-height: 1.5;
    color: var(--omni-olive-2);
    max-width: 880px;
    margin: 0 auto 56px;
  }
  @media (max-width: 700px) {
    .roi-sub br { display: none; }
  }

  /* Numero animato grande */
  .roi-big-num {
    font-weight: 900;
    font-size: clamp(72px, 11vw, 180px);
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--omni-lime);
    margin: 24px 0 32px;
  }

  /* ============================================ */
  /* CONTATTI / FORM                              */
  /* ============================================ */
  .contact-section {
    background: var(--omni-deepest);
    padding: 140px 5% 100px;
  }
  .contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
  }
  .contact-headline {
    font-weight: 900;
    font-size: clamp(40px, 4.8vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin: 0 0 24px;
    color: var(--omni-white);
  }
  .contact-headline .accent { color: var(--omni-lime); }
  .contact-lead {
    font-size: 17px;
    line-height: 1.6;
    color: var(--omni-olive-2);
    margin-bottom: 40px;
  }
  .contact-points {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .contact-points li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    font-size: 15px;
    color: var(--omni-white);
  }
  .contact-points li svg {
    flex-shrink: 0;
    color: var(--omni-lime);
  }

  .form-card {
    background: var(--omni-dark);
    padding: 48px 40px;
  }
  .form-card-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--omni-lime);
    margin-bottom: 16px;
  }
  .form-card-title {
    font-weight: 800;
    font-size: 24px;
    letter-spacing: -0.01em;
    color: var(--omni-white);
    margin: 0 0 32px;
    line-height: 1.2;
  }
  .form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
  }
  .form-field {
    flex: 1;
    position: relative;
  }
  .form-field label {
    display: block;
    font-size: 12px;
    color: var(--omni-olive-2);
    margin-bottom: 8px;
    letter-spacing: 0.04em;
    font-weight: 500;
  }
  .form-field input,
  .form-field textarea {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 0;
    border-bottom: 2px solid rgba(255,255,255,0.1);
    color: var(--omni-white);
    padding: 14px 0;
    font-size: 15px;
    font-family: inherit;
    transition: border-color .2s ease;
    border-radius: 0;
  }
  .form-field input:focus,
  .form-field textarea:focus {
    outline: 0;
    border-bottom-color: var(--omni-lime);
  }
  .form-field textarea {
    resize: vertical;
    min-height: 80px;
    line-height: 1.4;
  }
  .form-submit {
    width: 100%;
    margin-top: 24px;
    padding: 18px;
    border-radius: 999px;
    background: var(--omni-lime);
    color: var(--omni-dark);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.02em;
    border: 0;
    cursor: pointer;
    font-family: inherit;
    transition: background .2s, transform .15s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .form-submit:hover { background: var(--omni-lime-2); }
  .form-submit:active { transform: scale(0.98); }

  .form-note {
    margin-top: 16px;
    font-size: 11px;
    color: var(--omni-olive-2);
    line-height: 1.5;
    text-align: center;
    letter-spacing: 0.02em;
  }
  .form-mock-ribbon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(224, 72, 72, 0.1);
    color: var(--placeholder-red);
    padding: 6px 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 24px;
  }

  /* ============================================ */
  /* FOOTER                                       */
  /* ============================================ */
  .footer {
    background: var(--omni-deepest);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 48px 5% 32px;
  }
  .footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
  }
  .footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .footer-logo-img {
    height: 26px;
    width: auto;
    object-fit: contain;
  }
  .footer-text {
    font-size: 12px;
    color: var(--omni-olive-2);
    letter-spacing: 0.04em;
  }
  .footer-text strong { color: var(--omni-white); font-weight: 600; }


  /* ============================================ */
  /* FOOTER FULL · 4 colonne, mini-menu completo  */
  /* Sostituisce il footer minimale su tutte le   */
  /* pagine. Eredita variabili colore globali.    */
  /* ============================================ */
  .footer-full {
    background: var(--omni-deepest);
    color: var(--omni-white);
    padding: 80px 5% 0;
  }
  .footer-full-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 56px;
    padding-bottom: 56px;
    position: relative;
  }
  .footer-full-inner::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
  }
  .footer-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .footer-col-brand .footer-logo-img {
    height: 32px;
    margin-bottom: 8px;
  }
  .footer-brand-text {
    font-size: 14px;
    line-height: 1.55;
    color: var(--omni-olive-2);
    margin: 0;
    max-width: 360px;
  }
  .footer-brand-text strong {
    color: var(--omni-white);
    font-weight: 700;
  }
  .footer-address {
    font-size: 13px;
    line-height: 1.5;
    color: var(--omni-olive-2);
    font-style: normal;
    margin-top: 8px;
  }
  .footer-col-title {
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--omni-lime);
    margin: 0 0 4px;
  }
  .footer-col-title-legal {
    margin-top: 24px;
  }
  .footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .footer-list a {
    color: var(--omni-white);
    text-decoration: none;
    font-size: 14px;
    transition: color .2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }
  .footer-list a:hover {
    color: var(--omni-lime);
  }
  /* Voci footer "in arrivo" */
  .footer-list a[data-soon="true"] {
    cursor: default;
    pointer-events: none;
    opacity: 0.55;
  }
  .footer-soon {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--omni-orange-2);
    background: rgba(187, 104, 38, 0.12);
    padding: 2px 8px;
    border-radius: 999px;
    line-height: 1.4;
  }

  /* Sub-footer */
  .footer-bottom {
    padding: 28px 0 32px;
  }
  .footer-bottom-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 12px;
    color: var(--omni-olive-2);
    letter-spacing: 0.04em;
  }

  /* Responsive footer-full */
  @media (max-width: 1100px) {
    .footer-full-inner {
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      padding-bottom: 48px;
    }
    .footer-col-brand {
      grid-column: 1 / -1;
    }
  }
  @media (max-width: 700px) {
    .footer-full {
      padding: 56px 5% 0;
    }
    .footer-full-inner {
      grid-template-columns: 1fr;
      gap: 36px;
      padding-bottom: 36px;
    }
    .footer-bottom-inner {
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
    }
  }

  /* ============================================ */
  /* RESPONSIVE                                   */
  /* ============================================ */
  @media (max-width: 1100px) {
    .sectors-grid { grid-template-columns: repeat(2, 1fr); }
    .numbers-grid { grid-template-columns: 1fr; }
    .number-cell { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .number-cell:last-child { border-bottom: 0; }
    .story-card { grid-template-columns: 1fr; gap: 40px; padding: 48px 32px; }
    .contact-grid { grid-template-columns: 1fr; gap: 56px; }
    .how-sticky { grid-template-columns: 1fr; gap: 40px; padding: 60px 5%; }
    .how-pin-wrap { height: auto; }
    .how-sticky { position: static; height: auto; }
    .how-step-stack { min-height: auto; }
    .how-step { position: static; opacity: 1; transform: none; pointer-events: auto; margin-bottom: 48px; }
    .how-progress { display: none; }
    .how-visual { aspect-ratio: auto; padding: 32px; }
    .how-node, .how-node:first-of-type { background: var(--omni-offwhite); transform: none; }
    .how-node.is-active { background: var(--omni-lime); }
  }

  /* Switch a hamburger menu sotto i 900px */
  @media (max-width: 900px) {
    .header-nav { display: none; }
    .hamburger { display: inline-flex; }
  }

  @media (max-width: 1100px) {
    .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 700px) {
    section { padding: 80px 5%; }
    .header { padding: 12px 4%; }
    .brand-logo { height: 26px; }

    .hero { padding: 60px 5%; }
    .hero h1 { font-size: clamp(36px, 11vw, 64px); margin-bottom: 40px; }
    .btn-primary { padding: 15px 28px; font-size: 14px; }
    .hero-bg-shape { width: 130vw; opacity: 0.035; }

    .section-title { font-size: clamp(34px, 7vw, 48px); }
    .section-sub { font-size: 16px; margin-bottom: 48px; }

    .sectors-grid { grid-template-columns: 1fr; }
    .sector-card { min-height: auto; padding: 28px 24px; }
    .sector-name { font-size: 24px; }
    .sector-show-more { padding: 24px; font-size: 14px; }
    .sector-show-more-icon { width: 36px; height: 36px; }

    .cta-strip { padding: 56px 5%; }
    .cta-strip-inner { flex-direction: column; align-items: flex-start; gap: 28px; }
    .cta-strip h3 { font-size: clamp(26px, 6.5vw, 36px); }
    .cta-strip p { font-size: 15px; }
    .cta-strip .btn-primary { width: 100%; justify-content: center; }

    .number-cell { padding: 32px 0; }
    .number-value { font-size: clamp(64px, 18vw, 96px); }

    .story-card { padding: 32px 24px; }
    .story-num-tag { font-size: 22px; padding: 12px 18px; top: 20px; left: 20px; }

    .roi-question { font-size: clamp(36px, 9vw, 56px); }
    .roi-big-num { font-size: clamp(56px, 18vw, 96px); }
    .roi-cta-wrap .btn-primary { width: 100%; max-width: 320px; justify-content: center; }

    .contact-section { padding: 80px 5% 60px; }
    .contact-headline { font-size: clamp(32px, 7vw, 48px); }
    .form-card { padding: 32px 24px; }
    .form-row { flex-direction: column; gap: 16px; }

    .scroll-top { bottom: 16px; left: 16px; width: 44px; height: 44px; }
  }

/* ================================================================
   TEAM EXTRA STACK · 4 colleghi mostrati al click di "Scopri tutti"
   Stack verticale dentro lo slot della card CTA, una sopra l'altra
   ================================================================ */

/* Slot contenitore della card CTA · permette di sostituire il trigger con lo stack */
.team-card-slot {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Trigger (button) · stesso stile della card CTA anchor ma con cursor pointer e reset bottone */
.team-card-cta-trigger {
  background: transparent;
  border: 2px dashed rgba(200, 224, 102, 0.4);
  cursor: pointer;
  font-family: inherit;
  text-align: center;
  color: var(--omni-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 40px 28px;
  min-height: 100%;
  transition: background .3s ease, border-color .3s ease, transform .3s ease, opacity .3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: none;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.team-card-cta-trigger:hover {
  background: rgba(200, 224, 102, 0.08);
  border-color: var(--omni-lime);
  transform: translateY(-4px);
}
.team-card-cta-trigger:active { transform: scale(0.98); }
.team-card-cta-trigger[hidden] { display: none; }

/* Stack verticale · 4 card compact impilate dentro lo slot della card CTA */
.team-extra-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.team-extra-stack.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.team-extra-stack[hidden] {
  display: none;
}

/* Card compact · 4 piccole impilate, niente foto · ogni card occupa 1/4 dell'altezza dello slot */
.team-card-compact {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-height: 0;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.team-card-compact:hover {
  background: rgba(200, 224, 102, 0.08);
  border-color: rgba(200, 224, 102, 0.3);
  transform: translateX(2px);
}
.team-card-compact .team-name {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--omni-white);
  line-height: 1.5;
  margin: 0;
}
.team-card-compact .team-role {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--omni-lime);
  text-transform: uppercase;
  margin: 0;
}
.team-card-compact .team-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 2px;
}
.team-card-compact .skill-chip {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.005em;
  padding: 2px 7px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* CTA bottone finale "Vai alla pagina team" → linka pagina team */
.team-extra-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}
.team-extra-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.team-extra-cta[hidden] {
  display: none;
}

/* Mobile tablet · stack più aperto se serve, mantiene verticale */
@media (max-width: 900px) {
  .team-card-compact { padding: 14px 16px; }
  .team-card-compact .team-name { font-size: 19px; }
}
/* Mobile · ulteriore alleggerimento */
@media (max-width: 560px) {
  .team-card-compact { padding: 14px 16px; }
  .team-card-compact .team-name { font-size: 20px; }
  .team-card-compact .team-role { font-size: 12px; }
}

/* ================================================================
   FOOTER SOCIALS · icone Facebook + Instagram
   ================================================================ */
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--omni-olive-2);
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.footer-social-link:hover {
  color: var(--omni-dark);
  background: var(--omni-lime);
  border-color: var(--omni-lime);
  transform: translateY(-2px);
}
.footer-social-link svg {
  flex-shrink: 0;
}