  .role-page .role-shell { padding-top: 1rem; }
    .role-page .role-stack {
      width: min(50rem, calc(100% - 2rem));
      margin: 0 auto;
      display: grid;
      gap: 1.5rem;
    }
    .role-hero,
    .role-card,
    .role-info-bottom {
      width: min(50rem, calc(100% - 2rem));
      border: 1px solid rgba(29, 69, 141, 0.08);
      border-radius: var(--radius-lg);
      background: rgba(255, 255, 255, 0.82);
      backdrop-filter: blur(6px);
    }
    .role-hero {
      box-shadow: var(--shadow-lg);
      padding: clamp(2rem, 4vw, 3.5rem);
      position: relative;
      overflow: hidden;
    }
    .role-hero::after {
      content: '';
      position: absolute;
      right: -70px;
      top: -30px;
      width: 240px;
      height: 240px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(60, 93, 92, 0.16), transparent 70%);
      pointer-events: none;
    }
    .role-hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 2rem;
      align-items: center;
    }
    .role-hero-copy h1 {
      margin: 0;
      font-family: var(--font-display);
      line-height: 1.05;
      font-size: clamp(2.3rem, 4vw, 4.1rem);
      max-width: 11ch;
    }
    .role-hero-copy p {
      margin: 1.15rem 0 0;
      color: var(--color-text-muted);
      line-height: 1.7;
      max-width: 58ch;
    }
    .role-highlights {
      list-style: none;
      padding: 0;
      margin: 1.5rem 0 0;
      display: grid;
      gap: 0.8rem;
    }
    .role-highlights li {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      font-weight: 500;
      color: var(--color-text);
    }
    .role-highlights li::before {
      content: '';
      width: 10px;
      height: 10px;
      margin-top: 0.45rem;
      border-radius: 50%;
      flex: 0 0 10px;
      background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    }
    .role-card {
      box-shadow: var(--shadow-sm);
      padding: clamp(1.5rem, 3vw, 2.5rem);
    }
    .role-selector-form { display: grid; gap: 1.25rem; }
    .role-toggle-shell {
      position: relative;
      padding: 1.4rem;
      border-radius: 28px;
      border: 1px solid rgba(29, 69, 141, 0.12);
      background:
        radial-gradient(circle at top right, rgba(29, 69, 141, 0.10), transparent 36%),
        linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,248,251,0.94));
      overflow: hidden;
    }
    .role-toggle-shell::before {
      content: '';
      position: absolute;
      inset: auto -50px -95px auto;
      width: 220px;
      height: 220px;
      background: url('logo/BL_Logo/BackLocal-01.png') center/contain no-repeat;
      opacity: 0.10;
      pointer-events: none;
      filter: saturate(0.95);
    }
    .role-toggle-shell::after {
      content: '';
      position: absolute;
      inset: 18px;
      border-radius: 22px;
      border: 1px dashed rgba(29, 69, 141, 0.08);
      pointer-events: none;
    }
    .role-toggle-top {
      position: relative;
      z-index: 1;
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      align-items: center;
      margin-bottom: 1rem;
    }
    .role-toggle-top img {
      width: 112px;
      height: auto;
      object-fit: contain;
      opacity: 0.92;
    }
    .role-toggle-title {
      margin: 0;
      font-size: 1rem;
      font-weight: 700;
      color: var(--color-text);
    }
    .role-helper {
      margin: 0.35rem 0 0;
      color: var(--color-text-muted);
      font-size: 0.95rem;
      line-height: 1.6;
    }
    .switch-usertype {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      border-radius: 999px;
      border: 1px solid rgba(29, 69, 141, 0.14);
      background: rgba(29, 69, 141, 0.05);
      padding: 0.35rem;
      overflow: hidden;
      margin-bottom: 1rem;
    }
    .switch-usertype input[type="radio"] {
      position: absolute;
      opacity: 0;
      pointer-events: none;
    }
    .switch-usertype label {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 0.9rem 1rem;
      font-weight: 700;
      border-radius: 999px;
      cursor: pointer;
      transition: color 180ms ease;
    }
    .switch-usertype .toggle-outside {
      position: absolute;
      inset: 0.35rem;
      width: calc(50% - 0.35rem);
      border-radius: 999px;
      background: #ffffff;
      box-shadow: 0 10px 22px rgba(19,39,78,0.12);
      transition: transform 220ms ease;
    }
    .switch-usertype .toggle-inside { display: none; }
    #radio-a:checked ~ .toggle-outside { transform: translateX(0%); }
    #radio-b:checked ~ .toggle-outside { transform: translateX(100%); }
    #radio-a:checked + label { color: var(--color-primary); }
    #radio-b:checked + label + input + label { color: #b54d3e; }
    .role-summary {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.9rem;
    }
    .role-summary-card {
      border-radius: 20px;
      border: 1px solid rgba(29,69,141,0.10);
      background: rgba(255,255,255,0.84);
      padding: 1rem;
    }
    .role-summary-card h3 {
      margin: 0 0 0.35rem;
      font-size: 1rem;
      color: var(--color-text);
    }
    .role-summary-card p {
      margin: 0;
      color: var(--color-text-muted);
      font-size: 0.94rem;
      line-height: 1.6;
    }
    .consent-row {
      display: grid;
      gap: 0.7rem;
      padding: 1rem 1.1rem;
      border-radius: 20px;
      background: rgba(29,69,141,0.04);
      border: 1px solid rgba(29,69,141,0.08);
    }
    .consent-check {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      color: var(--color-text);
      font-size: 0.96rem;
    }
    .consent-check input {
      margin-top: 0.25rem;
      width: 18px;
      height: 18px;
      accent-color: var(--color-primary);
    }
    .consent-links {
      display: flex;
      flex-wrap: wrap;
      gap: 0.65rem;
      align-items: center;
      color: var(--color-text-muted);
      font-size: 0.92rem;
    }
    .consent-links .mini-link {
      border: none;
      background: transparent;
      padding: 0;
      font-weight: 700;
      color: var(--color-primary);
      text-decoration: underline;
      text-underline-offset: 0.18em;
    }
    .role-info-bottom {
      box-shadow: var(--shadow-sm);
      padding: clamp(1.5rem, 3vw, 2.25rem);
    }
    .role-info-bottom .info-hub {
      margin-top: 0;
      padding-top: 0;
      border-top: none;
    }
    @media (max-width: 900px) {
      .role-hero-grid { grid-template-columns: 1fr; }
      .role-hero-copy h1 { max-width: 14ch; }
    }
    @media (max-width: 720px) {
      .role-summary { grid-template-columns: 1fr; }
      .role-toggle-top { align-items: flex-start; flex-direction: column; }
      .role-toggle-top img { width: 96px; }
    }
    @media (max-width: 640px) {
      .role-hero,
      .role-card,
      .role-info-bottom { border-radius: 22px; }
      .role-toggle-shell { padding: 1.1rem; border-radius: 24px; }
    }
    .btn-enable:disabled {
      background-color: darkgrey;
      color: gray;
    }
    .bl_line {
      width: auto;
      height: 3px;
      margin-top: 0;
      content: "";
      background: linear-gradient(to right, var(--primary, #01408e), var(--tertiary, #CB5041));
    }