:root {
    --wb-purple: #cb11ab;
    --wb-purple-deep: #7a147b;
    --wb-violet: #5e2aa5;
    --wb-yellow: #ffd23f;
    --wb-ink: #17131b;
    --wb-muted: #675c69;
    --wb-soft: #f8f4fa;
    --wb-white: #fff;
    --wb-border: #e8dce9;
    --wb-danger: #9b1c31;
    --wb-radius-sm: 12px;
    --wb-radius: 20px;
    --wb-radius-lg: 28px;
    --wb-shadow: 0 18px 50px rgba(77, 15, 75, .12);
    --wb-container: 1160px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--wb-ink);
    background: var(--wb-white);
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--wb-yellow); outline-offset: 3px; }

.wb-container { width: min(var(--wb-container), calc(100% - 32px)); margin-inline: auto; }
.wb-skip-link { position: fixed; left: 12px; top: 10px; z-index: 100; transform: translateY(-160%); background: var(--wb-ink); color: #fff; padding: 10px 14px; border-radius: 10px; }
.wb-skip-link:focus { transform: none; }

.wb-header { position: sticky; top: 0; z-index: 30; background: rgba(255, 255, 255, .95); border-bottom: 1px solid var(--wb-border); backdrop-filter: blur(14px); }
.wb-header__inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.wb-brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 900; letter-spacing: -.02em; }
.wb-brand img { width: 42px; height: 42px; border-radius: 10px; flex: 0 0 auto; }
.wb-brand span { font-size: 20px; }
.wb-nav { display: flex; align-items: center; gap: 24px; }
.wb-nav a, .wb-footer a { text-decoration-thickness: 1px; text-underline-offset: 4px; }
.wb-nav a { font-weight: 700; text-decoration: none; }
.wb-nav a:hover { color: var(--wb-purple-deep); }
.wb-menu-toggle { display: none; align-items: center; gap: 10px; border: 1px solid var(--wb-border); border-radius: 12px; background: #fff; min-height: 44px; padding: 8px 12px; color: var(--wb-ink); }
.wb-menu-toggle__label { font-weight: 700; }
.wb-menu-toggle__icon { width: 20px; display: grid; gap: 4px; }
.wb-menu-toggle__icon i { height: 2px; border-radius: 2px; background: currentColor; display: block; }

.wb-hero, .wb-page-hero { background: linear-gradient(135deg, var(--wb-violet), var(--wb-purple)); color: #fff; }
.wb-hero { padding: clamp(64px, 8vw, 104px) 0; }
.wb-page-hero { padding: clamp(44px, 6vw, 72px) 0; }
.wb-hero__grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr); gap: clamp(28px, 5vw, 56px); align-items: center; }
.wb-eyebrow { margin: 0 0 12px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.wb-hero h1, .wb-page-hero h1 { margin: .15em 0 .35em; max-width: 16ch; font-size: clamp(36px, 5vw, 64px); line-height: 1.04; letter-spacing: -.035em; }
.wb-page-hero h1 { max-width: 22ch; font-size: clamp(34px, 4vw, 54px); }
.wb-lead, .wb-page-hero p { max-width: 760px; font-size: clamp(18px, 2vw, 21px); }
.wb-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.wb-button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 20px; border: 0; border-radius: 14px; background: #fff; color: var(--wb-purple-deep); font-weight: 800; text-decoration: none; }
.wb-button:hover { box-shadow: 0 8px 28px rgba(0, 0, 0, .14); }
.wb-button--primary { background: var(--wb-purple); color: #fff; }
.wb-button--ghost { background: transparent; color: #fff; border: 1px solid rgba(255, 255, 255, .7); }
.wb-button--dark { background: var(--wb-ink); color: #fff; }
.wb-stat-card { background: #fff; color: var(--wb-ink); padding: 28px; border-radius: var(--wb-radius-lg); box-shadow: var(--wb-shadow); }
.wb-stat-card span, .wb-stat-card small { display: block; }
.wb-stat-card strong { display: block; margin: 8px 0; font-size: clamp(28px, 3vw, 38px); line-height: 1.15; }

.wb-section { padding: clamp(48px, 7vw, 76px) 0; }
.wb-section--soft { background: var(--wb-soft); }
.wb-section--dark { background: var(--wb-ink); color: #fff; }
.wb-section h2 { max-width: 24ch; margin: 0 0 24px; font-size: clamp(28px, 3vw, 42px); line-height: 1.15; letter-spacing: -.025em; }
.wb-section-heading { max-width: 760px; margin-bottom: 28px; }
.wb-section-heading p { color: var(--wb-muted); }
.wb-section--dark .wb-section-heading p { color: #d8d0da; }
.wb-grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.wb-grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.wb-card { display: block; min-width: 0; padding: 24px; border: 1px solid var(--wb-border); border-radius: var(--wb-radius); text-decoration: none; background: #fff; box-shadow: 0 8px 30px rgba(50, 20, 50, .05); transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease; }
a.wb-card:hover { transform: translateY(-2px); border-color: #d7b8d6; box-shadow: var(--wb-shadow); }
.wb-card h3 { margin: 0 0 10px; line-height: 1.25; }
.wb-card p:last-child { margin-bottom: 0; }
.wb-card__icon { display: grid; place-items: center; width: 64px; height: 64px; margin-bottom: 18px; padding: 9px; border-radius: 17px; background: linear-gradient(135deg, var(--wb-violet), var(--wb-purple)); }
.wb-card__icon img { width: 46px; height: 46px; object-fit: contain; }
.wb-kicker { color: var(--wb-purple-deep); font-size: 13px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.wb-muted { color: var(--wb-muted); }
.wb-breadcrumbs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; font-size: 14px; }
.wb-breadcrumbs a { color: #fff; }

.wb-article { padding: 56px 0; }
.wb-article__body { max-width: 860px; font-size: 17px; }
.wb-article__body > :first-child { margin-top: 0; }
.wb-article__body h2 { margin-top: 42px; font-size: 28px; line-height: 1.2; }
.wb-article__body h3 { margin-top: 30px; font-size: 22px; line-height: 1.25; }
.wb-article__body p, .wb-article__body li { max-width: 76ch; }
.wb-article__body table { width: 100%; border-collapse: collapse; }
.wb-article__body th, .wb-article__body td { padding: 12px; border: 1px solid var(--wb-border); text-align: left; vertical-align: top; }
.wb-table-scroll { max-width: 100%; overflow-x: auto; }

.wb-privacy-intro { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(240px, .6fr); gap: 24px; padding: 28px; border: 1px solid var(--wb-border); border-radius: var(--wb-radius); background: var(--wb-soft); }
.wb-operator { background: #fff; border-radius: 16px; padding: 20px; }
.wb-operator span { display: block; font-size: 13px; text-transform: uppercase; color: var(--wb-muted); }
.wb-operator strong { display: block; margin: 8px 0; }
.wb-privacy-table { display: grid; gap: 12px; }
.wb-privacy-table > div { display: grid; grid-template-columns: 220px 1fr; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--wb-border); }
.wb-privacy-table p { margin: 0; }

.wb-lesson-list { display: grid; gap: 10px; padding: 0; list-style: none; counter-reset: lessons; }
.wb-lesson-list a { display: grid; grid-template-columns: 100px 1fr; gap: 16px; padding: 16px; border: 1px solid var(--wb-border); border-radius: 14px; text-decoration: none; background: #fff; }
.wb-lesson-list a:hover { border-color: #d7b8d6; box-shadow: 0 8px 24px rgba(77, 15, 75, .08); }

.wb-footer { background: var(--wb-ink); color: #fff; padding: 46px 0 26px; }
.wb-footer__grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(240px, .75fr); gap: 40px; }
.wb-footer__about p { max-width: 580px; color: #d8d0da; }
.wb-brand--footer { color: #fff; }
.wb-footer__nav { display: grid; align-content: start; justify-items: start; gap: 10px; }
.wb-footer__legal { margin-top: 28px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .14); color: #c6bdc8; font-size: 13px; }
.wb-footer__legal p { max-width: 920px; margin: 0; }

@media (max-width: 800px) {
    .wb-container { width: min(100% - 24px, var(--wb-container)); }
    .wb-header__inner { min-height: 64px; }
    .wb-brand img { width: 38px; height: 38px; }
    .wb-menu-toggle { display: inline-flex; }
    .js .wb-nav { display: none; position: absolute; left: 12px; right: 12px; top: calc(100% + 8px); padding: 12px; border: 1px solid var(--wb-border); border-radius: 16px; background: #fff; box-shadow: var(--wb-shadow); }
    .js .wb-nav[data-open] { display: grid; }
    .wb-nav { gap: 4px; }
    .wb-nav a { padding: 10px 12px; border-radius: 10px; }
    .wb-nav a:hover { background: var(--wb-soft); }
    .wb-hero__grid, .wb-privacy-intro, .wb-footer__grid { grid-template-columns: 1fr; }
    .wb-grid-3, .wb-grid-2 { grid-template-columns: 1fr; }
    .wb-privacy-table > div { grid-template-columns: 1fr; gap: 4px; }
    .wb-lesson-list a { grid-template-columns: 1fr; gap: 4px; }
}

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

/* Application flow */
.wb-application-card { display: grid; grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr); gap: clamp(28px, 5vw, 56px); padding: clamp(24px, 4vw, 44px); border: 1px solid var(--wb-border); border-radius: var(--wb-radius-lg); background: #fff; box-shadow: var(--wb-shadow); }
.wb-application-card__intro h2 { margin: 6px 0 14px; font-size: clamp(28px, 3vw, 42px); line-height: 1.12; }
.wb-check-list { padding: 0; margin: 24px 0 0; list-style: none; display: grid; gap: 12px; }
.wb-check-list li { position: relative; padding-left: 30px; }
.wb-check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; background: var(--wb-soft); color: var(--wb-purple-deep); font-weight: 900; }
.wb-form { min-width: 0; display: grid; gap: 18px; }
.wb-field-wrap { position: relative; display: grid; gap: 7px; min-width: 0; }
.wb-field__label { font-size: 14px; font-weight: 800; }
.wb-field { width: 100%; min-height: 50px; border: 1px solid #cfbfce; border-radius: 13px; background: #fff; color: var(--wb-ink); padding: 11px 13px; }
.wb-field:hover { border-color: #aa8da8; }
.wb-field:focus { border-color: var(--wb-purple-deep); outline: 3px solid rgba(203, 17, 171, .14); outline-offset: 0; }
.wb-field[aria-invalid="true"] { border-color: var(--wb-danger); }
.wb-field__error { margin: 0; color: var(--wb-danger); font-size: 14px; font-weight: 650; }
.wb-form-errors { padding: 14px 16px; border: 1px solid #e5b7bf; border-radius: 13px; background: #fff4f6; color: #751326; }
.wb-form-errors p { margin: 3px 0 0; }
.wb-consent { display: grid; grid-template-columns: 22px 1fr; gap: 10px; align-items: start; font-size: 14px; }
.wb-consent input { width: 19px; height: 19px; margin: 3px 0 0; accent-color: var(--wb-purple); }
.wb-consent a { color: var(--wb-purple-deep); font-weight: 700; }
.wb-honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; white-space: nowrap !important; }
.wb-button--wide { width: 100%; }
.wb-form__footnote { margin: -4px 0 0; color: var(--wb-muted); font-size: 13px; }

.wb-city-combobox__options { position: absolute; z-index: 20; top: calc(100% - 2px); left: 0; right: 0; max-height: 260px; overflow-y: auto; border: 1px solid var(--wb-border); border-radius: 13px; background: #fff; box-shadow: var(--wb-shadow); padding: 6px; }
.wb-city-combobox__option { width: 100%; border: 0; border-radius: 9px; background: transparent; text-align: left; padding: 9px 10px; color: var(--wb-ink); }
.wb-city-combobox__option:hover, .wb-city-combobox__option[aria-selected="true"] { background: var(--wb-soft); color: var(--wb-purple-deep); }
.js .wb-city-select-native { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
html:not(.js) .wb-city-combobox__input { display: none; }

.wb-steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.wb-steps li { display: grid; grid-template-columns: 46px 1fr; gap: 14px; align-items: start; padding: 22px; border: 1px solid var(--wb-border); border-radius: var(--wb-radius); }
.wb-steps > li > span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; background: var(--wb-purple); color: #fff; font-weight: 900; }
.wb-steps h3 { margin: 2px 0 6px; }
.wb-steps p { margin: 0; color: var(--wb-muted); }
.wb-card--dark { background: #262029; border-color: #3b333d; color: #fff; box-shadow: none; }
.wb-card--dark p { color: #d9d0db; }
.wb-split { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr); gap: clamp(28px, 5vw, 56px); align-items: start; }
.wb-info-panel { padding: 26px; border-radius: var(--wb-radius); background: var(--wb-soft); border: 1px solid var(--wb-border); }
.wb-info-panel strong { font-size: 21px; }
.wb-info-panel .wb-button { margin-top: 8px; }
.wb-text-link { color: var(--wb-purple-deep); font-weight: 800; text-underline-offset: 4px; }
.wb-faq { display: grid; gap: 10px; max-width: 900px; }
.wb-faq details { border: 1px solid var(--wb-border); border-radius: 14px; background: #fff; padding: 0 18px; }
.wb-faq summary { cursor: pointer; padding: 16px 0; font-weight: 800; }
.wb-faq p { margin: 0 0 18px; color: var(--wb-muted); }
.wb-link-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.wb-link-grid a { display: grid; gap: 2px; padding: 14px 16px; border: 1px solid var(--wb-border); border-radius: 13px; background: #fff; text-decoration: none; }
.wb-link-grid a:hover { border-color: #d7b8d6; box-shadow: 0 8px 24px rgba(77, 15, 75, .08); }
.wb-link-grid span { color: var(--wb-muted); font-size: 13px; }

.wb-status-page { min-height: 68vh; padding: clamp(48px, 8vw, 90px) 0; background: var(--wb-soft); }
.wb-status-card { max-width: 680px; margin: 0 auto; padding: clamp(26px, 5vw, 46px); border: 1px solid var(--wb-border); border-radius: var(--wb-radius-lg); background: #fff; box-shadow: var(--wb-shadow); }
.wb-status-card__icon { display: grid; place-items: center; width: 60px; height: 60px; margin-bottom: 18px; border-radius: 18px; background: var(--wb-purple); color: #fff; font-size: 30px; font-weight: 900; }
.wb-status-card h1 { margin: 6px 0 14px; font-size: clamp(30px, 4vw, 46px); line-height: 1.08; }
.wb-status-card .wb-button { margin: 18px 0; }
.wb-notice { padding: 16px 18px; border-radius: 14px; background: var(--wb-soft); border: 1px solid var(--wb-border); }
.wb-notice p { margin: 5px 0 0; }

@media (max-width: 900px) {
    .wb-link-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .wb-steps { grid-template-columns: 1fr; }
}

@media (max-width: 800px) {
    .wb-application-card, .wb-split { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
    .wb-link-grid { grid-template-columns: 1fr; }
    .wb-application-card { padding: 20px; }
}

/* Training knowledge base */
.wb-training-notice { padding: 20px 22px; border-left: 4px solid var(--wb-purple); border-radius: 0 14px 14px 0; background: var(--wb-soft); }
.wb-training-notice p { margin: 5px 0 0; max-width: 86ch; }
.wb-training-notice--compact { margin-bottom: 26px; }
.wb-training-article { padding: 52px 0 24px; }
.wb-training-layout { display: grid; grid-template-columns: minmax(0, 1fr) 230px; gap: 38px; align-items: start; }
.wb-training-main { min-width: 0; max-width: 850px; }
.wb-training-aside { position: sticky; top: 94px; display: grid; gap: 10px; padding: 18px; border: 1px solid var(--wb-border); border-radius: 16px; background: #fff; }
.wb-training-aside > a { padding: 8px 0; color: var(--wb-purple-deep); font-weight: 750; text-underline-offset: 4px; }
.wb-training-progress { display: grid; gap: 5px; margin-bottom: 8px; }
.wb-training-progress span { color: var(--wb-muted); font-size: 13px; }
.wb-training-progress strong { font-size: 22px; }
.wb-training-progress progress { width: 100%; accent-color: var(--wb-purple); }
.wb-training-nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; padding-top: 18px; padding-bottom: 56px; }
.wb-training-nav a { display: grid; gap: 3px; padding: 18px; border: 1px solid var(--wb-border); border-radius: 14px; background: #fff; text-decoration: none; }
.wb-training-nav a:hover { border-color: #d7b8d6; box-shadow: 0 8px 24px rgba(77, 15, 75, .08); }
.wb-training-nav a span { color: var(--wb-muted); font-size: 13px; }
.wb-training-nav__next { text-align: right; }

.wb-legacy-lesson { font-size: 17px; line-height: 1.68; overflow-wrap: anywhere; }
.wb-legacy-lesson .--container-fluid, .wb-legacy-lesson .--container, .wb-legacy-lesson .--row { width: 100%; max-width: none; margin: 0; padding-left: 0; padding-right: 0; }
.wb-legacy-lesson > .--container { padding-bottom: 20px; }
.wb-legacy-lesson .--faq-s { padding: 0; background: transparent !important; }
.wb-legacy-lesson .--faq-row { display: block; }
.wb-legacy-lesson .--gr-bl-wrap { width: 100%; padding: 0 0 12px; }
.wb-legacy-lesson .--gr-bl-wrap:last-child { padding-bottom: 0; }
.wb-legacy-lesson .--gr-bl { display: block; padding: 0; background: transparent; border: 0; box-shadow: none; }
.wb-legacy-lesson h2 { margin: 12px 0 24px; font-size: clamp(26px, 3vw, 36px); line-height: 1.18; letter-spacing: -.02em; }
.wb-legacy-lesson h3 { margin: 32px 0 10px; font-size: clamp(21px, 2vw, 26px); line-height: 1.25; }
.wb-legacy-lesson p { max-width: 78ch; margin: 0 0 15px; }
.wb-legacy-lesson ul, .wb-legacy-lesson ol { max-width: 78ch; padding-left: 25px; margin: 10px 0 22px; }
.wb-legacy-lesson li { margin-bottom: 8px; }
.wb-legacy-lesson strong { color: #241d25; }

@media (max-width: 900px) {
    .wb-training-layout { grid-template-columns: 1fr; }
    .wb-training-aside { position: static; grid-template-columns: 1fr 1fr; }
    .wb-training-progress { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
    .wb-training-nav { grid-template-columns: 1fr; }
    .wb-training-nav__next { text-align: left; }
    .wb-training-aside { grid-template-columns: 1fr; }
}

/* Vacancy content */
.wb-vacancy-copy { max-width: 900px; }
.wb-vacancy-copy > p, .wb-vacancy-copy > ul { max-width: 78ch; }
.wb-vacancy-copy > p { margin: 0 0 16px; line-height: 1.72; }
.wb-vacancy-copy > ul { margin: 8px 0 22px; padding-left: 24px; }
.wb-vacancy-copy > ul li { margin-bottom: 8px; }
.wb-vacancy-copy .wb-notice { margin-top: 28px; }
.wb-metrika-pixel { position: absolute; left: -9999px; width: 1px; height: 1px; }

/* ========================================================================== 
   WBKurer 2026 visual system — production composition
   ========================================================================== */
:root {
    --wb-purple: #cb11ab;
    --wb-purple-deep: #7b168c;
    --wb-purple-black: #32123b;
    --wb-violet: #6726a8;
    --wb-pink-soft: #fff0fb;
    --wb-lilac: #f7eff9;
    --wb-yellow: #ffd54a;
    --wb-ink: #18131b;
    --wb-ink-2: #251b29;
    --wb-muted: #6f6272;
    --wb-soft: #faf7fb;
    --wb-border: #eadfeb;
    --wb-radius: 24px;
    --wb-radius-lg: 32px;
    --wb-shadow: 0 22px 64px rgba(74, 25, 78, .10);
    --wb-shadow-strong: 0 34px 90px rgba(52, 10, 64, .24);
    --wb-container: 1180px;
}

body { background: #fff; color: var(--wb-ink); font-size: 16px; }
.wb-container { width: min(var(--wb-container), calc(100% - 40px)); }

/* Header */
.wb-header { min-height: 76px; border-bottom-color: rgba(70, 25, 75, .08); background: rgba(255,255,255,.92); backdrop-filter: blur(18px); }
.wb-header__inner { min-height: 76px; gap: 30px; }
.wb-brand { gap: 11px; min-width: max-content; }
.wb-brand__mark { display: grid; width: 44px; height: 44px; place-items: center; flex: 0 0 auto; overflow: hidden; border-radius: 14px 14px 14px 5px; background: linear-gradient(135deg, #ec32cb, #8a1ab4); box-shadow: 0 10px 24px rgba(203,17,171,.22); }
.wb-brand__mark img { width: 44px; height: 44px; border-radius: 0; object-fit: cover; }
.wb-brand__copy { display: grid; line-height: 1.05; }
.wb-brand__copy strong { font-size: 1.05rem; font-weight: 950; letter-spacing: -.035em; }
.wb-brand__copy small { margin-top: 4px; color: var(--wb-muted); font-size: .68rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.wb-nav { gap: 25px; margin-left: auto; }
.wb-nav a { color: #4d4250; font-size: .91rem; font-weight: 750; }
.wb-nav__cta { min-height: 42px; display: inline-flex !important; align-items: center; padding: 9px 15px; border-radius: 12px; background: var(--wb-ink); color: #fff !important; }
.wb-nav__cta:hover { background: var(--wb-purple-deep); color: #fff !important; }

/* Typography and reusable sections */
.wb-eyebrow, .wb-kicker { margin: 0 0 10px; color: var(--wb-purple); font-size: .76rem; font-weight: 900; letter-spacing: .115em; text-transform: uppercase; }
.wb-eyebrow--light { color: #ffd9fa; }
.wb-section { padding-block: clamp(70px, 8.5vw, 108px); }
.wb-section--soft { background: linear-gradient(180deg, #fcf9fd 0%, #f8f2fa 100%); }
.wb-section--dark { background: linear-gradient(135deg, #171219 0%, #261a2a 55%, #3b1542 100%); color: #fff; }
.wb-section--application { background: linear-gradient(180deg, #fff 0%, #faf6fb 100%); }
.wb-section-heading { max-width: none; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .65fr); align-items: end; gap: 50px; margin-bottom: clamp(34px, 5vw, 54px); }
.wb-section-heading > div { min-width: 0; }
.wb-section-heading h2, .wb-content-split h2, .wb-faq-layout__intro h2, .wb-community-card h2 { max-width: 18ch; margin: 0; font-size: clamp(2rem, 4.2vw, 3.65rem); font-weight: 950; line-height: 1.02; letter-spacing: -.055em; }
.wb-section-heading > p { margin: 0 0 4px; max-width: 620px; color: var(--wb-muted); font-size: 1.02rem; }
.wb-section-heading--center { display: block; text-align: center; }
.wb-section-heading--center h2 { margin-inline: auto; }

/* Hero */
.wb-hero { position: relative; overflow: hidden; padding: 0; background:
    radial-gradient(circle at 88% 12%, rgba(255,255,255,.16) 0 132px, transparent 133px),
    radial-gradient(circle at 4% 100%, rgba(44,0,52,.20) 0 240px, transparent 241px),
    linear-gradient(126deg, #8617a0 0%, #b817b0 46%, #e223ba 100%); color: #fff; }
.wb-hero::after { position: absolute; right: -150px; bottom: -230px; width: 520px; height: 520px; border: 95px solid rgba(255,255,255,.055); border-radius: 50%; content: ""; }
.wb-hero__grid { position: relative; z-index: 1; min-height: 620px; grid-template-columns: minmax(0,1.15fr) minmax(350px,.75fr); align-items: center; gap: clamp(42px,7vw,92px); padding-block: clamp(72px,9vw,116px); }
.wb-hero__content h1 { max-width: 820px; margin: 0 0 24px; font-size: clamp(3rem,6vw,5.75rem); font-weight: 950; letter-spacing: -.07em; line-height: .94; }
.wb-hero__content h1 span { color: #ffd0f6; }
.wb-hero__lead { max-width: 675px; margin: 0 0 30px; color: rgba(255,255,255,.9); font-size: clamp(1.05rem,1.8vw,1.28rem); line-height: 1.58; }
.wb-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.wb-button { min-height: 50px; padding: 13px 20px; border-radius: 14px; font-weight: 850; transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease; }
.wb-button:hover { transform: translateY(-1px); }
.wb-button--light { border: 1px solid #fff; background: #fff; color: var(--wb-purple-deep); }
.wb-button--ghost-light { border: 1px solid rgba(255,255,255,.48); background: rgba(255,255,255,.04); color: #fff; }
.wb-button--ghost-light:hover { background: rgba(255,255,255,.11); }
.wb-button--primary { background: linear-gradient(135deg, var(--wb-purple), #9d18b0); color: #fff; }
.wb-button--dark { background: var(--wb-ink); color: #fff; }
.wb-hero__trust { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 34px; }
.wb-hero__trust span { padding: 8px 11px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; background: rgba(255,255,255,.07); color: rgba(255,255,255,.88); font-size: .77rem; font-weight: 750; }
.wb-hero-visual { padding: clamp(20px,3vw,30px); border: 1px solid rgba(255,255,255,.18); border-radius: 28px; background: rgba(24,16,27,.9); box-shadow: var(--wb-shadow-strong); backdrop-filter: blur(10px); }
.wb-hero-visual__top { display: grid; gap: 3px; margin-bottom: 18px; }
.wb-hero-visual__top span { color: #a99daa; font-size: .75rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.wb-hero-visual__top strong { font-size: 1.3rem; }
.wb-role-stack { display: grid; gap: 10px; }
.wb-role-mini { display: grid; grid-template-columns: 54px 1fr auto; align-items: center; gap: 14px; padding: 13px; border: 1px solid #45374a; border-radius: 16px; background: #241d27; color: #fff; text-decoration: none; transition: background-color .16s ease, border-color .16s ease, transform .16s ease; }
.wb-role-mini:hover { border-color: #73577a; background: #302634; transform: translateX(2px); }
.wb-role-mini__icon { display: grid; width: 54px; height: 54px; place-items: center; border-radius: 14px; background: linear-gradient(135deg,#fff0fb,#edd5f1); }
.wb-role-mini__icon img { width: 36px; height: 36px; }
.wb-role-mini > span:nth-child(2) { display: grid; }
.wb-role-mini strong { font-size: .96rem; }
.wb-role-mini small { margin-top: 2px; color: #aaa0ac; font-size: .76rem; }
.wb-role-mini b { color: #e997df; font-size: 1.2rem; }
.wb-city-quick { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 14px; padding: 15px 16px; border-radius: 15px; background: linear-gradient(135deg,var(--wb-purple),#9816ad); color: #fff; text-decoration: none; }
.wb-city-quick > span:first-child { display: grid; }
.wb-city-quick small { color: #f7bdeb; font-size: .71rem; font-weight: 750; text-transform: uppercase; letter-spacing: .06em; }
.wb-city-quick strong { font-size: .96rem; }
.wb-city-quick__salary { flex: 0 0 auto; font-size: .8rem; font-weight: 850; }

/* Format cards */
.wb-format-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.wb-format-card { position: relative; min-height: 375px; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--wb-border); border-radius: var(--wb-radius); background: #fff; color: var(--wb-ink); text-decoration: none; box-shadow: 0 15px 45px rgba(62,31,66,.04); transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.wb-format-card:hover { transform: translateY(-5px); border-color: #d7b5dd; box-shadow: 0 24px 62px rgba(89,31,94,.11); }
.wb-format-card--featured { border-color: #dfb5df; background: linear-gradient(180deg,#fff 0%,#fff8fe 100%); box-shadow: 0 22px 58px rgba(134,31,136,.10); }
.wb-format-card__badge { position: absolute; top: 20px; right: 20px; padding: 6px 9px; border-radius: 999px; background: var(--wb-pink-soft); color: var(--wb-purple-deep); font-size: .67rem; font-weight: 850; }
.wb-format-card__number { color: #a392a6; font-size: .76rem; font-weight: 900; letter-spacing: .1em; }
.wb-format-card__icon { display: grid; width: 72px; height: 72px; place-items: center; margin: 42px 0 26px; border-radius: 20px; background: linear-gradient(135deg,#fff0fb,#f0ddf4); }
.wb-format-card h3 { margin: 0 0 12px; font-size: clamp(1.45rem,2.3vw,2rem); font-weight: 900; letter-spacing: -.035em; }
.wb-format-card p { margin: 0 0 26px; color: var(--wb-muted); }
.wb-format-card .wb-text-link { margin-top: auto; }

/* Facts */
.wb-fact-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 14px; }
.wb-fact-card { min-height: 245px; padding: 26px; border: 1px solid var(--wb-border); border-radius: 22px; background: #fff; }
.wb-fact-card__number { display: inline-flex; margin-bottom: 34px; color: var(--wb-purple); font-size: .74rem; font-weight: 900; letter-spacing: .1em; }
.wb-fact-card h3 { margin: 0 0 10px; font-size: 1.2rem; letter-spacing: -.02em; }
.wb-fact-card p { margin: 0; color: var(--wb-muted); font-size: .94rem; }
/* Steps */
.wb-section--steps { background: #fff; }
.wb-steps--line { max-width: 960px; margin: 0 auto; grid-template-columns: 1fr; gap: 0; }
.wb-steps--line li { position: relative; grid-template-columns: 70px 1fr; gap: 22px; padding: 25px 0; border: 0; border-bottom: 1px solid var(--wb-border); border-radius: 0; }
.wb-steps--line li:last-child { border-bottom: 0; }
.wb-steps--line > li > span { width: 54px; height: 54px; border-radius: 17px; background: var(--wb-ink); }
.wb-steps--line h3 { margin: 3px 0 6px; font-size: 1.22rem; }
.wb-steps--line p { max-width: 720px; }

/* Dark knowledge block */
.wb-content-split { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(320px,.75fr); align-items: center; gap: clamp(40px,7vw,90px); }
.wb-content-split > div:first-child > p:not(.wb-eyebrow) { max-width: 690px; margin: 20px 0 28px; color: #d0c5d2; font-size: 1.05rem; }
.wb-dark-feature-grid { display: grid; gap: 11px; }
.wb-dark-feature-grid a { display: grid; grid-template-columns: 40px 1fr; gap: 3px 14px; padding: 18px; border: 1px solid #49394f; border-radius: 18px; background: rgba(255,255,255,.04); color: #fff; text-decoration: none; }
.wb-dark-feature-grid a:hover { border-color: #74507d; background: rgba(255,255,255,.07); }
.wb-dark-feature-grid span { grid-row: 1 / 3; color: #f1a8e5; font-size: .72rem; font-weight: 900; }
.wb-dark-feature-grid strong { font-size: 1rem; }
.wb-dark-feature-grid small { color: #a99cab; }

/* Apps and community */
.wb-app-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.wb-app-card { display: grid; grid-template-columns: 54px 1fr auto; align-items: center; gap: 15px; padding: 18px; border: 1px solid var(--wb-border); border-radius: 18px; background: #fff; color: var(--wb-ink); text-decoration: none; transition: border-color .16s ease, transform .16s ease, box-shadow .16s ease; }
.wb-app-card:hover { transform: translateY(-2px); border-color: #d8b4da; box-shadow: 0 14px 36px rgba(74,22,79,.07); }
.wb-app-card__mark { display: grid; width: 54px; height: 54px; place-items: center; border-radius: 16px; background: linear-gradient(135deg,#fbe8fa,#ead5f0); color: var(--wb-purple-deep); font-weight: 950; }
.wb-app-card > span:nth-child(2) { display: grid; }
.wb-app-card strong { font-size: .98rem; }
.wb-app-card small { margin-top: 3px; color: var(--wb-muted); font-size: .8rem; }
.wb-app-card b { color: var(--wb-purple); font-size: 1.15rem; }
.wb-community-card { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: clamp(30px,5vw,50px); border: 1px solid #e1cce4; border-radius: 30px; background: linear-gradient(135deg,#fff 0%,#fff2fc 100%); }
.wb-community-card p:not(.wb-eyebrow) { max-width: 730px; margin: 14px 0 0; color: var(--wb-muted); }
.wb-community-card .wb-button { flex: 0 0 auto; }

/* FAQ */
.wb-faq-layout { display: grid; grid-template-columns: minmax(280px,.72fr) minmax(0,1.15fr); gap: clamp(36px,7vw,88px); align-items: start; }
.wb-faq-layout__intro { position: sticky; top: 112px; }
.wb-faq-layout__intro > p:last-child { max-width: 420px; color: var(--wb-muted); }
.wb-faq { max-width: none; gap: 10px; }
.wb-faq details { padding: 0 20px; border-radius: 16px; box-shadow: 0 8px 24px rgba(59,29,61,.025); }
.wb-faq summary { padding: 19px 0; font-size: .98rem; }

/* Application form */
.wb-application-card { overflow: hidden; grid-template-columns: minmax(0,.86fr) minmax(390px,1.14fr); gap: 0; padding: 0; border-radius: 30px; box-shadow: 0 26px 75px rgba(68,24,71,.10); }
.wb-application-card__intro { padding: clamp(30px,5vw,52px); background: linear-gradient(145deg,#27192b 0%,#431c49 100%); color: #fff; }
.wb-application-card__intro .wb-kicker { color: #f4a9e8; }
.wb-application-card__intro h2 { margin: 8px 0 18px; color: #fff; font-size: clamp(2rem,3.6vw,3.25rem); font-weight: 950; letter-spacing: -.05em; }
.wb-application-card__intro > p { color: #d6c9d8; }
.wb-application-card__intro .wb-check-list li { color: #eee6ef; }
.wb-application-card__intro .wb-check-list li::before { background: rgba(255,255,255,.1); color: #f5b6eb; }
.wb-form { padding: clamp(28px,4.5vw,48px); background: #fff; }
.wb-field { min-height: 52px; border-color: #d9cedb; border-radius: 14px; background: #fff; }
.wb-field:hover { border-color: #bba7bf; }
.wb-field:focus { border-color: var(--wb-purple); outline: 3px solid rgba(203,17,171,.11); }
.wb-button--wide { min-height: 54px; }

/* Page heroes */
.wb-page-hero { position: relative; overflow: hidden; padding: 0; background:
    radial-gradient(circle at 88% 14%, rgba(255,255,255,.10) 0 115px, transparent 116px),
    linear-gradient(126deg,#35123f 0%,#6b1981 50%,#b51ba3 100%); color: #fff; }
.wb-page-hero__grid { display: grid; min-height: 470px; grid-template-columns: minmax(0,1.15fr) minmax(280px,.58fr); align-items: center; gap: clamp(36px,7vw,86px); padding-block: clamp(60px,8vw,92px); }
.wb-page-hero__content h1, .wb-page-hero h1 { max-width: 860px; margin: 12px 0 20px; font-size: clamp(2.7rem,5.4vw,5rem); font-weight: 950; letter-spacing: -.062em; line-height: .98; }
.wb-page-hero__content > p:not(.wb-eyebrow), .wb-page-hero__lead { max-width: 700px; color: rgba(255,255,255,.86); font-size: clamp(1.02rem,1.7vw,1.2rem); }
.wb-page-hero__aside { display: grid; gap: 10px; padding: 28px; border: 1px solid rgba(255,255,255,.17); border-radius: 24px; background: rgba(18,11,20,.45); box-shadow: 0 28px 70px rgba(27,7,31,.24); backdrop-filter: blur(9px); }
.wb-page-hero__aside > span { color: #d7c4da; font-size: .75rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.wb-page-hero__aside > strong { font-size: clamp(1.9rem,4vw,1.4rem); line-height: 1.04; letter-spacing: -.045em; }
.wb-page-hero__aside p { margin: 0; color: white; font-size: .9rem; }
.wb-page-hero__aside hr { width: 100%; margin: 8px 0; border: 0; border-top: 1px solid rgba(255,255,255,.15); }
.wb-breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 20px; color: rgba(255,255,255,.7); font-size: .79rem; }
.wb-breadcrumbs a { color: inherit; text-decoration: none; }
.wb-breadcrumbs a:hover { color: #fff; }

/* Vacancy / city cards */
.wb-vacancy-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.wb-vacancy-card { display: flex; min-height: 400px; flex-direction: column; padding: 28px; border: 1px solid var(--wb-border); border-radius: 24px; background: #fff; color: var(--wb-ink); text-decoration: none; box-shadow: 0 16px 46px rgba(64,28,67,.045); transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.wb-vacancy-card:hover { transform: translateY(-4px); border-color: #d8b3dc; box-shadow: 0 24px 62px rgba(76,28,82,.10); }
.wb-vacancy-card__top { display: flex; align-items: center; gap: 13px; margin-bottom: 25px; }
.wb-vacancy-card__icon { display: grid; width: 58px; height: 58px; place-items: center; flex: 0 0 auto; border-radius: 17px; background: linear-gradient(135deg,#fff0fb,#efdbf3); }
.wb-vacancy-card__meta { display: grid; gap: 2px; }
.wb-vacancy-card__meta span { color: var(--wb-purple); font-size: .7rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.wb-vacancy-card__meta strong { font-size: .88rem; }
.wb-vacancy-card h3 { margin: 0 0 12px; font-size: clamp(1.5rem,2.5vw,2rem); letter-spacing: -.035em; }
.wb-vacancy-card > p { color: var(--wb-muted); }
.wb-vacancy-card__points { display: grid; gap: 9px; margin: 8px 0 24px; padding: 0; list-style: none; }
.wb-vacancy-card__points li { position: relative; padding-left: 19px; font-size: .9rem; }
.wb-vacancy-card__points li::before { position: absolute; left: 2px; top: .58em; width: 7px; height: 7px; border-radius: 50%; background: var(--wb-purple); content: ""; }
.wb-vacancy-card .wb-text-link { margin-top: auto; }
.wb-info-panel { border-left: 5px solid var(--wb-purple); background: #fff; }
.wb-role-details { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.wb-role-details > article { padding: clamp(24px,4vw,38px); border: 1px solid var(--wb-border); border-radius: 24px; background: #fff; }
.wb-role-details h2 { margin: 0 0 20px; font-size: clamp(1.7rem,3vw,2.6rem); line-height: 1.08; letter-spacing: -.04em; }
.wb-large-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.wb-large-list li { display: grid; grid-template-columns: 27px 1fr; gap: 10px; align-items: start; }
.wb-large-list li > span { display: grid; width: 26px; height: 26px; place-items: center; border-radius: 50%; background: var(--wb-pink-soft); color: var(--wb-purple-deep); font-size: .75rem; font-weight: 900; }
.wb-link-grid a { min-height: 66px; align-content: center; border-radius: 15px; transition: transform .15s ease, border-color .15s ease, background-color .15s ease; }
.wb-link-grid a:hover { transform: translateY(-2px); background: var(--wb-pink-soft); }

/* Vacancy copy */
.wb-vacancy-copy { max-width: 1000px; }
.wb-vacancy-copy > p, .wb-vacancy-copy > ul { max-width: 780px; }
.wb-vacancy-copy > p { font-size: 1.03rem; }
.wb-vacancy-copy h2, .wb-vacancy-copy h3 { letter-spacing: -.03em; }
.wb-inline-facts { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.wb-inline-fact { padding: 24px; border: 1px solid var(--wb-border); border-radius: 20px; background: #fff; }
.wb-inline-fact span { display: inline-block; margin-bottom: 18px; color: var(--wb-purple); font-size: .7rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.wb-inline-fact h3 { margin: 0 0 8px; font-size: 1.15rem; }
.wb-inline-fact p { margin: 0; color: var(--wb-muted); font-size: .9rem; }

/* Training */
.wb-training-notice { border-left-color: var(--wb-purple); background: linear-gradient(135deg,#fff5fd,#fff); }
.wb-lesson-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; padding: 0; list-style: none; counter-reset: lesson; }
.wb-lesson-list li { min-width: 0; }
.wb-lesson-list a { display: grid; min-height: 104px; align-content: center; gap: 4px; padding: 20px; border: 1px solid var(--wb-border); border-radius: 18px; background: #fff; text-decoration: none; transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease; }
.wb-lesson-list a:hover { transform: translateY(-2px); border-color: #d9b8dd; box-shadow: 0 14px 34px rgba(69,27,75,.06); }
.wb-lesson-list a span { color: var(--wb-purple); font-size: .72rem; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.wb-lesson-list a strong { font-size: .98rem; line-height: 1.35; }

/* Footer */
.wb-footer { padding: 0; border: 0; background: #171219; color: #fff; }
.wb-footer__top { display: grid; grid-template-columns: minmax(260px,1.3fr) repeat(3,minmax(150px,.65fr)); gap: 46px; padding-block: 58px 42px; }
.wb-footer .wb-brand__copy small { color: #9d909f; }
.wb-footer__brand > p { max-width: 420px; margin: 20px 0 0; color: #a99dab; font-size: .9rem; }
.wb-footer__column { display: grid; align-content: start; gap: 9px; }
.wb-footer__column > strong { margin-bottom: 5px; color: #fff; font-size: .84rem; text-transform: uppercase; letter-spacing: .07em; }
.wb-footer__column a, .wb-footer__column span { color: #b9aebc; font-size: .86rem; text-decoration: none; }
.wb-footer__column a:hover { color: #fff; }
.wb-footer__bottom { display: flex; justify-content: space-between; gap: 30px; padding: 22px 0 30px; border-top: 1px solid #352b38; }
.wb-footer__bottom p { max-width: 750px; margin: 0; color: #8f8391; font-size: .75rem; }

/* Responsive */
@media (max-width: 1000px) {
    .wb-fact-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .wb-footer__top { grid-template-columns: 1.2fr repeat(2,.7fr); }
    .wb-footer__column:last-child { grid-column: 2 / -1; }
}
@media (max-width: 900px) {
    .wb-hero__grid, .wb-page-hero__grid { grid-template-columns: 1fr; min-height: auto; }
    .wb-hero-visual, .wb-page-hero__aside { max-width: 620px; width: 100%; }
    .wb-section-heading { grid-template-columns: 1fr; gap: 14px; }
    .wb-format-grid, .wb-vacancy-grid { grid-template-columns: 1fr; }
    .wb-format-card { min-height: 0; }
    .wb-format-card__icon { margin-top: 28px; }
    .wb-content-split, .wb-faq-layout { grid-template-columns: 1fr; }
    .wb-faq-layout__intro { position: static; }
    .wb-inline-facts { grid-template-columns: 1fr; }
    .wb-role-details { grid-template-columns: 1fr; }
    .wb-footer__top { grid-template-columns: repeat(2,1fr); }
    .wb-footer__brand { grid-column: 1 / -1; }
    .wb-footer__column:last-child { grid-column: auto; }
}
@media (max-width: 800px) {
    .wb-nav { position: absolute; top: calc(100% + 1px); left: 20px; right: 20px; display: none; align-items: stretch; gap: 2px; padding: 12px; border: 1px solid var(--wb-border); border-radius: 16px; background: #fff; box-shadow: var(--wb-shadow); }
    .wb-nav[data-open] { display: grid; }
    .wb-nav a { padding: 12px; border-radius: 10px; }
    .wb-nav__cta { justify-content: center; margin-top: 4px; }
    .wb-menu-toggle { display: inline-flex; margin-left: auto; }
    .wb-app-grid { grid-template-columns: 1fr; }
    .wb-community-card { display: grid; }
    .wb-application-card { grid-template-columns: 1fr; }
    .wb-lesson-list { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
    .wb-container { width: min(100% - 28px, var(--wb-container)); }
    .wb-header, .wb-header__inner { min-height: 68px; }
    .wb-brand__mark { width: 40px; height: 40px; }
    .wb-brand__mark img { width: 40px; height: 40px; }
    .wb-brand__copy small { display: none; }
    .wb-hero__grid { padding-block: 58px 64px; }
    .wb-hero__content h1 { font-size: clamp(2.65rem,13vw,4.1rem); }
    .wb-page-hero__grid { padding-block: 48px 56px; }
    .wb-page-hero__content h1, .wb-page-hero h1 { font-size: clamp(2.35rem,11vw,3.65rem); }
    .wb-hero__actions .wb-button { width: 100%; }
    .wb-fact-grid { grid-template-columns: 1fr; }
    .wb-fact-card { min-height: 0; }
    .wb-fact-card__number { margin-bottom: 20px; }
    .wb-role-mini { grid-template-columns: 48px 1fr auto; }
    .wb-role-mini__icon { width: 48px; height: 48px; }
    .wb-city-quick { align-items: flex-start; flex-direction: column; gap: 8px; }
    .wb-footer__top { grid-template-columns: 1fr; gap: 30px; }
    .wb-footer__brand, .wb-footer__column:last-child { grid-column: auto; }
    .wb-footer__bottom { flex-direction: column; gap: 12px; }
    .wb-app-card { grid-template-columns: 48px 1fr auto; }
    .wb-app-card__mark { width: 48px; height: 48px; }
}
.wb-page-hero h1 span { color: #f7c7ef; }
.wb-article { padding: clamp(58px,8vw,96px) 0; }
.wb-article__body { max-width: 930px; font-size: 1.02rem; }
.wb-article__body h2 { margin-top: 50px; font-size: clamp(1.55rem,3vw,2.25rem); font-weight: 900; letter-spacing: -.035em; }
.wb-article__body a { color: var(--wb-purple-deep); font-weight: 700; }
.wb-privacy-intro { grid-template-columns: minmax(0,1.25fr) minmax(260px,.55fr); gap: 28px; padding: clamp(24px,4vw,38px); border-radius: 26px; background: linear-gradient(135deg,#fff6fd,#fff); }
.wb-privacy-intro h2 { margin-top: 0; }
.wb-operator { padding: 24px; border: 1px solid var(--wb-border); border-radius: 20px; box-shadow: 0 12px 34px rgba(63,24,68,.05); }
.wb-operator span { color: var(--wb-purple); font-weight: 850; letter-spacing: .08em; }
.wb-privacy-table > div { grid-template-columns: 230px 1fr; padding: 20px 0; }
.wb-privacy-table strong { font-size: .95rem; }
.wb-status-page { min-height: 72vh; display: grid; align-items: center; background: radial-gradient(circle at 80% 10%,#fff0fb 0 160px,transparent 161px), linear-gradient(180deg,#fff 0%,#f8f1fa 100%); }
.wb-status-card { max-width: 720px; border-radius: 30px; padding: clamp(30px,5vw,54px); }
.wb-status-card__icon { width: 68px; height: 68px; border-radius: 20px; background: linear-gradient(135deg,var(--wb-purple),#8e1aae); box-shadow: 0 14px 34px rgba(203,17,171,.22); }
.wb-status-card h1 { font-size: clamp(2.1rem,4.5vw,3.7rem); font-weight: 950; letter-spacing: -.05em; }
@media (max-width: 720px) {
    .wb-privacy-intro, .wb-privacy-table > div { grid-template-columns: 1fr; }
}
.wb-howto { align-items: start; }
.wb-howto h2 { max-width: 16ch; }
.wb-howto__links { display: grid; gap: 10px; margin-top: 26px; }
.wb-howto__timeline { display: grid; gap: 10px; padding: 20px; border: 1px solid var(--wb-border); border-radius: 24px; background: #fff; box-shadow: 0 18px 50px rgba(67,24,72,.06); }
.wb-howto__timeline > div { display: grid; grid-template-columns: 42px 1fr; gap: 2px 12px; padding: 14px; border-radius: 15px; background: var(--wb-soft); }
.wb-howto__timeline span { grid-row: 1 / 3; display: grid; width: 38px; height: 38px; place-items: center; border-radius: 12px; background: var(--wb-ink); color: #fff; font-size: .7rem; font-weight: 900; }
.wb-howto__timeline strong { font-size: .94rem; }
.wb-howto__timeline small { color: var(--wb-muted); }
.wb-centered-action { display: flex; justify-content: center; margin-top: 28px; }
.wb-card .wb-text-link { display: inline-flex; margin-top: 14px; }
.wb-form__grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
@media (max-width: 620px) { .wb-form__grid { grid-template-columns: 1fr; } }


/* Role city finder */
.wb-city-finder { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0,.8fr) minmax(360px,1.2fr); gap: clamp(26px,5vw,64px); align-items: center; margin-bottom: 42px; padding: clamp(26px,4vw,42px); border: 1px solid #e3d3e6; border-radius: 30px; background: radial-gradient(circle at 100% 0,#ffe7fa 0 135px,transparent 136px), linear-gradient(135deg,#fff 0%,#fcf5fd 100%); box-shadow: 0 24px 70px rgba(69,24,74,.08); }
.wb-city-finder__copy h3 { max-width: 12ch; margin: 0 0 12px; font-size: clamp(2rem,4vw,3.4rem); font-weight: 950; line-height: 1; letter-spacing: -.055em; }
.wb-city-finder__copy > p:last-child { max-width: 510px; margin: 0; color: var(--wb-muted); }
.wb-city-finder__control { position: relative; padding: 22px; border: 1px solid var(--wb-border); border-radius: 22px; background: #fff; box-shadow: 0 16px 44px rgba(69,24,74,.055); }
.wb-city-finder__input-wrap { position: relative; }
.wb-city-finder__input { padding-right: 48px; font-size: 1rem; }
.wb-city-finder__search-icon { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); color: var(--wb-purple); font-size: 1.45rem; font-weight: 900; pointer-events: none; }
.wb-city-finder__results { position: absolute; z-index: 15; left: 22px; right: 22px; top: 94px; max-height: 330px; overflow-y: auto; padding: 7px; border: 1px solid var(--wb-border); border-radius: 16px; background: #fff; box-shadow: 0 22px 60px rgba(52,18,59,.16); }
.wb-city-finder__result { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 11px 12px; border: 0; border-radius: 11px; background: transparent; color: var(--wb-ink); text-align: left; }
.wb-city-finder__result:hover, .wb-city-finder__result[aria-selected="true"] { background: var(--wb-pink-soft); }
.wb-city-finder__result strong { font-size: .92rem; }
.wb-city-finder__result span { flex: 0 0 auto; color: var(--wb-muted); font-size: .76rem; }
.wb-city-finder__native { width: 100%; min-height: 48px; margin-top: 10px; padding: 10px 12px; border: 1px solid var(--wb-border); border-radius: 13px; background: #fff; color: var(--wb-ink); }
.js .wb-city-finder__native { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
.wb-city-finder__go { width: 100%; margin-top: 12px; }
.wb-city-finder__go[aria-disabled="true"] { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }

/* Training hub */
.wb-training-start { padding-bottom: 32px; }
.wb-training-toolbar { display: grid; grid-template-columns: minmax(0,.95fr) minmax(330px,1.05fr); gap: clamp(28px,5vw,62px); align-items: end; margin-top: 34px; padding: clamp(26px,4vw,42px); border-radius: 28px; background: linear-gradient(135deg,#211825 0%,#35193d 55%,#6f177d 100%); color: #fff; box-shadow: var(--wb-shadow-strong); }
.wb-training-toolbar__copy h2 { max-width: 15ch; margin: 0 0 12px; font-size: clamp(2rem,4vw,3.25rem); font-weight: 950; line-height: 1.02; letter-spacing: -.05em; }
.wb-training-toolbar__copy > p:last-child { max-width: 560px; margin: 0; color: #cfc1d2; }
.wb-training-search { display: grid; gap: 8px; }
.wb-training-search > span, .wb-training-search > label { color: #f6d7f3; font-size: .78rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.wb-training-search .wb-field { min-height: 58px; border-color: rgba(255,255,255,.18); background: #fff; font-size: 1rem; }
.wb-training-search small { color: #c9b8cc; }
.wb-training-route { margin-top: 22px; padding: 24px; border: 1px solid var(--wb-border); border-radius: 24px; background: #fff; }
.wb-training-route__intro { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; margin-bottom: 18px; }
.wb-training-route__intro span { color: var(--wb-purple); font-size: .75rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.wb-training-route__intro strong { font-size: 1.1rem; }
.wb-training-route__grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 10px; }
.wb-training-route__grid a { min-width: 0; display: grid; align-content: start; min-height: 155px; padding: 18px; border-radius: 17px; background: var(--wb-soft); color: var(--wb-ink); text-decoration: none; transition: transform .16s ease, background-color .16s ease; }
.wb-training-route__grid a:hover { transform: translateY(-2px); background: var(--wb-pink-soft); }
.wb-training-route__grid a > span { margin-bottom: 24px; color: var(--wb-purple); font-size: .72rem; font-weight: 900; }
.wb-training-route__grid strong { font-size: .96rem; line-height: 1.25; }
.wb-training-route__grid small { margin-top: 6px; color: var(--wb-muted); line-height: 1.35; }
.wb-lesson-list a small { margin-top: 5px; color: var(--wb-muted); font-size: .8rem; line-height: 1.4; }
.wb-training-empty { margin-block: 48px 80px; padding: 38px; border: 1px dashed #d7c4da; border-radius: 22px; background: var(--wb-soft); text-align: center; }
.wb-training-empty strong { font-size: 1.3rem; }
.wb-training-empty p { margin: 7px 0 0; color: var(--wb-muted); }

@media (max-width: 900px) {
    .wb-city-finder, .wb-training-toolbar { grid-template-columns: 1fr; }
    .wb-training-route__grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 620px) {
    .wb-city-finder { margin-inline: -2px; padding: 22px; border-radius: 24px; }
    .wb-city-finder__control { padding: 16px; }
    .wb-city-finder__results { left: 16px; right: 16px; top: 88px; }
    .wb-training-route__intro { align-items: flex-start; flex-direction: column; }
    .wb-training-toolbar { padding: 24px 20px; }
    .wb-training-route { padding: 18px; }
    .wb-training-route__grid { grid-template-columns: 1fr; }
    .wb-training-route__grid a { min-height: 0; }
}


/* Homepage city catalog */
.wb-city-page-finder { position: relative; z-index: 3; display: grid; grid-template-columns: minmax(260px,.75fr) minmax(360px,1.25fr); gap: clamp(24px,4vw,54px); align-items: center; padding: clamp(24px,4vw,38px); border-radius: 28px; background: linear-gradient(135deg,#211724 0%,#3d1745 58%,#7d198e 100%); color: #fff; box-shadow: 0 28px 78px rgba(52,18,58,.18); }
.wb-city-page-finder__lead { display: flex; align-items: center; gap: 16px; }
.wb-city-page-finder__badge { display: grid; min-width: 76px; height: 76px; place-items: center; padding: 8px; border-radius: 22px; background: rgba(255,255,255,.1); color: #ffd7f7; font-size: .78rem; font-weight: 900; text-align: center; }
.wb-city-page-finder__lead > div { display: grid; gap: 4px; }
.wb-city-page-finder__lead strong { font-size: clamp(1.35rem,2.6vw,2rem); line-height: 1.05; }
.wb-city-page-finder__lead small { max-width: 340px; color: #cdbed0; }
.wb-city-page-finder__search { position: relative; }
.wb-city-page-finder__search .wb-field__label { color: #f6d7f3; }
.wb-city-page-finder__search .wb-field { min-height: 58px; border-color: rgba(255,255,255,.2); background: #fff; color: var(--wb-ink); font-size: 1rem; }
.wb-city-page-finder__results { position: absolute; z-index: 20; left: 0; right: 0; top: 86px; max-height: 340px; overflow-y: auto; padding: 7px; border: 1px solid var(--wb-border); border-radius: 16px; background: #fff; color: var(--wb-ink); box-shadow: 0 24px 64px rgba(35,12,40,.28); }
.wb-city-page-finder__result { width: 100%; display: flex; justify-content: space-between; gap: 18px; padding: 12px; border: 0; border-radius: 11px; background: transparent; color: var(--wb-ink); text-align: left; }
.wb-city-page-finder__result:hover, .wb-city-page-finder__result[aria-selected="true"] { background: var(--wb-pink-soft); }
.wb-city-page-finder__result strong { font-size: .93rem; }
.wb-city-page-finder__result span { color: var(--wb-muted); font-size: .76rem; }
.wb-city-page-finder__native { width: 100%; min-height: 50px; margin-top: 10px; padding: 10px 12px; border-radius: 13px; border: 1px solid rgba(255,255,255,.18); background: #fff; color: var(--wb-ink); }
.js .wb-city-page-finder__native { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
@media (max-width: 820px) {
    .wb-city-page-finder { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
    .wb-city-page-finder { padding: 22px 18px; border-radius: 24px; }
    .wb-city-page-finder__badge { min-width: 64px; height: 64px; border-radius: 18px; }
}


/* Long lesson reading experience */
.wb-training-aside { gap: 12px; }
.wb-training-toc { padding: 18px; border: 1px solid var(--wb-border); border-radius: 18px; background: #fff; }
.wb-training-toc > strong { display: block; margin-bottom: 12px; font-size: .82rem; letter-spacing: .05em; text-transform: uppercase; }
.wb-training-toc ol { display: grid; gap: 7px; max-height: 350px; overflow-y: auto; margin: 0; padding: 0 4px 0 0; list-style: none; }
.wb-training-toc li { min-width: 0; }
.wb-training-toc li.is-subsection { padding-left: 12px; }
.wb-training-toc a { display: block; padding: 5px 0; color: var(--wb-muted); font-size: .78rem; line-height: 1.35; text-decoration: none; }
.wb-training-toc a:hover { color: var(--wb-purple-deep); }
.wb-training-aside__links { display: grid; gap: 8px; }
.wb-training-aside__links > a { display: flex; min-height: 44px; align-items: center; padding: 10px 12px; border: 1px solid var(--wb-border); border-radius: 12px; background: #fff; color: var(--wb-ink); font-size: .83rem; font-weight: 800; text-decoration: none; }
.wb-training-aside__links > a:hover { border-color: #d7b8dc; background: var(--wb-pink-soft); }
.wb-legacy-lesson { color: #2a222d; }
.wb-legacy-lesson h2, .wb-legacy-lesson h3 { scroll-margin-top: 100px; text-wrap: balance; }
.wb-legacy-lesson h2 { margin-top: 0; padding-bottom: 18px; border-bottom: 1px solid var(--wb-border); font-size: clamp(1.9rem,3.5vw,2.8rem); line-height: 1.08; letter-spacing: -.045em; }
.wb-legacy-lesson h3 { margin-top: 42px; font-size: clamp(1.3rem,2.3vw,1.75rem); line-height: 1.18; letter-spacing: -.025em; }
.wb-legacy-lesson p, .wb-legacy-lesson li { font-size: 1rem; line-height: 1.72; }
.wb-legacy-lesson ul, .wb-legacy-lesson ol { display: grid; gap: 8px; }
.wb-legacy-lesson li::marker { color: var(--wb-purple); font-weight: 900; }
.wb-legacy-lesson strong { color: #211924; }


/* Vacancy detail profile */
.wb-vacancy-hero-card__icon { display: grid; width: 72px; height: 72px; place-items: center; margin-bottom: 18px; border-radius: 20px; background: rgba(255,255,255,.12); }
.wb-vacancy-hero-card__icon img { width: 52px; height: 52px; }
.wb-section--role-snapshot { padding-block: clamp(34px,5vw,58px); background: #fff; }
.wb-role-snapshot { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.wb-role-snapshot article { min-width: 0; padding: clamp(22px,3vw,30px); border: 1px solid var(--wb-border); border-radius: 22px; background: var(--wb-soft); }
.wb-role-snapshot__label { display: block; margin-bottom: 22px; color: var(--wb-purple); font-size: .7rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.wb-role-snapshot h2 { margin: 0 0 16px; font-size: clamp(1.4rem,2.5vw,2rem); font-weight: 950; line-height: 1.05; letter-spacing: -.04em; }
.wb-role-snapshot ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.wb-role-snapshot li { position: relative; padding-left: 18px; color: var(--wb-muted); font-size: .9rem; }
.wb-role-snapshot li::before { position: absolute; left: 1px; top: .62em; width: 6px; height: 6px; border-radius: 50%; background: var(--wb-purple); content: ''; }
@media (max-width: 900px) { .wb-role-snapshot { grid-template-columns: 1fr; } }

/* Cities hub */
.wb-page-hero--cities { background: linear-gradient(126deg,#5f1676 0%,#a817a5 52%,#dc27bc 100%); }
.wb-city-hub-stat strong + p { margin-top: 6px; }
.wb-letter-nav { position: sticky; top: 88px; z-index: 6; display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 34px; padding: 12px; border: 1px solid var(--wb-border); border-radius: 18px; background: rgba(255,255,255,.94); box-shadow: 0 10px 32px rgba(62,20,67,.06); backdrop-filter: blur(14px); }
.wb-letter-nav a { display: grid; min-width: 38px; height: 38px; place-items: center; padding-inline: 8px; border-radius: 11px; color: var(--wb-ink); font-size: .84rem; font-weight: 900; text-decoration: none; }
.wb-letter-nav a:hover { background: var(--wb-pink-soft); color: var(--wb-purple-deep); }
.wb-city-directory__groups { display: grid; gap: 18px; }
.wb-city-letter { scroll-margin-top: 150px; display: grid; grid-template-columns: 110px minmax(0,1fr); gap: 28px; padding: clamp(22px,3vw,30px); border: 1px solid var(--wb-border); border-radius: 22px; background: #fff; }
.wb-city-letter__heading { display: grid; align-content: start; gap: 5px; }
.wb-city-letter__heading strong { color: var(--wb-purple); font-size: clamp(2.3rem,5vw,4rem); font-weight: 950; line-height: .9; letter-spacing: -.06em; }
.wb-city-letter__heading span { color: var(--wb-muted); font-size: .76rem; }
.wb-city-letter__links { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 5px 10px; }
.wb-city-letter__links a { display: flex; min-height: 42px; align-items: center; justify-content: space-between; gap: 12px; padding: 9px 11px; border-radius: 10px; color: #352b37; font-size: .88rem; font-weight: 730; text-decoration: none; }
.wb-city-letter__links a span { color: #b699b7; }
.wb-city-letter__links a:hover { background: var(--wb-pink-soft); color: var(--wb-purple-deep); }

/* Mobile conversion rail */
.wb-mobile-actionbar { display: none; }
@media (max-width: 800px) {
    body:not(.wb-no-mobile-actions) { padding-bottom: calc(82px + env(safe-area-inset-bottom)); }
    .wb-mobile-actionbar { position: fixed; z-index: 50; left: 10px; right: 10px; bottom: max(10px, env(safe-area-inset-bottom)); display: grid; grid-template-columns: .78fr 1.22fr; gap: 7px; padding: 7px; border: 1px solid rgba(80,31,84,.13); border-radius: 18px; background: rgba(255,255,255,.95); box-shadow: 0 18px 54px rgba(49,15,53,.22); backdrop-filter: blur(18px); }
    .wb-mobile-actionbar a { display: flex; min-height: 48px; align-items: center; justify-content: center; gap: 8px; padding: 9px 11px; border-radius: 12px; color: var(--wb-ink); font-size: .78rem; text-decoration: none; }
    .wb-mobile-actionbar a > span { color: var(--wb-purple); font-size: 1rem; }
    .wb-mobile-actionbar__primary { background: linear-gradient(135deg,var(--wb-purple),#9218ad); color: #fff !important; }
    .wb-mobile-actionbar__primary > span { color: #fff !important; }
    .wb-footer { padding-bottom: 18px; }
}
@media (max-width: 900px) {
    .wb-city-letter { grid-template-columns: 70px minmax(0,1fr); }
    .wb-city-letter__links { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 620px) {
    .wb-letter-nav { position: static; padding: 9px; }
    .wb-letter-nav a { min-width: 34px; height: 34px; }
    .wb-city-letter { grid-template-columns: 1fr; gap: 14px; padding: 18px; }
    .wb-city-letter__heading { display: flex; align-items: baseline; justify-content: space-between; }
    .wb-city-letter__heading strong { font-size: 2.4rem; }
    .wb-city-letter__links { grid-template-columns: 1fr; }
}

/* Role comparison */
.wb-compare-wrap { overflow-x: auto; border: 1px solid var(--wb-border); border-radius: 22px; background: #fff; box-shadow: 0 14px 42px rgba(69,24,73,.05); }
.wb-compare-wrap:focus-visible { outline: 3px solid rgba(203,17,171,.22); outline-offset: 4px; }
.wb-compare-table { width: 100%; min-width: 860px; border-collapse: collapse; }
.wb-compare-table th, .wb-compare-table td { padding: 20px 22px; border-bottom: 1px solid var(--wb-border); border-right: 1px solid var(--wb-border); text-align: left; vertical-align: top; }
.wb-compare-table tr:last-child th, .wb-compare-table tr:last-child td { border-bottom: 0; }
.wb-compare-table th:last-child, .wb-compare-table td:last-child { border-right: 0; }
.wb-compare-table thead th { background: #fbf7fc; color: var(--wb-muted); font-size: .76rem; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.wb-compare-table thead th:first-child { width: 160px; }
.wb-compare-table tbody th { width: 160px; background: #fdfafd; color: var(--wb-ink); font-size: .82rem; font-weight: 900; }
.wb-compare-table td { color: #554a57; font-size: .9rem; line-height: 1.5; }
.wb-compare-table__role { display: flex; align-items: center; gap: 11px; color: var(--wb-ink); }
.wb-compare-table__role img { width: 38px; height: 38px; padding: 6px; border-radius: 10px; background: var(--wb-pink-soft); }
.wb-compare-table__role strong { font-size: .92rem; letter-spacing: 0; text-transform: none; }
.wb-text-link--light { display: inline-flex; margin-top: 14px; color: #ffd1f5 !important; }

/* Privacy reading layout */
.wb-privacy-page { padding-block: clamp(54px,7vw,84px); }
.wb-privacy-layout { display: grid; grid-template-columns: 230px minmax(0,820px); justify-content: center; gap: clamp(34px,6vw,74px); align-items: start; }
.wb-privacy-nav { position: sticky; top: 104px; display: grid; gap: 16px; padding: 20px; border: 1px solid var(--wb-border); border-radius: 18px; background: var(--wb-soft); }
.wb-privacy-nav > strong { font-size: .82rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.wb-privacy-nav nav { display: grid; gap: 4px; }
.wb-privacy-nav nav a { padding: 7px 8px; border-radius: 9px; color: var(--wb-muted); font-size: .8rem; text-decoration: none; }
.wb-privacy-nav nav a:hover { background: #fff; color: var(--wb-purple-deep); }
.wb-privacy-contact { display: grid; gap: 4px; padding-top: 13px; border-top: 1px solid var(--wb-border); }
.wb-privacy-contact span { color: var(--wb-muted); font-size: .72rem; }
.wb-privacy-contact a { overflow-wrap: anywhere; color: var(--wb-purple-deep); font-size: .79rem; }
.wb-privacy-content { max-width: none; padding: 0; }
.wb-privacy-content > section { scroll-margin-top: 110px; margin-bottom: 42px; }
.wb-privacy-content > section > h2 { margin-top: 0; }
.wb-status-card__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 24px; }
.wb-status-card__icon--muted { background: linear-gradient(135deg,#4a374f,#6b4c73); box-shadow: 0 14px 34px rgba(61,42,66,.18); }
.wb-button--soft { border: 1px solid var(--wb-border); background: var(--wb-soft); color: var(--wb-ink); }
@media (max-width: 900px) {
    .wb-privacy-layout { grid-template-columns: 1fr; }
    .wb-privacy-nav { position: static; }
    .wb-privacy-nav nav { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 620px) {
    .wb-privacy-nav nav { grid-template-columns: 1fr; }
}

/* Compact content sections */
.wb-section--compact { padding-block: clamp(34px,5vw,58px); }

/* Training: quick working situations */
.wb-training-situations { margin-top: 28px; padding: clamp(24px,4vw,38px); border: 1px solid var(--wb-border); border-radius: 24px; background: #fff; }
.wb-training-situations__heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 22px; }
.wb-training-situations__heading .wb-eyebrow { margin-bottom: 0; }
.wb-training-situations__heading h2 { max-width: 22ch; margin: 0; font-size: clamp(1.55rem,3vw,2.45rem); line-height: 1.06; letter-spacing: -.045em; }
.wb-training-situations__grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 10px; }
.wb-training-situations__grid a { display: grid; min-height: 150px; align-content: end; padding: 18px; border: 1px solid var(--wb-border); border-radius: 17px; background: var(--wb-soft); color: var(--wb-ink); text-decoration: none; transition: transform .16s ease,border-color .16s ease,background-color .16s ease; }
.wb-training-situations__grid a:hover { transform: translateY(-2px); border-color: #d8b6dc; background: #fff4fd; }
.wb-training-situations__grid span { margin-bottom: auto; color: var(--wb-purple); font-size: .7rem; font-weight: 900; letter-spacing: .08em; }
.wb-training-situations__grid strong { margin: 28px 0 5px; font-size: .95rem; line-height: 1.25; }
.wb-training-situations__grid small { color: var(--wb-muted); font-size: .76rem; }

/* Navigation state */
.wb-nav a.is-active:not(.wb-nav__cta) { position: relative; color: var(--wb-purple-deep); }
.wb-nav a.is-active:not(.wb-nav__cta)::after { position: absolute; left: 0; right: 0; bottom: -25px; height: 2px; border-radius: 2px; background: var(--wb-purple); content: ''; }

@media (max-width: 1000px) {
    .wb-training-situations__grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 800px) {
    .wb-nav a.is-active:not(.wb-nav__cta)::after { display: none; }
    .wb-nav a.is-active:not(.wb-nav__cta) { background: var(--wb-pink-soft); }
}
@media (max-width: 620px) {
    .wb-training-situations__heading { align-items: flex-start; flex-direction: column; gap: 8px; }
    .wb-training-situations__grid { grid-template-columns: 1fr; }
    .wb-training-situations__grid a { min-height: 120px; }
}

/* Vacancies: alternate city-first path */
.wb-vacancy-city-path { background: #fff; }
.wb-city-path-note { display: grid; grid-template-columns: auto minmax(220px,1fr) auto; align-items: center; gap: 18px; margin-top: 18px; padding: 16px 18px; border: 1px solid var(--wb-border); border-radius: 16px; background: white; }
.wb-city-path-note > span { padding: 7px 10px; border-radius: 999px; background: #fff; color: var(--wb-purple-deep); font-size: .76rem; font-weight: 900; white-space: nowrap; }
.wb-city-path-note p { margin: 0; color: var(--wb-muted); font-size: .86rem; }
@media (max-width: 800px) {
    .wb-city-path-note { grid-template-columns: 1fr; align-items: start; }
    .wb-city-path-note > span { justify-self: start; }
}

/* Homepage start kit */
.wb-start-kit { background: #fff; }
.wb-start-kit__grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 14px; }
.wb-start-kit__grid article { display: flex; min-height: 285px; flex-direction: column; padding: 24px; border: 1px solid var(--wb-border); border-radius: 21px; background: #fff; box-shadow: 0 12px 38px rgba(67,24,72,.045); }
.wb-start-kit__icon { display: grid; width: 58px; height: 58px; place-items: center; margin-bottom: 34px; border-radius: 17px; background: linear-gradient(135deg,#fff0fb,#efdaf3); }
.wb-start-kit__icon img { width: 42px; height: 42px; object-fit: contain; }
.wb-start-kit__grid strong { margin-bottom: 10px; font-size: 1.05rem; letter-spacing: -.02em; }
.wb-start-kit__grid p { margin: 0; color: var(--wb-muted); font-size: .89rem; }
@media (max-width: 1000px) { .wb-start-kit__grid { grid-template-columns: repeat(2,minmax(0,1fr)); } }
@media (max-width: 620px) { .wb-start-kit__grid { grid-template-columns: 1fr; } .wb-start-kit__grid article { min-height: 0; } .wb-start-kit__icon { margin-bottom: 22px; } }

/* Related training lessons */
.wb-related-lessons { padding-block: clamp(52px,7vw,82px); }
.wb-related-lessons__grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.wb-related-lessons__grid a { display: flex; min-height: 245px; flex-direction: column; padding: 24px; border: 1px solid var(--wb-border); border-radius: 20px; background: #fff; color: var(--wb-ink); text-decoration: none; transition: transform .16s ease,border-color .16s ease,box-shadow .16s ease; }
.wb-related-lessons__grid a:hover { transform: translateY(-3px); border-color: #d7b5dc; box-shadow: 0 18px 45px rgba(68,24,73,.08); }
.wb-related-lessons__grid span { color: var(--wb-purple); font-size: .7rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.wb-related-lessons__grid strong { margin: 28px 0 9px; font-size: 1.1rem; line-height: 1.24; letter-spacing: -.02em; }
.wb-related-lessons__grid p { margin: 0 0 22px; color: var(--wb-muted); font-size: .84rem; }
.wb-related-lessons__grid b { margin-top: auto; color: var(--wb-purple-deep); font-size: .82rem; }
@media (max-width: 900px) { .wb-related-lessons__grid { grid-template-columns: 1fr; } .wb-related-lessons__grid a { min-height: 0; } }

/* City vacancy cards: clearer role differentiation */
.wb-vacancy-card--featured { border-color: #dfb8df; background: linear-gradient(180deg,#fff 0%,#fff8fe 100%); box-shadow: 0 20px 54px rgba(128,33,132,.09); }
.wb-vacancy-card--featured .wb-vacancy-card__icon { background: linear-gradient(135deg,#ffe8fb,#eacaf0); }
.wb-vacancy-card > p { font-size: .9rem; line-height: 1.55; }
.wb-vacancy-card__meta > span { overflow: hidden; max-width: 190px; text-overflow: ellipsis; white-space: nowrap; }

/* Role landing process and FAQ */
.wb-role-process { background: #fff; }
.wb-role-process__steps { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 12px; margin: 0; padding: 0; list-style: none; }
.wb-role-process__steps li { display: flex; min-height: 245px; flex-direction: column; padding: 22px; border: 1px solid var(--wb-border); border-radius: 20px; background: var(--wb-soft); }
.wb-role-process__steps span { color: var(--wb-purple); font-size: .7rem; font-weight: 950; letter-spacing: .09em; }
.wb-role-process__steps strong { margin: 50px 0 9px; font-size: 1.02rem; line-height: 1.22; }
.wb-role-process__steps p { margin: 0; color: var(--wb-muted); font-size: .84rem; }
.wb-role-faq { display: grid; grid-template-columns: minmax(220px,.55fr) minmax(0,1.45fr); gap: clamp(28px,5vw,60px); align-items: start; margin-top: clamp(36px,5vw,58px); padding-top: clamp(32px,4vw,48px); border-top: 1px solid var(--wb-border); }
.wb-role-faq h3 { max-width: 12ch; margin: 0; font-size: clamp(1.8rem,3.5vw,3rem); line-height: 1.03; letter-spacing: -.05em; }
@media (max-width: 1000px) { .wb-role-process__steps { grid-template-columns: repeat(2,minmax(0,1fr)); } }
@media (max-width: 800px) { .wb-role-faq { grid-template-columns: 1fr; } }
@media (max-width: 620px) { .wb-role-process__steps { grid-template-columns: 1fr; } .wb-role-process__steps li { min-height: 0; } .wb-role-process__steps strong { margin-top: 28px; } }

/* Application form selected vacancy preview */
.wb-form-selection { display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: 14px; padding: 14px 16px; border: 1px solid #dcc2df; border-radius: 15px; background: #fff7fd; }
.wb-form-selection[hidden] { display: none; }
.wb-form-selection > span { padding: 6px 9px; border-radius: 999px; background: var(--wb-ink); color: #fff; font-size: .67rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
.wb-form-selection > div { display: grid; gap: 2px; }
.wb-form-selection strong { font-size: .9rem; }
.wb-form-selection small { color: var(--wb-muted); font-size: .73rem; }
.wb-form-selection .wb-text-link { white-space: nowrap; }
@media (max-width: 700px) { .wb-form-selection { grid-template-columns: 1fr; align-items: start; } .wb-form-selection > span { justify-self: start; } .wb-form-selection .wb-text-link { white-space: normal; } }

/* Friendly public error pages */
.wb-error-page { display: grid; min-height: calc(100vh - 72px); place-items: center; padding: clamp(60px,10vw,120px) 0; background: radial-gradient(circle at 75% 15%,#f9def6 0 100px,transparent 101px),linear-gradient(180deg,#fff 0%,#fbf5fc 100%); }
.wb-error-page__inner { max-width: 760px; text-align: center; }
.wb-error-page__code { margin-bottom: 18px; color: #e1b4dd; font-size: clamp(4.5rem,15vw,9rem); font-weight: 950; line-height: .78; letter-spacing: -.08em; }
.wb-error-page h1 { max-width: 13ch; margin: 0 auto 18px; font-size: clamp(2.1rem,5vw,4rem); line-height: 1; letter-spacing: -.055em; }
.wb-error-page__inner > p:not(.wb-eyebrow) { max-width: 620px; margin: 0 auto; color: var(--wb-muted); }
.wb-error-page__actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px; margin-top: 30px; }
@media (max-width: 620px) { .wb-error-page__actions { display: grid; } .wb-error-page__actions .wb-button { width: 100%; } }

.wb-city-search-note { display: flex; align-items: center; gap: 16px; margin-top: 22px; padding: 18px 20px; border: 1px solid var(--wb-line); border-radius: 18px; background: white; }
.wb-city-search-note > span { flex: 0 0 auto; padding: 7px 10px; border-radius: 999px; background: rgba(203,17,171,.10); color: var(--wb-purple-deep); font-weight: 800; font-size: .76rem; }
.wb-city-search-note p { margin: 0; color: var(--wb-muted); font-size: .9rem; }
.wb-city-search-note .wb-text-link { margin-left: auto; white-space: nowrap; }
@media (max-width: 760px) { .wb-city-search-note { align-items: flex-start; flex-direction: column; gap: 10px; } .wb-city-search-note .wb-text-link { margin-left: 0; } }

/* Nearby cities — calculated by coordinates, not curated popularity */
.wb-nearby-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 14px; }
.wb-nearby-card { position: relative; display: flex; min-height: 162px; flex-direction: column; align-items: flex-start; padding: 20px; overflow: hidden; border: 1px solid var(--wb-border); border-radius: 20px; background: linear-gradient(145deg,#fff 0%,#fff 58%,#fbf2fc 100%); color: var(--wb-ink); text-decoration: none; transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease; }
.wb-nearby-card::after { position: absolute; right: -28px; bottom: -34px; width: 100px; height: 100px; border-radius: 50%; background: rgba(203,17,171,.055); content: ""; }
.wb-nearby-card:hover { transform: translateY(-3px); border-color: #d9b5dc; box-shadow: 0 18px 42px rgba(72,26,78,.09); }
.wb-nearby-card__distance { display: inline-flex; margin-bottom: 16px; padding: 6px 9px; border-radius: 999px; background: var(--wb-pink-soft); color: var(--wb-purple-deep); font-size: .72rem; font-weight: 900; }
.wb-nearby-card strong { position: relative; z-index: 1; font-size: 1.08rem; }
.wb-nearby-card small { position: relative; z-index: 1; margin-top: 5px; color: var(--wb-muted); line-height: 1.4; }
.wb-nearby-card .wb-text-link { position: relative; z-index: 1; margin-top: auto; padding-top: 18px; }
@media (max-width: 980px) { .wb-nearby-grid { grid-template-columns: repeat(2,minmax(0,1fr)); } }
@media (max-width: 560px) { .wb-nearby-grid { grid-template-columns: 1fr; } .wb-nearby-card { min-height: 142px; } }

/* Visual role selector inside the application form; native select remains as no-JS fallback. */
.wb-role-picker__options { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 8px; }
.wb-role-picker__option { display: grid; min-width: 0; min-height: 82px; place-items: center; gap: 5px; padding: 10px 8px; border: 1px solid #d9cedb; border-radius: 14px; background: #fff; color: var(--wb-ink); cursor: pointer; font: inherit; text-align: center; transition: border-color .15s ease, background-color .15s ease, box-shadow .15s ease, transform .15s ease; }
.wb-role-picker__option > span { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 11px; background: var(--wb-pink-soft); }
.wb-role-picker__option strong { font-size: .76rem; line-height: 1.15; }
.wb-role-picker__option:hover { transform: translateY(-1px); border-color: #c9a5cd; }
.wb-role-picker__option[aria-pressed="true"] { border-color: var(--wb-purple); background: #fff6fd; box-shadow: 0 0 0 3px rgba(203,17,171,.09); }
.wb-role-picker__option:focus-visible { outline: 3px solid rgba(203,17,171,.16); outline-offset: 2px; }
.js .wb-role-picker__native { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
@media (max-width: 560px) { .wb-role-picker__options { grid-template-columns: 1fr; } .wb-role-picker__option { grid-template-columns: 40px 1fr; min-height: 58px; place-items: center start; text-align: left; } }

/* Contextual role styling: roles are equal in priority, but easier to scan visually. */
.wb-format-card,
.wb-vacancy-card { position: relative; overflow: hidden; }
.wb-format-card::before,
.wb-vacancy-card::before { position: absolute; inset: 0 0 auto; height: 4px; background: var(--wb-purple); content: ''; }
.wb-format-card--peshii-kurer::before,
.wb-vacancy-card--peshii-kurer::before { background: linear-gradient(90deg,#7a147b,#cb11ab); }
.wb-format-card--velo-kurer::before,
.wb-vacancy-card--velo-kurer::before { background: linear-gradient(90deg,#5e2aa5,#a422c5); }
.wb-format-card--voditel-kurer::before,
.wb-vacancy-card--voditel-kurer::before { background: linear-gradient(90deg,#cb11ab,#e64ac6); }
.wb-format-card--peshii-kurer .wb-format-card__icon,
.wb-vacancy-card--peshii-kurer .wb-vacancy-card__icon { background: linear-gradient(135deg,#f8eafa,#f1d7f0); }
.wb-format-card--velo-kurer .wb-format-card__icon,
.wb-vacancy-card--velo-kurer .wb-vacancy-card__icon { background: linear-gradient(135deg,#efe9fb,#e4d6f7); }
.wb-format-card--voditel-kurer .wb-format-card__icon,
.wb-vacancy-card--voditel-kurer .wb-vacancy-card__icon { background: linear-gradient(135deg,#fff0fb,#f5d9ee); }
.wb-vacancy-card--featured { border-color: var(--wb-border); background: #fff; box-shadow: 0 16px 46px rgba(64,28,67,.045); }
.wb-vacancy-card--featured .wb-vacancy-card__icon { background: linear-gradient(135deg,#fff0fb,#efdbf3); }

/* Compact in-page navigation for city/role/vacancy journeys. */
.wb-page-links { position: sticky; z-index: 20; top: 72px; border-bottom: 1px solid rgba(91,48,96,.10); background: rgba(255,255,255,.93); box-shadow: 0 8px 28px rgba(48,20,51,.045); backdrop-filter: blur(16px); }
.wb-page-links__inner { display: flex; min-height: 58px; align-items: center; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.wb-page-links__inner::-webkit-scrollbar { display: none; }
.wb-page-links a { display: inline-flex; min-height: 38px; align-items: center; flex: 0 0 auto; padding: 8px 13px; border-radius: 11px; color: #665b68; font-size: .82rem; font-weight: 800; text-decoration: none; transition: background-color .15s ease,color .15s ease; }
.wb-page-links a:hover,
.wb-page-links a:focus-visible { background: var(--wb-pink-soft); color: var(--wb-purple-deep); }
@media (max-width: 780px) {
    .wb-page-links { top: 64px; }
    .wb-page-links__inner { min-height: 52px; padding-inline: 14px; }
    .wb-page-links a { min-height: 36px; padding: 7px 11px; font-size: .76rem; }
}

/* Hero context chips keep city/role state visible without adding another section. */
.wb-page-hero__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.wb-page-hero__chips span { display: inline-flex; min-height: 31px; align-items: center; padding: 6px 10px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.9); font-size: .72rem; font-weight: 800; backdrop-filter: blur(8px); }
@media (max-width: 620px) { .wb-page-hero__chips { margin-top: 19px; } .wb-page-hero__chips span { font-size: .68rem; } }

/* Mobile conversion rail uses clear labels instead of decorative glyphs. */
@media (max-width: 780px) {
    .wb-mobile-actionbar a { font-weight: 800; letter-spacing: -.01em; }
    .wb-mobile-actionbar a > strong { font-size: .78rem; }
}


/* Application form hierarchy and selected context. */
.wb-form-section-title { display: grid; grid-template-columns: 32px auto 1fr; align-items: center; gap: 9px; margin: 0 0 14px; }
.wb-form-section-title:not(:first-of-type) { margin-top: 26px; }
.wb-form-section-title > span { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 10px; background: var(--wb-pink-soft); color: var(--wb-purple-deep); font-size: .68rem; font-weight: 950; }
.wb-form-section-title > strong { font-size: .88rem; letter-spacing: -.01em; }
.wb-form-section-title > small { color: var(--wb-muted); font-size: .74rem; text-align: right; }
@media (max-width: 620px) { .wb-form-section-title { grid-template-columns: 30px 1fr; } .wb-form-section-title > small { grid-column: 2; text-align: left; margin-top: -5px; } }

/* Application success journey. */
.wb-status-choice { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; margin: 24px 0; }
.wb-status-choice > div { display: grid; gap: 4px; padding: 16px; border: 1px solid var(--wb-border); border-radius: 16px; background: var(--wb-soft); }
.wb-status-choice span { color: var(--wb-muted); font-size: .7rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.wb-status-choice strong { font-size: 1rem; }
.wb-status-next { margin: 28px 0 8px; }
.wb-status-next ol { display: grid; gap: 10px; margin: 12px 0 0; padding: 0; list-style: none; }
.wb-status-next li { display: grid; grid-template-columns: 36px minmax(0,1fr); gap: 12px; align-items: start; padding: 13px 0; border-top: 1px solid var(--wb-border); }
.wb-status-next li > span { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 11px; background: var(--wb-pink-soft); color: var(--wb-purple-deep); font-size: .72rem; font-weight: 950; }
.wb-status-next li strong { display: block; margin: 1px 0 3px; }
.wb-status-next li p { margin: 0; color: var(--wb-muted); font-size: .84rem; line-height: 1.45; }
.wb-status-card__links { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 20px; margin-top: 4px; }
@media (max-width: 620px) { .wb-status-choice { grid-template-columns: 1fr; } .wb-status-card__links { align-items: flex-start; flex-direction: column; } }

/* Milestone 8: stronger vacancy storytelling and role-aware learning links. */
.wb-job-about-section { padding-top: clamp(46px, 6vw, 68px); }
.wb-job-about { display: grid; grid-template-columns: minmax(260px,.38fr) minmax(0,.62fr); overflow: hidden; border: 1px solid var(--wb-border); border-radius: 30px; background: #fff; box-shadow: 0 24px 70px rgba(69,24,74,.08); }
.wb-job-about__header { position: relative; display: flex; min-height: 100%; flex-direction: column; align-items: flex-start; padding: clamp(28px,4vw,44px); overflow: hidden; background: linear-gradient(145deg,#2b1830 0%,#4c2054 100%); color: #fff; }
.wb-job-about__header::after { position: absolute; right: -70px; bottom: -90px; width: 240px; height: 240px; border-radius: 50%; background: rgba(255,255,255,.065); content: ''; }
.wb-job-about__header--peshii-kurer { background: linear-gradient(145deg,#29162f 0%,#661566 100%); }
.wb-job-about__header--velo-kurer { background: linear-gradient(145deg,#24193a 0%,#5e2aa5 100%); }
.wb-job-about__header--voditel-kurer { background: linear-gradient(145deg,#2d182e 0%,#8d1d7e 100%); }
.wb-job-about__icon { position: relative; z-index: 1; display: grid; width: 82px; height: 82px; place-items: center; margin-bottom: 34px; border: 1px solid rgba(255,255,255,.13); border-radius: 23px; background: rgba(255,255,255,.10); backdrop-filter: blur(12px); }
.wb-job-about__icon img { width: 58px; height: 58px; object-fit: contain; }
.wb-job-about__header h2 { position: relative; z-index: 1; margin: 4px 0 5px; color: #fff; font-size: clamp(2rem,3.8vw,3.35rem); line-height: 1; letter-spacing: -.055em; }
.wb-job-about__header > strong { position: relative; z-index: 1; color: #f3b8ea; font-size: 1.05rem; }
.wb-job-about__header > p:not(.wb-eyebrow) { position: relative; z-index: 1; max-width: 34ch; margin: 18px 0 0; color: #ded0e1; }
.wb-job-about__content { min-width: 0; padding: clamp(28px,4vw,46px); }
.wb-job-about__content .wb-vacancy-copy { max-width: 760px; }
.wb-job-about__content .wb-vacancy-copy > p { margin: 0 0 18px; color: #403743; line-height: 1.76; }
.wb-job-about__content .wb-vacancy-copy > p > b { color: var(--wb-ink); }
.wb-job-about__content .wb-vacancy-copy > ul { display: grid; gap: 8px; margin: 12px 0 24px; padding: 0; list-style: none; }
.wb-job-about__content .wb-vacancy-copy > ul li { position: relative; margin: 0; padding-left: 26px; color: #4e4450; }
.wb-job-about__content .wb-vacancy-copy > ul li::before { position: absolute; left: 0; top: .43em; width: 9px; height: 9px; border-radius: 50%; background: linear-gradient(135deg,var(--wb-violet),var(--wb-purple)); content: ''; }

.wb-role-training { display: grid; gap: 4px; }
.wb-role-training__grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.wb-role-training-card { position: relative; display: grid; min-width: 0; min-height: 220px; grid-template-columns: 1fr auto; grid-template-rows: auto 1fr; gap: 20px 14px; padding: 22px; overflow: hidden; border: 1px solid var(--wb-border); border-radius: 22px; background: #fff; color: var(--wb-ink); text-decoration: none; transition: transform .16s ease,border-color .16s ease,box-shadow .16s ease; }
.wb-role-training-card::after { position: absolute; right: -35px; bottom: -40px; width: 120px; height: 120px; border-radius: 50%; background: rgba(203,17,171,.045); content: ''; }
.wb-role-training-card:hover { transform: translateY(-3px); border-color: #d4b1d8; box-shadow: 0 18px 48px rgba(68,24,71,.09); }
.wb-role-training-card__icon { display: grid; width: 58px; height: 58px; place-items: center; padding: 8px; border-radius: 17px; background: linear-gradient(135deg,#6f2a8c,#cb11ab); }
.wb-role-training-card__icon img { width: 42px; height: 42px; object-fit: contain; }
.wb-role-training-card__body { grid-column: 1 / -1; display: grid; align-content: end; gap: 6px; }
.wb-role-training-card__body small { color: var(--wb-purple-deep); font-size: .68rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.wb-role-training-card__body strong { font-size: 1.12rem; line-height: 1.25; }
.wb-role-training-card__body > span { color: var(--wb-muted); font-size: .88rem; line-height: 1.5; }
.wb-role-training-card > b { position: relative; z-index: 1; align-self: center; color: var(--wb-purple-deep); font-size: 1.1rem; }

.wb-section--application-path { padding-top: 20px; padding-bottom: 18px; }
.wb-application-path { display: grid; grid-template-columns: minmax(0,.78fr) minmax(430px,1.22fr); gap: clamp(24px,5vw,58px); align-items: center; padding: clamp(26px,4vw,42px); border: 1px solid #e1d2e4; border-radius: 28px; background: linear-gradient(135deg,#fff 0%,#fff 60%,#faf0fb 100%); box-shadow: 0 18px 55px rgba(62,24,67,.06); }
.wb-application-path__intro h2 { margin: 4px 0 12px; font-size: clamp(1.75rem,3vw,2.65rem); line-height: 1.08; letter-spacing: -.045em; }
.wb-application-path__intro > p:not(.wb-eyebrow) { max-width: 48ch; margin: 0 0 14px; color: var(--wb-muted); }
.wb-application-path__steps { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 8px; margin: 0; padding: 0; list-style: none; }
.wb-application-path__steps li { position: relative; display: grid; align-content: start; gap: 14px; min-height: 142px; padding: 16px 14px; border: 1px solid var(--wb-border); border-radius: 17px; background: #fff; }
.wb-application-path__steps li > span { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 11px; background: var(--wb-soft); color: var(--wb-purple-deep); font-size: .69rem; font-weight: 950; }
.wb-application-path__steps li.is-done { border-color: #dcbddd; background: #fff8fe; }
.wb-application-path__steps li.is-done > span { background: var(--wb-purple); color: #fff; }
.wb-application-path__steps strong { display: block; font-size: .9rem; line-height: 1.25; }
.wb-application-path__steps small { display: block; margin-top: 4px; color: var(--wb-muted); font-size: .72rem; line-height: 1.35; }

@media (max-width: 980px) {
    .wb-job-about { grid-template-columns: 1fr; }
    .wb-job-about__header { min-height: auto; }
    .wb-application-path { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
    .wb-role-training__grid { grid-template-columns: 1fr; }
    .wb-role-training-card { min-height: 160px; }
    .wb-application-path__steps { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 520px) {
    .wb-job-about { border-radius: 22px; }
    .wb-job-about__header,.wb-job-about__content { padding: 24px 20px; }
    .wb-job-about__icon { width: 68px; height: 68px; margin-bottom: 26px; border-radius: 19px; }
    .wb-application-path { padding: 22px 18px; border-radius: 22px; }
    .wb-application-path__steps { grid-template-columns: 1fr 1fr; }
    .wb-application-path__steps li { min-height: 124px; }
}

/* Milestone 8: factual local context for city and city-role pages. */
.wb-section--compact { padding: clamp(26px,4vw,42px) 0; }
.wb-local-overview { display: grid; grid-template-columns: minmax(0,.72fr) minmax(520px,1.28fr); gap: clamp(24px,4vw,48px); align-items: center; padding: clamp(24px,4vw,36px); border: 1px solid #e3d6e5; border-radius: 28px; background: linear-gradient(135deg,#fff 0%,#fff 55%,#fbf2fc 100%); box-shadow: 0 16px 50px rgba(67,24,72,.055); }
.wb-local-overview__intro h2 { margin: 4px 0 12px; font-size: clamp(1.65rem,2.8vw,2.5rem); line-height: 1.1; letter-spacing: -.04em; }
.wb-local-overview__intro > p:not(.wb-eyebrow) { max-width: 50ch; margin: 0; color: var(--wb-muted); }
.wb-local-overview__stats { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 10px; }
.wb-local-overview__stats > div { display: grid; align-content: start; min-width: 0; min-height: 146px; gap: 6px; padding: 17px; border: 1px solid var(--wb-border); border-radius: 18px; background: #fff; }
.wb-local-overview__stats span,.wb-vacancy-local span { color: var(--wb-purple-deep); font-size: .67rem; font-weight: 900; letter-spacing: .075em; text-transform: uppercase; }
.wb-local-overview__stats strong { margin-top: 7px; font-size: clamp(1.2rem,2vw,1.65rem); line-height: 1.15; letter-spacing: -.035em; }
.wb-local-overview__stats small { margin-top: auto; color: var(--wb-muted); font-size: .73rem; line-height: 1.35; }

.wb-vacancy-local { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); overflow: hidden; border: 1px solid var(--wb-border); border-radius: 22px; background: #fff; box-shadow: 0 14px 44px rgba(62,24,67,.05); }
.wb-vacancy-local > div { display: grid; min-width: 0; gap: 5px; padding: 20px; border-right: 1px solid var(--wb-border); }
.wb-vacancy-local > div:last-child { border-right: 0; }
.wb-vacancy-local strong { margin-top: 3px; font-size: 1.05rem; line-height: 1.25; letter-spacing: -.025em; }
.wb-vacancy-local a { align-self: end; margin-top: 12px; color: var(--wb-purple-deep); font-size: .76rem; font-weight: 800; text-decoration: none; }
.wb-vacancy-local a:hover { text-decoration: underline; text-underline-offset: 3px; }
.wb-vacancy-local small { align-self: end; margin-top: 12px; color: var(--wb-muted); font-size: .72rem; line-height: 1.35; }

@media (max-width: 980px) {
    .wb-local-overview { grid-template-columns: 1fr; }
    .wb-vacancy-local { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .wb-vacancy-local > div:nth-child(2) { border-right: 0; }
    .wb-vacancy-local > div:nth-child(-n+2) { border-bottom: 1px solid var(--wb-border); }
}
@media (max-width: 680px) {
    .wb-local-overview__stats { grid-template-columns: 1fr; }
    .wb-local-overview__stats > div { min-height: 0; }
    .wb-vacancy-local { grid-template-columns: 1fr; }
    .wb-vacancy-local > div,.wb-vacancy-local > div:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--wb-border); }
    .wb-vacancy-local > div:last-child { border-bottom: 0; }
}

.wb-related-role-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
.wb-related-role-card { position: relative; display: grid; min-width: 0; min-height: 260px; grid-template-columns: 70px 1fr; grid-template-rows: auto 1fr auto; gap: 14px 18px; padding: 24px; overflow: hidden; border: 1px solid var(--wb-border); border-radius: 22px; background: #fff; color: var(--wb-ink); text-decoration: none; transition: transform .16s ease,border-color .16s ease,box-shadow .16s ease; }
.wb-related-role-card::before { position: absolute; inset: 0 0 auto; height: 4px; background: var(--wb-purple); content: ''; }
.wb-related-role-card--peshii-kurer::before { background: linear-gradient(90deg,#7a147b,#cb11ab); }
.wb-related-role-card--velo-kurer::before { background: linear-gradient(90deg,#5e2aa5,#a422c5); }
.wb-related-role-card--voditel-kurer::before { background: linear-gradient(90deg,#cb11ab,#e64ac6); }
.wb-related-role-card:hover { transform: translateY(-3px); border-color: #d4b0d7; box-shadow: 0 20px 50px rgba(66,24,70,.09); }
.wb-related-role-card__icon { display: grid; width: 66px; height: 66px; place-items: center; padding: 8px; border-radius: 18px; background: linear-gradient(135deg,#fff0fb,#eedcf2); }
.wb-related-role-card__body { display: grid; align-content: start; gap: 7px; }
.wb-related-role-card__body small { color: var(--wb-purple-deep); font-size: .67rem; font-weight: 900; letter-spacing: .075em; text-transform: uppercase; }
.wb-related-role-card__body strong { font-size: 1.35rem; line-height: 1.15; letter-spacing: -.035em; }
.wb-related-role-card__body > span { color: var(--wb-muted); font-size: .88rem; line-height: 1.5; }
.wb-related-role-card > b { grid-column: 1 / -1; align-self: end; color: var(--wb-purple-deep); font-size: .8rem; }
@media (max-width: 760px) { .wb-related-role-grid { grid-template-columns: 1fr; } .wb-related-role-card { min-height: 220px; } }
@media (max-width: 520px) { .wb-related-role-card { grid-template-columns: 58px 1fr; padding: 20px; } .wb-related-role-card__icon { width: 56px; height: 56px; border-radius: 15px; } }

.wb-nearby-card--closest { grid-column: span 2; min-height: 162px; border-color: #d7b2db; background: radial-gradient(circle at 100% 0,rgba(203,17,171,.12) 0 85px,transparent 86px), linear-gradient(135deg,#fff 0%,#fff7fe 100%); }
.wb-nearby-card--closest strong { font-size: 1.28rem; }
.wb-nearby-card--closest .wb-nearby-card__distance { background: var(--wb-purple); color: #fff; }
@media (max-width: 980px) { .wb-nearby-card--closest { grid-column: span 2; } }
@media (max-width: 560px) { .wb-nearby-card--closest { grid-column: auto; min-height: 152px; } }

.wb-training-role-section { padding-top: 34px; padding-bottom: 28px; }
.wb-training-role-links { display: grid; grid-template-columns: minmax(0,.7fr) minmax(520px,1.3fr); gap: clamp(24px,5vw,56px); align-items: center; padding: clamp(24px,4vw,38px); border: 1px solid var(--wb-border); border-radius: 26px; background: linear-gradient(135deg,#fff 0%,#fff 55%,#fbf1fc 100%); }
.wb-training-role-links__intro h2 { margin: 4px 0 10px; font-size: clamp(1.6rem,2.8vw,2.4rem); line-height: 1.1; letter-spacing: -.04em; }
.wb-training-role-links__intro > p:not(.wb-eyebrow) { margin: 0; color: var(--wb-muted); }
.wb-training-role-links__items { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 10px; }
.wb-training-role-links__items a { display: grid; min-width: 0; min-height: 150px; align-content: end; gap: 4px; padding: 16px; border: 1px solid var(--wb-border); border-radius: 18px; background: #fff; color: var(--wb-ink); text-decoration: none; transition: transform .15s ease,border-color .15s ease,box-shadow .15s ease; }
.wb-training-role-links__items a:hover { transform: translateY(-2px); border-color: #d5b2d8; box-shadow: 0 14px 38px rgba(68,24,71,.08); }
.wb-training-role-links__items a > span { display: grid; width: 52px; height: 52px; place-items: center; margin-bottom: 14px; border-radius: 15px; background: linear-gradient(135deg,#fff0fb,#eeddf3); }
.wb-training-role-links__items strong { font-size: .93rem; line-height: 1.25; }
.wb-training-role-links__items small { color: var(--wb-muted); font-size: .72rem; }
@media (max-width: 900px) { .wb-training-role-links { grid-template-columns: 1fr; } }
@media (max-width: 620px) { .wb-training-role-links__items { grid-template-columns: 1fr; } .wb-training-role-links__items a { grid-template-columns: 54px 1fr; min-height: 78px; align-items: center; align-content: center; gap: 2px 12px; } .wb-training-role-links__items a > span { grid-row: 1 / span 2; margin: 0; } }

/* Milestone 8: official app cards carry a clear purpose and destination. */
.wb-app-card { align-items: start; min-height: 172px; padding: 22px; }
.wb-app-card__mark { margin-top: 2px; background: linear-gradient(135deg,#6a2a91,#cb11ab); color: #fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,.12); }
.wb-app-card__body { display: grid; align-content: start; gap: 4px; }
.wb-app-card__purpose { margin: 0 0 3px !important; color: var(--wb-purple-deep) !important; font-size: .66rem !important; font-weight: 900; letter-spacing: .075em; text-transform: uppercase; }
.wb-app-card__body > strong { font-size: 1.08rem; }
.wb-app-card__body > span { margin-top: 5px; color: var(--wb-muted); font-size: .82rem; line-height: 1.45; }
.wb-app-card__body > b { align-self: end; margin-top: 14px; color: var(--wb-purple-deep); font-size: .75rem; }
.wb-app-card > i { color: #9b78a0; font-size: 1rem; font-style: normal; }
@media (max-width: 560px) { .wb-app-card { min-height: 150px; padding: 18px; } }

/* Milestone 9: vacancy FAQ, training map and mobile reading polish. */
.wb-vacancy-faq-section { background: #fff; }
.wb-vacancy-faq-section .wb-faq-layout__intro .wb-text-link { display: inline-flex; margin-top: 18px; }
.wb-vacancy-faq-section .wb-faq details[open] { border-color: #d8b8dc; background: linear-gradient(135deg,#fff 0%,#fff8fe 100%); }
.wb-vacancy-faq-section .wb-faq details p { margin: 0 0 20px; color: var(--wb-muted); line-height: 1.65; }

.wb-training-map { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 10px; margin-top: 22px; }
.wb-training-map a { display: flex; min-width: 0; min-height: 178px; flex-direction: column; padding: 18px; border: 1px solid var(--wb-border); border-radius: 18px; background: #fff; color: var(--wb-ink); text-decoration: none; transition: transform .16s ease,border-color .16s ease,box-shadow .16s ease; }
.wb-training-map a:hover { transform: translateY(-2px); border-color: #d8b5dc; box-shadow: 0 16px 38px rgba(66,24,71,.07); }
.wb-training-map span { color: var(--wb-purple); font-size: .68rem; font-weight: 900; letter-spacing: .075em; text-transform: uppercase; }
.wb-training-map strong { margin: 34px 0 8px; font-size: .97rem; line-height: 1.25; letter-spacing: -.02em; }
.wb-training-map small { margin-top: auto; color: var(--wb-muted); font-size: .74rem; }
[data-training-group] { scroll-margin-top: 132px; }

@media (max-width: 900px) {
    .wb-training-map { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 620px) {
    .wb-training-map { display: flex; margin-inline: -14px; padding-inline: 14px; overflow-x: auto; scroll-snap-type: x proximity; scrollbar-width: none; }
    .wb-training-map::-webkit-scrollbar { display: none; }
    .wb-training-map a { flex: 0 0 min(78vw,280px); min-height: 154px; scroll-snap-align: start; }
    .wb-training-map strong { margin-top: 26px; }
    .wb-letter-nav { flex-wrap: nowrap; margin-inline: -14px; padding-inline: 14px; overflow-x: auto; border-right: 0; border-left: 0; border-radius: 0; scrollbar-width: none; }
    .wb-letter-nav::-webkit-scrollbar { display: none; }
    .wb-letter-nav a { flex: 0 0 auto; }
    .wb-city-letter { scroll-margin-top: 128px; }
    .wb-page-hero__chips { gap: 6px; }
    .wb-page-hero__chips span { font-size: .7rem; }
    .wb-vacancy-local > div { padding: 17px; }
    .wb-vacancy-local strong { font-size: 1rem; }
    .wb-nearby-grid { grid-template-columns: 1fr; }
    .wb-nearby-card, .wb-nearby-card--closest { min-height: 0; }
    .wb-training-toolbar__copy h2 { font-size: clamp(1.8rem,9vw,2.45rem); }
}

/* Milestone 9: key-page mobile composition. */
@media (max-width: 620px) {
    .wb-section { padding-block: 44px; }
    .wb-section--compact { padding-block: 26px; }
    .wb-page-hero__grid { gap: 24px; }
    .wb-page-hero__aside { gap: 7px; padding: 20px; border-radius: 20px; }
    .wb-page-hero__aside > strong { font-size: clamp(1.55rem,8vw,2.25rem); }
    .wb-page-hero__aside p { font-size: .82rem; line-height: 1.5; }
    .wb-vacancy-hero-card__icon { width: 58px; height: 58px; margin-bottom: 8px; border-radius: 16px; }
    .wb-vacancy-hero-card__icon img { width: 42px; height: 42px; }
    .wb-role-snapshot article { padding: 20px 18px; border-radius: 18px; }
    .wb-role-snapshot__label { margin-bottom: 15px; }
    .wb-job-about__header,.wb-job-about__content { padding: 22px 18px; }
    .wb-inline-fact { padding: 20px 18px; }
    .wb-application-path__steps li { min-height: 108px; padding: 15px; }
    .wb-related-role-card { min-height: 0; }
    .wb-nearby-card { padding: 18px; border-radius: 18px; }
    .wb-nearby-card__distance { margin-bottom: 22px; }
    .wb-faq details { padding-inline: 16px; }
    .wb-faq summary { padding-block: 17px; }
    .wb-training-route__grid a { padding: 16px; }
    .wb-city-directory__groups { gap: 12px; }
    .wb-city-letter__links a { min-height: 46px; padding: 10px 11px; }
}
.wb-city-page-finder__empty { display: grid; gap: 3px; padding: 16px; border-radius: 11px; background: var(--wb-soft); }
.wb-city-page-finder__empty strong { font-size: .88rem; }
.wb-city-page-finder__empty span { color: var(--wb-muted); font-size: .76rem; line-height: 1.4; }

/* Milestone 10 — final public chrome and long-page navigation polish. */
.wb-header { transition: box-shadow .18s ease, border-color .18s ease, background-color .18s ease; }
.wb-header[data-scrolled] { border-bottom-color: rgba(83,34,88,.10); box-shadow: 0 10px 34px rgba(45,18,49,.07); background: rgba(255,255,255,.97); }
.wb-menu-backdrop { position: fixed; z-index: 29; inset: 68px 0 0; background: rgba(24,13,27,.38); backdrop-filter: blur(3px); }
.wb-menu-backdrop[hidden] { display: none; }
body.is-menu-open { overflow: hidden; }

.wb-page-links a.is-current { background: var(--wb-pink-soft); color: var(--wb-purple-deep); box-shadow: inset 0 0 0 1px rgba(203,17,171,.08); }
.wb-page-links a.is-current::before { width: 6px; height: 6px; flex: 0 0 auto; border-radius: 50%; background: var(--wb-purple); content: ''; }

.wb-footer-cta { position: relative; overflow: hidden; padding: clamp(34px,5vw,58px) 0; background: linear-gradient(122deg,#781589 0%,#b315a7 50%,#d526b7 100%); color: #fff; }
.wb-footer-cta::before { position: absolute; top: -120px; right: max(3vw,20px); width: 320px; height: 320px; border: 70px solid rgba(255,255,255,.055); border-radius: 50%; content: ''; }
.wb-footer-cta__inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,1fr) auto; gap: clamp(26px,5vw,70px); align-items: center; }
.wb-footer-cta__copy { max-width: 760px; }
.wb-footer-cta__copy > span { display: inline-flex; margin-bottom: 8px; color: #ffd4f6; font-size: .72rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.wb-footer-cta__copy > strong { display: block; max-width: 20ch; font-size: clamp(1.8rem,3.6vw,3.2rem); line-height: 1.02; letter-spacing: -.045em; }
.wb-footer-cta__copy > p { max-width: 670px; margin: 13px 0 0; color: rgba(255,255,255,.83); font-size: .95rem; }
.wb-footer-cta__actions { display: grid; min-width: 210px; gap: 9px; justify-items: stretch; }
.wb-footer-cta__actions .wb-button { min-height: 52px; box-shadow: 0 14px 32px rgba(46,7,52,.15); }
.wb-footer-cta__secondary { display: inline-flex; min-height: 44px; align-items: center; justify-content: center; padding: 9px 14px; border: 1px solid rgba(255,255,255,.28); border-radius: 13px; color: #fff; font-size: .82rem; font-weight: 800; text-decoration: none; }
.wb-footer-cta__secondary:hover { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.08); }

@media (min-width: 801px) {
    .wb-menu-backdrop { display: none !important; }
    body.is-menu-open { overflow: auto; }
}
@media (max-width: 800px) {
    .wb-nav[data-open] { z-index: 31; }
    .wb-footer-cta__inner { grid-template-columns: 1fr; align-items: start; }
    .wb-footer-cta__actions { width: 100%; min-width: 0; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .wb-footer-cta { padding-block: 34px; }
    .wb-footer-cta__copy > strong { font-size: clamp(1.65rem,8vw,2.3rem); }
    .wb-footer-cta__actions { grid-template-columns: 1fr; }
    .wb-footer-cta__actions .wb-button, .wb-footer-cta__secondary { width: 100%; }
}

/* Milestone 10 — city hub guidance and training reading state. */
.wb-hub-steps { display: grid; gap: 0; margin: 4px 0 0; padding: 0; list-style: none; }
.wb-hub-steps li { display: grid; grid-template-columns: 36px minmax(0,1fr); gap: 12px; align-items: start; padding: 14px 0; border-top: 1px solid rgba(255,255,255,.12); }
.wb-hub-steps li:first-child { border-top: 0; padding-top: 5px; }
.wb-hub-steps b { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 11px; background: rgba(255,255,255,.09); color: #f3b9ea; font-size: .68rem; letter-spacing: .04em; }
.wb-hub-steps div { display: grid; gap: 2px; }
.wb-hub-steps strong { font-size: .92rem; line-height: 1.3; letter-spacing: -.01em; }
.wb-hub-steps small { color: #cfc0d2; font-size: .74rem; line-height: 1.4; }

.wb-reading-progress { position: sticky; z-index: 19; top: 72px; width: 100%; height: 3px; overflow: hidden; background: rgba(203,17,171,.08); }
.wb-reading-progress > span { display: block; width: 100%; height: 100%; transform: scaleX(0); transform-origin: 0 50%; background: linear-gradient(90deg,var(--wb-violet),var(--wb-purple),#e34fc7); will-change: transform; }
.wb-training-toc a { position: relative; padding-left: 12px; border-radius: 8px; transition: color .15s ease, background-color .15s ease; }
.wb-training-toc a::before { position: absolute; left: 0; top: .85em; width: 4px; height: 4px; border-radius: 50%; background: #d6c8d8; content: ''; }
.wb-training-toc a.is-current { padding: 7px 9px 7px 16px; background: var(--wb-pink-soft); color: var(--wb-purple-deep); font-weight: 800; }
.wb-training-toc a.is-current::before { left: 7px; background: var(--wb-purple); }

@media (max-width: 800px) {
    .wb-reading-progress { top: 64px; }
}
@media (max-width: 760px) {
    .wb-hub-steps li { padding-block: 11px; }
}

/* UI milestone 11: local context in city/vacancy heroes. */
.wb-nearest-hint {
    display: grid;
    gap: 2px;
    margin-top: 16px;
    padding: 13px 14px;
    border: 1px solid var(--wb-border);
    border-radius: 16px;
    background: #fff;
    color: var(--wb-ink);
    text-decoration: none;
    transition: transform .16s ease, border-color .16s ease, background .16s ease;
}
.wb-nearest-hint:hover { transform: translateY(-2px); border-color: #c99dce; }
.wb-nearest-hint span { color: var(--wb-muted); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.wb-nearest-hint strong { font-size: 1rem; line-height: 1.25; }
.wb-nearest-hint small { color: var(--wb-muted); font-size: .75rem; }
.wb-nearest-hint--light { border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.08); color: #fff; }
.wb-nearest-hint--light:hover { border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.12); }
.wb-nearest-hint--light span,
.wb-nearest-hint--light small { color: rgba(255,255,255,.72); }

@media (max-width: 720px) {
    .wb-nearest-hint { margin-top: 12px; padding: 12px 13px; border-radius: 14px; }
    .wb-page-hero__aside .wb-nearest-hint + .wb-text-link { margin-top: 12px; }
}

/* UI milestone 11: make the three delivery formats instantly scannable. */
.wb-vacancy-card__roleline,
.wb-format-card__roleline { display: flex; flex-wrap: wrap; gap: 7px; margin: -4px 0 14px; }
.wb-vacancy-card__roleline span,
.wb-format-card__roleline span { display: inline-flex; min-height: 27px; align-items: center; padding: 5px 9px; border-radius: 999px; background: var(--wb-pink-soft); color: var(--wb-purple-deep); font-size: .7rem; font-weight: 900; }
.wb-vacancy-card__roleline small { display: inline-flex; align-items: center; color: var(--wb-muted); font-size: .72rem; font-weight: 700; }
.wb-role-hero-summary__facts { display: grid; gap: 8px; margin-top: 16px; }
.wb-role-hero-summary__facts div { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 12px; align-items: center; padding: 10px 0; border-top: 1px solid rgba(255,255,255,.11); }
.wb-role-hero-summary__facts small { color: rgba(255,255,255,.62); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.wb-role-hero-summary__facts b { color: #fff; font-size: .82rem; line-height: 1.35; }

@media (max-width: 720px) {
    .wb-vacancy-card__roleline { margin-bottom: 11px; }
    .wb-role-hero-summary__facts div { grid-template-columns: 1fr; gap: 3px; }
}

/* UI milestone 12: make the MAX continuation step visually distinct. */
.wb-community-card--max { position: relative; display: grid; grid-template-columns: auto minmax(0,1fr) auto; overflow: hidden; background: radial-gradient(circle at 0 0,rgba(82,85,238,.12),transparent 220px), linear-gradient(135deg,#fff 0%,#fff4fc 100%); }
.wb-community-card--max::after { position: absolute; right: -70px; bottom: -90px; width: 240px; height: 240px; border: 48px solid rgba(91,61,224,.045); border-radius: 50%; content: ''; pointer-events: none; }
.wb-community-card__mark { position: relative; z-index: 1; display: grid; width: 88px; height: 88px; place-items: center; align-self: start; border-radius: 25px; background: #fff; box-shadow: 0 16px 42px rgba(75,41,122,.12); }
.wb-community-card__mark img { width: 72px; height: 72px; border-radius: 18px; }
.wb-community-card__copy { position: relative; z-index: 1; min-width: 0; }
.wb-community-card__chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.wb-community-card__chips span { display: inline-flex; min-height: 28px; align-items: center; padding: 5px 9px; border: 1px solid #e4d4ea; border-radius: 999px; background: rgba(255,255,255,.74); color: #6b526f; font-size: .7rem; font-weight: 800; }
.wb-max-button { position: relative; z-index: 1; display: inline-flex; align-items: center; justify-content: center; gap: 9px; }
.wb-max-button img { width: 24px; height: 24px; flex: 0 0 auto; border-radius: 7px; }

@media (max-width: 820px) {
    .wb-community-card--max { grid-template-columns: auto minmax(0,1fr); }
    .wb-community-card--max > .wb-button { grid-column: 1 / -1; width: 100%; }
}
@media (max-width: 560px) {
    .wb-community-card--max { grid-template-columns: 1fr; gap: 18px; }
    .wb-community-card__mark { width: 72px; height: 72px; border-radius: 21px; }
    .wb-community-card__mark img { width: 58px; height: 58px; border-radius: 15px; }
}

/* UI milestone 12: restrained headline scale from the original WBKurer design contract. */
.wb-hero__content h1 { font-size: clamp(2.85rem,5vw,4.75rem); line-height: .96; }
.wb-page-hero__content h1,
.wb-page-hero h1 { font-size: clamp(2.55rem,4.6vw,4.25rem); line-height: .99; }
@media (max-width: 620px) {
    .wb-hero__content h1 { font-size: clamp(2.45rem,12vw,3.65rem); }
    .wb-page-hero__content h1,
    .wb-page-hero h1 { font-size: clamp(2.2rem,10.5vw,3.25rem); }
}

/* UI milestone 12: clearer local start path and role readiness. */

.wb-role-ready-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 12px; }
.wb-role-ready-grid article { display: flex; min-width: 0; min-height: 235px; flex-direction: column; padding: 22px; border: 1px solid var(--wb-border); border-radius: 20px; background: #fff; box-shadow: 0 12px 34px rgba(68,24,71,.035); }
.wb-role-ready-grid article > span { display: grid; width: 54px; height: 54px; place-items: center; margin-bottom: 28px; border-radius: 16px; background: linear-gradient(135deg,#fff0fb,#efe0f4); }
.wb-role-ready-grid strong { margin-bottom: 8px; font-size: .98rem; line-height: 1.25; }
.wb-role-ready-grid p { margin: 0; color: var(--wb-muted); font-size: .82rem; line-height: 1.55; }

@media (max-width: 940px) {
    .wb-role-ready-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 680px) {
    .wb-role-ready-grid { grid-template-columns: 1fr; }
    .wb-role-ready-grid article { min-height: 0; display: grid; grid-template-columns: 54px minmax(0,1fr); gap: 5px 13px; align-items: start; padding: 18px; }
    .wb-role-ready-grid article > span { grid-row: 1 / span 2; margin: 0; }
}


/* UI milestone 13: final density, mobile conversion and reading polish. */
.wb-section { padding-block: clamp(62px, 7vw, 92px); }
.wb-hero__content h1 { max-width: 760px; font-size: clamp(2.75rem, 4.45vw, 4.3rem); line-height: .97; letter-spacing: -.062em; }
.wb-page-hero__content h1,
.wb-page-hero h1 { max-width: 820px; font-size: clamp(2.45rem, 4.15vw, 3.9rem); line-height: 1; letter-spacing: -.055em; }
.wb-page-hero__grid { min-height: 470px; padding-block: clamp(56px, 7vw, 82px); }
.wb-section-heading { margin-bottom: clamp(30px, 4vw, 46px); }

.wb-reading-meta { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 10px 0 2px; }
.wb-reading-meta span { color: rgba(255,255,255,.62); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.wb-reading-meta b { color: #fff; font-size: .84rem; }

@media (max-width: 800px) {
    .wb-breadcrumbs { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; margin-right: -16px; padding-right: 16px; white-space: nowrap; scrollbar-width: none; }
    .wb-breadcrumbs::-webkit-scrollbar { display: none; }
    .wb-breadcrumbs > * { flex: 0 0 auto; }
}

@media (max-width: 620px) {
    .wb-section { padding-block: 54px; }
    .wb-section--compact { padding-block: 24px; }
    .wb-hero__grid { min-height: auto; padding-block: 54px 48px; }
    .wb-hero__content h1 { font-size: clamp(2.35rem, 11vw, 3.35rem); }
    .wb-page-hero__content h1,
    .wb-page-hero h1 { font-size: clamp(2.12rem, 9.8vw, 3rem); }
    .wb-page-hero__grid { min-height: auto; padding-block: 46px 42px; }
    .wb-section-heading { margin-bottom: 28px; }

    .wb-application-card { border-radius: 24px; }
    .wb-application-card__intro { padding: 26px 20px; }
    .wb-application-card__intro h2 { font-size: clamp(1.85rem, 9vw, 2.45rem); }
    .wb-form { padding: 24px 20px 26px; gap: 16px; }
    .wb-check-list { gap: 8px; margin-top: 18px; }
    .wb-check-list li { min-height: 38px; display: flex; align-items: center; padding: 8px 10px 8px 36px; border: 1px solid rgba(255,255,255,.09); border-radius: 12px; background: rgba(255,255,255,.055); font-size: .78rem; line-height: 1.35; }
    .wb-check-list li::before { left: 10px; top: 9px; width: 18px; height: 18px; font-size: .68rem; }

    .wb-role-picker__options { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 6px; }
    .wb-role-picker__option { grid-template-columns: 1fr; min-height: 82px; place-items: center; padding: 9px 5px; text-align: center; }
    .wb-role-picker__option > span { width: 34px; height: 34px; }
    .wb-role-picker__option strong { font-size: .67rem; line-height: 1.08; overflow-wrap: anywhere; }

    .wb-footer-cta__inner { gap: 22px; }
}

.wb-form[data-submitting="true"] .wb-button[type="submit"] { cursor: wait; opacity: .82; transform: none; }
.wb-form[data-submitting="true"] .wb-button[type="submit"]::before { width: 16px; height: 16px; border: 2px solid rgba(255,255,255,.45); border-top-color: #fff; border-radius: 50%; animation: wb-submit-spin .7s linear infinite; content: ''; }
@keyframes wb-submit-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .wb-form[data-submitting="true"] .wb-button[type="submit"]::before { animation: none; } }


/* Milestone 14: compact search controls and mobile-first role comparison. */
.wb-search-field { position: relative; }
.wb-search-field .wb-field { padding-right: 46px; }
.wb-search-clear {
    position: absolute;
    top: 50%;
    right: 10px;
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    transform: translateY(-50%);
    border: 0;
    border-radius: 9px;
    background: #f3edf4;
    color: #6b5f6d;
    font: 800 1.1rem/1 system-ui,sans-serif;
    cursor: pointer;
}
.wb-search-clear:hover,
.wb-search-clear:focus-visible { background: var(--wb-pink-soft); color: var(--wb-purple-deep); }
.wb-search-clear[hidden] { display: none; }
.wb-search-clear--finder { right: 42px; z-index: 2; }
.wb-city-finder__input-wrap .wb-field { padding-right: 78px; }

.wb-compare-mobile { display: none; }
@media (max-width: 720px) {
    .wb-compare-wrap { display: none; }
    .wb-compare-mobile { display: grid; gap: 12px; }
    .wb-compare-mobile__card {
        position: relative;
        overflow: hidden;
        padding: 18px;
        border: 1px solid var(--wb-border);
        border-radius: 20px;
        background: #fff;
        box-shadow: 0 12px 34px rgba(69,24,73,.05);
    }
    .wb-compare-mobile__card::before {
        position: absolute;
        inset: 0 auto 0 0;
        width: 4px;
        background: var(--wb-purple);
        content: '';
    }
    .wb-compare-mobile__card--velo-kurer::before { background: var(--wb-violet); }
    .wb-compare-mobile__card--voditel-kurer::before { background: #8d1d7e; }
    .wb-compare-mobile__card header { display: flex; align-items: center; gap: 12px; }
    .wb-compare-mobile__card header > span {
        display: grid;
        width: 56px;
        height: 56px;
        flex: 0 0 auto;
        place-items: center;
        border-radius: 16px;
        background: var(--wb-pink-soft);
    }
    .wb-compare-mobile__card header img { width: 44px; height: 44px; object-fit: contain; }
    .wb-compare-mobile__card header div { display: grid; gap: 3px; }
    .wb-compare-mobile__card header small {
        color: var(--wb-purple-deep);
        font-size: .68rem;
        font-weight: 900;
        letter-spacing: .07em;
        text-transform: uppercase;
    }
    .wb-compare-mobile__card header strong { font-size: 1.12rem; letter-spacing: -.025em; }
    .wb-compare-mobile__card dl { display: grid; gap: 10px; margin: 16px 0; }
    .wb-compare-mobile__card dl div {
        display: grid;
        gap: 3px;
        padding-top: 10px;
        border-top: 1px solid var(--wb-border);
    }
    .wb-compare-mobile__card dt { color: var(--wb-muted); font-size: .68rem; font-weight: 900; text-transform: uppercase; }
    .wb-compare-mobile__card dd { margin: 0; color: #493f4b; font-size: .86rem; line-height: 1.48; }
    .wb-compare-mobile__card .wb-button { width: 100%; min-height: 44px; }
}


.wb-field__hint { margin-top: -1px; color: var(--wb-muted); font-size: .72rem; line-height: 1.35; }
.wb-form-submit { display: grid; gap: 8px; }
.wb-form-submit > span { color: var(--wb-muted); font-size: .76rem; line-height: 1.4; text-align: center; }

/* UI Milestone 15 — mobile task hierarchy. */
@media (min-width: 340px) and (max-width: 620px) {
    .wb-training-route__grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .wb-training-route__grid a { min-height: 138px; }
}

.wb-section-tail-link { display: flex; justify-content: flex-end; margin-top: 22px; }
@media (max-width: 620px) { .wb-section-tail-link { justify-content: flex-start; margin-top: 18px; } }

/* UI Milestone 16 — sticky-navigation anchor safety. */
.wb-page-links ~ section[id],
.wb-page-links ~ section #application { scroll-margin-top: 148px; }
#training-search,
#starter-route,
#city-catalog { scroll-margin-top: 92px; }
@media (max-width: 780px) {
    .wb-page-links ~ section[id],
    .wb-page-links ~ section #application { scroll-margin-top: 126px; }
    #training-search,
    #starter-route,
    #city-catalog { scroll-margin-top: 78px; }
}


/* UI Milestone 18 — task-flow density and standalone anchor safety. */
main > section[id] { scroll-margin-top: 92px; }
@media (max-width: 780px) {
    main > section[id] { scroll-margin-top: 78px; }
}

/* UI Milestone 17 — compact exact-vacancy form and direct training search. */
.wb-form-choice-disclosure {
    overflow: visible;
    margin-top: 8px;
    border: 1px solid #dfd1e2;
    border-radius: 18px;
    background: #fcf8fd;
}
.wb-form-choice-disclosure > summary {
    display: grid;
    grid-template-columns: 34px minmax(0,1fr) auto;
    align-items: center;
    gap: 10px;
    min-height: 64px;
    padding: 11px 14px;
    cursor: pointer;
    list-style: none;
}
.wb-form-choice-disclosure > summary::-webkit-details-marker { display: none; }
.wb-form-choice-disclosure > summary:focus-visible { outline: 3px solid rgba(203,17,171,.14); outline-offset: 2px; border-radius: 16px; }
.wb-form-choice-disclosure__number {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 10px;
    background: var(--wb-pink-soft);
    color: var(--wb-purple-deep);
    font-size: .68rem;
    font-weight: 950;
}
.wb-form-choice-disclosure__copy { display: grid; min-width: 0; gap: 2px; }
.wb-form-choice-disclosure__copy small { color: var(--wb-muted); font-size: .69rem; font-weight: 800; }
.wb-form-choice-disclosure__copy strong { overflow: hidden; font-size: .88rem; letter-spacing: -.01em; text-overflow: ellipsis; white-space: nowrap; }
.wb-form-choice-disclosure > summary > b { color: var(--wb-purple-deep); font-size: .75rem; }
.wb-form-choice-disclosure > summary > b::after { display: inline-block; margin-left: 5px; content: '↓'; transition: transform .16s ease; }
.wb-form-choice-disclosure[open] > summary > b::after { transform: rotate(180deg); }
.wb-form-choice-disclosure__body { padding: 18px 14px 14px; border-top: 1px solid #e8dfea; background: #fff; border-radius: 0 0 18px 18px; }
[data-training-discovery][hidden] { display: none !important; }

@media (max-width: 620px) {
    .wb-form-choice-disclosure > summary { grid-template-columns: 32px minmax(0,1fr); min-height: 62px; padding: 10px 12px; }
    .wb-form-choice-disclosure > summary > b { grid-column: 2; margin-top: -2px; }
    .wb-form-choice-disclosure__copy strong { white-space: normal; line-height: 1.25; }
    .wb-form-choice-disclosure__body { padding: 16px 12px 12px; }
}

/* UI Milestone 32 — accessibility contrast, coherent form flow and training redesign. */
:root {
    --wb-muted: #303033;
    --wb-soft: #e9e2eb;
    --wb-border: #b9aebc;
    --wb-line: #b9aebc;
    --wb-shadow: 0 18px 50px rgba(45, 20, 48, .16);
    --wb-shadow-strong: 0 24px 70px rgba(38, 14, 43, .24);
}
body { background: #ede7ef; color: #17131b; font-weight: 500; }
.wb-section { background: #f4f0f5; }
.wb-section--soft { background: #e7dfe9; }
.wb-section--dark { background: linear-gradient(135deg,#171219 0%,#261a2a 55%,#3b1542 100%)!important; }
.wb-section--application { background: #ded4e1; }
.wb-header { border-bottom-color: #b9aebc; background: rgba(255,255,255,.98); }
.wb-nav a { color: #29242b; font-weight: 800; }
.wb-section-heading p,
.wb-card p,
.wb-format-card p,
.wb-vacancy-card > p,
.wb-inline-fact p,
.wb-city-search-note p,
.wb-nearby-card small,
.wb-howto__timeline small,
.wb-faq-layout__intro > p:last-child,
.wb-role-process__steps p,
.wb-role-snapshot p,
.wb-related-lessons__grid p,
.wb-related-role-card p,
.wb-training-route__grid small,
.wb-training-situations__grid small,
.wb-training-map small,
.wb-lesson-list a small,
.wb-app-card__body > span,
.wb-field__hint,
.wb-form-selection small,
.wb-form-submit > span,
.wb-form__footnote { color: #303033; }
.wb-card,
.wb-format-card,
.wb-vacancy-card,
.wb-inline-fact,
.wb-nearby-card,
.wb-related-lessons__grid a,
.wb-related-role-card,
.wb-role-snapshot article,
.wb-training-route,
.wb-training-situations,
.wb-training-map a,
.wb-lesson-list a,
.wb-training-toc,
.wb-training-aside__links > a,
.wb-app-card { border-color: #b9aebc; box-shadow: 0 10px 28px rgba(45,20,48,.08); }

/* White SVG artwork receives a dark WB-family surface instead of disappearing on white. */
.wb-format-card__icon,
.wb-start-kit__icon,
.wb-training-role-links__items a > span,
.wb-role-picker__option > span,
.wb-role-mini__icon {
    background: linear-gradient(135deg,#45154f 0%,#7a147b 55%,#a31799 100%) !important;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.18), 0 8px 20px rgba(65,20,72,.18);
}
.wb-format-card__icon img,
.wb-start-kit__icon img,
.wb-training-role-links__items a > span img,
.wb-role-picker__option > span img,
.wb-role-mini__icon img { opacity: 1; filter: none; }
.wb-format-card__number { color: #302a31; }

/* Form: explicit three-step hierarchy with breathing room and stronger fields. */
.wb-application-card { border: 2px solid #a899ac; box-shadow: 0 28px 70px rgba(45,20,48,.18); }
.wb-application-card__intro { background: linear-gradient(145deg,#1f1722 0%,#421b48 100%); }
.wb-application-card__intro > p { color: #f2edf3; font-size: 1rem; line-height: 1.7; }
.wb-application-card__intro .wb-check-list li { color: #fff; font-weight: 650; }
.wb-form { gap: 20px; padding: clamp(30px,4.5vw,50px); background: #f7f4f8; }
.wb-form-step { display: grid; gap: 18px; padding: 22px; border: 1px solid #b5a8b8; border-radius: 20px; background: #fff; box-shadow: 0 8px 22px rgba(45,20,48,.06); }
.wb-form-step__header { display: grid; grid-template-columns: 42px minmax(0,1fr); align-items: center; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid #c7bdca; }
.wb-form-step__header > span { display: grid; width: 40px; height: 40px; place-items: center; border-radius: 12px; background: #321437; color: #fff; font-size: .78rem; font-weight: 950; }
.wb-form-step__header > div { display: grid; gap: 2px; }
.wb-form-step__header strong { color: #17131b; font-size: 1.03rem; font-weight: 900; }
.wb-form-step__header small { color: #303033; font-size: .8rem; font-weight: 650; }
.wb-form__grid { gap: 20px; }
.wb-form__grid--choice { grid-template-columns: 1fr; gap: 22px; }
.wb-field-wrap { gap: 9px; }
.wb-field__label { color: #17131b; font-size: .92rem; font-weight: 900; }
.wb-field { min-height: 58px; padding: 13px 15px; border: 2px solid #766a79; border-radius: 14px; background: #fff; color: #111; font-size: 1rem; font-weight: 650; box-shadow: inset 0 1px 0 rgba(0,0,0,.02); }
.wb-field::placeholder { color: #303033; opacity: 1; font-weight: 600; }
.wb-field:hover { border-color: #4c414f; }
.wb-field:focus { border-color: #7a147b; outline: 4px solid rgba(122,20,123,.18); }
.wb-field[aria-invalid="true"] { border-color: #8b1428; outline-color: rgba(139,20,40,.15); }
.wb-field__hint { margin: 0; font-size: .78rem; font-weight: 600; }
.wb-role-picker__options { gap: 10px; }
.wb-role-picker__option { min-height: 96px; border: 2px solid #988b9c; background: #f4eff5; color: #17131b; }
.wb-role-picker__option:hover { border-color: #5f5363; background: #eee6f0; }
.wb-role-picker__option[aria-pressed="true"] { border-color: #6c156f; background: #eaddec; box-shadow: 0 0 0 3px rgba(122,20,123,.12); }
.wb-role-picker__option strong { font-size: .82rem; font-weight: 900; }
.wb-form-choice-disclosure { gap: 0; margin: 0; padding: 0; border: 1px solid #b5a8b8; background: #fff; box-shadow: 0 8px 22px rgba(45,20,48,.06); }
.wb-form-choice-disclosure > summary { grid-template-columns: 42px minmax(0,1fr) auto; min-height: 76px; padding: 16px 20px; }
.wb-form-choice-disclosure__number { width: 40px; height: 40px; border-radius: 12px; background: #321437; color: #fff; font-size: .78rem; }
.wb-form-choice-disclosure__copy small { color: #303033; font-size: .78rem; }
.wb-form-choice-disclosure__copy strong { color: #17131b; font-size: .98rem; }
.wb-form-choice-disclosure > summary > b { color: #621165; font-size: .82rem; font-weight: 900; }
.wb-form-choice-disclosure__body { padding: 22px; border-top-color: #c7bdca; background: #f7f4f8; }
.wb-form-step--submit { background: #eee7f0; border-color: #a99cab; }
.wb-form-selection { padding: 16px; border: 1px solid #9f91a3; background: #fff; }
.wb-consent { grid-template-columns: 26px 1fr; gap: 12px; padding: 15px 16px; border: 1px solid #a99cab; border-radius: 14px; background: #fff; color: #1d1a1f; font-size: .9rem; line-height: 1.55; }
.wb-consent input { width: 21px; height: 21px; }
.wb-form-submit { gap: 10px; }
.wb-form-submit .wb-button { min-height: 58px; font-size: 1rem; }
.wb-form-submit > span { font-size: .8rem; font-weight: 650; }
.wb-form__footnote { margin: 0; font-size: .8rem; line-height: 1.5; }
.wb-form-errors { border-width: 2px; color: #68101f; font-weight: 650; }
.wb-city-combobox__options { border: 2px solid #665b69; box-shadow: 0 18px 42px rgba(35,15,38,.2); }
.wb-city-combobox__option { color: #17131b; font-weight: 700; }
.wb-search-clear { color: #1f1b20; border-color: #9a8d9e; background: #eee7f0; font-weight: 900; }

/* Official app cards: three explicit stores per application. */
.wb-app-grid { gap: 18px; }
.wb-app-card { grid-template-columns: 58px minmax(0,1fr); align-items: start; min-height: 0; padding: 24px; background: #fff; }
.wb-app-card__mark { width: 58px; height: 58px; background: linear-gradient(135deg,#321437,#8c168f); color: #fff; }
.wb-app-card__body { gap: 5px; }
.wb-app-card__purpose { color: #621165 !important; font-size: .7rem !important; }
.wb-app-card__body > strong { color: #17131b; font-size: 1.18rem; }
.wb-app-card__body > span { font-size: .88rem; line-height: 1.55; }
.wb-app-card__stores { grid-column: 2; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.wb-app-card__stores a { display: inline-flex; min-height: 40px; align-items: center; justify-content: center; padding: 8px 12px; border: 1px solid #514655; border-radius: 11px; background: #28202b; color: #fff; font-size: .78rem; font-weight: 850; text-decoration: none; }
.wb-app-card__stores a:hover { background: #67166e; border-color: #67166e; }
.wb-apk-note { display: grid; grid-template-columns: auto 1fr; gap: 10px 16px; margin-top: 18px; padding: 18px 20px; border: 1px solid #a99cab; border-radius: 16px; background: white; }
.wb-apk-note strong { color: #17131b; font-weight: 900; }
.wb-apk-note p { margin: 0; color: #29252b; }

/* Training hub: readable full-width cards instead of squeezed split cards. */
.wb-training-start { background: #e7dfe9; }
.wb-training-notice { border: 1px solid #a99cab; border-left: 5px solid #7a147b; background: #f7f3f8; color: #17131b; }
.wb-training-notice p { color: #29252b; }
.wb-training-toolbar { grid-template-columns: 1fr; align-items: stretch; gap: 22px; padding: clamp(28px,4vw,44px); }
.wb-training-toolbar__copy h2 { max-width: 22ch; }
.wb-training-toolbar__copy > p:last-child { color: #f1ebf2; }
.wb-training-search { max-width: 760px; }
.wb-training-search > label { color: #fff; }
.wb-training-search small { color: #f0e8f2; font-weight: 650; }
.wb-training-route { padding: 26px; }
.wb-training-route__intro { align-items: end; }
.wb-training-route__intro span { color: #651368; }
.wb-training-route__grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.wb-training-route__grid a { min-height: 132px; padding: 20px; border: 1px solid #b5a8b8; background: #eee7f0; }
.wb-training-route__grid a > span { margin-bottom: 14px; color: #651368; }
.wb-training-route__grid strong { font-size: 1.02rem; }
.wb-training-map { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.wb-training-map a { min-height: 112px; padding: 18px 20px; justify-content: center; background: #fff; }
.wb-training-map strong { margin: 8px 0 5px; font-size: 1rem; }
.wb-training-map span { color: #651368; }
.wb-training-map small { margin-top: 0; font-size: .8rem; }
.wb-training-situations { background: #f7f3f8; }
.wb-training-situations__grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.wb-training-situations__grid a { min-height: 118px; align-content: center; background: #e9e2eb; }
.wb-training-situations__grid span { margin-bottom: 8px; color: #651368; }
.wb-training-situations__grid strong { margin: 0 0 6px; font-size: 1rem; }
.wb-lesson-list { grid-template-columns: 1fr; gap: 12px; }
.wb-lesson-list a { grid-template-columns: 1fr; min-height: 0; gap: 8px; padding: 22px 24px; border-width: 1px; background: #fff; }
.wb-lesson-list a span { color: #651368; font-size: .76rem; }
.wb-lesson-list a strong { color: #17131b; font-size: 1.08rem; line-height: 1.3; }
.wb-lesson-list a small { max-width: 82ch; margin: 0; font-size: .88rem; line-height: 1.55; }

/* Lesson reading layout: wider navigation and stronger TOC text. */
.wb-training-layout { grid-template-columns: minmax(0,1fr) 320px; gap: 44px; }
.wb-training-main { max-width: none; }
.wb-training-aside { width: 100%; gap: 14px; }
.wb-training-toc { padding: 20px; border-color: #a99cab; }
.wb-training-toc > strong { color: #17131b; font-size: .88rem; }
.wb-training-toc ol { gap: 4px; max-height: 460px; }
.wb-training-toc li.is-subsection { padding-left: 14px; border-left: 2px solid #b19fb5; }
.wb-training-toc a { padding: 7px 8px; color: #242126; font-size: .9rem; font-weight: 650; line-height: 1.42; }
.wb-training-toc li.is-subsection a { color: #303033; font-size: .86rem; }
.wb-training-toc a::before { display: none; }
.wb-training-toc a.is-current { padding: 8px 10px; background: #e2d5e5; color: #411346; font-weight: 900; }
.wb-training-aside__links > a { border-color: #a99cab; color: #1d1a1f; font-size: .9rem; }
.wb-legacy-lesson { color: #202024; font-weight: 500; }
.wb-legacy-lesson p, .wb-legacy-lesson li { color: #202024; }

/* Compact page navigation: current state is a filled tab, no decorative dot. */
.wb-page-links a { color: #29252b; }
.wb-page-links a.is-current::before { display: none !important; content: none !important; }
.wb-page-links a.is-current { background: #dfd3e2; color: #411346; }

/* Remaining light-background textual grays are normalized to <= #333. */
.wb-city-letter__links a,
.wb-city-letter__links a span,
.wb-compare-table td,
.wb-compare-mobile__card dd,
.wb-job-about__content .wb-vacancy-copy > p,
.wb-job-about__content .wb-vacancy-copy > ul li,
.wb-search-clear,
.wb-app-card__body > span { color: #303033; }

@media (max-width: 900px) {
    .wb-training-layout { grid-template-columns: 1fr; gap: 28px; }
    .wb-training-aside { position: static; }
}
@media (max-width: 700px) {
    .wb-form { padding: 22px 16px; }
    .wb-form-step { padding: 18px 14px; }
    .wb-form-step__header { grid-template-columns: 38px 1fr; }
    .wb-form-step__header > span { width: 36px; height: 36px; }
    .wb-form-choice-disclosure > summary { grid-template-columns: 42px minmax(0,1fr); padding: 14px; }
    .wb-form-choice-disclosure > summary > b { grid-column: 2; }
    .wb-form-choice-disclosure__body { padding: 16px 14px; }
    .wb-app-card { grid-template-columns: 50px 1fr; padding: 20px 16px; }
    .wb-app-card__mark { width: 50px; height: 50px; }
    .wb-app-card__stores { grid-column: 1 / -1; }
    .wb-app-card__stores a { flex: 1 1 120px; }
    .wb-apk-note { grid-template-columns: 1fr; }
    .wb-training-route__grid,
    .wb-training-map,
    .wb-training-situations__grid { grid-template-columns: 1fr; }
    .wb-training-map { display: grid; margin-inline: 0; padding-inline: 0; overflow: visible; }
    .wb-training-map a { flex: auto; min-height: 0; }
    .wb-training-route__grid a,
    .wb-training-situations__grid a { min-height: 0; }
    .wb-lesson-list a { padding: 19px 17px; }
}



/* UI Milestone 32B — final form order, deeper surfaces and training readability. */
body { background: #e3dbe6; }
.wb-section { background: #eee9f0; }
.wb-section--soft { background: #ddd2e0; }
.wb-section--application { background: #d4c7d8; }
main#main-content p,
main#main-content li,
main#main-content dd,
main#main-content small { font-weight: 550; }
.wb-card,
.wb-format-card,
.wb-vacancy-card,
.wb-inline-fact,
.wb-nearby-card,
.wb-app-card,
.wb-training-route,
.wb-training-situations,
.wb-training-toc { border-width: 2px; }
.wb-community-card__chips span,
.wb-app-card > i { color: #303033; }

/* The application reads in natural order: choice -> contacts -> consent/send. */
.wb-form { gap: 24px; }
.wb-form-step { gap: 20px; padding: 24px; border-width: 2px; }
.wb-form-step--choice { background: #f1eaf3; }
.wb-form__grid--choice { gap: 24px; }
.wb-role-picker__options { grid-template-columns: repeat(3,minmax(0,1fr)); }
.wb-role-picker__option { min-height: 104px; padding: 14px 10px; }
.wb-role-picker__option > span { width: 48px; height: 48px; }
.wb-role-picker__option strong { font-size: .86rem; line-height: 1.25; }
.wb-consent a { color: #4b0e50; font-weight: 850; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.wb-form-submit > span,
.wb-form__footnote { color: #29252b; }

/* Training catalog uses full-width reading rhythm instead of split headings/cards. */
.wb-training-group-heading { grid-template-columns: 1fr; align-items: start; gap: 12px; max-width: 920px; margin-bottom: 26px; }
.wb-training-group-heading h2 { max-width: 22ch; }
.wb-training-group-heading > p { max-width: 78ch; margin: 0; color: #29252b; font-size: 1rem; line-height: 1.6; }
.wb-training-layout { grid-template-columns: minmax(0,1fr) 360px; gap: 48px; }
.wb-training-toc { padding: 22px; }
.wb-training-toc > strong { font-size: 1rem; }
.wb-training-toc a { padding: 9px 10px; color: #1f1c21; font-size: .96rem; font-weight: 700; line-height: 1.48; }
.wb-training-toc li.is-subsection { padding-left: 16px; border-left: 3px solid #8c758f; }
.wb-training-toc li.is-subsection a { color: #29252b; font-size: .94rem; font-weight: 700; }
.wb-training-aside__links > a { min-height: 48px; padding: 12px 14px; font-weight: 750; }
.wb-lesson-list a { border-width: 2px; }
.wb-lesson-list a small { color: #29252b; font-weight: 600; }

@media (max-width: 900px) {
    .wb-training-layout { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 700px) {
    body { background: #e6dfe8; }
    .wb-form { gap: 18px; padding: 20px 12px; }
    .wb-form-step { padding: 18px 14px; }
    .wb-role-picker__options { grid-template-columns: 1fr; }
    .wb-role-picker__option { min-height: 72px; grid-template-columns: 48px 1fr; justify-items: start; text-align: left; }
    .wb-training-toolbar { padding: 24px 18px; }
    .wb-training-route,
    .wb-training-situations { padding: 20px 16px; }
    .wb-lesson-list a { padding: 20px 16px; }
}

/* UI Milestone 33 — remaining white SVG surfaces and contact-field alignment. */
.wb-role-ready-grid article > span,
.wb-related-role-card__icon {
    background: linear-gradient(135deg,#45154f 0%,#7a147b 55%,#a31799 100%) !important;
    border: 1px solid #4a124f;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.12), 0 7px 18px rgba(69,21,79,.16);
}
.wb-role-ready-grid article > span img,
.wb-related-role-card__icon img {
    opacity: 1;
    filter: none;
}
.wb-form__grid--contacts {
    grid-template-columns: 1fr !important;
    gap: 18px;
}
.wb-form__grid--contacts .wb-field-wrap {
    align-content: start;
}

/* Final application role choice: one readable row per role, never three squeezed tiles. */
.wb-role-picker__options { grid-template-columns: 1fr; gap: 10px; }
.wb-role-picker__option {
    grid-template-columns: 48px minmax(0,1fr);
    min-height: 74px;
    place-items: center start;
    gap: 14px;
    padding: 12px 16px;
    text-align: left;
}
.wb-role-picker__option > span { width: 48px; height: 48px; }
.wb-role-picker__option strong { font-size: .94rem; line-height: 1.25; overflow-wrap: normal; }

/* Privacy / cookie consent — analytics is opt-in and the banner stays clear of mobile CTAs. */
.wb-footer-link-button {
    appearance: none;
    width: fit-content;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}
.wb-footer-link-button:hover,
.wb-footer-link-button:focus-visible { text-decoration: underline; text-underline-offset: 3px; }
.wb-cookie-banner {
    position: fixed;
    z-index: 1200;
    right: clamp(14px, 2.5vw, 28px);
    bottom: clamp(14px, 2.5vw, 28px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px 24px;
    width: min(760px, calc(100vw - 28px));
    padding: 20px 22px;
    border: 1px solid #8e7692;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 55px rgba(28, 17, 31, .24);
    color: #17131b;
}
.wb-cookie-banner[hidden] { display: none !important; }
.wb-cookie-banner__copy { min-width: 0; }
.wb-cookie-banner__copy strong { display: block; margin-bottom: 6px; font-size: 1rem; font-weight: 900; }
.wb-cookie-banner__copy p { margin: 0 0 8px; color: #29252b; font-size: .88rem; line-height: 1.5; }
.wb-cookie-banner__copy a { color: #5c1264; font-size: .84rem; font-weight: 800; text-underline-offset: 3px; }
.wb-cookie-banner__actions { display: grid; align-content: center; gap: 8px; min-width: 196px; }
.wb-cookie-banner__actions .wb-button { min-height: 44px; padding: 10px 14px; font-size: .84rem; white-space: nowrap; }
.wb-cookie-essential {
    min-height: 42px;
    padding: 9px 12px;
    border: 1px solid #98869c;
    border-radius: 12px;
    background: #f3edf4;
    color: #2b232d;
    font: inherit;
    font-size: .82rem;
    font-weight: 850;
    cursor: pointer;
}
.wb-cookie-essential:hover,
.wb-cookie-essential:focus-visible { background: #e8ddea; border-color: #6f5574; }

@media (max-width: 700px) {
    .wb-cookie-banner {
        right: 10px;
        bottom: 86px;
        grid-template-columns: 1fr;
        gap: 14px;
        width: calc(100vw - 20px);
        max-height: min(68vh, 520px);
        overflow: auto;
        padding: 16px;
        border-radius: 16px;
    }
    .wb-no-mobile-actions .wb-cookie-banner { bottom: 10px; }
    .wb-cookie-banner__copy p { font-size: .84rem; line-height: 1.45; }
    .wb-cookie-banner__actions { grid-template-columns: 1fr 1fr; min-width: 0; }
    .wb-cookie-banner__actions .wb-button,
    .wb-cookie-essential { width: 100%; white-space: normal; }
}

@media (max-width: 430px) {
    .wb-cookie-banner__actions { grid-template-columns: 1fr; }
}

.wb-container.wb-content-split.wb-howto > div:first-child > p:not(.wb-eyebrow) { color:#303033; }

/* Application success onboarding experiment. */
.wb-onboarding { width: min(920px,100%); margin: 0 auto; padding: clamp(24px,4vw,42px); border: 1px solid var(--wb-border); border-radius: 30px; background: #fff; box-shadow: var(--wb-shadow); }
.wb-onboarding__header { display: grid; grid-template-columns: 68px minmax(0,1fr); gap: 20px; align-items: start; }
.wb-onboarding__header .wb-status-card__icon { margin: 0; }
.wb-onboarding__header h1 { max-width: 760px; margin: 5px 0 12px; font-size: clamp(2rem,4.5vw,3.5rem); line-height: 1.05; letter-spacing: -.045em; }
.wb-onboarding__lead { max-width: 720px; margin: 0; color: var(--wb-muted); font-size: 1.02rem; }
.wb-referral-pin { position: relative; display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 16px 22px; align-items: center; margin: 26px 0 20px; padding: 20px; overflow: hidden; border: 1px solid #d7b6dc; border-radius: 20px; background: linear-gradient(135deg,#fff7fd 0%,#f8effb 100%); }
.wb-referral-pin::after { position: absolute; right: -44px; top: -50px; width: 140px; height: 140px; border-radius: 50%; background: rgba(203,17,171,.07); content: ''; pointer-events: none; }
.wb-referral-pin__copy { position: relative; z-index: 1; display: grid; gap: 5px; }
.wb-referral-pin__badge { width: max-content; padding: 4px 8px; border-radius: 999px; background: var(--wb-purple); color: #fff; font-size: .69rem; font-weight: 900; letter-spacing: .055em; text-transform: uppercase; }
.wb-referral-pin__copy > strong { font-size: 1.16rem; }
.wb-referral-pin__copy p { max-width: 620px; margin: 0; color: #4a3d4c; font-size: .9rem; line-height: 1.5; }
.wb-referral-code { position: relative; z-index: 1; display: inline-flex; align-items: stretch; min-width: 240px; overflow: hidden; border: 1px solid #cba5d0; border-radius: 14px; background: #fff; }
.wb-referral-code code { display: grid; min-width: 98px; place-items: center; padding: 10px 14px; color: var(--wb-purple-deep); font: 950 1.15rem/1 ui-monospace,SFMono-Regular,Menlo,Consolas,monospace; letter-spacing: .045em; }
.wb-referral-code button { border: 0; border-left: 1px solid #dac0dd; background: var(--wb-purple); color: #fff; padding: 10px 14px; font-weight: 850; white-space: nowrap; }
.wb-referral-code button:hover { background: var(--wb-purple-deep); }
.wb-copy-status { grid-column: 1/-1; min-height: 1.15em; color: var(--wb-purple-deep); font-size: .78rem; font-weight: 800; }
.wb-onboarding__progress { display: grid; grid-template-columns: auto minmax(120px,1fr); gap: 14px; align-items: center; margin: 22px 0 16px; }
.wb-onboarding__progress strong { color: var(--wb-purple-deep); font-size: .82rem; }
.wb-onboarding__progress > div { height: 7px; overflow: hidden; border-radius: 999px; background: #eee5ef; }
.wb-onboarding__progress span { display: block; width: 50%; height: 100%; border-radius: inherit; background: linear-gradient(90deg,var(--wb-violet),var(--wb-purple)); transition: width .2s ease; }
.wb-onboarding-step { padding: clamp(20px,3.5vw,32px); border: 1px solid var(--wb-border); border-radius: 24px; background: #fff; }
.wb-onboarding-step[hidden] { display: none !important; }
.wb-onboarding-step__heading { display: grid; grid-template-columns: 58px minmax(0,1fr); gap: 16px; align-items: start; padding-bottom: 20px; border-bottom: 1px solid var(--wb-border); }
.wb-onboarding-step__heading > span { display: grid; min-height: 52px; place-items: center; padding: 8px; border-radius: 15px; background: var(--wb-purple); color: #fff; font-size: .77rem; font-weight: 950; text-align: center; }
.wb-onboarding-step__heading h2 { margin: 0 0 6px; font-size: clamp(1.45rem,3vw,2rem); line-height: 1.12; letter-spacing: -.025em; }
.wb-onboarding-step__heading p { margin: 0; color: var(--wb-muted); }
.wb-app-install-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; margin: 20px 0; }
.wb-app-install-card { display: grid; gap: 14px; padding: 17px; border: 1px solid var(--wb-border); border-radius: 17px; background: #fff; }
.wb-app-install-card__title { display: grid; grid-template-columns: 46px minmax(0,1fr); gap: 12px; align-items: center; }
.wb-app-install-card__title > span { display: grid; width: 44px; height: 44px; place-items: center; border-radius: 13px; background: linear-gradient(135deg,#6c2ba6,#cb11ab); color: #fff; font-size: .76rem; font-weight: 950; }
.wb-app-install-card__title div { display: grid; gap: 2px; }
.wb-app-install-card__title strong { line-height: 1.2; }
.wb-app-install-card__title small { color: var(--wb-muted); font-size: .76rem; line-height: 1.35; }
.wb-store-actions { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; }
.wb-store-actions a { display: inline-flex; min-height: 40px; align-items: center; justify-content: center; padding: 8px 10px; border: 1px solid #d8c9da; border-radius: 11px; background: var(--wb-soft); color: var(--wb-ink); font-size: .78rem; font-weight: 850; text-decoration: none; }
.wb-store-actions a:hover { border-color: #bf8ec4; background: #fff4fd; color: var(--wb-purple-deep); }
.wb-onboarding-alert { display: grid; gap: 7px; margin-top: 18px; padding: 17px 18px; border-left: 4px solid var(--wb-purple); border-radius: 0 14px 14px 0; background: #fbf4fc; }
.wb-onboarding-alert strong { line-height: 1.35; }
.wb-onboarding-alert p { margin: 0; color: #4d414f; font-size: .88rem; line-height: 1.5; }
.wb-onboarding-nav { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--wb-border); }
.wb-onboarding-nav--end { justify-content: flex-end; }
.wb-onboarding-nav .wb-button { margin: 0; }
.wb-job-steps { display: grid; gap: 10px; margin: 20px 0 0; padding: 0; list-style: none; }
.wb-job-steps > li { display: grid; grid-template-columns: 38px minmax(0,1fr); gap: 12px; padding: 16px; border: 1px solid var(--wb-border); border-radius: 16px; background: #fff; }
.wb-job-steps > li > span { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 11px; background: var(--wb-pink-soft); color: var(--wb-purple-deep); font-size: .78rem; font-weight: 950; }
.wb-job-steps li strong { display: block; margin-bottom: 4px; line-height: 1.35; }
.wb-job-steps li p { margin: 0; color: var(--wb-muted); font-size: .88rem; line-height: 1.5; }
.wb-job-steps li small { display: block; margin-top: 9px; color: #67566b; font-size: .76rem; line-height: 1.45; }
.wb-job-steps__referral { border-color: #d7b6dc !important; background: linear-gradient(135deg,#fff9fe,#faf2fc) !important; }
.wb-referral-code--inline { margin-top: 12px; }
.wb-onboarding-support { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 16px; align-items: center; margin-top: 18px; padding: 18px; border-radius: 18px; background: #262029; color: #fff; }
.wb-onboarding-support p { margin: 3px 0 0; color: #ddd5df; font-size: .84rem; }
.wb-onboarding-support__actions { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.wb-onboarding-support__actions .wb-button { min-height: 44px; margin: 0; padding: 9px 13px; font-size: .8rem; }
.wb-onboarding-support__actions .wb-button--soft { background: #fff; color: var(--wb-ink); border-color: #fff; }
.wb-onboarding-support .wb-max-button img { flex: 0 0 auto; }

@media (max-width: 760px) {
    .wb-onboarding__header { grid-template-columns: 1fr; gap: 13px; }
    .wb-onboarding__header .wb-status-card__icon { width: 58px; height: 58px; }
    .wb-referral-pin { grid-template-columns: 1fr; }
    .wb-referral-code { width: 100%; min-width: 0; }
    .wb-referral-code code { flex: 1 1 auto; }
    .wb-app-install-list { grid-template-columns: 1fr; }
    .wb-onboarding-support { grid-template-columns: 1fr; }
    .wb-onboarding-support__actions { justify-content: stretch; }
    .wb-onboarding-support__actions .wb-button { flex: 1 1 190px; }
}

@media (max-width: 520px) {
    .wb-status-page { padding: 24px 0 36px; }
    .wb-onboarding { padding: 18px; border-radius: 22px; }
    .wb-status-choice { margin: 18px 0; }
    .wb-onboarding__progress { grid-template-columns: 1fr; gap: 7px; }
    .wb-onboarding-step { padding: 16px; border-radius: 18px; }
    .wb-onboarding-step__heading { grid-template-columns: 1fr; gap: 10px; }
    .wb-onboarding-step__heading > span { min-height: 0; width: max-content; padding: 7px 10px; }
    .wb-store-actions { grid-template-columns: 1fr; }
    .wb-referral-code { display: grid; grid-template-columns: 1fr; }
    .wb-referral-code button { border-left: 0; border-top: 1px solid #dac0dd; min-height: 44px; }
    .wb-job-steps > li { grid-template-columns: 34px minmax(0,1fr); padding: 14px 12px; }
    .wb-job-steps > li > span { width: 32px; height: 32px; }
    .wb-onboarding-nav { align-items: stretch; flex-direction: column; }
    .wb-onboarding-nav .wb-button { width: 100%; }
    .wb-onboarding-nav .wb-text-link { text-align: center; }
}
.wb-referral-reminder { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 16px; padding: 14px 16px; border: 1px solid #d9b6dd; border-radius: 15px; background: #fff7fd; }
.wb-referral-reminder > div { display: grid; gap: 2px; }
.wb-referral-reminder strong { color: var(--wb-purple-deep); line-height: 1.3; }
.wb-referral-reminder span { color: #5b4c5e; font-size: .78rem; line-height: 1.4; }
.wb-referral-reminder button { flex: 0 0 auto; min-height: 40px; padding: 8px 12px; border: 0; border-radius: 11px; background: var(--wb-purple); color: #fff; font-weight: 850; }
.wb-referral-reminder button:hover { background: var(--wb-purple-deep); }
@media (max-width: 620px) { .wb-referral-reminder { align-items: stretch; flex-direction: column; } .wb-referral-reminder button { width: 100%; } }

/* ===== WBKurer content hub: news + blog (manual production CSS) ===== */
.wb-home-content { background:linear-gradient(180deg,#fff 0%,#fbf7fc 100%); border-top:1px solid var(--wb-border); }
.wb-home-content__heading { display:grid; grid-template-columns:minmax(0,1fr) minmax(280px,.72fr); gap:30px; max-width:none; align-items:end; }
.wb-home-content__heading h2 { margin-bottom:0; }
.wb-home-content__heading > p { margin:0; }
.wb-home-content__columns { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:20px; }
.wb-home-feed { min-width:0; padding:22px; border:1px solid var(--wb-border); border-radius:24px; background:#fff; box-shadow:0 14px 38px rgba(61,22,64,.05); }
.wb-home-feed__head { display:flex; align-items:end; justify-content:space-between; gap:18px; margin-bottom:16px; padding-bottom:15px; border-bottom:1px solid var(--wb-border); }
.wb-home-feed__head > div { display:grid; gap:2px; }
.wb-home-feed__head span { color:var(--wb-purple-deep); font-size:.7rem; font-weight:900; letter-spacing:.08em; text-transform:uppercase; }
.wb-home-feed__head strong { font-size:1.08rem; line-height:1.25; }
.wb-home-feed__head > a { color:var(--wb-purple-deep); font-size:.8rem; font-weight:850; text-decoration:none; white-space:nowrap; }
.wb-home-feed__list { display:grid; gap:4px; }
.wb-home-feed-card { display:grid; grid-template-columns:112px minmax(0,1fr); gap:14px; align-items:center; min-width:0; padding:11px; border-radius:16px; color:inherit; text-decoration:none; transition:background .16s ease,transform .16s ease; }
.wb-home-feed-card:hover { background:var(--wb-soft); transform:translateY(-1px); }
.wb-home-feed-card__media { aspect-ratio:16/9; overflow:hidden; border-radius:12px; background:linear-gradient(135deg,var(--wb-violet),var(--wb-purple)); }
.wb-home-feed-card__media img { width:100%; height:100%; display:block; object-fit:cover; }
.wb-home-feed-card__media span { display:grid; width:100%; height:100%; place-items:center; color:#fff; font-size:1.5rem; font-weight:950; }
.wb-home-feed-card > div:last-child { display:grid; min-width:0; gap:3px; }
.wb-home-feed-card time { color:#8c7f8e; font-size:.68rem; font-weight:800; }
.wb-home-feed-card strong { line-height:1.25; }
.wb-home-feed-card small { overflow:hidden; color:var(--wb-muted); font-size:.74rem; line-height:1.35; }

.wb-content-hero { padding:clamp(48px,7vw,82px) 0; color:#fff; background:linear-gradient(135deg,#5d26a3 0%,#cb11ab 68%,#e53abe 100%); }
.wb-content-hero--blog { background:linear-gradient(135deg,#251b29 0%,#5e2aa5 55%,#cb11ab 100%); }
.wb-content-hero h1 { max-width:18ch; margin:.15em 0 .3em; font-size:clamp(38px,5vw,64px); line-height:1.02; letter-spacing:-.045em; }
.wb-content-hero > .wb-container > p:last-child { max-width:760px; margin:0; color:#f4eaf5; font-size:clamp(17px,2vw,21px); }
.wb-content-index { background:#fff; }
.wb-content-card-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:20px; }
.wb-content-card { min-width:0; overflow:hidden; border:1px solid var(--wb-border); border-radius:23px; background:#fff; box-shadow:0 12px 34px rgba(54,18,58,.055); transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease; }
.wb-content-card:hover { transform:translateY(-3px); border-color:#dcbfdd; box-shadow:0 22px 48px rgba(77,15,75,.11); }
.wb-content-card__media { display:block; aspect-ratio:16/9; overflow:hidden; background:linear-gradient(135deg,var(--wb-violet),var(--wb-purple)); text-decoration:none; }
.wb-content-card__media img { display:block; width:100%; height:100%; object-fit:cover; transition:transform .28s ease; }
.wb-content-card:hover .wb-content-card__media img { transform:scale(1.025); }
.wb-content-card__placeholder { display:grid; width:100%; height:100%; place-items:center; color:#fff; font-size:2rem; font-weight:950; letter-spacing:.12em; }
.wb-content-card__body { display:grid; align-content:start; gap:10px; padding:20px; }
.wb-content-card__meta { display:flex; align-items:center; justify-content:space-between; gap:12px; color:#827487; font-size:.72rem; font-weight:800; }
.wb-content-card__meta span { color:var(--wb-purple-deep); letter-spacing:.05em; text-transform:uppercase; }
.wb-content-card h2 { margin:0; font-size:1.22rem; line-height:1.23; letter-spacing:-.02em; }
.wb-content-card h2 a { text-decoration:none; }
.wb-content-card h2 a:hover { color:var(--wb-purple-deep); }
.wb-content-card p { margin:0; color:var(--wb-muted); font-size:.88rem; line-height:1.55; }
.wb-content-card__link { margin-top:2px; color:var(--wb-purple-deep); font-size:.82rem; font-weight:900; text-decoration:none; }
.wb-content-pagination { display:flex; align-items:center; justify-content:center; gap:16px; margin-top:30px; }
.wb-content-pagination a,.wb-content-pagination span { padding:10px 14px; border:1px solid var(--wb-border); border-radius:12px; background:#fff; font-size:.82rem; font-weight:800; text-decoration:none; }
.wb-content-empty { padding:44px; border:1px dashed #d9c9dc; border-radius:24px; background:var(--wb-soft); text-align:center; }
.wb-content-empty strong { display:block; margin-bottom:7px; font-size:1.35rem; }
.wb-content-empty p { margin:0; color:var(--wb-muted); }
.wb-content-crosslinks { display:grid; grid-template-columns:minmax(0,1fr) auto; gap:28px; align-items:center; }
.wb-content-crosslinks h2 { margin:0; }
.wb-content-crosslinks__actions { display:flex; flex-wrap:wrap; gap:9px; justify-content:flex-end; }
.wb-content-crosslinks__actions .wb-button { border:1px solid var(--wb-border); }

.wb-content-article-hero { padding:clamp(46px,6vw,78px) 0; color:#fff; background:linear-gradient(135deg,#301735,#6b2491 55%,#cb11ab); }
.wb-content-article-hero--blog { background:linear-gradient(135deg,#17131b,#47206f 55%,#8f168f); }
.wb-content-article-hero__grid { display:grid; grid-template-columns:minmax(0,1.15fr) minmax(320px,.85fr); gap:clamp(28px,5vw,58px); align-items:center; }
.wb-content-article-hero__meta { display:flex; gap:10px; align-items:center; margin-bottom:12px; color:#f0dff2; font-size:.78rem; font-weight:850; }
.wb-content-article-hero__meta span { padding:5px 9px; border:1px solid rgba(255,255,255,.28); border-radius:999px; background:rgba(255,255,255,.08); }
.wb-content-article-hero h1 { max-width:18ch; margin:0 0 18px; font-size:clamp(38px,5vw,64px); line-height:1.03; letter-spacing:-.045em; }
.wb-content-article-hero p { max-width:720px; margin:0; color:#efe4f0; font-size:clamp(17px,2vw,20px); }
.wb-content-article-hero figure { margin:0; overflow:hidden; border:1px solid rgba(255,255,255,.16); border-radius:26px; box-shadow:0 24px 70px rgba(20,5,25,.28); }
.wb-content-article-hero figure img { display:block; width:100%; aspect-ratio:16/9; object-fit:cover; }
.wb-content-article-section { padding:clamp(48px,7vw,76px) 0; }
.wb-content-article-layout { display:grid; grid-template-columns:minmax(0,820px) minmax(240px,1fr); gap:clamp(30px,5vw,64px); align-items:start; }
.wb-content-prose { min-width:0; font-size:1.05rem; line-height:1.78; }
.wb-content-prose > :first-child { margin-top:0; }
.wb-content-prose > :last-child { margin-bottom:0; }
.wb-content-prose h2 { margin:2em 0 .65em; font-size:clamp(1.65rem,3vw,2.15rem); line-height:1.16; letter-spacing:-.025em; }
.wb-content-prose h3 { margin:1.65em 0 .6em; font-size:1.4rem; line-height:1.25; }
.wb-content-prose h4 { margin:1.5em 0 .5em; font-size:1.12rem; }
.wb-content-prose p { margin:0 0 1.15em; }
.wb-content-prose ul,.wb-content-prose ol { margin:0 0 1.3em; padding-left:1.4em; }
.wb-content-prose li { margin:.4em 0; }
.wb-content-prose blockquote { margin:1.7em 0; padding:18px 22px; border-left:4px solid var(--wb-purple); border-radius:0 15px 15px 0; background:#f7f2f9; color:#333; }
.wb-content-prose a { color:var(--wb-purple-deep); font-weight:750; text-underline-offset:3px; }
.wb-content-prose hr { height:1px; margin:2em 0; border:0; background:var(--wb-border); }
.wb-content-aside { position:sticky; top:96px; }
.wb-content-aside__card { display:grid; gap:8px; padding:18px; border:1px solid var(--wb-border); border-radius:20px; background:var(--wb-soft); }
.wb-content-aside__card > span { margin-bottom:3px; color:#817584; font-size:.7rem; font-weight:900; letter-spacing:.08em; text-transform:uppercase; }
.wb-content-aside__card a { display:grid; gap:2px; padding:13px; border-radius:14px; background:#fff; text-decoration:none; }
.wb-content-aside__card a:hover { box-shadow:0 8px 24px rgba(77,15,75,.08); }
.wb-content-aside__card strong { font-size:.9rem; }
.wb-content-aside__card small { color:var(--wb-muted); font-size:.74rem; line-height:1.4; }
.wb-content-related-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:14px; }
.wb-content-related-card { display:grid; gap:9px; min-height:170px; align-content:space-between; padding:20px; border:1px solid var(--wb-border); border-radius:19px; background:#fff; text-decoration:none; }
.wb-content-related-card:hover { border-color:#d9badc; box-shadow:0 12px 30px rgba(77,15,75,.08); }
.wb-content-related-card > span { color:#8d7d90; font-size:.7rem; font-weight:800; }
.wb-content-related-card strong { font-size:1rem; line-height:1.35; }
.wb-content-related-card small { color:var(--wb-purple-deep); font-weight:900; }
.wb-content-related__secondary { display:grid; grid-template-columns:minmax(220px,.4fr) minmax(0,1fr); gap:28px; margin-top:32px; padding-top:28px; border-top:1px solid var(--wb-border); }
.wb-content-related__secondary h3 { margin:0; font-size:1.45rem; }
.wb-content-related__secondary > div:last-child { display:grid; gap:8px; }
.wb-content-related__secondary a { display:flex; justify-content:space-between; gap:15px; padding:11px 13px; border-radius:12px; background:#fff; font-weight:800; text-decoration:none; }
.wb-content-related__secondary a span { color:var(--wb-purple); }

@media (max-width:980px) {
    .wb-content-card-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
    .wb-content-article-hero__grid { grid-template-columns:1fr; }
    .wb-content-article-hero figure { max-width:720px; }
    .wb-content-article-layout { grid-template-columns:1fr; }
    .wb-content-aside { position:static; }
    .wb-content-aside__card { grid-template-columns:repeat(3,minmax(0,1fr)); }
    .wb-content-aside__card > span { grid-column:1/-1; }
}
@media (max-width:760px) {
    .wb-home-content__heading,.wb-home-content__columns,.wb-content-crosslinks,.wb-content-related__secondary { grid-template-columns:1fr; }
    .wb-content-crosslinks__actions { justify-content:flex-start; }
    .wb-content-related-grid { grid-template-columns:1fr; }
    .wb-content-aside__card { grid-template-columns:1fr; }
}
@media (max-width:620px) {
    .wb-home-feed { padding:15px; border-radius:19px; }
    .wb-home-feed__head { align-items:flex-start; }
    .wb-home-feed__head > a { white-space:normal; text-align:right; }
    .wb-home-feed-card { grid-template-columns:92px minmax(0,1fr); padding:8px 4px; }
    .wb-home-feed-card small { display:none; }
    .wb-content-card-grid { grid-template-columns:1fr; }
    .wb-content-hero h1,.wb-content-article-hero h1 { font-size:clamp(34px,11vw,48px); }
    .wb-content-pagination { align-items:stretch; flex-direction:column; text-align:center; }
    .wb-content-prose { font-size:1rem; }
}
.wb-home-content__columns > :only-child { grid-column:1/-1; max-width:780px; }


/* ===== Knowledge base: latest WB Courier updates (manual production CSS) ===== */
.wb-training-updates { border-top:1px solid var(--wb-border); background:linear-gradient(180deg,#fff 0%,#fbf7fc 100%); }
.wb-training-updates__heading { align-items:end; }
.wb-training-updates__grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:14px; }
.wb-training-update-card { display:flex; flex-direction:column; min-width:0; min-height:220px; padding:20px; border:1px solid var(--wb-border); border-radius:20px; background:#fff; text-decoration:none; box-shadow:0 10px 30px rgba(65,24,70,.045); transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease; }
.wb-training-update-card:hover { transform:translateY(-2px); border-color:#d6b7db; box-shadow:0 16px 36px rgba(65,24,70,.09); }
.wb-training-update-card time { margin-bottom:10px; color:#8b7d8e; font-size:.72rem; font-weight:850; }
.wb-training-update-card strong { margin-bottom:9px; font-size:1rem; line-height:1.35; }
.wb-training-update-card p { margin:0 0 16px; color:var(--wb-muted); font-size:.84rem; line-height:1.55; }
.wb-training-update-card span { margin-top:auto; color:var(--wb-purple-deep); font-size:.8rem; font-weight:900; }
.wb-training-updates__actions { display:flex; justify-content:flex-start; margin-top:20px; }
@media (max-width:980px) { .wb-training-updates__grid { grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media (max-width:620px) { .wb-training-updates__grid { grid-template-columns:1fr; } .wb-training-update-card { min-height:0; } .wb-training-updates__actions .wb-button { width:100%; text-align:center; } }

/* ===== Article HERO media v2: wide image below title, manual production CSS ===== */
.wb-content-article-hero__grid { grid-template-columns:1fr; gap:clamp(26px,4vw,42px); }
.wb-content-article-hero__copy { max-width:980px; }
.wb-content-article-hero h1 { max-width:22ch; }
.wb-content-article-hero p { max-width:820px; }
.wb-content-article-hero figure.wb-content-article-hero__media { width:100%; max-width:1180px; margin:0; background:rgba(20,5,25,.16); }
.wb-content-article-hero figure.wb-content-article-hero__media--preview { max-width:1080px; }
.wb-content-article-hero figure.wb-content-article-hero__media img { display:block; width:100%; height:auto; max-height:760px; aspect-ratio:auto; object-fit:contain; }
@media (max-width:980px) {
    .wb-content-article-hero figure.wb-content-article-hero__media { max-width:100%; }
}
@media (max-width:620px) {
    .wb-content-article-hero__grid { gap:22px; }
    .wb-content-article-hero figure.wb-content-article-hero__media { border-radius:18px; }
    .wb-content-article-hero figure.wb-content-article-hero__media img { max-height:none; }
}


/* WB CONTENT ARTICLE IMAGE-IN-CONTENT FIX 2026-09-14 */
.wb-content-article-hero__grid { display:block; }
.wb-content-article-hero__copy { max-width:980px; }
.wb-content-article-image { margin:0 0 clamp(26px,4vw,38px); overflow:hidden; border:1px solid var(--wb-border); border-radius:22px; background:#fff; box-shadow:0 16px 42px rgba(63,20,61,.09); }
.wb-content-article-image img { display:block; width:100%; height:auto; aspect-ratio:16/9; object-fit:cover; }
.wb-content-prose__body > :first-child { margin-top:0; }
.wb-content-prose__body > :last-child { margin-bottom:0; }
@media (max-width:640px) {
    .wb-content-article-image { margin-bottom:24px; border-radius:16px; }
}

/* 2026-09-14: publication prose card */
.wb-content-prose {
    padding: 20px;
    background: white;
    border-radius: 20px;
}


/* 2026-09-14: vacancy role icon, large-list and city-choice alignment polish */
.wb-vacancy-card__icon {
    background: linear-gradient(135deg,#45154f 0%,#7a147b 55%,#a31799 100%) !important;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.18), 0 8px 20px rgba(65,20,72,.18);
}
.wb-vacancy-card__icon img {
    opacity: 1;
    filter: none;
}

.wb-large-list {
    gap: 10px;
}
.wb-large-list li {
    grid-template-columns: 38px minmax(0,1fr);
    gap: 13px;
    align-items: center;
    min-height: 66px;
    padding: 13px 15px;
    border: 1px solid #ded3e0;
    border-radius: 16px;
    background: #fbf8fc;
}
.wb-large-list li > span {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: linear-gradient(135deg,#45154f 0%,#7a147b 58%,#a31799 100%);
    color: #fff;
    font-size: .92rem;
    font-weight: 950;
    line-height: 1;
    box-shadow: 0 6px 16px rgba(65,20,72,.14);
}
.wb-large-list li > p {
    margin: 0;
    color: #29252b;
    font-size: .94rem;
    line-height: 1.52;
}
.wb-large-list--consider li {
    border-color: #d7ced9;
    background: #f6f1f7;
}
.wb-large-list--consider li > span {
    background: #fff;
    color: #621165;
    border: 1px solid #c9b9cc;
    box-shadow: none;
    font-size: 1rem;
}

.wb-form-choice-disclosure > summary {
    text-align: left;
}
.wb-form-choice-disclosure__copy {
    justify-items: start;
    text-align: left;
}
.wb-form-choice-disclosure > summary > b {
    text-align: left;
}

@media (max-width:620px) {
    .wb-large-list li {
        grid-template-columns: 34px minmax(0,1fr);
        gap: 11px;
        min-height: 0;
        padding: 12px 13px;
        border-radius: 14px;
    }
    .wb-large-list li > span {
        width: 32px;
        height: 32px;
        border-radius: 10px;
        font-size: .82rem;
    }
    .wb-large-list li > p {
        font-size: .9rem;
    }
}
