/* NIMMSTA Processes Menu · paste into module.css */
.nps-module{font-family:'Poppins',Arial,sans-serif;background:#F7F7F7;padding:64px 20px;color:#04152C}
.nps-inner{max-width:1080px;margin:0 auto}

.nps-head{text-align:center;max-width:720px;margin:0 auto 40px}
.nps-eyebrow{display:inline-block;font-size:13px;font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:#0090BD;margin-bottom:12px}
.nps-title{font-size:34px;font-weight:700;line-height:1.25;margin:0 0 14px}
.nps-sub{font-size:16px;line-height:1.6;color:#5C6B7A;margin:0}

/* group rows */
.nps-group{background:#FFFFFF;border:1px solid #E2E6EA;border-radius:12px;margin-bottom:14px;overflow:hidden}
.nps-group-toggle{display:flex;align-items:center;gap:18px;width:100%;background:none;border:0;padding:22px 24px;cursor:pointer;text-align:left;font-family:inherit}
.nps-group-toggle:hover{background:#D5F5FF33}
.nps-group-toggle:focus-visible{outline:2px solid #0090BD;outline-offset:-2px}
.nps-group-label{flex:1;min-width:0}
.nps-group-name{display:block;font-size:20px;font-weight:700;color:#04152C}
.nps-group-desc{display:block;font-size:14px;line-height:1.5;color:#5C6B7A;margin-top:4px}
.nps-count{flex:none;font-size:12.5px;font-weight:600;color:#0090BD;background:#D5F5FF;border-radius:999px;padding:5px 12px;white-space:nowrap}
.nps-chev{flex:none;width:12px;height:12px;border-right:2.5px solid #0090BD;border-bottom:2.5px solid #0090BD;transform:rotate(45deg);transition:transform .25s ease;margin-top:-4px}
.nps-group-toggle[aria-expanded="true"] .nps-chev{transform:rotate(-135deg);margin-top:4px}
.nps-group-toggle[aria-expanded="true"] .nps-group-name{color:#0090BD}

/* open panel */
.nps-panel{display:flex;gap:24px;padding:0 24px 26px;border-top:1px solid #E2E6EA;padding-top:22px}
.nps-tabs{flex:0 0 320px;display:flex;flex-direction:column;gap:8px}
.nps-tab{background:#F7F7F7;border:1.5px solid #E2E6EA;border-radius:10px;padding:12px 14px;text-align:left;cursor:pointer;font-family:inherit;transition:border-color .15s ease,background .15s ease}
.nps-tab:hover{border-color:#80E0FF}
.nps-tab:focus-visible{outline:2px solid #0090BD;outline-offset:1px}
.nps-tab.is-active{background:#FFFFFF;border-color:#0090BD;box-shadow:0 1px 4px rgba(4,21,44,.06)}
.nps-tab-name{display:block;font-size:14.5px;font-weight:600;color:#04152C}
.nps-tab.is-active .nps-tab-name{color:#0090BD}
.nps-tab-desc{display:block;font-size:12.5px;line-height:1.45;color:#5C6B7A;margin-top:3px}

/* animation stage */
.nps-stage{flex:1;min-width:0}
.nps-frame{position:relative;width:100%;aspect-ratio:1200/820;background:#FFFFFF;border:1px solid #E2E6EA;border-radius:10px;overflow:hidden}
.nps-frame img{position:absolute;inset:0;width:100%;height:100%;display:block}
.nps-doclink{display:inline-block;margin-top:12px;font-size:13.5px;font-weight:600;color:#0090BD;text-decoration:none}
.nps-doclink:hover{text-decoration:underline}
.nps-doclink::after{content:" \2197"}

.nps-foot{text-align:center;font-size:14px;color:#5C6B7A;margin:28px auto 0;max-width:640px;line-height:1.6}

/* aspect-ratio fallback for older browsers */
@supports not (aspect-ratio:1){
  .nps-frame{height:0;padding-bottom:68.33%}
}

/* mobile */
@media (max-width:820px){
  .nps-module{padding:44px 14px}
  .nps-title{font-size:26px}
  .nps-panel{flex-direction:column;gap:16px}
  .nps-tabs{flex:none;flex-direction:row;flex-wrap:wrap}
  .nps-tab{flex:1 1 46%}
  .nps-tab-desc{display:none}
  .nps-count{display:none}
}