    #karriere .career-section{
      display:flex;
      flex-direction:column;
      gap:40px;
    }
    #karriere .career-section > div + .jobs-board{
      border-top:1px solid rgba(15,23,42,0.08);
      padding-top:32px;
      margin-top:8px;
    }
    #karriere .benefits-grid{
      display:grid;
      grid-template-columns:repeat(3, minmax(0, 1fr));
      gap:20px;
    }
    #karriere .benefit-card{
      background:#fff;
      border:1px solid rgba(15,23,42,0.08);
      border-radius:6px;
      padding:22px;
      display:flex;
      flex-direction:column;
      gap:10px;
      transition:transform .2s ease, box-shadow .2s ease;
      box-shadow:0 20px 48px -36px rgba(15,23,42,0.4);
    }
    #karriere .benefit-card:hover{
      transform:translateY(-4px);
      box-shadow:0 38px 70px -40px rgba(59,130,246,0.45);
    }
    #karriere .benefit-card__icon{
      font-size:26px;
    }
    #karriere .benefit-card h3{
      margin:0;
      font-size:18px;
      font-weight:800;
      color:#0f172a;
    }
    #karriere .benefit-card p{
      margin:0;
      color:#475569;
      line-height:1.6;
    }
    #karriere .jobs-board{
      display:flex;
      flex-direction:column;
      gap:18px;
    }
    #karriere .job-card{
      border:1px solid rgba(15,23,42,0.1);
      border-radius:6px;
      padding:18px 20px;
      display:flex;
      flex-direction:column;
      gap:8px;
      background:#ffffff;
      transition:border-color .2s ease, box-shadow .2s ease;
    }
    #karriere .job-card:hover{
      border-color:rgba(59,130,246,0.45);
      box-shadow:0 22px 52px -36px rgba(59,130,246,0.45);
    }
    #karriere .job-card__meta{
      font-size:13px;
      text-transform:uppercase;
      letter-spacing:.2em;
      color:#475569;
      font-weight:700;
      font-size:16px;
      line-height:1.2;
      font-family:inherit;
    }
    #karriere .job-card h4{
      margin:0;
      font-size:20px;
      font-weight:800;
      color:#0f172a;
    }
    #karriere .job-card p{
      margin:0;
      color:#475569;
    }
    #karriere .job-card__actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
    }
    #karriere .job-card__actions a{
      display:inline-flex;
      align-items:center;
      gap:8px;
      border-radius:6px;
      padding:10px 16px;
      font-weight:700;
      text-decoration:none;
      transition:transform .2s ease, box-shadow .2s ease;
    }
    #karriere .job-card__actions a.primary{
      background:linear-gradient(140deg,#6366f1,#3b82f6);
      color:#fff;
      box-shadow:0 16px 36px -28px rgba(99,102,241,0.6);
    }
    #karriere .job-card__actions a.secondary{
      border:1px solid rgba(99,102,241,0.45);
      color:#312e81;
      background:#eef2ff;
    }
    #karriere .job-card__actions a:hover{
      transform:translateY(-2px);
    }
    #karriere .job-apply{
      display:flex;
      flex-direction:column;
      gap:12px;
      min-width:220px;
    }
    #karriere .job-apply__controls{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
    }
    #karriere .job-apply__controls .job-apply__button,
    #karriere .job-apply__form .job-apply__submit{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border-radius:6px;
      height:38px;
      min-height:38px;
      padding:0 20px;
      font-weight:700;
      font-size:16px;
      line-height:1.2;
      font-family:inherit;
      border:0;
      cursor:pointer;
      background:linear-gradient(135deg,#ff6a00 0%,#ffa200 100%);
      color:#fff;
      box-shadow:0 18px 30px -22px rgba(255,106,0,0.55);
      flex:0 0 auto;
      text-align:center;
      text-decoration:none;
      transition:transform .12s ease, filter .12s ease, box-shadow .2s ease;
    }
    #karriere .job-apply__controls .job-apply__button:hover,
    #karriere .job-apply__form .job-apply__submit:hover{
      filter:brightness(1.05);
      transform:translateY(-1px);
      box-shadow:0 22px 42px -24px rgba(255,106,0,0.55);
    }
    #karriere .job-apply__controls .job-apply__button[disabled],
    #karriere .job-apply__form .job-apply__submit[disabled]{
      opacity:.7;
      cursor:not-allowed;
      filter:saturate(.7);
    }
    #karriere .job-apply__modal{
      position:fixed;
      inset:0;
      display:flex;
      align-items:center;
      justify-content:center;
      padding:32px 16px;
      z-index:120;
      overflow-y:auto;
    }
    #karriere .job-apply__backdrop{
      position:absolute;
      inset:0;
      background:rgba(15,23,42,0.45);
      backdrop-filter:blur(2px);
      border:0;
      cursor:pointer;
      width:100%;
      height:100%;
      padding:0;
    }
    #karriere .job-apply__dialog{
      position:relative;
      z-index:1;
      width:100%;
      max-width:560px;
      background:#ffffff;
      border-radius:6px;
      box-shadow:0 28px 68px -28px rgba(15,23,42,0.36);
      overflow:hidden;
      display:flex;
      flex-direction:column;
      max-height:calc(100vh - 80px);
    }
    #karriere .job-apply__dialog-head{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      padding:24px 28px 12px;
    }
    #karriere .job-apply__dialog-head h3{
      margin:0;
      font-size:22px;
      font-weight:800;
      color:#0f172a;
    }
    #karriere .job-apply__close{
      border:0;
      background:transparent;
      font-size:28px;
      line-height:1;
      color:#0f172a;
      cursor:pointer;
      padding:4px;
    }
    #karriere .job-apply__close:hover{
      color:#334155;
    }
    #karriere .job-apply__close:focus-visible{
      outline:2px solid #6366f1;
      outline-offset:2px;
      border-radius:6px;
    }
    #karriere .job-apply__form{
      border:0;
      border-radius:0;
      padding:0 28px 28px;
      background:#ffffff;
      display:grid;
      gap:14px;
      box-shadow:none;
      overflow:auto;
      flex:1 1 auto;
    }
    #karriere .job-apply__form-meta{
      margin:0;
      font-size:13px;
      color:#475569;
      line-height:1.4;
    }
    #karriere .job-apply__honeypot{
      position:absolute;
      width:1px;
      height:1px;
      overflow:hidden;
      clip:rect(0 0 0 0);
      clip-path:inset(50%);
      white-space:nowrap;
      opacity:0;
      pointer-events:none;
    }
    #karriere .job-apply__form label{
      display:grid;
      gap:6px;
      font-size:13px;
      font-weight:700;
      color:#0f172a;
    }
    #karriere .job-apply__form input,
    #karriere .job-apply__form textarea{
      width:100%;
      border:1px solid rgba(148,163,184,0.6);
      border-radius:6px;
      padding:10px 12px;
      font:inherit;
      color:#0f172a;
      transition:border-color .2s ease, box-shadow .2s ease;
      background:#fff;
    }
    #karriere .job-apply__form input:focus,
    #karriere .job-apply__form textarea:focus{
      border-color:#6366f1;
      box-shadow:0 0 0 3px rgba(99,102,241,0.2);
      outline:none;
    }
    #karriere .job-apply__form textarea{
      min-height:90px;
      resize:vertical;
    }
    #karriere .job-apply__dialog-actions{
      display:flex;
      justify-content:flex-end;
      margin-top:20px;
    }
    #karriere .job-apply__success{
      background:#f0fdf4;
      border:1px solid rgba(34,197,94,0.35);
      color:#166534;
      border-radius:6px;
      padding:12px 14px;
      font-size:14px;
      font-weight:600;
    }
    #karriere .job-apply__error{
      font-size:12px;
      color:#b91c1c;
      font-weight:600;
    }
    #karriere .career-contact{
      background:linear-gradient(180deg,#f8f9ff 0%,#ffffff 100%);
      border:1px solid rgba(15,23,42,0.1);
      border-radius:6px;
      padding:20px 22px;
      display:grid;
      gap:14px;
      box-shadow:0 18px 40px -32px rgba(15,23,42,0.18);
      text-align:center;
      justify-items:center;
    }
    #karriere .career-contact__head{
      display:flex;
      flex-direction:column;
      align-items:center;
      gap:12px;
    }
    #karriere .career-contact__avatar{
      display:grid;
      place-items:center;
      width:44px;
      height:44px;
      border-radius:6px;
      background:#eef2ff;
      color:#312e81;
      font-size:22px;
    }
    #karriere .career-contact__head strong{
      display:block;
      font-size:16px;
      font-weight:800;
      color:#0f172a;
    }
    #karriere .career-contact__head span{
      font-size:13px;
      color:#475569;
    }
    #karriere .career-contact p{
      margin:0;
      color:#334155;
      font-size:14px;
      line-height:1.6;
    }
    #karriere .career-contact__list{
      margin:0;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
      justify-items:center;
    }
    #karriere .career-contact__list li{
      display:flex;
      align-items:center;
      gap:10px;
      justify-content:center;
      font-size:14px;
      color:#0f172a;
    }
    #karriere .career-contact__list a{
      color:#0f172a;
      font-weight:600;
      text-decoration:none;
    }
    #karriere .career-contact__list a:hover{
      text-decoration:underline;
    }
    #karriere .career-contact__actions{
      margin-top:16px;
      display:grid;
      gap:10px;
    }
    #karriere .career-contact__actions .btn-gradient{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      text-align:center;
    }
    #karriere .aside-title{
      margin:0 0 10px;
      font-size:18px;
      font-weight:900;
      color:#0f172a;
      text-align:center;
    }
    @media (max-width:720px){
      #karriere .career-section{
        gap:28px;
      }
      #karriere .career-section > div{
        padding:0;
      }
      #karriere .benefits-grid{
        grid-template-columns:1fr;
        gap:16px;
      }
      #karriere .benefit-card{
        padding:20px 18px;
        border-radius:6px;
        gap:16px;
        justify-items:stretch;
      }
      #karriere .job-card{
        padding:16px;
      }
      #karriere .job-card__actions{
        flex-direction:column;
        align-items:flex-start;
      }
      #karriere .job-card__actions a,
      #karriere .job-apply__button{
        width:100%;
        justify-content:center;
        text-align:center;
      }
      #karriere .job-apply__modal{
        position:static;
        display:block;
        padding:0;
        z-index:auto;
        overflow:visible;
        background:transparent;
      }
      #karriere .job-apply__backdrop{
        display:none;
      }
      #karriere .job-apply__dialog{
        max-width:none;
        border-radius:6px;
        max-height:none;
        border:1px solid rgba(15,23,42,0.12);
        box-shadow:0 14px 32px -28px rgba(15,23,42,0.24);
      }
      #karriere .job-apply__dialog-head{
        padding:16px 16px 0;
      }
      #karriere .job-apply__close{
        display:none;
      }
      #karriere .job-apply__form{
        padding:16px;
        border:0;
        border-radius:6px;
        background:#f9faff;
        box-shadow:none;
      }
      #karriere .job-apply__dialog-actions{
        justify-content:flex-start;
        margin-top:16px;
      }
      #karriere .job-apply__dialog-actions .job-apply__submit{
        width:auto;
      }
      #karriere .career-contact{
        padding:18px 16px;
      }
    }
  
