   *,
   *::before,
   *::after {
       margin: 0;
       padding: 0;
       box-sizing: border-box;
   }

   :root {
       --primary: #25576C;
       --secondary: #94665D;
       --light: #E5DFDD;
       --dark: #1a3d4d;
       --text: #1C2321;
       --bg: #FFFFFF;
       --primary-rgb: 37, 87, 108;
       --secondary-rgb: 148, 102, 93;
   }

   html {
       scroll-behavior: smooth;
   }

   body {
       font-family: 'DM Sans', sans-serif;
       color: var(--text);
       background: var(--bg);
       font-size: 16px;
       line-height: 1.7;
       -webkit-font-smoothing: antialiased;
   }

   /*h1, h2:not(.size-clamp), h3, h4 {
      font-family: 'MuseoModerno', cursive;
      line-height: 1.2;
      font-weight: 700;
    }*/
   #textPersonal h1,
   #textPersonal h2,
   #textPersonal h3,
   #textPersonal h4,
   .careers-page h1,
   .careers-page h2,
   .careers-page h3,
   .careers-page h4 {
       font-family: 'MuseoModerno', cursive;
       line-height: 1.2;
       font-weight: 700;
   }

   img {
       max-width: 100%;
       height: auto;
       display: block;
   }

   a {
       text-decoration: none;
       color: inherit;
   }

   .container {
       max-width: 1140px;
       margin: 0 auto;
       padding: 0 24px;
   }

   /* ==================== NAV ==================== */
   /*.nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 16px 0;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 1px 20px rgba(0,0,0,0.08);
    }

    .nav .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo img {
      height: 38px;
      width: auto;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--text);
      transition: opacity 0.3s;
      letter-spacing: 0.02em;
    }

    .nav-links a:hover { opacity: 0.7; }

    .nav-cta {
      background: var(--secondary);
      color: #fff !important;
      padding: 10px 24px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 0.88rem;
      transition: background 0.3s, transform 0.2s;
    }

    .nav-cta:hover {
      background: #7d5549;
      transform: translateY(-1px);
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      z-index: 1001;
    }

    .hamburger span {
      width: 26px;
      height: 2.5px;
      background: var(--text);
      border-radius: 2px;
      transition: all 0.3s;
    }

    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }*/

   /* ==================== HERO ==================== */
   .hero {
       padding: 140px 0 100px;
       background: #f8f7f6;
   }

   .hero .container {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 56px;
       align-items: center;
   }

   .hero-content {
       max-width: 520px;
   }

   .section-label {
       font-family: 'MuseoModerno', cursive;
       font-size: 0.85rem;
       font-weight: 600;
       color: var(--secondary);
       text-transform: uppercase;
       letter-spacing: 0.15em;
       margin-bottom: 12px;
   }

   .hero h1 {
       font-size: clamp(2rem, 4vw, 3rem);
       color: var(--primary);
       margin-bottom: 20px;
       font-weight: 800;
   }

   .hero h1 span {
       color: var(--secondary);
   }

   .hero p {
       font-size: 1.05rem;
       color: #555;
       margin-bottom: 32px;
       line-height: 1.8;
   }

   .hero-img {
       border-radius: 16px;
       overflow: hidden;
       box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
       aspect-ratio: 4 / 5;
   }

   .hero-img img {
       width: 100%;
       height: 100%;
       object-fit: cover;
       object-position: center 20%;
   }

   .btn-primary {
       background: var(--secondary);
       color: #fff;
       padding: 14px 32px;
       border-radius: 10px;
       font-weight: 600;
       font-size: 1rem;
       border: none;
       cursor: pointer;
       transition: all 0.3s;
       display: inline-flex;
       align-items: center;
       gap: 8px;
   }

   .btn-primary:hover {
       background: #7d5549;
       transform: translateY(-2px);
       box-shadow: 0 8px 24px rgba(var(--secondary-rgb), 0.3);
   }

   /* ==================== IMMAGINE HERO ==================== */
   .hero-image-full {
       width: 100%;
       line-height: 0;
   }

   .hero-image-full img {
       width: 100%;
       height: auto;
       display: block;
   }

   /* ==================== PERCHE NOI ==================== */
   .perche {
       padding: 100px 0;
   }

   .perche .section-header {
       text-align: center;
       max-width: 620px;
       margin: 0 auto 56px;
   }

   .perche h2 {
       font-size: clamp(1.8rem, 3vw, 2.6rem);
       color: var(--primary);
       margin-bottom: 16px;
   }

   .perche .section-header p {
       color: #666;
       font-size: 1.05rem;
   }

   .perche-grid {
       display: grid;
       grid-template-columns: repeat(3, 1fr);
       gap: 28px;
   }

   .perche-card {
       background: #f8f7f6;
       padding: 36px 28px;
       border-radius: 14px;
       transition: transform 0.3s, box-shadow 0.3s;
   }

   .perche-card:hover {
       transform: translateY(-4px);
       box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
   }

   .perche-icon {
       width: 56px;
       height: 56px;
       border-radius: 12px;
       background: rgba(var(--primary-rgb), 0.08);
       display: flex;
       align-items: center;
       justify-content: center;
       margin-bottom: 18px;
   }

   .perche-card h3 {
       font-size: 1.15rem;
       color: var(--primary);
       margin-bottom: 8px;
   }

   .perche-card p {
       color: #666;
       font-size: 0.92rem;
       line-height: 1.6;
   }

   /* ==================== MISSIONE ==================== */
   .missione {
       padding: 100px 0;
       background: #f8f7f6;
   }

   .missione .container {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 64px;
       align-items: center;
   }

   .missione-img {
       border-radius: 16px;
       overflow: hidden;
       box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
   }

   .missione-img img {
       width: 100%;
       height: 100%;
       object-fit: cover;
       object-position: center 15%;
   }

   .missione h2 {
       font-size: clamp(1.8rem, 3vw, 2.6rem);
       color: var(--primary);
       margin-bottom: 20px;
   }

   .missione-text p {
       color: #555;
       margin-bottom: 16px;
       font-size: 1.02rem;
   }

   .missione-values {
       display: flex;
       flex-wrap: wrap;
       gap: 10px;
       margin-top: 24px;
   }

   .value-tag {
       background: rgba(var(--primary-rgb), 0.08);
       color: var(--primary);
       padding: 8px 18px;
       border-radius: 50px;
       font-size: 0.88rem;
       font-weight: 600;
   }

   /* ==================== POSIZIONI ==================== */
   .posizioni {
       padding: 100px 0;
   }

   .posizioni .section-header {
       text-align: center;
       max-width: 620px;
       margin: 0 auto 56px;
   }

   .posizioni h2 {
       font-size: clamp(1.8rem, 3vw, 2.6rem);
       color: var(--primary);
       margin-bottom: 16px;
   }

   .posizioni .section-header p {
       color: #666;
       font-size: 1.05rem;
   }

   .posizioni-list {
       max-width: 780px;
       margin: 0 auto;
   }

   .posizione-card {
       background: #f8f7f6;
       border-radius: 14px;
       padding: 32px;
       margin-bottom: 16px;
       display: flex;
       justify-content: space-between;
       align-items: center;
       gap: 24px;
       transition: transform 0.3s, box-shadow 0.3s;
   }

   .posizione-card:hover {
       transform: translateY(-2px);
       box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
   }

   .posizione-info h3 {
       font-size: 1.15rem;
       color: var(--primary);
       margin-bottom: 6px;
   }

   .posizione-info p {
       color: #666;
       font-size: 0.9rem;
   }

   .posizione-tags {
       display: flex;
       gap: 8px;
       margin-top: 10px;
       flex-wrap: wrap;
   }

   .posizione-tag {
       font-size: 0.78rem;
       color: var(--secondary);
       background: rgba(var(--secondary-rgb), 0.1);
       padding: 4px 12px;
       border-radius: 20px;
       font-weight: 500;
   }

   .posizione-card .btn-small {
       background: var(--primary);
       color: #fff;
       padding: 10px 24px;
       border-radius: 8px;
       font-weight: 600;
       font-size: 0.88rem;
       white-space: nowrap;
       transition: background 0.3s, transform 0.2s;
   }

   .posizione-card .btn-small:hover {
       background: var(--dark);
       transform: translateY(-1px);
   }

   /* ==================== CANDIDATURA FORM ==================== */
   .candidatura {
       padding: 88px 0;
       background: var(--bg);
   }

    .candidatura .form-wrapper {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 64px;
       align-items: start;
   }

   .candidatura .form-intro h2 {
       font-size: clamp(1.8rem, 3vw, 2.4rem);
       color: var(--primary);
       margin-bottom: 24px;
   }

   .candidatura .form-intro h2 em {
       font-style: normal;
       color: var(--secondary);
   }

   .candidatura .form-intro p {
       color: #555;
       font-size: 1.02rem;
       line-height: 1.8;
   }

   .candidatura .form-intro ul {
       list-style: none;
       margin-top: 32px;
   }

   .candidatura .form-intro ul li {
       display: flex;
       align-items: flex-start;
       gap: 12px;
       padding: 10px 0;
       font-size: 0.92rem;
       color: #555;
       line-height: 1.5;
   }

   .candidatura .form-intro .trust-icon {
       flex-shrink: 0;
       width: 22px;
       height: 22px;
       border-radius: 50%;
       background: rgba(var(--primary-rgb), 0.08);
       display: flex;
       align-items: center;
       justify-content: center;
       margin-top: 2px;
   }

   .candidatura .form-card {
       background: #f8f7f6;
       padding: 40px 36px;
       border-radius: 16px;
   }

   .candidatura .form-group {
       margin-bottom: 20px;
   }

   .candidatura .form-group label {
       display: block;
       font-size: 0.88rem;
       font-weight: 600;
       color: var(--text);
       margin-bottom: 6px;
   }

   .candidatura .form-group input,
   .candidatura .form-group select,
   .candidatura .form-group textarea {
       width: 100%;
       padding: 12px 16px;
       border: 1.5px solid #ddd;
       border-radius: 10px;
       font-family: 'DM Sans', sans-serif;
       font-size: 0.95rem;
       color: var(--text);
       background: #fff;
       transition: border-color 0.3s;
       -webkit-appearance: none;
   }

   .candidatura .form-group textarea {
       resize: vertical;
       min-height: 100px;
   }

   .candidatura .form-group input:focus,
   .candidatura .form-group select:focus,
   .candidatura .form-group textarea:focus {
       outline: none;
       border-color: var(--primary);
   }

   .candidatura .form-group input[type="file"] {
       padding: 10px 16px;
       cursor: pointer;
       font-size: 0.88rem;
   }

   .candidatura .form-group .file-hint {
       font-size: 0.78rem;
       color: #999;
       margin-top: 4px;
   }

   .candidatura .form-submit {
       width: 100%;
       padding: 14px 28px;
       margin-top: 8px;
       background: var(--primary);
       color: #fff;
       border: none;
       border-radius: 10px;
       font-family: 'DM Sans', sans-serif;
       font-weight: 600;
       font-size: 1rem;
       cursor: pointer;
       transition: background 0.3s, transform 0.2s;
   }

   .candidatura .form-submit:hover {
       background: var(--dark);
       transform: translateY(-2px);
   }

   /* ==================== FOOTER ==================== */
   /*.footer {
      background: #111;
      color: rgba(255,255,255,0.7);
      padding: 64px 0 0;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 40px;
      padding-bottom: 48px;
    }

    .footer-brand img {
      height: 48px;
      margin-bottom: 16px;
      filter: brightness(0) invert(1);
    }

    .footer-brand p {
      font-size: 0.9rem;
      line-height: 1.7;
      max-width: 280px;
    }

    .footer h4 {
      color: #fff;
      font-size: 0.95rem;
      margin-bottom: 18px;
      font-weight: 600;
    }

    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 10px; }

    .footer-links a {
      font-size: 0.88rem;
      transition: color 0.3s;
    }

    .footer-links a:hover { color: #fff; }

    .footer-social {
      display: flex;
      gap: 12px;
      margin-top: 8px;
    }

    .footer-social a {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: rgba(255,255,255,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s;
      font-size: 1.1rem;
    }

    .footer-social a:hover { background: var(--secondary); }

    .footer-sedi {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      padding-bottom: 48px;
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 40px;
    }

    .footer-sede p {
      font-size: 0.85rem;
      line-height: 1.7;
      margin-bottom: 4px;
    }

    .footer-sede a {
      font-size: 0.85rem;
      transition: color 0.3s;
    }

    .footer-sede a:hover { color: #fff; }

    .footer-sede .sede-piva {
      font-size: 0.78rem;
      margin-top: 8px;
      opacity: 0.5;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 20px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.82rem;
    }

    .footer-bottom a {
      color: rgba(255,255,255,0.5);
      transition: color 0.3s;
    }

    .footer-bottom a:hover { color: #fff; }*/

   /* ==================== ANIMATIONS ==================== */
   .fade-in {
       opacity: 0;
       transform: translateY(24px);
       transition: opacity 0.6s ease, transform 0.6s ease;
   }

   .fade-in.visible {
       opacity: 1;
       transform: translateY(0);
   }

   /* ==================== MOBILE MENU ==================== */
   /*.mobile-menu {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(var(--primary-rgb), 0.98);
      backdrop-filter: blur(16px);
      z-index: 999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 28px;
    }

    .mobile-menu.active { display: flex; }

    .mobile-menu a {
      color: #fff;
      font-size: 1.3rem;
      font-weight: 500;
      font-family: 'MuseoModerno', cursive;
    }*/

   /* ==================== RESPONSIVE ==================== */
   @media (max-width: 1024px) {
       .hero .container {
           grid-template-columns: 1fr;
           gap: 40px;
       }

       .hero-img {
           max-width: 500px;
           margin: 0 auto;
       }

       .missione .container {
           grid-template-columns: 1fr;
           gap: 40px;
       }

       .perche-grid {
           grid-template-columns: repeat(2, 1fr);
       }

       /*.footer-top { grid-template-columns: 1fr 1fr; }
      .footer-sedi { grid-template-columns: 1fr 1fr; }*/
   }

   @media (max-width: 768px) {
       /*.nav-links { display: none; }
      .hamburger { display: flex; }*/

       .hero {
           padding: 110px 0 72px;
       }

       .hero-img {
           max-width: 100%;
       }

       .perche-grid {
           grid-template-columns: 1fr;
       }

       .posizione-card {
           flex-direction: column;
           align-items: flex-start;
       }

       .footer-top {
           grid-template-columns: 1fr;
           gap: 32px;
       }

       .footer-sedi {
           grid-template-columns: 1fr;
           gap: 32px;
       }

       .footer-bottom {
           flex-direction: column;
           gap: 8px;
           text-align: center;
       }

       .perche,
       .missione,
       .posizioni,
       .candidatura {
           padding: 72px 0;
       }

       .form-wrapper {
           grid-template-columns: 1fr;
           gap: 32px;
       }
   }

   /* ==================== VISUAL BREAK ==================== */
   .visual-break {
       width: 100%;
       line-height: 0;
   }

   .visual-break img {
       width: 100%;
       height: auto;
       display: block;
   }


   /* ==================== METODO ==================== */
   .metodo {
       padding: 88px 0;
       background: var(--bg);
   }

   .metodo .section-header {
       text-align: center;
       max-width: 600px;
       margin: 0 auto 56px;
   }

   .section-label {
       font-family: 'MuseoModerno', cursive;
       font-size: 0.85rem;
       font-weight: 600;
       color: var(--secondary);
       text-transform: uppercase;
       letter-spacing: 0.15em;
       margin-bottom: 12px;
   }

   .metodo h2 {
       font-size: clamp(1.8rem, 3vw, 2.6rem);
       color: var(--primary);
   }

   .step-grid {
       display: grid;
       grid-template-columns: repeat(3, 1fr);
       gap: 32px;
   }

   .step-card {
       text-align: center;
       padding: 36px 24px;
       position: relative;
   }

   .step-number {
       font-family: 'MuseoModerno', cursive;
       font-size: 3rem;
       font-weight: 800;
       color: rgba(var(--primary-rgb), 0.08);
       line-height: 1;
       margin-bottom: 16px;
   }

   .step-card h3 {
       font-size: 1.15rem;
       color: var(--primary);
       margin-bottom: 10px;
   }

   .step-card p {
       color: #666;
       font-size: 0.92rem;
       line-height: 1.7;
   }

   .step-divider {
       display: none;
   }

   /* Connectors between steps (desktop) */
   @media (min-width: 769px) {
       .step-card:not(:last-child)::after {
           content: '';
           position: absolute;
           right: -16px;
           top: 50%;
           width: 1px;
           height: 60px;
           transform: translateY(-50%);
           background: rgba(var(--primary-rgb), 0.1);
       }
   }

   /* ==================== PERCHE ==================== */
   .perche {
       padding: 88px 0;
       background: #f8f7f6;
   }

   .perche .section-header {
       text-align: center;
       max-width: 600px;
       margin: 0 auto 56px;
   }

   .perche h2 {
       font-size: clamp(1.8rem, 3vw, 2.6rem);
       color: var(--primary);
   }

   .perche-grid {
       display: grid;
       grid-template-columns: repeat(2, 1fr);
       gap: 24px;
   }

   .perche-card {
       background: #fff;
       padding: 32px 28px;
       border-radius: 14px;
       box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
       transition: transform 0.3s, box-shadow 0.3s;
   }

   .perche-card:hover {
       transform: translateY(-4px);
       box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
   }

   .perche-card-number {
       font-family: 'MuseoModerno', cursive;
       font-size: 0.82rem;
       font-weight: 700;
       color: var(--secondary);
       margin-bottom: 10px;
       letter-spacing: 0.05em;
   }

   .perche-card h3 {
       font-size: 1.1rem;
       color: var(--primary);
       margin-bottom: 8px;
   }

   .perche-card p {
       color: #666;
       font-size: 0.92rem;
       line-height: 1.65;
   }

   /* ==================== TERRITORI ==================== */
   .territori {
       padding: 0;
       background: var(--bg);
   }

   .territori .section-header {
       text-align: center;
       max-width: 600px;
       margin: 0 auto;
       padding: 88px 24px 56px;
   }

   .territori h2 {
       font-size: clamp(1.8rem, 3vw, 2.6rem);
       color: var(--primary);
   }

   .territorio-block {
       display: grid;
       grid-template-columns: 1fr 1fr;
       min-height: 480px;
   }

   .territorio-block:nth-child(odd) .territorio-foto {
       order: 1;
   }

   .territorio-block:nth-child(odd) .territorio-testo {
       order: 2;
   }

   .territorio-block:nth-child(even) .territorio-foto {
       order: 2;
   }

   .territorio-block:nth-child(even) .territorio-testo {
       order: 1;
   }

   .territorio-foto {
       position: relative;
       overflow: hidden;
   }

   .territorio-foto img {
       width: 100%;
       height: 100%;
       object-fit: cover;
       object-position: center top;
       display: block;
   }

   .territorio-testo {
       padding: 64px 56px;
       display: flex;
       flex-direction: column;
       justify-content: center;
   }

   .territorio-testo .section-label {
       margin-bottom: 14px;
   }

   .territorio-testo h3 {
       font-size: clamp(1.5rem, 2.5vw, 2rem);
       color: var(--primary);
       margin-bottom: 18px;
       line-height: 1.25;
   }

   .territorio-testo p {
       color: #555;
       font-size: 0.95rem;
       line-height: 1.8;
       max-width: 460px;
   }

   .territorio-block:nth-child(1) {
       background: #f8f7f6;
   }

   .territorio-block:nth-child(2) {
       background: #fff;
   }

   .territorio-block:nth-child(3) {
       background: #f8f7f6;
   }

   /* ==================== FORM ==================== */
   .form-section {
       padding: 88px 0 0 0;
       background: var(--bg);
   }

   .form-wrapper {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 64px;
       align-items: start;
   }

   .form-intro h2 {
       font-size: clamp(1.8rem, 3vw, 2.4rem);
       color: var(--primary);
       margin-bottom: 24px;
   }

   .form-intro h2 em {
       font-style: normal;
       color: var(--secondary);
   }

   .trust-list {
       list-style: none;
       margin-top: 32px;
   }

   .trust-list li {
       display: flex;
       align-items: flex-start;
       gap: 12px;
       padding: 10px 0;
       font-size: 0.92rem;
       color: #555;
       line-height: 1.5;
   }

   .trust-icon {
       flex-shrink: 0;
       width: 22px;
       height: 22px;
       border-radius: 50%;
       background: rgba(var(--primary-rgb), 0.08);
       display: flex;
       align-items: center;
       justify-content: center;
       margin-top: 2px;
   }

   .form-card {
       background: #f8f7f6;
       padding: 40px 36px;
       border-radius: 16px;
   }

   /*.form-group {
       margin-bottom: 20px;
   }

   .form-group label {
       display: block;
       font-size: 0.88rem;
       font-weight: 600;
       color: var(--text);
       margin-bottom: 6px;
   }

   .form-group input {
       width: 100%;
       padding: 12px 16px;
       border: 1.5px solid #ddd;
       border-radius: 10px;
       font-family: 'DM Sans', sans-serif;
       font-size: 0.95rem;
       color: var(--text);
       background: #fff;
       transition: border-color 0.3s;
       -webkit-appearance: none;
   }

   .form-group input:focus {
       outline: none;
       border-color: var(--primary);
   }

   .form-submit {
       width: 100%;
       padding: 14px 28px;
       margin-top: 8px;
   }*/