:root {
    --psb-navy: #082d4a;
    --psb-navy-deep: #06243b;
    --psb-blue: #1774b9;
    --psb-blue-bright: #2b8bd1;
    --psb-sky: #eaf4fb;
    --psb-soft: #f4f8fb;
    --psb-white: #ffffff;
    --psb-text: #1b3245;
    --psb-muted: #617488;
    --psb-border: #dce7ef;
    --psb-green: #68b988;
    --psb-shadow: 0 22px 55px rgba(5, 42, 70, .10);
    --psb-shadow-soft: 0 14px 36px rgba(5, 42, 70, .08);
    --psb-radius: 22px;
    --psb-radius-sm: 13px;
    --psb-wrap: 1500px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.psb-corporate-theme {
    margin: 0;
    color: var(--psb-text);
    background: #fff;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
body.psb-menu-open { overflow: hidden; }
.psb-page-shell { min-height: 100vh; background: #fff; }
.psb-wrap { width: min(calc(100% - 56px), var(--psb-wrap)); margin-inline: auto; }
.psb-skip-link { position: fixed; left: 16px; top: -100px; z-index: 99999; background: #fff; color: var(--psb-navy); padding: 10px 14px; border-radius: 8px; box-shadow: var(--psb-shadow-soft); }
.psb-skip-link:focus { top: 16px; }

/* Header, bewusst näher an der Akademie-Seite */
.psb-topbar { background: var(--psb-navy-deep); color: #fff; font-size: 13px; }
.psb-topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.psb-topbar-left, .psb-topbar-right { display: flex; align-items: center; gap: 20px; }
.psb-topbar a { color: rgba(255,255,255,.90); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.psb-topbar a:hover { color: #fff; }
.psb-top-icon { opacity: .8; font-size: 12px; }
.psb-topbar-right a { font-size: 12px; opacity: .78; }

.psb-site-header {
    position: sticky;
    top: 0;
    z-index: 9990;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid rgba(8,45,74,.08);
    transition: box-shadow .2s ease, min-height .2s ease;
    backdrop-filter: blur(12px);
}
.admin-bar .psb-site-header { top: 32px; }
.psb-site-header.is-scrolled { box-shadow: 0 12px 34px rgba(5,42,70,.09); }
.psb-header-inner { min-height: 88px; display: grid; grid-template-columns: 245px minmax(0,1fr) auto; align-items: center; gap: 24px; }
.psb-brand { min-width: 0; }
.psb-brand .custom-logo-link, .psb-logo-fallback { display: inline-flex; align-items: center; text-decoration: none; }
.psb-brand .custom-logo, .psb-logo-fallback img { width: auto; height: auto; max-height: 74px; max-width: 215px; object-fit: contain; }
.psb-navigation { justify-self: end; min-width: 0; }
.psb-menu { list-style: none; display: flex; align-items: center; justify-content: flex-end; gap: 0; margin: 0; padding: 0; }
.psb-menu > li { position: relative; margin: 0; padding: 0; }
.psb-menu > li > a { color: #17364e; text-decoration: none; display: flex; align-items: center; min-height: 54px; padding: 0 10px; font-size: 15px; font-weight: 700; line-height: 1.2; white-space: nowrap; border-radius: 9px; transition: color .18s ease, background .18s ease; }
.psb-menu > li > a:hover, .psb-menu > li.current-menu-item > a, .psb-menu > li.current-menu-ancestor > a { color: var(--psb-blue); background: rgba(23,116,185,.07); }
.psb-menu .sub-menu { position: absolute; left: 0; top: calc(100% - 3px); width: 275px; list-style: none; margin: 0; padding: 9px; background: #fff; border: 1px solid var(--psb-border); border-radius: 14px; box-shadow: var(--psb-shadow); opacity: 0; visibility: hidden; transform: translateY(7px); transition: .18s ease; }
.psb-menu li:hover > .sub-menu, .psb-menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.psb-menu .sub-menu a { display: block; color: var(--psb-text); padding: 10px 11px; text-decoration: none; border-radius: 8px; font-weight: 650; font-size: 14px; line-height: 1.35; }
.psb-menu .sub-menu a:hover { color: var(--psb-blue); background: var(--psb-soft); }
.psb-menu .sub-menu .sub-menu { left: calc(100% - 6px); top: 0; }
.psb-header-cta { margin-left: 2px; }
.psb-menu-toggle { display: none; width: 46px; height: 46px; padding: 7px; border: 0; background: transparent; border-radius: 9px; }
.psb-menu-toggle span:not(.screen-reader-text) { display: block; height: 2px; margin: 6px 2px; background: var(--psb-navy); }

/* Grundtypografie */
body.psb-corporate-theme h1,
body.psb-corporate-theme h2,
body.psb-corporate-theme h3,
body.psb-corporate-theme h4,
body.psb-corporate-theme h5,
body.psb-corporate-theme h6 {
    color: var(--psb-navy);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.025em;
    padding: 0;
    margin-top: 0;
}
body.psb-corporate-theme h1 { font-size: clamp(43px, 4.3vw, 72px); }
body.psb-corporate-theme h2 { font-size: clamp(32px, 3.1vw, 50px); }
body.psb-corporate-theme h3 { font-size: clamp(22px, 2vw, 29px); }
body.psb-corporate-theme p { margin-top: 0; }
.psb-section { padding: clamp(78px, 7vw, 116px) 0; }
.psb-section-soft { background: var(--psb-soft); }
.psb-section-dark { color: #fff; background: linear-gradient(125deg, var(--psb-navy-deep), var(--psb-navy) 68%, #135986); }
.psb-kicker { display: inline-block; margin: 0 0 13px; color: var(--psb-blue); font-size: 13px; font-weight: 850; text-transform: uppercase; letter-spacing: .115em; }
.psb-section-heading { max-width: 850px; margin-bottom: 40px; }
.psb-section-heading h2 { margin-bottom: 15px; }
.psb-section-heading p { max-width: 760px; margin: 0; color: var(--psb-muted); font-size: 18px; }
.psb-section-heading-centered { margin-inline: auto; text-align: center; }
.psb-section-heading-centered p { margin-inline: auto; }
.psb-section-heading-light h2, .psb-section-heading-light p { color: #fff; }
.psb-section-heading-light p { opacity: .76; }
.psb-section-heading-light .psb-kicker { color: #9dd0f1; }
.psb-heading-with-link { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 30px; }

/* Buttons */
.psb-btn,
.psb-header-cta,
body.psb-corporate-theme .et_pb_button,
body.psb-corporate-theme .wp-element-button,
body.psb-corporate-theme input[type="submit"],
body.psb-corporate-theme button[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 22px !important;
    border: 0 !important;
    border-radius: 9px !important;
    background: var(--psb-blue) !important;
    color: #fff !important;
    font-size: 15px !important;
    line-height: 1.15 !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    box-shadow: 0 8px 20px rgba(23,116,185,.18);
    transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.psb-btn:hover, .psb-header-cta:hover, body.psb-corporate-theme .et_pb_button:hover, body.psb-corporate-theme input[type="submit"]:hover, body.psb-corporate-theme button[type="submit"]:hover { transform: translateY(-1px); background: var(--psb-navy) !important; box-shadow: 0 12px 24px rgba(8,45,74,.19); }
body.psb-corporate-theme .et_pb_button:after { display: none !important; }
.psb-btn-outline { background: transparent !important; color: #fff !important; box-shadow: inset 0 0 0 1px rgba(255,255,255,.5); }
.psb-btn-outline:hover { background: rgba(255,255,255,.10) !important; }
.psb-btn-light { background: #fff !important; color: var(--psb-navy) !important; box-shadow: none; }
.psb-btn-light:hover { background: #eef6fb !important; color: var(--psb-navy) !important; }
.psb-btn-dark { background: var(--psb-navy) !important; }
.psb-action-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.psb-card-link, .psb-text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--psb-blue); font-weight: 800; text-decoration: none; }
.psb-card-link span, .psb-text-link span { transition: transform .18s ease; }
.psb-card-link:hover span, .psb-text-link:hover span { transform: translateX(3px); }

/* Homepage Hero */
.psb-home-hero { position: relative; overflow: hidden; color: #fff; background: linear-gradient(119deg, var(--psb-navy-deep) 0%, var(--psb-navy) 56%, #145b89 100%); }
.psb-home-hero:before { content: ""; position: absolute; width: 660px; height: 660px; border-radius: 50%; top: -360px; right: -170px; background: rgba(255,255,255,.055); }
.psb-home-hero:after { content: ""; position: absolute; width: 440px; height: 440px; border-radius: 50%; bottom: -300px; left: 37%; background: rgba(62,162,220,.08); }
.psb-home-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(480px, .98fr); align-items: center; gap: clamp(44px, 6vw, 94px); min-height: 640px; padding-top: clamp(68px, 8vw, 110px); padding-bottom: clamp(76px, 8vw, 122px); }
.psb-home-hero-copy { max-width: 790px; }
.psb-home-hero .psb-kicker { color: #9dd1f2; }
.psb-home-hero h1 { color: #fff; margin-bottom: 22px; max-width: 800px; }
.psb-home-lead { max-width: 710px; margin-bottom: 30px; color: rgba(255,255,255,.82); font-size: clamp(18px,1.4vw,21px); line-height: 1.65; }
.psb-hero-trust { display: flex; flex-wrap: wrap; gap: 11px 22px; margin-top: 29px; color: rgba(255,255,255,.82); font-size: 14px; font-weight: 650; }
.psb-hero-trust span { display: inline-flex; gap: 8px; align-items: center; }
.psb-hero-trust i { display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: rgba(111,202,150,.18); color: #9fe5b9; font-style: normal; font-size: 12px; }
.psb-home-hero-visual { position: relative; min-height: 480px; }
.psb-home-hero-image { position: absolute; inset: 0 0 28px 58px; border-radius: 28px; background-position: center; background-size: cover; box-shadow: 0 28px 60px rgba(0,0,0,.20); overflow: hidden; }
.psb-home-hero-image:after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,45,74,.05), rgba(8,45,74,.20)); }
.psb-floating-card { position: absolute; z-index: 2; border: 1px solid rgba(255,255,255,.75); background: rgba(255,255,255,.96); color: var(--psb-navy); box-shadow: 0 18px 42px rgba(0,0,0,.18); backdrop-filter: blur(10px); }
.psb-floating-card-main { left: 0; bottom: 0; width: 300px; padding: 23px 24px; border-radius: 18px; }
.psb-floating-card-main span { display: block; margin-bottom: 3px; color: var(--psb-blue); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; font-weight: 850; }
.psb-floating-card-main strong { display: block; font-size: 21px; line-height: 1.15; }
.psb-floating-card-main small { display: block; margin-top: 9px; color: var(--psb-muted); font-size: 12px; }
.psb-floating-card-mini { right: -15px; top: 34px; display: flex; flex-direction: column; align-items: center; justify-content: center; width: 118px; height: 118px; border-radius: 20px; }
.psb-floating-card-mini strong { color: var(--psb-blue); font-size: 35px; line-height: 1; }
.psb-floating-card-mini span { margin-top: 5px; color: var(--psb-muted); font-size: 12px; font-weight: 750; }

/* Leistungen */
.psb-service-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.psb-service-card { position: relative; min-height: 340px; padding: 34px; border: 1px solid var(--psb-border); border-radius: var(--psb-radius); background: #fff; box-shadow: var(--psb-shadow-soft); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.psb-service-card:hover { transform: translateY(-4px); box-shadow: var(--psb-shadow); border-color: #c8deed; }
.psb-service-card-featured { background: linear-gradient(150deg, #f7fbfe, #edf6fc); border-color: #cbe2f2; }
.psb-service-icon { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 34px; border-radius: 14px; background: var(--psb-sky); color: var(--psb-blue); font-size: 15px; font-weight: 900; }
.psb-service-label { display: block; margin-bottom: 8px; color: var(--psb-muted); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.psb-service-card h3 { margin-bottom: 14px; }
.psb-service-card p { min-height: 86px; color: var(--psb-muted); }

/* Company feature */
.psb-feature-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(440px,.86fr); align-items: center; gap: clamp(50px, 7vw, 110px); }
.psb-feature-copy h2 { max-width: 760px; margin-bottom: 22px; }
.psb-feature-copy p { max-width: 800px; color: var(--psb-muted); font-size: 18px; }
.psb-feature-copy .psb-btn { margin-top: 10px; }
.psb-benefit-panel { padding: 38px; border-radius: 24px; background: var(--psb-navy); color: #fff; box-shadow: 0 25px 54px rgba(8,45,74,.20); }
.psb-panel-eyebrow { display: block; margin-bottom: 24px; color: #a5d4f1; font-size: 13px; font-weight: 850; text-transform: uppercase; letter-spacing: .1em; }
.psb-check-list { list-style: none; margin: 0; padding: 0; }
.psb-check-list li { display: grid; grid-template-columns: 30px 1fr; gap: 14px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.11); }
.psb-check-list li > span { display: grid; place-items: center; width: 25px; height: 25px; margin-top: 2px; border-radius: 50%; background: rgba(104,185,136,.18); color: #9fe0b6; font-weight: 900; }
.psb-check-list strong, .psb-check-list small { display: block; }
.psb-check-list strong { color: #fff; font-size: 16px; }
.psb-check-list small { margin-top: 3px; color: rgba(255,255,255,.65); font-size: 13px; line-height: 1.5; }
.psb-panel-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; padding-top: 23px; }
.psb-panel-contact span { color: rgba(255,255,255,.55); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.psb-panel-contact a { color: #fff; text-decoration: none; font-weight: 750; }

/* Values */
.psb-values-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; }
.psb-values-grid article { position: relative; min-height: 225px; padding: 30px; border-radius: 20px; background: #fff; border: 1px solid var(--psb-border); overflow: hidden; }
.psb-values-grid article:after { content: ""; position: absolute; width: 100px; height: 100px; right: -44px; bottom: -44px; border-radius: 50%; background: var(--psb-sky); }
.psb-values-grid article > span { display: inline-block; margin-bottom: 33px; color: var(--psb-blue); font-size: 13px; font-weight: 900; }
.psb-values-grid h3 { margin-bottom: 10px; font-size: 22px; }
.psb-values-grid p { color: var(--psb-muted); }

/* Process */
.psb-process-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; }
.psb-process-grid article { position: relative; padding: 30px 28px; border-radius: 19px; background: rgba(255,255,255,.075); border: 1px solid rgba(255,255,255,.12); }
.psb-process-grid article > span { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 26px; border-radius: 12px; background: #fff; color: var(--psb-navy); font-weight: 900; }
.psb-process-grid h3 { color: #fff; margin-bottom: 11px; font-size: 22px; }
.psb-process-grid p { margin: 0; color: rgba(255,255,255,.68); font-size: 15px; }

/* Award */
.psb-award-grid { display: grid; grid-template-columns: .7fr 1.3fr; align-items: center; gap: clamp(50px, 8vw, 120px); }
.psb-award-image-wrap { display: flex; justify-content: center; }
.psb-award-image-card { position: relative; display: grid; place-items: center; width: min(100%, 390px); min-height: 310px; padding: 38px; background: var(--psb-soft); border-radius: 28px; }
.psb-award-image-card:before { content: ""; position: absolute; inset: 22px; border-radius: 20px; border: 1px solid var(--psb-border); }
.psb-award-image-card img { position: relative; z-index: 1; width: min(100%,300px); height: auto; }
.psb-award-copy h2 { margin-bottom: 19px; }
.psb-award-copy p { max-width: 760px; color: var(--psb-muted); font-size: 18px; }
.psb-inline-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 26px 0; }
.psb-inline-tags span { padding: 8px 12px; border-radius: 999px; background: var(--psb-sky); color: var(--psb-navy); font-size: 12px; font-weight: 800; }

/* Zielgruppen */
.psb-dual-cta-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 22px; }
.psb-audience-card { min-height: 360px; padding: clamp(34px,4vw,56px); border-radius: 25px; overflow: hidden; position: relative; }
.psb-audience-card:after { content: ""; position: absolute; width: 260px; height: 260px; right: -100px; bottom: -130px; border-radius: 50%; background: rgba(255,255,255,.09); }
.psb-audience-card h2 { margin-bottom: 16px; }
.psb-audience-card p { max-width: 590px; margin-bottom: 28px; font-size: 18px; }
.psb-audience-employer { background: #fff; border: 1px solid var(--psb-border); box-shadow: var(--psb-shadow-soft); }
.psb-audience-employer p { color: var(--psb-muted); }
.psb-audience-job { background: linear-gradient(135deg, var(--psb-blue), #135985); color: #fff; }
.psb-audience-job h2, .psb-audience-job .psb-kicker { color: #fff; }
.psb-audience-job .psb-kicker { opacity: .75; }
.psb-audience-job p { color: rgba(255,255,255,.78); }

/* Blog */
.psb-blog-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.psb-blog-card { overflow: hidden; border-radius: 20px; background: #fff; border: 1px solid var(--psb-border); box-shadow: var(--psb-shadow-soft); }
.psb-blog-image { display: block; height: 220px; overflow: hidden; background: var(--psb-sky); }
.psb-blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .28s ease; }
.psb-blog-card:hover .psb-blog-image img { transform: scale(1.025); }
.psb-image-placeholder { display: grid; place-items: center; width: 100%; height: 100%; background: linear-gradient(135deg, var(--psb-navy), var(--psb-blue)); }
.psb-image-placeholder span { color: #fff; font-size: 34px; font-weight: 900; letter-spacing: .04em; }
.psb-blog-card-content { padding: 27px; }
.psb-blog-meta { margin-bottom: 10px; color: var(--psb-blue); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.psb-blog-card h2, .psb-blog-card h3 { margin-bottom: 12px; font-size: 23px; line-height: 1.18; }
.psb-blog-card h2 a, .psb-blog-card h3 a { color: var(--psb-navy); text-decoration: none; }
.psb-blog-card p { color: var(--psb-muted); font-size: 15px; line-height: 1.6; }
.psb-pagination { margin-top: 40px; }

/* Contact band */
.psb-contact-band { padding-top: 40px; }
.psb-contact-band-inner { display: grid; grid-template-columns: minmax(0,1fr) minmax(520px,.9fr); gap: 50px; align-items: center; padding: clamp(38px,4vw,58px); border-radius: 26px; background: var(--psb-soft); border: 1px solid var(--psb-border); }
.psb-contact-band h2 { margin-bottom: 12px; }
.psb-contact-band p { max-width: 680px; color: var(--psb-muted); margin: 0; }
.psb-contact-band-actions { display: flex; align-items: stretch; justify-content: flex-end; gap: 10px; flex-wrap: wrap; }
.psb-contact-chip { display: flex; flex-direction: column; justify-content: center; min-height: 66px; padding: 10px 16px; border: 1px solid var(--psb-border); border-radius: 10px; background: #fff; text-decoration: none; }
.psb-contact-chip span { color: var(--psb-muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.psb-contact-chip strong { color: var(--psb-navy); font-size: 14px; }

/* Inner page hero */
.psb-page-hero { position: relative; overflow: hidden; color: #fff; background: linear-gradient(120deg, var(--psb-navy-deep), var(--psb-navy) 63%, #145d8d); }
.psb-page-hero:after { content: ""; position: absolute; width: 420px; height: 420px; right: -150px; top: -230px; border-radius: 50%; background: rgba(255,255,255,.055); }
.psb-page-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 180px; align-items: center; gap: 45px; padding-top: clamp(70px,7vw,105px); padding-bottom: clamp(70px,7vw,105px); }
.psb-page-hero .psb-kicker { color: #9ed2f3; }
.psb-page-hero h1 { color: #fff; margin-bottom: 17px; max-width: 1000px; }
.psb-page-hero p { max-width: 720px; margin-bottom: 26px; color: rgba(255,255,255,.77); font-size: 18px; }
.psb-page-hero-mark { display: grid; place-items: center; align-content: center; width: 164px; height: 164px; border-radius: 30px; background: rgba(255,255,255,.075); border: 1px solid rgba(255,255,255,.12); }
.psb-page-hero-mark span { color: #fff; font-size: 45px; line-height: 1; font-weight: 900; }
.psb-page-hero-mark small { margin-top: 7px; color: #9ed2f3; font-weight: 750; }
.psb-content-section { padding: clamp(70px,7vw,105px) 0; }
.psb-page-content { max-width: 1220px; margin-inline: auto; }

/* Alte Divi-Seiten vollständig in die neue Designsprache zwingen */
.psb-modernized-page-content .et-l,
.psb-modernized-page-content .et_builder_inner_content,
.psb-modernized-page-content .et_pb_section,
.psb-modernized-page-content .et_pb_row,
.psb-modernized-page-content .et_pb_column { background: transparent !important; }
.psb-modernized-page-content .et_pb_section { padding: 0 !important; margin: 0 0 28px !important; }
.psb-modernized-page-content .et_pb_row { width: 100% !important; max-width: none !important; padding: 0 !important; margin: 0 auto 28px !important; }
.psb-modernized-page-content h1 { display: none !important; }
.psb-modernized-page-content .et_pb_column { margin-bottom: 0 !important; }
.psb-modernized-page-content .et_pb_text,
.psb-modernized-page-content .et_pb_blurb,
.psb-modernized-page-content .et_pb_code,
.psb-modernized-page-content .et_pb_contact_form_container,
.psb-modernized-page-content .wpforms-container,
.psb-modernized-page-content .et_pb_map_container {
    border: 1px solid var(--psb-border);
    border-radius: 20px;
    background: #fff !important;
    padding: clamp(25px,3vw,40px) !important;
    box-shadow: var(--psb-shadow-soft);
}
.psb-modernized-page-content .et_pb_text + .et_pb_text { margin-top: 18px; }
.psb-modernized-page-content .et_pb_image img { border-radius: 20px; }
.psb-modernized-page-content h2 { margin-top: 0; margin-bottom: 18px; }
.psb-modernized-page-content h3, .psb-modernized-page-content h4 { margin-top: 22px; margin-bottom: 10px; }
.psb-modernized-page-content p, .psb-modernized-page-content li { color: var(--psb-text); }
.psb-modernized-page-content ul { padding-left: 20px; }
.psb-modernized-page-content .et_pb_blurb_content { max-width: none; }
.psb-modernized-page-content .et_pb_blurb .et_pb_main_blurb_image { margin-bottom: 16px; }
.psb-modernized-page-content input:not([type="submit"]),
.psb-modernized-page-content textarea,
.psb-modernized-page-content select,
body.psb-corporate-theme input:not([type="submit"]),
body.psb-corporate-theme textarea,
body.psb-corporate-theme select { width: 100%; min-height: 48px; padding: 11px 13px; border: 1px solid #cedce6; border-radius: 8px; background: #fff; color: var(--psb-text); font: inherit; }
body.psb-corporate-theme textarea { min-height: 140px; }

/* Blog + Einzelbeiträge */
.psb-post-hero { color: #fff; background: linear-gradient(120deg, var(--psb-navy-deep), var(--psb-navy), #145d8d); }
.psb-post-hero-inner { padding-top: clamp(70px,7vw,105px); padding-bottom: clamp(70px,7vw,105px); }
.psb-post-hero h1 { color: #fff; max-width: 1080px; }
.psb-post-meta { display: flex; gap: 15px; align-items: center; margin-bottom: 17px; color: #a8d6f2; font-size: 13px; font-weight: 750; }
.psb-post-meta a { color: inherit; text-decoration: none; }
.psb-post-layout { max-width: 1120px; }
.psb-post-card { padding: clamp(28px,4vw,52px); border-radius: 22px; background: #fff; border: 1px solid var(--psb-border); box-shadow: var(--psb-shadow-soft); }
.psb-post-image { margin: 0 0 35px; }
.psb-post-image img { width: 100%; height: auto; border-radius: 17px; }
.psb-article h2 { margin-top: 1.3em; margin-bottom: .55em; }
.psb-article h3 { margin-top: 1.2em; margin-bottom: .5em; }
.psb-article p, .psb-article li { color: #354b5d; }
.psb-article blockquote { margin: 2em 0; padding: 20px 24px; border-left: 4px solid var(--psb-blue); background: var(--psb-soft); border-radius: 0 12px 12px 0; }

/* Footer */
.psb-final-cta { position: relative; overflow: hidden; background: var(--psb-blue); color: #fff; }
.psb-final-cta:after { content: ""; position: absolute; width: 300px; height: 300px; right: -90px; top: -190px; border-radius: 50%; background: rgba(255,255,255,.10); }
.psb-final-cta-inner { position: relative; z-index: 1; min-height: 165px; display: flex; align-items: center; justify-content: space-between; gap: 35px; padding-top: 30px; padding-bottom: 30px; }
.psb-final-cta span { display: block; margin-bottom: 5px; color: rgba(255,255,255,.72); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
.psb-final-cta h2 { color: #fff; margin: 0; font-size: clamp(27px,2.3vw,38px); }
.psb-footer { background: var(--psb-navy-deep); color: rgba(255,255,255,.72); }
.psb-footer-grid { display: grid; grid-template-columns: 1.3fr .75fr .7fr .9fr; gap: clamp(34px,4vw,62px); padding-top: 70px; padding-bottom: 65px; }
.psb-footer-logo img, .psb-footer-logo .custom-logo { width: auto; max-width: 155px; max-height: 88px; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: .95; object-fit: contain; }
.psb-footer h2 { max-width: 390px; color: #fff; margin-bottom: 14px; font-size: 27px; }
.psb-footer h3 { color: #fff; margin-bottom: 19px; font-size: 16px; }
.psb-footer p { font-size: 14px; line-height: 1.7; }
.psb-footer-about p { max-width: 470px; }
.psb-footer a { color: rgba(255,255,255,.76); text-decoration: none; }
.psb-footer a:hover { color: #fff; }
.psb-footer-contact { display: flex; flex-direction: column; gap: 7px; }
.psb-footer-contact address { margin-top: 7px; font-style: normal; line-height: 1.65; }
.psb-footer-menu, .psb-legal-menu { list-style: none; margin: 0; padding: 0; }
.psb-footer-menu li { margin-bottom: 8px; }
.psb-footer-bottom { border-top: 1px solid rgba(255,255,255,.10); }
.psb-footer-bottom-inner { min-height: 64px; display: flex; justify-content: space-between; align-items: center; gap: 25px; font-size: 12px; }
.psb-legal-menu { display: flex; align-items: center; gap: 18px; }

/* Divi-Altlasten außerhalb von page.php ebenfalls entschärfen */
body.psb-corporate-theme #et-main-area,
body.psb-corporate-theme #main-content { background: #fff; }
body.psb-corporate-theme .et_pb_section { background-color: transparent; }
body.psb-corporate-theme .et_pb_row { max-width: var(--psb-wrap); }
body.psb-corporate-theme .et_pb_module { line-height: inherit; }
body.psb-corporate-theme .et_pb_toggle { border: 1px solid var(--psb-border); border-radius: 12px; background: #fff; }
body.psb-corporate-theme .et_pb_toggle_title { color: var(--psb-navy); font-weight: 800; }

@media (max-width: 1340px) {
    .psb-header-inner { grid-template-columns: 205px minmax(0,1fr) auto; gap: 14px; }
    .psb-brand .custom-logo, .psb-logo-fallback img { max-width: 180px; max-height: 66px; }
    .psb-menu > li > a { padding-inline: 7px; font-size: 14px; }
    .psb-header-cta { padding-inline: 15px !important; font-size: 14px !important; }
}

@media (max-width: 1180px) {
    .psb-topbar-right { display: none; }
    .psb-header-inner { grid-template-columns: 1fr auto auto; min-height: 78px; }
    .psb-menu-toggle { display: block; order: 2; }
    .psb-header-cta { order: 3; }
    .psb-navigation { position: fixed; inset: 116px 18px auto 18px; display: none; max-height: calc(100vh - 140px); overflow-y: auto; padding: 14px; border: 1px solid var(--psb-border); border-radius: 16px; background: #fff; box-shadow: var(--psb-shadow); }
    .admin-bar .psb-navigation { inset-top: 148px; }
    .psb-navigation.is-open { display: block; }
    .psb-menu { display: block; }
    .psb-menu > li > a { min-height: 46px; padding: 0 12px; font-size: 16px; }
    .psb-menu .sub-menu { position: static; display: block; width: auto; padding: 0 0 7px 18px; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
    .psb-home-hero-grid { grid-template-columns: 1fr 440px; gap: 46px; }
    .psb-home-hero-visual { min-height: 420px; }
    .psb-feature-grid { grid-template-columns: 1fr 420px; gap: 50px; }
    .psb-values-grid, .psb-process-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .psb-contact-band-inner { grid-template-columns: 1fr; }
    .psb-contact-band-actions { justify-content: flex-start; }
    .psb-footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
    .psb-footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 900px) {
    .psb-wrap { width: min(calc(100% - 36px), var(--psb-wrap)); }
    .psb-home-hero-grid { grid-template-columns: 1fr; min-height: auto; padding-top: 70px; }
    .psb-home-hero-copy { max-width: 780px; }
    .psb-home-hero-visual { min-height: 430px; max-width: 680px; width: 100%; }
    .psb-service-grid, .psb-blog-grid { grid-template-columns: 1fr 1fr; }
    .psb-service-grid .psb-service-card:last-child, .psb-blog-grid .psb-blog-card:last-child { grid-column: 1 / -1; }
    .psb-feature-grid, .psb-award-grid { grid-template-columns: 1fr; }
    .psb-benefit-panel { max-width: 720px; }
    .psb-award-grid { gap: 40px; }
    .psb-award-image-wrap { justify-content: flex-start; }
    .psb-dual-cta-grid { grid-template-columns: 1fr; }
    .psb-page-hero-grid { grid-template-columns: 1fr; }
    .psb-page-hero-mark { display: none; }
    .psb-footer-grid { grid-template-columns: 1fr 1fr; }
    .psb-footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 700px) {
    .psb-topbar-inner { min-height: 34px; }
    .psb-topbar-left { width: 100%; justify-content: space-between; gap: 8px; }
    .psb-topbar-left a { font-size: 11px; }
    .psb-header-inner { grid-template-columns: 1fr auto; gap: 8px; min-height: 72px; }
    .psb-brand .custom-logo, .psb-logo-fallback img { max-height: 58px; max-width: 160px; }
    .psb-header-cta { display: none; }
    .psb-navigation { inset: 106px 12px auto 12px; }
    .admin-bar .psb-site-header { top: 46px; }
    .admin-bar .psb-navigation { inset: 152px 12px auto 12px; }
    body.psb-corporate-theme h1 { font-size: clamp(38px,12vw,54px); }
    body.psb-corporate-theme h2 { font-size: clamp(29px,8.8vw,39px); }
    .psb-section { padding: 68px 0; }
    .psb-home-hero-grid { padding-top: 58px; padding-bottom: 76px; }
    .psb-home-lead { font-size: 18px; }
    .psb-home-hero-visual { min-height: 330px; }
    .psb-home-hero-image { inset: 0 0 20px 20px; border-radius: 20px; }
    .psb-floating-card-main { width: 235px; padding: 18px; }
    .psb-floating-card-main strong { font-size: 17px; }
    .psb-floating-card-mini { width: 92px; height: 92px; right: -5px; top: 20px; }
    .psb-floating-card-mini strong { font-size: 28px; }
    .psb-service-grid, .psb-values-grid, .psb-process-grid, .psb-blog-grid { grid-template-columns: 1fr; }
    .psb-service-grid .psb-service-card:last-child, .psb-blog-grid .psb-blog-card:last-child { grid-column: auto; }
    .psb-service-card { min-height: auto; }
    .psb-service-card p { min-height: 0; }
    .psb-feature-grid { gap: 36px; }
    .psb-benefit-panel { padding: 28px 22px; }
    .psb-award-image-card { min-height: 250px; }
    .psb-audience-card { min-height: auto; }
    .psb-heading-with-link { align-items: flex-start; flex-direction: column; gap: 12px; }
    .psb-contact-band-inner { padding: 28px 22px; }
    .psb-contact-band-actions { flex-direction: column; }
    .psb-contact-chip, .psb-contact-band-actions .psb-btn { width: 100%; }
    .psb-final-cta-inner { min-height: 190px; flex-direction: column; align-items: flex-start; justify-content: center; }
    .psb-footer-grid { grid-template-columns: 1fr; padding-top: 54px; }
    .psb-footer-bottom-inner { flex-direction: column; align-items: flex-start; justify-content: center; padding: 16px 0; }
    .psb-legal-menu { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *:before, *:after { transition: none !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* =========================================================
   Kontrast-Fix 1.1.1
   Helle Typografie auf dunklen Hero- und Inhaltsflächen.
   Die höhere Spezifität verhindert Überschreibungen durch
   globale Divi-/Theme-Regeln.
   ========================================================= */
body.psb-corporate-theme .psb-home-hero h1,
body.psb-corporate-theme .psb-page-hero h1,
body.psb-corporate-theme .psb-post-hero h1 {
    color: #f7fbff !important;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .18);
}

body.psb-corporate-theme .psb-home-hero .psb-kicker,
body.psb-corporate-theme .psb-page-hero .psb-kicker,
body.psb-corporate-theme .psb-section-dark .psb-kicker {
    color: #bfe3f8 !important;
}

body.psb-corporate-theme .psb-home-lead,
body.psb-corporate-theme .psb-page-hero p {
    color: rgba(255, 255, 255, .92) !important;
}

body.psb-corporate-theme .psb-section-dark h2,
body.psb-corporate-theme .psb-section-dark h3,
body.psb-corporate-theme .psb-section-dark h4,
body.psb-corporate-theme .psb-section-dark h5,
body.psb-corporate-theme .psb-section-dark h6 {
    color: #ffffff !important;
}

body.psb-corporate-theme .psb-section-dark p {
    color: rgba(255, 255, 255, .82);
}

body.psb-corporate-theme .psb-hero-trust {
    color: rgba(255, 255, 255, .92);
}

/* 1.1.2: Feinschliff Startseite und Footer */
.psb-feature-copy .psb-btn {
    margin-top: 24px;
}

/* Einheitliche Schriftgrößen im neuen PSB-Footer */
.psb-footer p,
.psb-footer a,
.psb-footer address,
.psb-footer li,
.psb-footer-contact,
.psb-footer-menu {
    font-size: 15px;
    line-height: 1.65;
}

.psb-footer h3 {
    font-size: 18px;
    line-height: 1.3;
}

.psb-footer-bottom-inner,
.psb-footer-bottom-inner a,
.psb-footer-bottom-inner li {
    font-size: 13px;
    line-height: 1.5;
}

/* Falls noch ein alter Divi-Theme-Builder-Footer aktiv ist, werden dort
   die uneinheitlichen Textgrößen ebenfalls vereinheitlicht. */
.et-l--footer .et_pb_text,
.et-l--footer .et_pb_text p,
.et-l--footer .et_pb_text a,
.et-l--footer .et_pb_text li,
.et-l--footer .et_pb_text address {
    font-size: 16px !important;
    line-height: 1.6 !important;
}

.et-l--footer .et_pb_text h2,
.et-l--footer .et_pb_text h3,
.et-l--footer .et_pb_text h4 {
    font-size: 20px !important;
    line-height: 1.3 !important;
}

#footer-bottom,
#footer-bottom p,
#footer-bottom a,
#footer-bottom li {
    font-size: 14px !important;
    line-height: 1.5 !important;
}

/* =========================================================
   1.1.3: Saubere Unterseiten Über PSB / Für Unternehmen
   ========================================================= */
.psb-inner-modern { background: #fff; }
.psb-inner-hero .psb-page-hero-grid { padding-top: clamp(66px, 6vw, 92px); padding-bottom: clamp(66px, 6vw, 92px); }
.psb-inner-hero h1 { margin-bottom: 18px; }
.psb-inner-hero p { max-width: 760px; }

.psb-inner-intro-section { padding-top: clamp(72px, 6vw, 96px); padding-bottom: clamp(72px, 6vw, 96px); }
.psb-inner-intro-grid { display: grid; grid-template-columns: minmax(0,.86fr) minmax(0,1.14fr); gap: clamp(48px,7vw,105px); align-items: start; }
.psb-inner-heading h2 { margin-bottom: 0; max-width: 610px; }
.psb-inner-copy { padding-top: 29px; }
.psb-inner-copy p { color: var(--psb-muted); font-size: 18px; line-height: 1.75; }
.psb-inner-copy p:last-child { margin-bottom: 0; }

.psb-company-cards-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 24px; }
.psb-company-card { position: relative; overflow: hidden; min-height: 420px; padding: clamp(34px,4vw,54px); border: 1px solid var(--psb-border); border-radius: 24px; background: #fff; box-shadow: var(--psb-shadow-soft); }
.psb-company-card-accent { background: linear-gradient(145deg,#eef7fd,#ffffff 72%); border-color: #c9e1f0; }
.psb-company-number { position: absolute; right: 30px; top: 24px; color: rgba(23,116,185,.12); font-size: 74px; line-height: 1; font-weight: 900; }
.psb-company-card h2 { max-width: 520px; margin-bottom: 22px; }
.psb-company-card p { max-width: 690px; color: var(--psb-muted); font-size: 17px; }

.psb-inner-feature-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 20px; }
.psb-inner-feature-card { min-height: 245px; padding: 30px; border: 1px solid var(--psb-border); border-radius: 20px; background: #fff; box-shadow: var(--psb-shadow-soft); }
.psb-inner-feature-card > span { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 25px; border-radius: 50%; background: var(--psb-sky); color: var(--psb-blue); font-weight: 900; }
.psb-inner-feature-card h3 { margin-bottom: 11px; font-size: 22px; }
.psb-inner-feature-card p { margin-bottom: 0; color: var(--psb-muted); font-size: 15px; line-height: 1.65; }

.psb-inner-statement { padding-top: clamp(62px,6vw,88px); padding-bottom: clamp(62px,6vw,88px); }
.psb-inner-statement-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(420px,.82fr); gap: clamp(48px,7vw,100px); align-items: center; }
.psb-inner-statement h2 { max-width: 760px; margin-bottom: 0; }
.psb-inner-statement p { margin-bottom: 24px; font-size: 18px; line-height: 1.7; }

.psb-inner-contact-grid { display: grid; grid-template-columns: minmax(320px,.72fr) minmax(0,1.28fr); gap: clamp(38px,6vw,86px); align-items: start; }
.psb-inner-contact-copy { position: sticky; top: 145px; }
.psb-inner-contact-copy h2 { margin-bottom: 16px; }
.psb-inner-contact-copy > p { max-width: 470px; color: var(--psb-muted); font-size: 18px; }
.psb-contact-direct { display: grid; gap: 10px; margin-top: 28px; }
.psb-contact-direct a { display: flex; flex-direction: column; gap: 2px; padding: 16px 18px; border: 1px solid var(--psb-border); border-radius: 12px; background: #fff; color: var(--psb-navy); text-decoration: none; box-shadow: 0 8px 24px rgba(5,42,70,.05); }
.psb-contact-direct small { color: var(--psb-muted); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; }
.psb-contact-direct strong { overflow-wrap: anywhere; font-size: 16px; }
.psb-inner-form-card { min-height: 250px; padding: clamp(28px,4vw,46px); border: 1px solid var(--psb-border); border-radius: 22px; background: #fff; box-shadow: var(--psb-shadow-soft); }
.psb-inner-form-card h3 { margin-bottom: 10px; }
.psb-inner-form-card .wpforms-container { margin: 0 !important; }
.psb-inner-form-card .wpforms-field { padding: 8px 0 !important; }
.psb-inner-form-card .wpforms-field-label { color: var(--psb-navy) !important; font-size: 14px !important; font-weight: 750 !important; }
.psb-inner-form-card input:not([type="submit"]),
.psb-inner-form-card textarea,
.psb-inner-form-card select { border: 1px solid #cfdee8 !important; background: #f9fbfd !important; }
.psb-inner-form-card button[type="submit"],
.psb-inner-form-card input[type="submit"] { margin-top: 8px !important; }

.psb-business-benefit-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 22px; }
.psb-business-benefit-card { position: relative; min-height: 275px; padding: 34px 34px 32px 98px; border: 1px solid var(--psb-border); border-radius: 20px; background: #fff; box-shadow: var(--psb-shadow-soft); }
.psb-business-benefit-icon { position: absolute; left: 30px; top: 32px; display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; background: var(--psb-sky); color: var(--psb-blue); font-size: 13px; font-weight: 900; }
.psb-business-benefit-card h3 { margin-bottom: 13px; }
.psb-business-benefit-card p { margin-bottom: 0; color: var(--psb-muted); }

.psb-business-focus-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 24px; }
.psb-business-focus-card { min-height: 360px; padding: clamp(36px,4vw,54px); border: 1px solid var(--psb-border); border-radius: 24px; background: #fff; box-shadow: var(--psb-shadow-soft); }
.psb-business-focus-card h2 { margin-bottom: 18px; }
.psb-business-focus-card p { color: var(--psb-muted); font-size: 17px; }
.psb-business-focus-card-dark { color: #fff; background: linear-gradient(135deg,var(--psb-navy-deep),var(--psb-navy) 70%,#145b89); border-color: transparent; }
body.psb-corporate-theme .psb-business-focus-card-dark h2 { color: #fff; }
body.psb-corporate-theme .psb-business-focus-card-dark .psb-kicker { color: #bfe3f8; }
.psb-business-focus-card-dark p { color: rgba(255,255,255,.82); }

@media (max-width: 1000px) {
    .psb-inner-intro-grid,
    .psb-inner-statement-grid,
    .psb-inner-contact-grid { grid-template-columns: 1fr; }
    .psb-inner-copy { padding-top: 0; }
    .psb-inner-contact-copy { position: static; }
    .psb-inner-feature-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 760px) {
    .psb-company-cards-grid,
    .psb-business-benefit-grid,
    .psb-business-focus-grid,
    .psb-inner-feature-grid { grid-template-columns: 1fr; }
    .psb-company-card { min-height: 0; }
    .psb-company-number { font-size: 58px; }
    .psb-business-benefit-card { min-height: 0; padding: 30px; }
    .psb-business-benefit-icon { position: static; margin-bottom: 24px; }
    .psb-inner-feature-card { min-height: 0; }
    .psb-inner-form-card { padding: 24px 20px; }
}

/* =========================================================
   1.1.4: Einheitliche Gestaltung der übrigen Unterseiten
   ========================================================= */
.psb-service-feature-grid {
    display: grid;
    gap: 22px;
}
.psb-service-feature-grid.psb-three-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.psb-service-feature-grid.psb-five-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.psb-service-feature-card {
    min-height: 255px;
    padding: 30px;
    border: 1px solid var(--psb-border);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--psb-shadow-soft);
}
.psb-service-feature-card > span {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 25px;
    border-radius: 14px;
    background: var(--psb-sky);
    color: var(--psb-blue);
    font-size: 13px;
    font-weight: 900;
}
.psb-service-feature-card h3 { margin-bottom: 12px; font-size: 22px; }
.psb-service-feature-card p { margin-bottom: 0; color: var(--psb-muted); font-size: 15px; line-height: 1.68; }

.psb-service-split-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}
.psb-service-info-card {
    min-height: 365px;
    padding: clamp(34px, 4vw, 54px);
    border: 1px solid var(--psb-border);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--psb-shadow-soft);
}
.psb-service-info-card h2 { margin-bottom: 18px; }
.psb-service-info-card p { color: var(--psb-muted); font-size: 17px; line-height: 1.72; }
.psb-service-info-card-dark {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--psb-navy-deep), var(--psb-navy) 70%, #145b89);
}
body.psb-corporate-theme .psb-service-info-card-dark h2 { color: #fff; }
body.psb-corporate-theme .psb-service-info-card-dark .psb-kicker { color: #bfe3f8; }
.psb-service-info-card-dark p { color: rgba(255,255,255,.82); }
.psb-text-link-light { color: #fff !important; }

/* Kontakt und Standorte */
.psb-contact-location-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}
.psb-location-card {
    min-height: 410px;
    padding: clamp(32px, 4vw, 50px);
    border: 1px solid var(--psb-border);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--psb-shadow-soft);
}
.psb-location-card-main { background: linear-gradient(145deg, #f7fbfe, #fff 70%); border-color: #cde2f0; }
.psb-location-card h2 { margin-bottom: 24px; }
.psb-location-card address {
    margin: 0 0 24px;
    color: var(--psb-text);
    font-style: normal;
    font-size: 17px;
    line-height: 1.75;
}
.psb-location-links { display: grid; gap: 7px; margin-bottom: 24px; }
.psb-location-links a { color: var(--psb-blue); text-decoration: none; font-weight: 700; overflow-wrap: anywhere; }
.psb-location-meta, .psb-hours { display: grid; gap: 3px; margin: 0 0 24px; }
.psb-location-meta strong, .psb-hours strong { color: var(--psb-navy); font-size: 13px; text-transform: uppercase; letter-spacing: .07em; }
.psb-location-meta span, .psb-hours span { color: var(--psb-muted); }
.psb-location-card .psb-btn { margin-top: 8px; }
.psb-contact-academy-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(430px, .85fr);
    gap: 50px;
    align-items: center;
    padding: clamp(34px, 5vw, 60px);
    border: 1px solid var(--psb-border);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--psb-shadow-soft);
}
.psb-contact-academy-card h2 { margin-bottom: 13px; }
.psb-contact-academy-card p { margin: 0; color: var(--psb-muted); }
.psb-contact-academy-links { display: grid; gap: 10px; }
.psb-contact-academy-links a {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 16px 18px;
    border: 1px solid var(--psb-border);
    border-radius: 12px;
    color: var(--psb-navy);
    background: var(--psb-soft);
    text-decoration: none;
}
.psb-contact-academy-links small { color: var(--psb-muted); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.psb-contact-academy-links strong { overflow-wrap: anywhere; }

/* Job- und Formular-Widgets in einem kontrollierten Rahmen */
.psb-preserved-widget-card,
.psb-generic-content-card,
.psb-legal-card {
    padding: clamp(28px, 4vw, 50px);
    border: 1px solid var(--psb-border);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--psb-shadow-soft);
}
.psb-jobs-widget { min-height: 250px; }
.psb-jobs-widget iframe,
.psb-preserved-widget-card iframe { width: 100% !important; max-width: 100% !important; border: 0; }
.psb-preserved-widget-card .borlabs-cookie-content-blocker,
.psb-jobs-widget .borlabs-cookie-content-blocker { max-width: 100% !important; margin: 0 auto !important; }
.psb-preserved-widget-card .et_pb_section,
.psb-preserved-widget-card .et_pb_row,
.psb-preserved-widget-card .et_pb_column,
.psb-preserved-widget-card .et_pb_module {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    background-color: transparent !important;
}
.psb-preserved-widget-card .et_pb_section,
.psb-preserved-widget-card .et_pb_row { padding-left: 0 !important; padding-right: 0 !important; }
.psb-preserved-widget-card .et_pb_section { padding-top: 0 !important; padding-bottom: 0 !important; }
.psb-preserved-widget-card .et_pb_row { padding-top: 0 !important; padding-bottom: 0 !important; margin-bottom: 18px !important; }

/* Rechtliche Seiten */
.psb-legal-hero .psb-page-hero-grid { padding-top: clamp(58px, 5vw, 78px); padding-bottom: clamp(58px, 5vw, 78px); }
.psb-legal-wrap { max-width: 1180px; }
.psb-legal-card { font-size: 16px; line-height: 1.75; }
.psb-legal-card h1 { display: none !important; }
.psb-legal-card h2 { margin-top: 1.5em; margin-bottom: .55em; font-size: clamp(25px, 2.2vw, 34px); }
.psb-legal-card h3 { margin-top: 1.35em; margin-bottom: .5em; font-size: 21px; }
.psb-legal-card h4 { margin-top: 1.2em; margin-bottom: .45em; font-size: 18px; }
.psb-legal-card p, .psb-legal-card li { color: #405668; }
.psb-legal-card a { overflow-wrap: anywhere; }

/* Generische Altseiten: Divi optisch neutralisieren */
.psb-generic-content-wrap { max-width: 1280px; }
.psb-clean-generic-content > .et-l,
.psb-clean-generic-content .et_builder_inner_content,
.psb-clean-generic-content .et_pb_section,
.psb-clean-generic-content .et_pb_row,
.psb-clean-generic-content .et_pb_column,
.psb-clean-generic-content .et_pb_module {
    width: 100% !important;
    max-width: none !important;
    min-height: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    background-color: transparent !important;
    box-shadow: none !important;
}
.psb-clean-generic-content .et_pb_section,
.psb-clean-generic-content .et_pb_row { padding: 0 !important; margin-bottom: 28px !important; }
.psb-clean-generic-content .et_pb_row:last-child,
.psb-clean-generic-content .et_pb_section:last-child { margin-bottom: 0 !important; }
.psb-clean-generic-content .et_pb_section[style*="background-image"],
.psb-clean-generic-content .et_pb_row[style*="background-image"],
.psb-clean-generic-content .et_pb_column[style*="background-image"] { background-image: none !important; }
.psb-clean-generic-content .et_pb_text,
.psb-clean-generic-content .et_pb_blurb,
.psb-clean-generic-content .et_pb_code,
.psb-clean-generic-content .et_pb_contact_form_container,
.psb-clean-generic-content .wpforms-container {
    margin-bottom: 22px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}
.psb-clean-generic-content h1 { display: none !important; }
.psb-clean-generic-content h2 { margin-top: 0; margin-bottom: 18px; }
.psb-clean-generic-content h3 { margin-top: 26px; margin-bottom: 12px; }
.psb-clean-generic-content p, .psb-clean-generic-content li { color: var(--psb-muted); }
.psb-clean-generic-content img { max-width: 100%; height: auto; border-radius: 16px; }

/* Blog / News */
.psb-news-list-section .psb-blog-card h2 { font-size: 24px; }
.psb-news-list-section .psb-blog-card h2 a { color: var(--psb-navy); text-decoration: none; }
.psb-pagination .nav-links { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.psb-pagination .page-numbers {
    display: grid;
    place-items: center;
    min-width: 42px;
    min-height: 42px;
    padding: 6px 10px;
    border: 1px solid var(--psb-border);
    border-radius: 10px;
    color: var(--psb-navy);
    background: #fff;
    text-decoration: none;
    font-weight: 750;
}
.psb-pagination .page-numbers.current { color: #fff; border-color: var(--psb-blue); background: var(--psb-blue); }

@media (max-width: 1220px) {
    .psb-service-feature-grid.psb-five-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .psb-service-feature-grid.psb-five-grid > :nth-last-child(-n+2) { min-height: 225px; }
}

@media (max-width: 900px) {
    .psb-service-feature-grid.psb-three-grid,
    .psb-service-feature-grid.psb-five-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .psb-service-split-grid,
    .psb-contact-location-grid,
    .psb-contact-academy-card { grid-template-columns: 1fr; }
    .psb-contact-academy-card { gap: 30px; }
}

@media (max-width: 620px) {
    .psb-service-feature-grid.psb-three-grid,
    .psb-service-feature-grid.psb-five-grid { grid-template-columns: 1fr; }
    .psb-service-feature-card,
    .psb-service-feature-grid.psb-five-grid > :nth-last-child(-n+2) { min-height: 0; }
    .psb-location-card { min-height: 0; padding: 28px 22px; }
    .psb-preserved-widget-card,
    .psb-generic-content-card,
    .psb-legal-card { padding: 24px 20px; border-radius: 18px; }
}


/* =========================================================
   Header & Navigation 1.1.6
   Leichter, großzügiger und näher an der Akademie-Navigation.
   ========================================================= */
.psb-topbar {
    background: #072d49;
    border: 0;
    color: #fff;
}
.psb-topbar .psb-wrap {
    width: min(calc(100% - 64px), 1600px);
}
.psb-topbar-inner {
    min-height: 40px;
}
.psb-topbar-left,
.psb-topbar-right {
    gap: 24px;
}
.psb-topbar a,
.psb-topbar-company {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0;
}
.psb-topbar-company {
    display: flex;
    align-items: center;
    color: rgba(255,255,255,.72);
}
.psb-topbar-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255,255,255,.42);
}

.psb-site-header {
    background: #fff;
    border-bottom: 1px solid #e6edf2;
    box-shadow: none;
    backdrop-filter: none;
}
.psb-site-header .psb-wrap {
    width: min(calc(100% - 64px), 1600px);
}
.psb-site-header.is-scrolled {
    box-shadow: 0 8px 26px rgba(7,45,73,.08);
}
.psb-header-inner {
    min-height: 104px;
    display: grid;
    grid-template-columns: 245px minmax(0,1fr);
    align-items: center;
    gap: 38px;
}
.psb-brand {
    display: flex;
    align-items: center;
}
.psb-brand .custom-logo-link,
.psb-logo-fallback {
    display: inline-flex;
    align-items: center;
    min-height: 84px;
}
.psb-brand .custom-logo,
.psb-logo-fallback img {
    width: auto;
    height: auto;
    max-width: 225px;
    max-height: 78px;
    object-fit: contain;
}

.psb-navigation {
    align-self: stretch;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    min-width: 0;
}
.psb-menu {
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.psb-menu > li {
    position: relative;
    display: flex;
    align-items: stretch;
    margin: 0;
}
.psb-menu > li > a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 104px;
    padding: 0 13px;
    border-radius: 0;
    background: transparent !important;
    color: #18374f;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -.012em;
    text-decoration: none;
    white-space: nowrap;
    transition: color .18s ease;
}
.psb-menu > li > a:hover,
.psb-menu > li.current-menu-item > a,
.psb-menu > li.current-menu-ancestor > a,
.psb-menu > li.current_page_item > a,
.psb-menu > li.current_page_ancestor > a {
    color: #1673b7;
    background: transparent !important;
}
.psb-menu > li > a::before {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 20px;
    height: 2px;
    border-radius: 2px;
    background: #1673b7;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .18s ease;
}
.psb-menu > li:hover > a::before,
.psb-menu > li:focus-within > a::before,
.psb-menu > li.current-menu-item > a::before,
.psb-menu > li.current-menu-ancestor > a::before,
.psb-menu > li.current_page_item > a::before,
.psb-menu > li.current_page_ancestor > a::before {
    transform: scaleX(1);
}
.psb-menu > li.menu-item-has-children > a {
    padding-right: 29px;
}
.psb-menu > li.menu-item-has-children > a::after {
    content: "";
    position: absolute;
    right: 13px;
    top: 50%;
    width: 6px;
    height: 6px;
    margin-top: -5px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    opacity: .58;
}

.psb-menu .sub-menu {
    position: absolute;
    left: 0;
    top: calc(100% - 12px);
    width: 285px;
    margin: 0;
    padding: 10px;
    list-style: none;
    background: #fff;
    border: 1px solid #dfe9f0;
    border-radius: 10px;
    box-shadow: 0 18px 42px rgba(7,45,73,.13);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .16s ease, visibility .16s ease, transform .16s ease;
}
.psb-menu .sub-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -14px;
    height: 14px;
}
.psb-menu li:hover > .sub-menu,
.psb-menu li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.psb-menu .sub-menu li {
    position: relative;
    margin: 0;
}
.psb-menu .sub-menu a {
    position: relative;
    display: block;
    padding: 11px 34px 11px 13px;
    border-radius: 7px;
    color: #203b50;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    text-decoration: none;
    transition: color .15s ease, background .15s ease, padding-left .15s ease;
}
.psb-menu .sub-menu a:hover,
.psb-menu .sub-menu .current-menu-item > a {
    color: #1673b7;
    background: #f1f7fb;
    padding-left: 17px;
}
.psb-menu .sub-menu .menu-item-has-children > a::after {
    content: "";
    position: absolute;
    right: 14px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-50%) rotate(-45deg);
    opacity: .6;
}
.psb-menu .sub-menu .sub-menu {
    left: calc(100% + 8px);
    top: -10px;
}

/* Akademie-Link bleibt ein normaler Menüpunkt, mit kleinem externen Hinweis. */
.psb-menu > li > a[href*="psb-europe-akademie.de"]::after {
    content: "↗";
    position: static;
    width: auto;
    height: auto;
    margin: 0 0 0 5px;
    border: 0;
    transform: none;
    font-size: 11px;
    opacity: .5;
}
.psb-menu > li.menu-item-has-children > a[href*="psb-europe-akademie.de"]::after {
    content: "↗";
}

.psb-menu-toggle,
.psb-submenu-toggle {
    display: none;
}

@media (max-width: 1480px) and (min-width: 1181px) {
    .psb-site-header .psb-wrap,
    .psb-topbar .psb-wrap {
        width: min(calc(100% - 40px), 1600px);
    }
    .psb-header-inner {
        grid-template-columns: 200px minmax(0,1fr);
        gap: 18px;
    }
    .psb-brand .custom-logo,
    .psb-logo-fallback img {
        max-width: 188px;
        max-height: 68px;
    }
    .psb-menu {
        gap: 1px;
    }
    .psb-menu > li > a {
        padding-left: 9px;
        padding-right: 9px;
        font-size: 14px;
    }
    .psb-menu > li > a::before {
        left: 9px;
        right: 9px;
    }
    .psb-menu > li.menu-item-has-children > a {
        padding-right: 23px;
    }
    .psb-menu > li.menu-item-has-children > a::after {
        right: 9px;
    }
}

@media (max-width: 1180px) {
    .psb-topbar-company {
        display: none;
    }
    .psb-site-header .psb-wrap,
    .psb-topbar .psb-wrap {
        width: min(calc(100% - 36px), 1600px);
    }
    .psb-header-inner {
        min-height: 82px;
        grid-template-columns: 1fr auto;
        gap: 18px;
    }
    .psb-brand .custom-logo-link,
    .psb-logo-fallback {
        min-height: 66px;
    }
    .psb-brand .custom-logo,
    .psb-logo-fallback img {
        max-width: 190px;
        max-height: 66px;
    }
    .psb-menu-toggle {
        display: grid;
        align-content: center;
        width: 48px;
        height: 48px;
        padding: 8px;
        border: 1px solid #dce7ee;
        border-radius: 8px;
        background: #fff;
        box-shadow: none;
        cursor: pointer;
    }
    .psb-menu-toggle span:not(.screen-reader-text) {
        width: 24px;
        height: 2px;
        margin: 3px auto;
        background: #17364e;
    }
    .psb-navigation {
        position: fixed;
        z-index: 9995;
        top: 122px;
        right: 18px;
        bottom: 18px;
        left: auto;
        display: block;
        width: min(420px, calc(100vw - 36px));
        max-height: none;
        overflow-y: auto;
        padding: 16px;
        border: 1px solid #dfe8ee;
        border-radius: 12px;
        background: #fff;
        box-shadow: 0 24px 60px rgba(7,45,73,.18);
        opacity: 0;
        visibility: hidden;
        transform: translateX(22px);
        transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
    }
    .admin-bar .psb-navigation {
        top: 154px;
    }
    .psb-navigation.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }
    .psb-menu {
        display: block;
    }
    .psb-menu > li {
        display: block;
        border-bottom: 1px solid #edf2f5;
    }
    .psb-menu > li:last-child {
        border-bottom: 0;
    }
    .psb-menu > li > a {
        min-height: 54px;
        padding: 0 46px 0 12px;
        font-size: 16px;
        font-weight: 650;
    }
    .psb-menu > li > a::before,
    .psb-menu > li.menu-item-has-children > a::after,
    .psb-menu .sub-menu .menu-item-has-children > a::after {
        display: none;
    }
    .psb-menu > li > a:hover,
    .psb-menu > li.current-menu-item > a,
    .psb-menu > li.current-menu-ancestor > a {
        color: #1673b7;
        background: #f4f8fb !important;
    }
    .psb-submenu-toggle {
        position: absolute;
        z-index: 3;
        top: 7px;
        right: 3px;
        display: grid;
        place-items: center;
        width: 40px;
        height: 40px;
        padding: 0;
        border: 0;
        border-radius: 7px;
        background: transparent;
        color: #17364e;
        cursor: pointer;
    }
    .psb-submenu-toggle::before {
        content: "";
        width: 7px;
        height: 7px;
        margin-top: -4px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg);
        transition: transform .18s ease;
    }
    .menu-item-has-children.is-submenu-open > .psb-submenu-toggle::before {
        margin-top: 3px;
        transform: rotate(225deg);
    }
    .psb-menu .sub-menu {
        position: static;
        display: none;
        width: auto;
        margin: 0 0 10px 12px;
        padding: 3px 0 4px 14px;
        border: 0;
        border-left: 2px solid #d9e8f2;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    .psb-menu .menu-item-has-children.is-submenu-open > .sub-menu,
    .psb-menu .current-menu-ancestor > .sub-menu {
        display: block;
    }
    .psb-menu .sub-menu a {
        min-height: 43px;
        padding: 10px 42px 10px 10px;
        font-size: 14px;
    }
    .psb-menu .sub-menu a:hover {
        padding-left: 14px;
    }
    .psb-menu .sub-menu .sub-menu {
        position: static;
        margin-left: 8px;
    }
}

@media (max-width: 700px) {
    .psb-topbar-inner {
        min-height: 36px;
    }
    .psb-topbar-left {
        width: 100%;
        justify-content: space-between;
        gap: 8px;
    }
    .psb-topbar-left a {
        font-size: 11px;
    }
    .psb-topbar-left a:last-child {
        max-width: 55%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .psb-site-header .psb-wrap,
    .psb-topbar .psb-wrap {
        width: calc(100% - 24px);
    }
    .psb-header-inner {
        min-height: 76px;
    }
    .psb-brand .custom-logo,
    .psb-logo-fallback img {
        max-width: 165px;
        max-height: 58px;
    }
    .psb-navigation {
        top: 112px;
        right: 10px;
        bottom: 10px;
        width: calc(100vw - 20px);
    }
    .admin-bar .psb-site-header {
        top: 46px;
    }
    .admin-bar .psb-navigation {
        top: 158px;
    }
}


/* =========================================================
   1.1.9 Typografie + Responsive-Feinschliff
   Ruhige Navigation wie vor 1.1.8, Schriftbild näher an
   psb-europe-akademie.de und konsistente mobile Darstellung.
   ========================================================= */

:root {
    --psb-font: "Open Sans", "Segoe UI", Arial, Helvetica, sans-serif;
}

body.psb-corporate-theme,
body.psb-corporate-theme input,
body.psb-corporate-theme textarea,
body.psb-corporate-theme select,
body.psb-corporate-theme button,
body.psb-corporate-theme .et_pb_module,
body.psb-corporate-theme .et_pb_text,
body.psb-corporate-theme .et_pb_button {
    font-family: var(--psb-font) !important;
}

body.psb-corporate-theme h1,
body.psb-corporate-theme h2,
body.psb-corporate-theme h3,
body.psb-corporate-theme h4,
body.psb-corporate-theme h5,
body.psb-corporate-theme h6,
body.psb-corporate-theme .psb-menu,
body.psb-corporate-theme .psb-btn,
body.psb-corporate-theme .psb-kicker {
    font-family: var(--psb-font) !important;
}

body.psb-corporate-theme h1,
body.psb-corporate-theme h2,
body.psb-corporate-theme h3 {
    font-weight: 700;
    letter-spacing: -.025em;
}

body.psb-corporate-theme h4,
body.psb-corporate-theme h5,
body.psb-corporate-theme h6 {
    font-weight: 700;
    letter-spacing: -.015em;
}

body.psb-corporate-theme {
    font-weight: 400;
}

.psb-kicker {
    font-weight: 700;
    letter-spacing: .09em;
}

.psb-btn,
body.psb-corporate-theme .et_pb_button,
body.psb-corporate-theme input[type="submit"],
body.psb-corporate-theme button[type="submit"] {
    font-weight: 700 !important;
    letter-spacing: 0 !important;
}

/* Navigation bewusst wieder schlicht und offen. */
.psb-site-header {
    border-top: 1px solid #176faf;
    border-bottom: 1px solid #e5edf3;
    background: #fff;
    box-shadow: none;
    backdrop-filter: none;
}

.psb-site-header.is-scrolled {
    box-shadow: 0 8px 26px rgba(7,45,73,.08);
}

.psb-site-header .psb-wrap {
    width: min(calc(100% - 64px), 1600px);
}

.psb-header-inner {
    min-height: 104px;
    grid-template-columns: 245px minmax(0,1fr);
    gap: 38px;
}

.psb-navigation {
    align-self: stretch;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
}

.psb-menu {
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    gap: 3px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.psb-menu > li {
    display: flex;
    align-items: stretch;
}

.psb-menu > li > a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 104px;
    padding: 0 13px;
    border-radius: 0;
    color: #5e6670;
    background: transparent !important;
    box-shadow: none !important;
    font-size: 15.5px;
    font-weight: 600;
    letter-spacing: .01em;
    transform: none !important;
}

.psb-menu > li > a::before {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 20px;
    display: block;
    height: 2px;
    border-radius: 2px;
    background: #1673b7;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .18s ease;
}

.psb-menu > li:hover > a,
.psb-menu > li:focus-within > a,
.psb-menu > li.current-menu-item > a,
.psb-menu > li.current-menu-ancestor > a,
.psb-menu > li.current_page_item > a,
.psb-menu > li.current_page_ancestor > a {
    color: #0d5f9c;
    background: transparent !important;
}

.psb-menu > li:hover > a::before,
.psb-menu > li:focus-within > a::before,
.psb-menu > li.current-menu-item > a::before,
.psb-menu > li.current-menu-ancestor > a::before,
.psb-menu > li.current_page_item > a::before,
.psb-menu > li.current_page_ancestor > a::before {
    transform: scaleX(1);
}

.psb-menu > li.psb-menu-sev-text > a {
    color: #126ba9;
    font-weight: 700;
}

.psb-menu > li.psb-menu-sev-text > a::after {
    content: "";
    width: 5px;
    height: 5px;
    margin-left: 6px;
    border: 0;
    border-radius: 50%;
    background: #66a84f;
    opacity: 1;
    transform: none;
}

.psb-menu > li.psb-menu-sev-text img,
.psb-menu > li.psb-menu-sev-text .menu-image,
.psb-menu > li.psb-menu-sev-text svg,
.psb-menu > li.psb-menu-sev-text .dashicons {
    display: none !important;
}

.psb-menu .sub-menu {
    top: calc(100% - 12px);
    width: 285px;
    padding: 10px;
    border: 1px solid #dfe9f0;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(7,45,73,.13);
}

.psb-menu .sub-menu a {
    padding: 11px 34px 11px 13px;
    border-radius: 7px;
    color: #344b5d;
    font-size: 14.5px;
    font-weight: 600;
}

.psb-menu .sub-menu a:hover,
.psb-menu .sub-menu .current-menu-item > a {
    color: #1673b7;
    background: #f1f7fb;
}

/* Medien und Inhalte dürfen auf kleinen Displays nie überstehen. */
body.psb-corporate-theme img,
body.psb-corporate-theme video,
body.psb-corporate-theme iframe,
body.psb-corporate-theme embed,
body.psb-corporate-theme object {
    max-width: 100%;
}

body.psb-corporate-theme img,
body.psb-corporate-theme video {
    height: auto;
}

.psb-page-content,
.psb-generic-content-card,
.psb-legal-card,
.psb-preserved-widget-card,
.psb-inner-form-card,
.psb-service-info-card,
.psb-company-card,
.psb-location-card {
    min-width: 0;
    overflow-wrap: anywhere;
}

.psb-page-content table,
.psb-generic-content-card table,
.psb-legal-card table,
.psb-preserved-widget-card table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 1480px) and (min-width: 1181px) {
    .psb-site-header .psb-wrap,
    .psb-topbar .psb-wrap {
        width: min(calc(100% - 40px), 1600px);
    }

    .psb-header-inner {
        grid-template-columns: 195px minmax(0,1fr);
        gap: 16px;
    }

    .psb-brand .custom-logo,
    .psb-logo-fallback img {
        max-width: 185px;
        max-height: 68px;
    }

    .psb-menu {
        gap: 0;
    }

    .psb-menu > li > a {
        padding-inline: 8px;
        font-size: 13.5px;
    }

    .psb-menu > li > a::before {
        left: 8px;
        right: 8px;
    }

    .psb-menu > li.menu-item-has-children > a {
        padding-right: 22px;
    }

    .psb-menu > li.menu-item-has-children > a::after {
        right: 8px;
    }
}

@media (max-width: 1180px) {
    html,
    body.psb-corporate-theme {
        max-width: 100%;
        overflow-x: hidden;
    }

    .psb-topbar-company,
    .psb-topbar-right {
        display: none !important;
    }

    .psb-site-header .psb-wrap,
    .psb-topbar .psb-wrap,
    .psb-wrap {
        width: min(calc(100% - 36px), var(--psb-wrap));
    }

    .psb-header-inner {
        position: relative;
        min-height: 82px;
        grid-template-columns: minmax(0,1fr) auto;
        gap: 16px;
    }

    .psb-brand .custom-logo-link,
    .psb-logo-fallback {
        min-height: 66px;
    }

    .psb-brand .custom-logo,
    .psb-logo-fallback img {
        max-width: 190px;
        max-height: 66px;
    }

    .psb-menu-toggle {
        display: grid;
        align-content: center;
        width: 48px;
        height: 48px;
        padding: 8px;
        border: 1px solid #dce7ee;
        border-radius: 9px;
        background: #fff;
        cursor: pointer;
    }

    .psb-menu-toggle span:not(.screen-reader-text) {
        width: 24px;
        height: 2px;
        margin: 3px auto;
        background: #17364e;
        transition: transform .18s ease, opacity .18s ease;
    }

    .psb-navigation {
        position: absolute;
        z-index: 9995;
        top: 100%;
        right: 0;
        bottom: auto;
        left: auto;
        display: block;
        width: min(430px, calc(100vw - 36px));
        max-height: calc(100dvh - 100px);
        overflow-y: auto;
        padding: 14px;
        border: 1px solid #dfe8ee;
        border-radius: 12px;
        background: #fff;
        box-shadow: 0 24px 60px rgba(7,45,73,.18);
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
    }

    .admin-bar .psb-navigation {
        top: 100%;
    }

    .psb-navigation.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .psb-menu {
        display: block;
        padding: 0;
        background: transparent;
    }

    .psb-menu > li {
        position: relative;
        display: block;
        border-bottom: 1px solid #edf2f5;
    }

    .psb-menu > li:last-child {
        border-bottom: 0;
    }

    .psb-menu > li > a,
    .psb-menu > li.psb-menu-sev-text > a {
        min-height: 52px;
        padding: 0 46px 0 12px;
        color: #263e50;
        background: transparent !important;
        font-size: 16px;
        font-weight: 600;
    }

    .psb-menu > li > a::before,
    .psb-menu > li.menu-item-has-children > a::after,
    .psb-menu > li.psb-menu-sev-text > a::after,
    .psb-menu .sub-menu .menu-item-has-children > a::after {
        display: none !important;
    }

    .psb-menu > li > a:hover,
    .psb-menu > li.current-menu-item > a,
    .psb-menu > li.current-menu-ancestor > a {
        color: #1673b7;
        background: #f4f8fb !important;
    }

    .psb-submenu-toggle {
        position: absolute;
        z-index: 3;
        top: 6px;
        right: 3px;
        display: grid;
        place-items: center;
        width: 40px;
        height: 40px;
        padding: 0;
        border: 0;
        border-radius: 7px;
        background: transparent;
        color: #17364e;
        cursor: pointer;
    }

    .psb-submenu-toggle::before {
        content: "";
        width: 7px;
        height: 7px;
        margin-top: -4px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg);
        transition: transform .18s ease;
    }

    .menu-item-has-children.is-submenu-open > .psb-submenu-toggle::before {
        margin-top: 3px;
        transform: rotate(225deg);
    }

    .psb-menu .sub-menu {
        position: static;
        display: none !important;
        width: auto;
        margin: 0 0 10px 12px;
        padding: 3px 0 4px 14px;
        border: 0;
        border-left: 2px solid #d9e8f2;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .psb-menu .menu-item-has-children.is-submenu-open > .sub-menu,
    .psb-menu .current-menu-ancestor > .sub-menu {
        display: block !important;
    }

    .psb-menu .sub-menu a {
        min-height: 43px;
        padding: 10px 42px 10px 10px;
        font-size: 14px;
    }

    .psb-home-hero-grid,
    .psb-feature-grid,
    .psb-award-grid,
    .psb-inner-intro-grid,
    .psb-inner-statement-grid,
    .psb-inner-contact-grid,
    .psb-contact-academy-card {
        grid-template-columns: 1fr !important;
    }

    .psb-home-hero-grid {
        min-height: 0;
        padding-top: 64px;
        padding-bottom: 80px;
    }

    .psb-home-hero-copy {
        max-width: 760px;
    }

    .psb-home-hero-visual {
        width: 100%;
        max-width: 720px;
        min-height: 410px;
    }

    .psb-contact-band-inner {
        grid-template-columns: 1fr;
    }

    .psb-contact-band-actions {
        justify-content: flex-start;
    }

    .psb-inner-contact-copy {
        position: static;
    }
}

@media (max-width: 900px) {
    body.psb-corporate-theme {
        font-size: 16px;
    }

    .psb-section {
        padding-top: 68px;
        padding-bottom: 68px;
    }

    .psb-page-hero-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .psb-page-hero-mark {
        display: none;
    }

    .psb-service-grid,
    .psb-blog-grid,
    .psb-values-grid,
    .psb-process-grid,
    .psb-inner-feature-grid,
    .psb-service-feature-grid.psb-three-grid,
    .psb-service-feature-grid.psb-five-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .psb-company-cards-grid,
    .psb-business-benefit-grid,
    .psb-business-focus-grid,
    .psb-service-split-grid,
    .psb-contact-location-grid,
    .psb-dual-cta-grid {
        grid-template-columns: 1fr;
    }

    .psb-service-grid .psb-service-card:last-child,
    .psb-blog-grid .psb-blog-card:last-child {
        grid-column: 1 / -1;
    }

    .psb-footer-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}

@media (max-width: 620px) {
    .psb-site-header .psb-wrap,
    .psb-topbar .psb-wrap,
    .psb-wrap {
        width: calc(100% - 24px);
    }

    .psb-topbar-inner {
        min-height: 34px;
    }

    .psb-topbar-left {
        width: 100%;
        justify-content: space-between;
        gap: 8px;
    }

    .psb-topbar-left a {
        min-width: 0;
        font-size: 10.5px;
    }

    .psb-topbar-left a:last-child {
        max-width: 58%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .psb-header-inner {
        min-height: 72px;
        gap: 10px;
    }

    .psb-brand .custom-logo-link,
    .psb-logo-fallback {
        min-height: 58px;
    }

    .psb-brand .custom-logo,
    .psb-logo-fallback img {
        max-width: 152px;
        max-height: 56px;
    }

    .psb-menu-toggle {
        width: 44px;
        height: 44px;
    }

    .psb-navigation {
        right: -2px;
        width: calc(100vw - 20px);
        max-height: calc(100dvh - 88px);
        padding: 10px;
        border-radius: 10px;
    }

    body.psb-corporate-theme h1 {
        font-size: clamp(34px, 10.5vw, 46px);
        line-height: 1.08;
    }

    body.psb-corporate-theme h2 {
        font-size: clamp(28px, 8.2vw, 36px);
        line-height: 1.12;
    }

    body.psb-corporate-theme h3 {
        font-size: clamp(21px, 6.2vw, 27px);
    }

    .psb-section {
        padding-top: 54px;
        padding-bottom: 54px;
    }

    .psb-section-heading {
        margin-bottom: 28px;
    }

    .psb-section-heading p,
    .psb-feature-copy p,
    .psb-award-copy p,
    .psb-inner-copy p,
    .psb-inner-statement p,
    .psb-page-hero p,
    .psb-home-lead {
        font-size: 16px;
        line-height: 1.62;
    }

    .psb-home-hero-grid {
        gap: 34px;
        padding-top: 48px;
        padding-bottom: 58px;
    }

    .psb-action-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .psb-action-row .psb-btn {
        width: 100%;
    }

    .psb-hero-trust {
        display: grid;
        gap: 10px;
        margin-top: 24px;
    }

    .psb-home-hero-visual {
        min-height: 300px;
    }

    .psb-home-hero-image {
        inset: 0 0 28px 0;
        border-radius: 18px;
    }

    .psb-floating-card-main {
        left: 12px;
        bottom: 0;
        width: calc(100% - 44px);
        max-width: 280px;
        padding: 17px 18px;
        border-radius: 14px;
    }

    .psb-floating-card-mini {
        display: none;
    }

    .psb-service-grid,
    .psb-blog-grid,
    .psb-values-grid,
    .psb-process-grid,
    .psb-inner-feature-grid,
    .psb-service-feature-grid.psb-three-grid,
    .psb-service-feature-grid.psb-five-grid {
        grid-template-columns: 1fr;
    }

    .psb-service-grid .psb-service-card:last-child,
    .psb-blog-grid .psb-blog-card:last-child {
        grid-column: auto;
    }

    .psb-service-card,
    .psb-inner-feature-card,
    .psb-service-feature-card,
    .psb-values-grid article,
    .psb-business-benefit-card,
    .psb-business-focus-card,
    .psb-company-card,
    .psb-service-info-card,
    .psb-location-card,
    .psb-audience-card {
        min-height: 0;
        padding: 26px 22px;
        border-radius: 18px;
    }

    .psb-business-benefit-card {
        padding-left: 22px;
    }

    .psb-business-benefit-icon {
        position: static;
        margin-bottom: 20px;
    }

    .psb-benefit-panel,
    .psb-inner-form-card,
    .psb-preserved-widget-card,
    .psb-generic-content-card,
    .psb-legal-card,
    .psb-contact-academy-card {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .psb-contact-band-inner {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .psb-contact-band-actions,
    .psb-final-cta-inner,
    .psb-heading-with-link {
        align-items: stretch;
        flex-direction: column;
    }

    .psb-contact-chip,
    .psb-contact-band-actions .psb-btn,
    .psb-final-cta .psb-btn {
        width: 100%;
    }

    .psb-footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
        padding-top: 48px;
        padding-bottom: 42px;
    }

    .psb-footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 18px 0;
    }

    .psb-legal-menu {
        flex-wrap: wrap;
        gap: 10px 16px;
    }

    body.psb-corporate-theme input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
    body.psb-corporate-theme textarea,
    body.psb-corporate-theme select {
        width: 100% !important;
        max-width: 100% !important;
        min-height: 46px;
        font-size: 16px !important;
    }

    body.psb-corporate-theme textarea {
        min-height: 130px;
    }

    .psb-preserved-widget-card .et_pb_row,
    .psb-preserved-widget-card .et_pb_column,
    .psb-generic-content-card .et_pb_row,
    .psb-generic-content-card .et_pb_column {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}


/* =========================================================
   1.1.10 Footer im Stil der PSB Europe Akademie
   ========================================================= */
body.psb-corporate-theme .et-l--footer,
body.psb-corporate-theme #main-footer,
body.psb-corporate-theme #footer-bottom {
    display: none !important;
}

.psb-ak-footer {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: rgba(255,255,255,.72);
    background: linear-gradient(112deg, #0b405c 0%, #07345e 52%, #06315a 100%);
    font-family: inherit;
}

.psb-ak-footer-pattern {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .18;
    background-image:
        linear-gradient(rgba(255,255,255,.10) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,.78) 74%, transparent 100%);
}

.psb-ak-footer-inner {
    padding-top: 70px;
    padding-bottom: 28px;
}

.psb-ak-footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    min-height: 94px;
    padding: 20px 24px;
    margin-bottom: 52px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 24px;
    background: rgba(255,255,255,.075);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

body.psb-corporate-theme .psb-ak-footer-cta h2 {
    margin: 0;
    color: #fff !important;
    font-size: clamp(28px, 2.25vw, 40px);
    line-height: 1.12;
    letter-spacing: -.02em;
}

.psb-ak-footer-cta-button {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 24px;
    border-radius: 999px;
    background: #35b463;
    color: #fff !important;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none !important;
    box-shadow: 0 10px 24px rgba(13,93,52,.23);
    transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.psb-ak-footer-cta-button:hover {
    transform: translateY(-2px);
    background: #2fa75a;
    box-shadow: 0 14px 28px rgba(13,93,52,.30);
}

.psb-ak-footer-grid {
    display: grid;
    grid-template-columns: 1.32fr .85fr .98fr 1fr;
    gap: clamp(38px, 5vw, 82px);
    align-items: start;
    padding-bottom: 48px;
}

.psb-ak-footer-badge {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 9px 16px;
    margin-bottom: 22px;
    border: 1px solid rgba(255,255,255,.20);
    border-radius: 17px;
    background: rgba(255,255,255,.075);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
}

body.psb-corporate-theme .psb-ak-footer-brand h2 {
    max-width: 480px;
    margin: 0 0 22px;
    color: #fff !important;
    font-size: clamp(32px, 2.55vw, 46px);
    line-height: 1.12;
    font-weight: 500;
    letter-spacing: -.02em;
}

.psb-ak-footer-brand p {
    max-width: 520px;
    margin: 0;
    color: rgba(255,255,255,.68);
    font-size: 15px;
    line-height: 1.75;
}

body.psb-corporate-theme .psb-ak-footer-column h3 {
    margin: 2px 0 24px;
    color: #fff !important;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: 0;
}

.psb-ak-footer-column p,
.psb-ak-footer-column address,
.psb-ak-footer-column a {
    color: rgba(255,255,255,.72);
    font-size: 14px;
    line-height: 1.72;
}

.psb-ak-footer-column address {
    margin: 0 0 17px;
    font-style: normal;
}

.psb-ak-footer-column p {
    margin: 0 0 14px;
}

.psb-ak-footer-bayern-contact {
    margin-top: 20px !important;
}

.psb-ak-footer-links {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.psb-ak-footer-column a {
    text-decoration: none;
    transition: color .18s ease;
}

.psb-ak-footer-column a:hover,
.psb-ak-footer-legal a:hover {
    color: #fff;
}

.psb-ak-footer-map {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1.28 / 1;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 14px;
    background: rgba(255,255,255,.08);
    box-shadow: 0 18px 42px rgba(0,0,0,.14);
}

.psb-ak-footer-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    filter: saturate(.84) contrast(.96);
}

.psb-ak-footer-route {
    display: inline-flex;
    margin-top: 12px;
    font-weight: 700;
}

.psb-ak-footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    min-height: 76px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.14);
    color: rgba(255,255,255,.72);
    font-size: 13px;
}

.psb-ak-footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.psb-ak-footer-socials:empty {
    display: none;
}

.psb-ak-footer-socials a {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #fff;
    text-decoration: none;
    transition: transform .18s ease, background .18s ease;
}

.psb-ak-footer-socials a:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,.14);
}

.psb-ak-footer-socials svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.psb-ak-footer-legal {
    justify-self: end;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px 24px;
}

.psb-ak-footer-legal a {
    color: rgba(255,255,255,.78);
    font-size: 13px;
    text-decoration: none;
}

@media (max-width: 1180px) {
    .psb-ak-footer-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
        gap: 44px 54px;
    }

    .psb-ak-footer-map {
        max-width: 380px;
    }
}

@media (max-width: 760px) {
    .psb-ak-footer-inner {
        padding-top: 40px;
        padding-bottom: 20px;
    }

    .psb-ak-footer-cta {
        align-items: stretch;
        flex-direction: column;
        min-height: 0;
        padding: 22px;
        margin-bottom: 40px;
        border-radius: 20px;
    }

    body.psb-corporate-theme .psb-ak-footer-cta h2 {
        font-size: 28px;
    }

    .psb-ak-footer-cta-button {
        width: 100%;
    }

    .psb-ak-footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        padding-bottom: 36px;
    }

    .psb-ak-footer-map {
        max-width: none;
        aspect-ratio: 16 / 10;
    }

    body.psb-corporate-theme .psb-ak-footer-brand h2 {
        font-size: 34px;
    }

    .psb-ak-footer-bottom {
        grid-template-columns: 1fr;
        justify-items: start;
        min-height: 0;
        padding: 22px 0 4px;
    }

    .psb-ak-footer-socials,
    .psb-ak-footer-legal {
        justify-self: start;
    }

    .psb-ak-footer-legal {
        justify-content: flex-start;
    }
}
