/* Sezione Nexass: come funziona, con schermate del portale */
.nexass-section { position: relative; overflow: hidden; color: var(--white); background: var(--navy); }
.nx-head { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .95fr); gap: clamp(36px, 7vw, 100px); align-items: end; }
.nx-head h2 { font-size: clamp(36px, 4.6vw, 60px); line-height: 1.12; font-weight: 700; text-wrap: balance; }
.nx-head h1 em, .nx-head h2 em { font-style: normal; color: var(--orange-bright); }
.nx-intro > p { color: rgba(255, 255, 255, .72); font-size: 16px; line-height: 1.72; }
.nx-facts { margin: 28px 0 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255, 255, 255, .14); }
.nx-facts li { padding: 18px 16px 0 0; display: flex; flex-direction: column; gap: 4px; }
.nx-facts strong { font-family: var(--display); font-size: 26px; letter-spacing: -.02em; color: var(--white); }
.nx-facts li:first-child strong { color: var(--orange); }
.nx-facts span { color: rgba(255, 255, 255, .6); font-size: 12px; }

.nx-steps { position: relative; margin: clamp(56px, 7vw, 96px) auto 0; padding: 0; list-style: none; display: grid; gap: clamp(56px, 7vw, 96px); }
.nx-step { display: grid; grid-template-columns: minmax(0, .62fr) minmax(0, 1.38fr); gap: clamp(28px, 5vw, 72px); align-items: center; }
.nx-step:nth-child(even) { grid-template-columns: minmax(0, 1.38fr) minmax(0, .62fr); }
.nx-step:nth-child(even) .nx-step-copy { order: 2; }
.nx-num { display: inline-block; font-family: var(--display); font-size: 15px; font-weight: 700; color: var(--orange); letter-spacing: .06em; padding-bottom: 10px; border-bottom: 2px solid var(--orange); }
.nx-step-copy h3 { margin-top: 20px; font-size: clamp(26px, 2.8vw, 34px); line-height: 1.12; font-weight: 700; }
.nx-step-copy p { margin-top: 14px; color: rgba(255, 255, 255, .7); font-size: 15px; line-height: 1.7; }
.nx-step-shots { display: grid; gap: 16px; }
.nx-shot { display: block; overflow: hidden; border-radius: 10px; background: #fff; box-shadow: 0 30px 70px rgba(0, 0, 0, .35), 0 0 0 1px rgba(255, 255, 255, .08); transition: transform .35s var(--ease), box-shadow .35s ease; }
.nx-shot:hover { transform: translateY(-4px); box-shadow: 0 40px 80px rgba(0, 0, 0, .42), 0 0 0 1px rgba(219, 110, 0, .5); }
.nx-bar { display: flex; align-items: center; gap: 6px; height: 30px; padding: 0 12px; background: #eef1f5; border-bottom: 1px solid #dfe4ea; }
.nx-bar i { width: 9px; height: 9px; border-radius: 50%; background: #cfd5dd; }
.nx-bar i:first-child { background: #db6e00; }
.nx-bar b { margin-left: 10px; padding: 3px 12px; border-radius: 999px; background: #fff; color: #7a8391; font-size: 11px; font-weight: 600; }
.nx-shot img { width: 100%; height: auto; }

.nx-cta { position: relative; margin-top: clamp(56px, 7vw, 90px); display: flex; flex-wrap: wrap; align-items: center; gap: 18px 32px; }
.nx-cta p { flex-basis: 100%; color: rgba(255, 255, 255, .45); font-size: 12px; }

@media (max-width: 980px) {
  .nx-head { grid-template-columns: 1fr; align-items: start; }
  .nx-step { grid-template-columns: 1fr; gap: 24px; }
  .nx-step:nth-child(even) { grid-template-columns: 1fr; }
  .nx-step:nth-child(even) .nx-step-copy { order: 0; }
}
@media (max-width: 520px) {
  .nx-facts { grid-template-columns: 1fr 1fr; }
  .nx-facts li:last-child { grid-column: 1 / -1; }
  .nx-bar b { display: none; }
}
