:root {
        --bg: #eef2f7;
        --ink: #101827;
        --muted: #536173;
        --muted2: #7b8797;
        --line: #dce3eb;
        --line2: #e5eaf0;
        --card: #ffffff;
        --soft: #f8fafc;
        --blue: #4158ff;
        --blue-dark: #2638b8;
        --navy: #0b1220;
        --gold: #c8a65a;
        --gold-soft: #f7f1df;
        --green-soft: #e7f8ef;
        --green: #116133;
        --red-soft: #fee2e2;
        --red: #991b1b;
        --orange-soft: #ffeadb;
        --orange: #9a3412;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
        margin: 0;
        background: var(--bg);
        color: var(--ink);
        font-family: Roboto, Arial, Helvetica, sans-serif;
        font-size: 16px;
        line-height: 1.55;
    }
    a { color: inherit; }
    p { margin: 0 0 12px; }
    table { border-collapse: collapse; }
    .specialtyCardV2--backup {
        border-color: #ead38f;
        background: linear-gradient(180deg, #ffffff 0%, #fffdf4 100%);
    }
    .guideShell { max-width: 1180px; margin: 0 auto; padding: 24px 22px 70px; }
    .topBar {
        position: sticky;
        top: 0;
        z-index: 50;
        background: rgba(238, 242, 247, .92);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(220, 227, 235, .7);
    }
    .topBar__inner {
        max-width: 1180px;
        margin: 0 auto;
        padding: 12px 22px;
        display: flex;
        gap: 10px;
        align-items: center;
        justify-content: space-between;
    }
    .topBar__title { font-size: 14px; font-weight: 900; color: var(--navy); }
    .topBar__actions { display: flex; gap: 8px; flex-wrap: wrap; }
    .topBar__rollback {
        background: #eef2ff;
        border-color: #c7d2fe;
        color: #2537d7;
    }
    .topBar__rollback:hover {
        background: #dfe5ff;
        border-color: #aebcff;
    }
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 40px;
        padding: 0 14px;
        border: 0;
        border-radius: 14px;
        background: var(--blue);
        color: #fff;
        font-weight: 900;
        cursor: pointer;
        text-decoration: none;
        font-size: 14px;
        line-height: 1.15;
        text-align: center;
    }
    .btn--ghost { background: #fff; color: var(--blue-dark); border: 1px solid var(--line); }
    .btn--ghost:hover { background: #f8fbff; border-color: #c9d4e4; }
    .btn--disabled,
    .btn--disabled:hover {
        background: #f3f6fb;
        color: var(--muted);
        border: 1px dashed #cfd8e6;
        cursor: default;
        opacity: .82;
    }

    .guideSpecialistModal {
        position: fixed;
        inset: 0;
        z-index: 10040;
        display: none;
        align-items: center;
        justify-content: center;
        padding: 18px;
    }
    .guideSpecialistModal.is-open { display: flex; }
    .guideSpecialistModal__backdrop {
        position: absolute;
        inset: 0;
        border: 0;
        background: rgba(15, 23, 42, .42);
        cursor: pointer;
    }
    .guideSpecialistModal__panel {
        position: relative;
        width: min(540px, 100%);
        border-radius: 26px;
        background: #fff;
        border: 1px solid #dce7f5;
        box-shadow: 0 30px 90px rgba(15, 23, 42, .28);
        padding: 20px;
    }
    .guideSpecialistModal__head {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 14px;
        margin-bottom: 12px;
    }
    .guideSpecialistModal__head strong {
        color: var(--navy);
        font-size: 22px;
        line-height: 1.15;
    }
    .guideSpecialistModal__close {
        flex: 0 0 auto;
        width: 36px;
        height: 36px;
        border: 0;
        border-radius: 999px;
        background: #eef1ff;
        color: var(--blue-dark);
        font-size: 22px;
        line-height: 1;
        font-weight: 900;
        cursor: pointer;
    }
    .guideSpecialistModal__text {
        margin: 0 0 16px;
        color: var(--muted);
        font-size: 15px;
        line-height: 1.45;
    }
    .guideSpecialistModal__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        align-items: center;
    }
    .guideSpecialistModal__actions .guideSpecialistModal__text {
        flex: 0 0 100%;
        margin: 6px 0 0;
    }
    .guideSpecialistModal__message {
        min-height: 18px;
        color: var(--green);
        font-size: 13px;
        font-weight: 900;
    }
    .guideSpecialistModal__message.is-error { color: var(--red); }
    body.guide-specialist-open { overflow: hidden; }

    @media (max-width: 720px) {
        .topBar__inner { flex-direction: column; align-items: stretch; }
        .topBar__actions { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
        .topBar__actions .btn { width: 100%; min-width: 0; padding-left: 10px; padding-right: 10px; }
        .topBar__rollback { grid-column: 1 / -1; }
    }

    @media (max-width: 420px) {
        .topBar__actions { grid-template-columns: 1fr; }
    }

    .cover {
        position: relative;
        overflow: hidden;
        border-radius: 34px;
        background: radial-gradient(circle at 86% 12%, rgba(200,166,90,.30), transparent 26%), linear-gradient(135deg, #0b1220 0%, #111c36 100%);
        color: #fff;
        padding: 46px;
        box-shadow: 0 30px 90px rgba(15, 23, 42, .24);
    }
    .cover__top {
        display: flex;
        justify-content: space-between;
        gap: 24px;
        align-items: flex-start;
        margin-bottom: 56px;
    }
    .brandBlock {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    .brandIcon {
        width: 42px;
        height: 42px;
        border-radius: 10px;
        display: block;
        box-shadow: 0 10px 24px rgba(0, 0, 0, .22);
    }
    .brand { font-size: 22px; font-weight: 900; letter-spacing: .02em; }
    .brandSub { margin-top: 6px; color: #aab6cc; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
    .coverDate { color: #d6deed; text-align: right; font-size: 14px; }
    .kicker {
        display: inline-flex;
        padding: 9px 13px;
        border-radius: 999px;
        background: rgba(200,166,90,.16);
        border: 1px solid rgba(200,166,90,.55);
        color: #f4d992;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: .08em;
        text-transform: uppercase;
        margin-bottom: 20px;
    }
    .cover h1 {
        max-width: 850px;
        margin: 0;
        color: #fff;
        font-size: 62px;
        line-height: .98;
        letter-spacing: -1.8px;
        font-weight: 900;
    }
    .cover h1 em { color: #f2d58a; font-style: normal; }
    .coverLead { max-width: 760px; margin: 22px 0 0; color: #d5deed; font-size: 18px; line-height: 1.62; }
    .coverActions {
        display: grid;
        grid-template-columns: minmax(220px, 1.1fr) repeat(2, minmax(170px, .8fr));
        gap: 12px;
        margin-top: 28px;
        max-width: 860px;
    }
    .coverAction {
        min-width: 0;
        min-height: 72px;
        display: grid;
        align-content: center;
        gap: 5px;
        border: 1px solid rgba(255,255,255,.18);
        border-radius: 20px;
        background: rgba(255,255,255,.08);
        color: #fff;
        padding: 14px 16px;
        text-align: left;
        text-decoration: none;
        font: inherit;
        cursor: pointer;
        transition: transform .16s ease, background .16s ease, border-color .16s ease;
    }
    .coverAction:hover {
        transform: translateY(-1px);
        background: rgba(255,255,255,.13);
        border-color: rgba(242,213,138,.55);
        color: #fff;
        text-decoration: none;
    }
    .coverAction--primary {
        background: #f2d58a;
        color: #172033;
        border-color: #f2d58a;
        box-shadow: 0 16px 34px rgba(242,213,138,.22);
    }
    .coverAction--primary:hover {
        background: #ffe19a;
        color: #111827;
    }
    .coverAction span {
        color: inherit;
        opacity: .72;
        font-size: 12px;
        line-height: 1.15;
        font-weight: 900;
        text-transform: uppercase;
    }
    .coverAction b {
        display: block;
        color: inherit;
        font-size: 18px;
        line-height: 1.18;
        font-weight: 900;
    }
    .coverStartPanel {
        display: grid;
        grid-template-columns: minmax(260px, .85fr) minmax(0, 1.15fr);
        gap: 16px;
        align-items: stretch;
        margin-top: 18px;
        border-radius: 24px;
        border: 1px solid rgba(255,255,255,.14);
        background: rgba(255,255,255,.07);
        padding: 18px;
    }
    .coverStartPanel__intro {
        display: grid;
        align-content: center;
        gap: 8px;
        min-width: 0;
    }
    .coverStartPanel__intro span {
        color: #f2d58a;
        font-size: 12px;
        line-height: 1.1;
        font-weight: 900;
        text-transform: uppercase;
    }
    .coverStartPanel__intro strong {
        display: block;
        color: #eef4ff;
        font-size: 17px;
        line-height: 1.42;
        font-weight: 900;
    }
    .coverStartStats {
        display: grid;
        grid-template-columns: repeat(4, minmax(0,1fr));
        gap: 10px;
    }
    .coverStartStat {
        min-width: 0;
        border-radius: 18px;
        background: rgba(255,255,255,.08);
        border: 1px solid rgba(255,255,255,.12);
        padding: 13px;
        color: inherit;
        font: inherit;
        cursor: pointer;
        text-align: left;
        appearance: none;
        transition: transform .16s ease, background .16s ease, border-color .16s ease;
    }
    .coverStartStat:hover,
    .coverStartStat:focus-visible {
        transform: translateY(-2px);
        background: rgba(255,255,255,.12);
        border-color: rgba(242,213,138,.44);
        outline: none;
    }
    .coverStartStats b {
        display: block;
        color: #f2d58a;
        font-size: 27px;
        line-height: 1;
        font-weight: 900;
        margin-bottom: 7px;
    }
    .coverStartStats span {
        display: block;
        color: #d9e3f5;
        font-size: 12px;
        line-height: 1.28;
        overflow-wrap: anywhere;
    }
    .coverCards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; }
    .coverCard {
        border-radius: 24px;
        padding: 22px;
        background: #fff;
        color: var(--ink);
        border: 1px solid rgba(255,255,255,.22);
    }
    .coverCard--dark { background: rgba(255,255,255,.07); color: #fff; border-color: rgba(255,255,255,.12); }
    .coverCard h3 { margin: 0 0 12px; font-size: 18px; line-height: 1.2; }
    .coverCard--dark p { color: #d9e3f5; }
    .coverComputerNote {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        gap: 14px;
        align-items: center;
        margin-top: 16px;
        border-radius: 22px;
        border: 1px solid rgba(200,166,90,.48);
        background: rgba(255,255,255,.09);
        padding: 16px 18px;
        color: #e7eefb;
    }
    .coverComputerNote__icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 14px;
        background: #f7f1df;
        color: #76500b;
        font-size: 25px;
        font-weight: 900;
    }
    .coverComputerNote strong {
        display: block;
        color: #f4d992;
        font-size: 16px;
        line-height: 1.25;
        margin-bottom: 3px;
    }
    .coverComputerNote span {
        display: block;
        color: #d9e3f5;
        font-size: 14px;
        line-height: 1.42;
    }
    .profileTable { width: 100%; }
    .profileTable td { padding: 8px 0; border-bottom: 1px solid #edf1f6; vertical-align: top; }
    .profileTable tr:last-child td { border-bottom: 0; }
    .profileLabel { color: var(--muted2); font-size: 13px; }
    .profileValue { color: var(--ink); font-size: 14px; font-weight: 900; text-align: right; }
    .manifest {
        margin-top: 16px;
        border-radius: 22px;
        padding: 20px 22px;
        background: var(--gold-soft);
        border: 1px solid #e7d7ad;
        color: #2b2112;
    }
    .manifest strong { display: block; margin-bottom: 6px; font-size: 17px; }
    .manifest p { margin: 0; color: #53462d; }

    .toc {
        display: grid;
        grid-template-columns: repeat(4, minmax(0,1fr));
        gap: 12px;
        margin-top: 20px;
    }
    .toc a {
        display: block;
        border-radius: 18px;
        background: var(--soft);
        border: 1px solid var(--line2);
        padding: 16px;
        text-decoration: none;
        transition: .16s ease;
    }
    .toc a:hover { transform: translateY(-1px); border-color: #b8c2ff; box-shadow: 0 12px 30px rgba(35,71,120,.08); }
    .tocNum { display: inline-flex; width: 30px; height: 30px; align-items: center; justify-content: center; border-radius: 999px; background: var(--navy); color: #f2d58a; font-weight: 900; font-size: 13px; margin-bottom: 10px; }
    .toc strong { display: block; font-size: 15px; line-height: 1.25; margin-bottom: 5px; color: var(--navy); }
    .toc span { display: block; font-size: 13px; color: #64748b; line-height: 1.4; }

    .section {
        margin-top: 34px;
        border-radius: 28px;
        background: var(--card);
        border: 1px solid var(--line);
        padding: 32px;
        box-shadow: 0 18px 50px rgba(35, 71, 120, .08);
    }
    .section--dark { background: var(--navy); color: #fff; border-color: var(--navy); }
    .eyebrow {
        display: inline-flex;
        padding: 8px 12px;
        border-radius: 999px;
        background: #eef1ff;
        color: var(--blue-dark);
        font-size: 12px;
        line-height: 1;
        font-weight: 900;
        letter-spacing: .08em;
        text-transform: uppercase;
        margin-bottom: 14px;
    }
    .section h2 {
        margin: 0 0 10px;
        color: var(--navy);
        font-size: 38px;
        line-height: 1.08;
        font-weight: 900;
        letter-spacing: -.6px;
    }
    .section--dark h2 { color: #fff; }
    .sectionLead { max-width: 850px; color: var(--muted); font-size: 16px; line-height: 1.6; margin-bottom: 22px; }
    .section--dark .sectionLead { color: #d9e3f5; }

    .sectionTitleBlock {
        padding-bottom: 18px;
        margin-bottom: 22px;
        border-bottom: 1px solid var(--line2);
    }
    .sectionTitleBlock--withAction {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 18px;
        align-items: start;
    }
    .sectionTitleBlock--withAction .sectionLead { margin-bottom: 0; }
    .sectionTitleActions {
        display: flex;
        justify-content: flex-end;
        align-items: flex-start;
    }

    .metricGrid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px; margin-top: 22px; }
    .metric { border-radius: 20px; background: var(--soft); border: 1px solid var(--line2); padding: 18px; }
    .metric--gold { background: var(--gold-soft); border-color: #e6d29d; }
    .metricLabel { color: var(--muted2); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px; }
    .metricValue { color: var(--navy); font-size: 34px; line-height: 1; font-weight: 900; letter-spacing: -1px; }
    .metricValue--small { font-size: 18px; line-height: 1.2; letter-spacing: 0; }

    .dataGrid, .strategyGrid, .checkGrid { display: grid; gap: 12px; }
    .dataGrid { grid-template-columns: repeat(3, minmax(0,1fr)); margin-top: 20px; }
    .strategyGrid { grid-template-columns: repeat(3, minmax(0,1fr)); margin-top: 22px; }
    .checkGrid { grid-template-columns: repeat(2, minmax(0,1fr)); margin-top: 18px; }
    .dataCell, .strategyCard, .checkCell, .panel, .noticeCard {
        border-radius: 20px;
        background: var(--soft);
        border: 1px solid var(--line2);
        padding: 18px;
    }
    .dataLabel { color: var(--muted2); font-size: 12px; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 7px; }
    .dataValue { color: var(--navy); font-size: 16px; line-height: 1.35; font-weight: 900; }
    .strategyCard--dark { background: var(--navy); color: #fff; border-color: var(--navy); }
    .strategyCard--gold { background: var(--gold-soft); border-color: #e6d29d; }
    .strategyCard h3 { margin: 0 0 8px; font-size: 19px; line-height: 1.2; }
    .strategyCard p { color: #4b5a6d; margin: 0; }
    .strategyCard--dark p { color: #d9e3f5; }
    .noticeCard { margin-top: 18px; background: var(--navy); color: #dce6f6; border-color: var(--navy); }
    .noticeCard strong { color: #f2d58a; }
    .panel { margin-top: 18px; }
    .panel h3 { margin: 0 0 10px; color: var(--navy); font-size: 21px; }

    .chipRow { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
    .chip {
        display: inline-flex;
        align-items: center;
        min-height: 30px;
        padding: 7px 11px;
        border-radius: 999px;
        background: #eef1ff;
        color: var(--blue-dark);
        font-size: 13px;
        font-weight: 900;
        line-height: 1.2;
    }
    .chip--green { background: var(--green-soft); color: var(--green); }
    .chip--gold { background: #fff3cf; color: #76500b; }
    .chip--red { background: var(--red-soft); color: var(--red); }

    .howtoList { margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
    .howtoList li { border-radius: 16px; background: #fff; border: 1px solid var(--line2); color: #38465a; padding: 14px 16px; }
    .howtoList strong { color: var(--navy); }

    .institutionCard {
        margin: 0 0 22px;
        border-radius: 26px;
        background: #fff;
        border: 1px solid var(--line);
        overflow: hidden;
        box-shadow: 0 18px 50px rgba(35, 71, 120, .08);
    }
    .institutionHead {
        display: flex;
        justify-content: space-between;
        gap: 18px;
        align-items: flex-start;
        padding: 22px 24px 18px;
        background: var(--soft);
        border-bottom: 1px solid var(--line2);
    }
    .institutionHead h3 { margin: 0 0 6px; color: var(--navy); font-size: 24px; line-height: 1.2; }
    .institutionMeta { color: #6b7280; font-size: 14px; line-height: 1.35; }
    .institutionChance {
        flex: 0 0 auto;
        border-radius: 999px;
        padding: 9px 13px;
        font-size: 13px;
        font-weight: 900;
        white-space: nowrap;
        background: #eef1ff;
        color: var(--blue-dark);
    }
    .institutionCard > .chipRow { padding: 0 24px 18px; margin-top: 16px; }
    .tableWrap { width: 100%; overflow-x: auto; }
    .programTable { width: 100%; border-collapse: collapse; font-size: 13px; line-height: 1.4; min-width: 960px; }
    .programTable th {
        padding: 12px 10px;
        color: #6b7280;
        background: #fff;
        border-bottom: 1px solid var(--line2);
        text-align: left;
        vertical-align: top;
        font-size: 11px;
        letter-spacing: .05em;
        text-transform: uppercase;
    }
    .programTable td { padding: 13px 10px; color: #253247; border-bottom: 1px solid #eef2f7; vertical-align: top; }
    .programTable tr:nth-child(even) td { background: #fbfdff; }
    .programTable th:first-child, .programTable td:first-child { padding-left: 20px; min-width: 260px; }
    .programTable th:last-child, .programTable td:last-child { padding-right: 20px; }
    .commentRow td { background: var(--soft) !important; color: #64748b; font-size: 13px; padding-top: 8px; padding-bottom: 12px; }
    .chanceBadge {
        display: inline-flex;
        padding: 6px 9px;
        border-radius: 999px;
        font-size: 12px;
        line-height: 1.2;
        font-weight: 900;
        white-space: nowrap;
        background: #eef1ff;
        color: var(--blue-dark);
    }
    .chance-reliable, .chance-high, .chance-aa_high { background: var(--green-soft); color: var(--green); }
    .chance-backup, .chance-medium, .chance-bb_real { background: #fff3cf; color: #76500b; }
    .chance-risk, .chance-cc_risk { background: var(--orange-soft); color: var(--orange); }
    .chance-unlikely, .chance-dd_no { background: var(--red-soft); color: var(--red); }
    .chance-topup { background: #eef1ff; color: var(--blue-dark); }
    .chance-paid_backup, .chance-requires_check, .chance-unknown, .chance-manual, .chance-zz_unknown { background: #eef1ff; color: var(--blue-dark); }
    .muted { margin-top: 4px; color: var(--muted2); font-size: 12px; }
    .smallNote { display: inline-flex; margin-top: 7px; padding: 5px 8px; border-radius: 999px; background: #eef1ff; color: var(--blue-dark); font-size: 11px; font-weight: 900; }

    .programLabelsV2 {
        display: flex;
        flex-wrap: wrap;
        gap: 7px;
        margin-top: 8px;
    }

    .programLabelsV2 .smallNote {
        margin-top: 0;
    }

    .smallNote--backup {
        background: #fff3cf;
        color: #76500b;
        border: 1px solid #ead38f;
    }
    .smallNote--paidBackup {
        background: #fff7ed;
        color: #8a4b0f;
        border: 1px solid #f4c27a;
    }

    .timelineCard { border-radius: 22px; background: #fff; border: 1px solid var(--line); padding: 20px; margin-bottom: 16px; }
    .timelineTitle { display: inline-flex; background: var(--navy); color: #f2d58a; border-radius: 999px; padding: 8px 12px; font-size: 13px; font-weight: 900; margin-bottom: 12px; }
    .timelineVuz { color: var(--navy); font-size: 17px; font-weight: 900; margin: 14px 0 8px; }
    .timelineTable { width: 100%; border: 1px solid var(--line2); font-size: 14px; line-height: 1.4; }
    .timelineTable th { background: var(--soft); color: var(--muted); padding: 9px; text-align: left; border-bottom: 1px solid var(--line2); }
    .timelineTable td { padding: 9px; color: #253247; border-bottom: 1px solid #eef2f7; }

    .blockCard { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 22px 24px; margin-bottom: 16px; }
    .blockCard h3 { margin: 0 0 10px; color: var(--navy); font-size: 22px; line-height: 1.25; }
    .blockCard p { color: #38465a; }
    .blockCard ul, .blockCard ol { margin: 8px 0 10px 22px; padding: 0; }
    .blockCard li { color: #38465a; margin-bottom: 6px; }

    .nextSteps { margin-top: 20px; border-radius: 24px; background: var(--gold-soft); border: 1px solid #e6d29d; padding: 22px; }
    .nextSteps h3 { margin: 0 0 12px; color: var(--navy); font-size: 22px; }
    .nextSteps li { margin-bottom: 7px; color: #38465a; }
    .finalNote { margin-top: 22px; background: var(--soft); border: 1px solid var(--line2); border-radius: 22px; padding: 20px; color: #38465a; }

    .institutionHeadRight {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: flex-end;
        flex: 0 0 auto;
    }
    .calendarAddBtn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 38px;
        padding: 0 13px;
        border: 0;
        border-radius: 999px;
        background: var(--blue);
        color: #fff;
        font-weight: 900;
        font-size: 13px;
        cursor: pointer;
        white-space: nowrap;
        box-shadow: 0 10px 24px rgba(65,88,255,.18);
    }
    .calendarAddBtn.is-added { background: var(--green-soft); color: var(--green); box-shadow: none; }

    .admissionCalendar { overflow: visible; }
    .calendarHero {
        display: grid;
        grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
        gap: 18px;
        margin: 20px 0 22px;
    }
    .calendarHeroCard {
        border-radius: 24px;
        background: var(--navy);
        color: #fff;
        padding: 22px;
        border: 1px solid rgba(255,255,255,.08);
    }
    .calendarHeroCard h3 { margin: 0 0 10px; color: #fff; font-size: 23px; line-height: 1.2; }
    .calendarHeroCard p { color: #d9e3f5; margin: 0; }
    .calendarHeroCard--light { background: var(--soft); color: var(--ink); border-color: var(--line2); }
    .calendarHeroCard--light h3 { color: var(--navy); }
    .calendarHeroCard--light p { color: var(--muted); }

    .calendarToolbar {
        display: flex;
        justify-content: space-between;
        gap: 18px;
        align-items: flex-start;
        border-radius: 22px;
        background: #fff;
        border: 1px solid var(--line);
        padding: 18px;
        margin: 18px 0;
        box-shadow: 0 12px 34px rgba(35,71,120,.06);
    }
    .calendarToolbar strong { display:block; color:var(--navy); font-size:18px; margin-bottom:4px; }
    .calendarToolbar span { display:block; color:var(--muted); font-size:14px; }
    .calendarToolbar__actions { display:flex; flex-wrap:wrap; gap:10px; justify-content:flex-end; align-items:center; }
    .calendarToolbar__group { display:flex; flex-wrap:wrap; gap:8px; align-items:center; }
    .calendarEgeFilter {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 8px;
        padding: 8px;
        border-radius: 18px;
        background: #f8fbff;
        border: 1px solid var(--line);
    }
    .calendarToolbar .calendarEgeFilter__label {
        display: inline-flex;
        align-items: center;
        min-height: 38px;
        padding: 0 4px;
        color: var(--navy);
        font-size: 13px;
        font-weight: 900;
        white-space: nowrap;
    }
    .calendarModeBtn.is-active { background: var(--navy); color:#fff; border-color: var(--navy); }
    .calendarModeBtn:disabled { opacity:.48; cursor:not-allowed; }

    .calendarSelectedUniversities { display:flex; flex-wrap:wrap; gap:8px; margin:12px 0 18px; }
    .calendarSelectedEmpty { width:100%; border-radius:18px; background:#fff; border:1px dashed var(--line); color:var(--muted); padding:16px; }
    .calendarPlanChip { display:inline-flex; align-items:center; gap:8px; border-radius:999px; background:#fff; border:1px solid var(--line); padding:8px 11px; color:var(--navy); font-size:13px; font-weight:900; }
    .calendarPlanChip button { border:0; background:transparent; color:var(--muted2); font-weight:900; cursor:pointer; padding:0; }

    .calendarWorkArea { display:grid; grid-template-columns:minmax(0, 1fr) 360px; gap:18px; align-items:start; }
    .calendarSide { position: sticky; top: 78px; display:grid; gap:14px; }
    .calendarDetails, .calendarLegendBox {
        border-radius:24px;
        background:#fff;
        border:1px solid var(--line);
        padding:20px;
        box-shadow:0 14px 40px rgba(35,71,120,.06);
    }
    .calendarDetails h3, .calendarLegendBox h3 { margin:0 0 12px; color:var(--navy); font-size:22px; }
    .calendarLegendList { display:grid; gap:9px; color:var(--muted); font-size:14px; }
    .calendarLegendList div { display:flex; align-items:center; gap:8px; }
    .legendDot { width:11px; height:11px; border-radius:999px; display:inline-block; }
    .legendDot--critical { background: var(--red); }
    .legendDot--important { background: var(--green); }
    .legendDot--normal { background: var(--blue); }
    .legendDot--base { background: #76500b; }
    .legendDot--note { background: #7c3aed; }

    .calendarNarrative { display:grid; gap:14px; margin:18px 0 22px; }
    .calendarStage {
        border-radius:24px;
        background:#fff;
        border:1px solid var(--line);
        overflow:hidden;
        box-shadow:0 14px 40px rgba(35,71,120,.06);
    }
    .calendarStageHead { display:flex; justify-content:space-between; gap:16px; align-items:flex-start; padding:18px 20px; background:var(--soft); border-bottom:1px solid var(--line2); }
    .calendarStageHead h3 { margin:0 0 5px; color:var(--navy); font-size:21px; line-height:1.2; }
    .calendarStageHead span { color:var(--muted); font-size:14px; }
    .calendarStagePeriod { flex:0 0 auto; border-radius:999px; padding:8px 11px; background:#fff; border:1px solid var(--line); color:var(--blue-dark); font-weight:900; font-size:13px; white-space:nowrap; }
    .calendarStageBody { padding:18px 20px; display:grid; gap:10px; }
    .calendarStageItem { display:grid; grid-template-columns:34px minmax(0,1fr) auto; gap:12px; align-items:flex-start; border-radius:16px; background:#fbfdff; border:1px solid #eef2f7; padding:13px; }
    .calendarStageNum { width:30px; height:30px; display:flex; align-items:center; justify-content:center; border-radius:999px; background:var(--navy); color:#f2d58a; font-weight:900; }
    .calendarStageItem strong { display:block; color:var(--navy); margin-bottom:3px; }
    .calendarStageItem p { margin:0; color:var(--muted); font-size:14px; line-height:1.45; }
    .calendarStageDateLink { border:0; background:#eef1ff; color:var(--blue-dark); border-radius:999px; padding:7px 10px; font-weight:900; cursor:pointer; white-space:nowrap; }
    .calendarProcessTimeline { border-radius: 24px; background: #fff; border: 1px solid var(--line); box-shadow: 0 14px 40px rgba(35,71,120,.06); padding: 18px 20px; margin: 16px 0 18px; }
    .calendarProcessHead { display:flex; justify-content:space-between; gap:16px; align-items:flex-start; margin-bottom:16px; }
    .calendarProcessHead h3 { margin:0 0 4px; color:var(--navy); font-size:22px; line-height:1.2; }
    .calendarProcessHead p { margin:0; color:var(--muted); font-size:14px; }
    .calendarProcessFlow { display:grid; grid-template-columns:repeat(5,minmax(0,1fr)); gap:10px; align-items:stretch; }
    .calendarProcessStep { position:relative; border-radius:18px; background:#fbfdff; border:1px solid #e4edf7; padding:14px; min-height:156px; display:flex; flex-direction:column; gap:9px; }
    .calendarProcessStep:not(:last-child):after { content:''; position:absolute; right:-10px; top:35px; width:10px; height:2px; background:#c8d7ec; }
    .calendarProcessIndex { width:28px; height:28px; border-radius:999px; background:var(--navy); color:#f2d58a; display:flex; align-items:center; justify-content:center; font-weight:900; font-size:13px; }
    .calendarProcessStep strong { color:var(--navy); line-height:1.2; }
    .calendarProcessStep span { color:var(--muted); font-size:13px; line-height:1.35; }
    .calendarProcessDates { display:flex; flex-wrap:wrap; gap:6px; margin-top:auto; }
    .calendarProcessDates button { border:0; border-radius:999px; background:#eef1ff; color:var(--blue-dark); padding:6px 9px; font-weight:900; font-size:12px; cursor:pointer; }

    .calendarGrid { display:grid; gap:20px; }
    .calendarMonth { border-radius:24px; background:#fff; border:1px solid var(--line); overflow:hidden; box-shadow:0 14px 40px rgba(35,71,120,.06); }
    .calendarMonthHead { display:flex; align-items:center; justify-content:space-between; background:var(--navy); color:#fff; padding:16px 18px; font-size:20px; font-weight:900; }
    .calendarMonthHead small { color:#b8c3d8; font-size:13px; font-weight:700; }
    .calendarWeekRow { display:grid; grid-template-columns:repeat(7,minmax(0,1fr)); background:#f8fafc; border-bottom:1px solid var(--line2); }
    .calendarWeekRow div { padding:10px 8px; text-align:center; color:var(--muted); font-size:12px; font-weight:900; text-transform:uppercase; letter-spacing:.04em; border-right:1px solid #eef2f7; }
    .calendarDays { display:grid; grid-template-columns:repeat(7,minmax(0,1fr)); }
    .calendarDay {
        min-height:132px;
        padding:10px;
        border:0;
        border-right:1px solid #e9eef5;
        border-bottom:1px solid #e9eef5;
        background:#fff;
        cursor:pointer;
        text-align:left;
        position:relative;
        color:inherit;
        font:inherit;
    }
    .calendarDay:nth-child(7n) { border-right:0; }
    .calendarDay:hover { background:#f8fbff; }
    .calendarDay.is-other-month { background:#fbfdff; opacity:.46; cursor:default; }
    .calendarDay.has-events { background:#fbfdff; }
    .calendarDay.is-selected { outline:3px solid rgba(65,88,255,.22); outline-offset:-3px; background:#f4f7ff; }
    .calendarDay.is-today { outline:3px solid rgba(15,23,42,.24); outline-offset:-3px; }
    .calendarDayTop { display:flex; justify-content:space-between; gap:8px; align-items:flex-start; margin-bottom:8px; }
    .calendarDayNum { width:30px; height:30px; display:flex; align-items:center; justify-content:center; border-radius:999px; background:#eef1ff; color:var(--blue-dark); font-weight:900; font-size:14px; }
    .calendarDay.is-today .calendarDayNum { box-shadow:0 0 0 3px rgba(250,204,21,.55); }
    .calendarDay.has-critical .calendarDayNum { background:var(--red-soft); color:var(--red); }
    .calendarDay.has-important .calendarDayNum { background:var(--green-soft); color:var(--green); }
    .calendarDayWeek { color:var(--muted2); font-size:11px; font-weight:800; padding-top:4px; }
    .calendarDayIcons { display:flex; flex-wrap:wrap; gap:4px; justify-content:flex-end; max-width:82px; }
    .calendarUniIcon, .calendarBaseIcon, .calendarMoreIcon, .calendarNoteIcon { display:inline-flex; align-items:center; justify-content:center; width:22px; height:22px; border-radius:999px; font-size:10px; font-weight:900; line-height:1; }
    .calendarUniIcon { background:#fff; color:var(--blue-dark); border:1px solid #dbe7f4; overflow:hidden; }
    .calendarUniIcon img { width:100%; height:100%; object-fit:contain; display:block; }
    .calendarUniIcon--fallback { background:var(--blue); color:#fff; border-color:var(--blue); }
    .calendarBaseIcon { background:var(--gold-soft); color:#76500b; }
    .calendarNoteIcon { background:#ede9fe; color:#6d28d9; }
    .calendarMoreIcon { background:#eef1ff; color:var(--blue-dark); }
    .calendarDayEvents { display:grid; gap:5px; }
    .calendarInlineEvent { display:block; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; border-radius:10px; padding:5px 7px; font-size:11px; line-height:1.15; font-weight:800; color:#263247; background:#eef1ff; border:1px solid #dbe3ff; }
    .calendarInlineEvent--critical { background:var(--red-soft); color:var(--red); border-color:#fecaca; }
    .calendarInlineEvent--important { background:var(--green-soft); color:var(--green); border-color:#bfe8d1; }
    .calendarInlineEvent--base { background:var(--gold-soft); color:#76500b; border-color:#e7d7ad; }
    .calendarInlineMore { color:var(--muted2); font-size:11px; font-weight:900; padding-left:2px; }
    .calendarEventItem, .calendarNoteItem { border-radius:16px; padding:12px 14px; margin-bottom:9px; background:#eef1ff; border:1px solid #dbe3ff; display:block; }
    .calendarEventItem--base { background:var(--gold-soft); border-color:#e7d7ad; }
    .calendarEventItem--critical { background:var(--red-soft); border-color:#fecaca; }
    .calendarEventItem--important { background:var(--green-soft); border-color:#bfe8d1; }
    .calendarEventInstitution { color: var(--blue-dark); font-size: 12px; font-weight: 900; margin-bottom: 4px; }
    .calendarEventTitle { color:var(--navy); font-weight:900; margin-bottom:4px; }
    .calendarEventMeta { color:var(--muted); font-size:13px; line-height:1.35; }
    .calendarEventLink { display:inline-flex; margin-top:8px; color:var(--blue-dark); font-weight:900; text-decoration:none; font-size:13px; }
    .institutionCard { scroll-margin-top: 96px; }
    .institutionCard.is-calendar-target { box-shadow: 0 0 0 3px rgba(65,88,255,.24), 0 18px 45px rgba(35,71,120,.14); }
    .calendarNoteItem { background:#fff; border-color:var(--line); }
    .calendarNoteTop { display:flex; gap:8px; align-items:flex-start; justify-content:space-between; }
    .calendarNoteActions { display:flex; gap:6px; }
    .calendarMiniBtn { border:0; border-radius:999px; background:#eef1ff; color:var(--blue-dark); padding:5px 8px; font-size:12px; font-weight:900; cursor:pointer; }
    .calendarMiniBtn--red { background:var(--red-soft); color:var(--red); }
    .calendarNoteSpoiler { margin:0 0 16px; border:1px solid var(--line2); border-radius:18px; background:#f8fafc; overflow:hidden; }
    .calendarNoteSpoiler summary { min-height:48px; display:flex; align-items:center; gap:8px; padding:0 14px; color:var(--navy); font-weight:900; cursor:pointer; list-style:none; }
    .calendarNoteSpoiler summary::-webkit-details-marker { display:none; }
    .calendarNoteSpoiler summary:after { content:'+'; margin-left:auto; width:24px; height:24px; border-radius:999px; display:inline-flex; align-items:center; justify-content:center; background:#eef1ff; color:var(--blue-dark); font-weight:900; }
    .calendarNoteSpoiler[open] summary:after { content:'−'; }
    .calendarNoteForm { display:grid; gap:10px; margin-top:16px; padding-top:16px; border-top:1px solid var(--line2); }
    .calendarNoteForm--top {
        margin: 0 0 16px;
        padding: 0 0 16px;
        border-top: 0;
        border-bottom: 1px solid var(--line2);
    }
    .calendarNoteForm input, .calendarNoteForm textarea, .calendarNoteForm select { width:100%; border-radius:14px; border:1px solid var(--line); padding:10px 12px; font-size:14px; }
    .calendarNoteForm textarea { min-height:74px; resize:vertical; }
    .calendarLoading { border-radius:18px; background:#fff; border:1px solid var(--line); padding:18px; color:var(--muted); }


    /* Admission calendar v3 fixes */
    .calendarMonth { overflow: visible; border: 1px solid var(--line); }
    .calendarDays { gap: 0; background: var(--line2); border-top: 1px solid var(--line2); }
    .calendarDay {
        border: 0;
        border-right: 1px solid var(--line2);
        border-bottom: 1px solid var(--line2);
        text-align: left;
        font-family: inherit;
    }
    .calendarDay.has-critical {
        background: #fff1f1;
        border-left: 5px solid var(--red);
    }
    .calendarDay.has-important {
        background: #effaf4;
        border-left: 5px solid var(--green);
    }
    .calendarDay.has-normal {
        background: #f4f7ff;
        border-left: 5px solid var(--blue);
    }
    .calendarDay.has-base {
        background: #fff8e5;
        border-left: 5px solid #c8a65a;
    }
    .calendarDay.has-soon {
        background: #fff7ed;
        border-left: 5px solid #f97316;
    }
    .calendarDay.has-critical .calendarDayNum { background: var(--red); color: #fff; }
    .calendarDay.has-important .calendarDayNum { background: var(--green); color: #fff; }
    .calendarDay.has-normal .calendarDayNum { background: var(--blue); color: #fff; }
    .calendarDay.has-base .calendarDayNum { background: #c8a65a; color: #fff; }
    .calendarDay.has-soon .calendarDayNum { background: #f97316; color: #fff; }
    .calendarInlineEvent {
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
        display: block;
        word-break: break-word;
    }
    .calendarInlineEvent--soon { background:#ffedd5; color:#9a3412; border-color:#fed7aa; }
    .calendarEventItem--soon { background:#ffedd5; border-color:#fed7aa; }
    .calendarDayEvents { margin-top: 8px; }
    .calendarDayIcons { max-width: 96px; }

    .calendarDetails {
        position: fixed;
        z-index: 9999;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: min(720px, calc(100vw - 32px));
        max-height: min(82vh, 760px);
        overflow: auto;
        display: none;
        box-shadow: 0 30px 100px rgba(15, 23, 42, .32);
    }
    .calendarDetails.is-open { display: block !important; }
    .calendarDetails:before {
        content: '';
        position: fixed;
        inset: -100vh -100vw;
        background: rgba(15, 23, 42, .42);
        z-index: -1;
    }
    .calendarDetailsHead {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 12px;
    }
    .calendarDetailsClose {
        flex: 0 0 auto;
        border: 0;
        width: 36px;
        height: 36px;
        border-radius: 999px;
        background: #eef1ff;
        color: var(--blue-dark);
        font-weight: 900;
        cursor: pointer;
        font-size: 20px;
        line-height: 1;
    }
    .calendarDetails h3 { margin: 0; }
    .calendarDetailsSectionTitle {
        margin: 16px 0 8px;
        color: var(--navy);
        font-size: 13px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: .04em;
    }
    .calendarLoginAlert { display: grid; gap: 14px; }
    .calendarLoginAlert__badge { display: inline-flex; width: max-content; border-radius: 999px; background: var(--gold-soft); color: #76500b; padding: 7px 10px; font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .04em; }
    .calendarLoginAlert__lead { margin: 8px 0 0; color: var(--muted); line-height: 1.45; }
    .calendarLoginAlert__list { display: grid; gap: 10px; }
    .calendarLoginAlert__item { border: 1px solid var(--line2); border-radius: 18px; background: #f8fafc; padding: 13px 14px; }
    .calendarLoginAlert__item strong { display: block; color: var(--navy); margin-bottom: 4px; }
    .calendarLoginAlert__item span { display: block; color: var(--muted); font-size: 13px; line-height: 1.4; }
    .calendarLoginAlert__date { display: inline-flex !important; width: max-content; margin-bottom: 7px; border-radius: 999px; background: #eef1ff; color: var(--blue-dark) !important; padding: 5px 8px; font-size: 12px !important; font-weight: 900; }
    .calendarLoginAlert__actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; border-top: 1px solid var(--line2); padding-top: 14px; }

    @media (max-width: 980px) {
        .cover { padding: 30px; border-radius: 26px; }
        .cover h1 { font-size: 40px; }
        .coverActions,
        .coverStartPanel,
        .coverCards, .metricGrid, .dataGrid, .strategyGrid, .checkGrid, .toc { grid-template-columns: 1fr; }
        .coverStartStats { grid-template-columns: repeat(2, minmax(0,1fr)); }
        .coverComputerNote { grid-template-columns: 1fr; }
        .section { padding: 22px; border-radius: 22px; }
        .section h2 { font-size: 30px; }
        .sectionTitleBlock--withAction { grid-template-columns: 1fr; }
        .sectionTitleActions,
        .sectionTitleActions .guideRecalcPrimary { width: 100%; }
        .institutionHead { display: block; }
        .institutionChance { display: inline-flex; margin-top: 12px; }
        .topBar__inner { align-items: flex-start; flex-direction: column; }
        .calendarHero, .calendarWorkArea { grid-template-columns: 1fr; }
        .calendarProcessFlow { grid-template-columns: 1fr; }
        .calendarProcessStep:not(:last-child):after { display:none; }
        .calendarSide { position: static; }
        .calendarToolbar { display:block; }
        .calendarToolbar__actions { justify-content:flex-start; margin-top:12px; }
        .calendarEgeFilter { width:100%; }
        .calendarToolbar .calendarEgeFilter__label { width:100%; min-height:0; padding:0 2px 2px; }
        .calendarDays, .calendarWeekRow { grid-template-columns: 1fr; }
        .calendarWeekRow { display:none; }
        .calendarDay { min-height:auto; border-right:0; }
        .calendarDetails {
            width: calc(100vw - 20px);
            max-height: calc(100vh - 20px);
            top: 10px;
            left: 10px;
            transform: none;
            border-radius: 22px;
        }
        .institutionHeadRight { align-items:flex-start; margin-top:12px; }
    }

    @media (max-width: 560px) {
        .cover { padding: 22px; }
        .cover__top { display: grid; gap: 16px; margin-bottom: 34px; }
        .coverDate { text-align: left; }
        .cover h1 { font-size: 32px; }
        .coverLead { font-size: 15px; line-height: 1.5; }
        .coverActions { gap: 9px; }
        .coverAction { min-height: 64px; border-radius: 16px; padding: 12px 13px; }
        .coverAction b { font-size: 16px; }
        .coverStartPanel { padding: 13px; border-radius: 18px; }
        .coverStartPanel__intro strong { font-size: 15px; }
        .coverStartStats { grid-template-columns: 1fr; }
    }



    /* Final guide layout + variants upgrade */
    .sectionTitleBlock { margin-bottom: 18px; }
    .toc { grid-template-columns: 1fr; gap: 10px; }
    .toc a { display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: 12px; align-items: center; padding: 14px 16px; }
    .tocNum { margin-bottom: 0; }
    .toc strong { margin-bottom: 2px; font-size: 16px; }

    .admissionPlanSummary { border-radius: 24px; background: linear-gradient(135deg, #0b1220 0%, #18233d 100%); color: #fff; padding: 22px; margin: 22px 0; box-shadow: 0 18px 50px rgba(15,23,42,.16); }
    .admissionPlanSummary h3 { margin: 0 0 6px; font-size: 24px; color: #fff; }
    .admissionPlanSummary p { margin: 0; color: #d9e3f5; }
    .admissionPlanBuckets { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 16px; }
    .admissionPlanBucket { border-radius: 18px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); padding: 14px; }
    .admissionPlanBucket__title { color: #f2d58a; font-weight: 900; font-size: 13px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .04em; }
    .admissionPlanBucket__items { display: grid; grid-template-columns: 1fr; gap: 10px; align-items: start; }
    .admissionPlanItem { min-width: 0; display: grid; grid-template-columns: minmax(230px, .78fr) minmax(0, 2fr); gap: 12px; align-items: start; border-radius: 16px; background: rgba(255,255,255,.10); padding: 12px; color: #fff; font-size: 13px; line-height: 1.35; cursor: pointer; }
    .admissionPlanItem b { display: block; font-size: 14px; }
    .admissionPlanEmpty { color: #aab6cc; font-size: 13px; display: grid; gap: 10px; align-items: start; }
    .admissionPlanAddBtn { justify-self: start; min-height: 38px; border: 0; border-radius: 999px; background: #f2d58a; color: #18233d; padding: 0 14px; font-weight: 900; cursor: pointer; }
    .admissionPlanAddBtn--bottom { align-self: flex-start; margin-top: 2px; }
    .admissionPlanItem__top { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; align-items: start; margin-bottom: 8px; }
    .admissionPlanItem__remove { width: 30px; height: 30px; border-radius: 999px; border: 1px solid rgba(255,255,255,.24); background: rgba(255,255,255,.12); color: #fff; font-weight: 900; cursor: pointer; }
    .admissionPlanItem__meta { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 7px; color: #d9e3f5; }
    .admissionPlanItem__label { display: inline-flex; align-items: center; min-height: 24px; padding: 0 8px; border-radius: 999px; background: rgba(242,213,138,.18); color: #f2d58a; font-size: 12px; font-weight: 900; }
    .admissionPlanProgramsSpoiler { border-radius: 14px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); overflow: hidden; }
    .admissionPlanProgramsSpoiler > summary { list-style: none; display: flex; align-items: center; justify-content: flex-start; gap: 8px; padding: 11px 12px; color: #fff; font-weight: 900; cursor: pointer; }
    .admissionPlanProgramsSpoiler > summary::-webkit-details-marker { display: none; }
    .admissionPlanProgramsSpoiler > summary:after { content: '+'; display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; flex: 0 0 24px; margin-left: auto; border-radius: 999px; background: rgba(242,213,138,.18); color: #f2d58a; font-size: 16px; line-height: 1; }
    .admissionPlanProgramsSpoiler[open] > summary:after { content: '-'; }
    .admissionPlanProgramsSpoiler__title { min-width: 0; }
    .admissionPlanProgramsSpoiler__count { display: inline-flex; align-items: center; min-height: 22px; padding: 0 8px; border-radius: 999px; background: rgba(255,255,255,.12); color: #d9e3f5; font-size: 12px; white-space: nowrap; }
    .admissionPlanProgramsSpoiler__body { padding: 0 10px 10px; }
    .admissionPlanProgramList { display: grid; gap: 8px; margin-top: 0; }
    .admissionPlanProgram { border-radius: 14px; overflow: hidden; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.12); }
    .admissionPlanProgram[open] { background: rgba(255,255,255,.12); }
    .admissionPlanProgram summary { list-style: none; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; align-items: center; padding: 10px; cursor: pointer; }
    .admissionPlanProgram summary::-webkit-details-marker { display: none; }
    .admissionPlanProgram__title { min-width: 0; font-weight: 900; color: #fff; }
    .admissionPlanProgram__code { color: #d9e3f5; font-size: 12px; }
    .admissionPlanProgram__chance { border-radius: 999px; background: rgba(255,255,255,.14); padding: 5px 8px; color: #f2d58a; font-weight: 900; white-space: nowrap; }
    .admissionPlanScenarioGrid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; padding: 0 10px 10px; }
    .admissionPlanScenario { border-radius: 12px; background: rgba(11,18,32,.34); padding: 10px; }
    .admissionPlanScenario strong { display: block; margin-bottom: 7px; color: #f2d58a; }
    .admissionPlanScenario dl { display: grid; gap: 5px; margin: 0; }
    .admissionPlanScenario div { display: flex; justify-content: space-between; gap: 8px; border-top: 1px solid rgba(255,255,255,.10); padding-top: 5px; }
    .admissionPlanScenario dt { color: #aab6cc; }
    .admissionPlanScenario dd { margin: 0; color: #fff; font-weight: 900; text-align: right; }
    .admissionPlanFormTabs { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 10px 10px; }
    .admissionPlanFormTab { border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.08); color: #fff; border-radius: 999px; min-height: 30px; padding: 0 10px; font-weight: 900; cursor: pointer; }
    .admissionPlanFormTab.is-active { background: #f2d58a; border-color: #f2d58a; color: #162137; }
    .admissionPlanFormPane { display: none; padding: 0 10px 10px; }
    .admissionPlanFormPane.is-active { display: block; }
    .guideToast { position: fixed; right: 18px; bottom: 18px; z-index: 10020; max-width: min(360px, calc(100vw - 36px)); border-radius: 16px; background: #10233b; color: #fff; box-shadow: 0 18px 46px rgba(15,23,42,.24); padding: 13px 15px; font-size: 14px; font-weight: 900; opacity: 0; transform: translateY(10px); pointer-events: none; transition: opacity .18s ease, transform .18s ease; }
    .guideToast.is-visible { opacity: 1; transform: translateY(0); }
    .guideToast--success { background: #0f5132; }
    .guideRecalcBackdrop {
        position: fixed;
        inset: 0;
        z-index: 10030;
        background: rgba(11,18,32,.62);
        backdrop-filter: blur(6px);
    }
    .guideRecalcModal {
        position: fixed;
        z-index: 10031;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: min(780px, calc(100vw - 24px));
        max-height: calc(100vh - 24px);
        overflow: auto;
        border-radius: 24px;
        background: #fff;
        color: var(--ink);
        box-shadow: 0 24px 80px rgba(15,23,42,.34);
        padding: 22px;
    }
    .guideRecalcModal[aria-hidden="true"],
    .guideRecalcBackdrop[hidden] { display: none; }
    .guideRecalcModal__head { display: flex; justify-content: space-between; gap: 14px; align-items: flex-start; margin-bottom: 14px; }
    .guideRecalcModal__head h3 { margin: 0 0 6px; color: var(--navy); font-size: 24px; line-height: 1.15; }
    .guideRecalcModal__head p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.45; }
    .guideRecalcIntro {
        display: grid;
        gap: 8px;
        margin-top: 12px;
        border-radius: 16px;
        background: #f8fbff;
        border: 1px solid #dbe8f8;
        padding: 12px 14px;
    }
    .guideRecalcIntro b {
        color: var(--navy);
        font-size: 14px;
        line-height: 1.25;
    }
    .guideRecalcIntro ol {
        display: grid;
        gap: 6px;
        margin: 0;
        padding-left: 20px;
        color: #34445c;
        font-size: 14px;
        line-height: 1.45;
        font-weight: 750;
    }
    .guideRecalcClose { flex: 0 0 auto; width: 34px; height: 34px; border: 0; border-radius: 999px; background: var(--soft); color: var(--navy); font-weight: 900; cursor: pointer; }
    .guideRecalcForm { display: grid; gap: 12px; }
    .guideRecalcField { display: none; gap: 7px; }
    .guideRecalcField span { color: var(--muted2); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; }
    .guideRecalcField textarea,
    .guideRecalcField input {
        width: 100%;
        min-height: 46px;
        border-radius: 16px;
        border: 1px solid var(--line);
        background: #fff;
        color: var(--ink);
        padding: 12px 13px;
        font: inherit;
        outline: none;
    }
    .guideRecalcField textarea { min-height: 96px; resize: vertical; }
    .guideRecalcField textarea:focus,
    .guideRecalcField input:focus { border-color: #b8c2ff; box-shadow: 0 0 0 3px rgba(65,88,255,.12); }
    .guideRecalcActions { display: flex; gap: 10px; justify-content: flex-end; align-items: center; margin-top: 4px; flex-wrap: wrap; }
    .guideRecalcMessage { min-height: 20px; color: var(--muted); font-size: 13px; font-weight: 700; }
    .guideRecalcMessage.is-error { color: var(--red); }
    .guideRecalcMessage.is-ok { color: var(--green); }
    .guideRecalcPreview {
        display: grid;
        gap: 12px;
        border-radius: 20px;
        border: 1px solid #bfe8d1;
        background: linear-gradient(180deg,#f6fcf8 0%,#fff 100%);
        padding: 16px;
        box-shadow: 0 14px 34px rgba(17,97,51,.08);
    }
    .guideRecalcPreview[hidden] { display: none; }
    .guideRecalcPreview.is-empty {
        border-color: #fecaca;
        background: linear-gradient(180deg,#fff5f5 0%,#fff 100%);
        box-shadow: 0 14px 34px rgba(185,28,28,.08);
    }
    .guideRecalcPreview h4 {
        margin: 0;
        color: var(--navy);
        font-size: 20px;
        line-height: 1.2;
    }
    .guideRecalcPreview.is-empty h4 { color: var(--red); }
    .guideRecalcPreview p {
        margin: 0;
        color: var(--muted);
        font-size: 14px;
        line-height: 1.45;
    }
    .guideRecalcPreview__stats {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }
    .guideRecalcPreview__stats div {
        border-radius: 16px;
        border: 1px solid #dbe8f8;
        background: #fff;
        padding: 12px;
    }
    .guideRecalcPreview__stats b {
        display: block;
        color: var(--navy);
        font-size: 22px;
        line-height: 1;
        margin-bottom: 5px;
    }
    .guideRecalcPreview__stats span {
        display: block;
        color: var(--muted);
        font-size: 12px;
        line-height: 1.35;
        font-weight: 800;
    }
    .guideRecalcPreview__actions {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 10px;
    }
    .guideRecalcModal .guideParam {
        border-radius: 22px;
        background: #f8fbff;
        border: 1px solid #dbe8f8;
        padding: 16px;
        margin-bottom: 12px;
    }
    .guideRecalcModal .guideParam__head { margin-bottom: 14px; }
    .guideRecalcModal .guideParam__head b {
        display: block;
        color: #101828;
        font-size: 17px;
        margin-bottom: 3px;
    }
    .guideRecalcModal .guideParam__head span {
        display: block;
        color: #667085;
        font-size: 13px;
        line-height: 1.4;
    }
    .guideRecalcModal .guideFields {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
    .guideRecalcModal .guideFields--geo,
    .guideRecalcModal .guideField--full { grid-column: 1 / -1; }
    .guideRecalcModal .guideFields--geo { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .guideRecalcModal .guideField label {
        display: block;
        margin-bottom: 7px;
        color: #34445c;
        font-size: 13px;
        font-weight: 900;
    }
    .guideRecalcModal .guideField input,
    .guideRecalcModal .guideField select {
        width: 100%;
        height: 46px;
        border-radius: 15px;
        border: 1px solid #d0d7e2;
        background: #fff;
        padding: 0 13px;
        font-size: 15px;
        outline: none;
        color: #333;
    }
    .guideRecalcModal .guideField input:focus,
    .guideRecalcModal .guideField select:focus {
        border-color: #4158ff;
        box-shadow: 0 0 0 3px rgba(65,88,255,.12);
    }
    .guideRecalcModal .guideFieldHint,
    .guideRecalcModal .guideMulti__hint {
        margin-top: 6px;
        color: #94a3b8;
        font-size: 12px;
        line-height: 1.35;
    }
    .guideRecalcModal .guideChecks {
        display: grid;
        gap: 10px;
    }
    .guideRecalcModal .guideConditionSplit {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        margin-top: 10px;
    }
    .guideRecalcModal .guideConditionSplit__item {
        min-width: 0;
        padding: 12px;
        border-radius: 18px;
        border: 1px solid #e5edf7;
        background: #fbfdff;
    }
    .guideRecalcModal .guideConditionSplit__item > span {
        display: block;
        margin-bottom: 8px;
        color: #4158ff;
        font-size: 12px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: .04em;
    }
    .guideRecalcModal .guideChecks--forms { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .guideRecalcModal .guideChecks label {
        display: grid;
        grid-template-columns: 18px minmax(0, 1fr);
        gap: 10px;
        align-items: center;
        border-radius: 16px;
        background: #fff;
        border: 1px solid #dbe8f8;
        padding: 13px;
        cursor: pointer;
        color: #34445c;
        font-weight: 800;
        min-width: 0;
    }
    .guideRecalcModal .guideChecks input[type="checkbox"],
    .guideRecalcModal .guideWideCheck input[type="checkbox"] {
        width: 18px !important;
        height: 18px !important;
        min-width: 18px;
        margin: 0;
        accent-color: #4158ff;
    }
    .guideRecalcModal .guideEgeGrid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    .guideRecalcModal .guideEgeGrid label {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 82px;
        align-items: center;
        gap: 10px;
        border-radius: 18px;
        background: linear-gradient(180deg,#fff 0%,#f8fbff 100%);
        border: 1px solid #dbe8f8;
        padding: 12px;
        box-shadow: 0 8px 22px rgba(35,71,120,.04);
    }
    .guideRecalcModal .guideEgeGrid span {
        color: #34445c;
        font-size: 12px;
        font-weight: 900;
    }
    .guideRecalcModal .guideEgeGrid input {
        height: 42px;
        border-radius: 14px;
        border: 1px solid #c8d4e6;
        background: #fff;
        padding: 0 8px;
        text-align: center;
        font-size: 15px;
        font-weight: 900;
    }
    .guideRecalcModal .guideEgeGrid input:focus {
        outline: none;
        border-color: #4158ff;
        box-shadow: 0 0 0 3px rgba(65,88,255,.12);
    }
    .guideRecalcModal .guideWideCheck {
        display: grid;
        grid-template-columns: 18px minmax(0, 1fr);
        gap: 10px;
        align-items: start;
        margin-top: 12px;
        border-radius: 16px;
        background: #fff;
        border: 1px solid #dbe8f8;
        padding: 13px;
        color: #34445c;
    }
    .guideRecalcModal .guideWideCheck b { display: block; color: #101828; margin-bottom: 3px; }
    .guideRecalcModal .guideWideCheck em { display: block; color: #667085; font-style: normal; font-size: 12px; line-height: 1.35; }
    .guideRecalcModal .guideChecks--forms label {
        min-height: 44px;
        padding: 11px 12px;
    }
    .guideRecalcModal .guideMulti {
        position: relative;
        border-radius: 18px;
        border: 1px solid #d0d7e2;
        background: #fff;
        padding: 10px;
        min-height: 56px;
    }
    .guideRecalcModal .guideMulti.is-open {
        border-color: #4158ff;
        box-shadow: 0 0 0 3px rgba(65,88,255,.10);
    }
    .guideRecalcModal .guideMulti__selected {
        display: flex;
        flex-wrap: wrap;
        gap: 7px;
        margin-bottom: 7px;
    }
    .guideRecalcModal .guideTokenChip {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 6px 10px;
        border-radius: 999px;
        background: #eef3ff;
        color: #3144c8;
        font-size: 12px;
        font-weight: 900;
        line-height: 1.2;
    }
    .guideRecalcModal .guideTokenChip button {
        border: 0;
        background: transparent;
        color: inherit;
        cursor: pointer;
        font-weight: 900;
        padding: 0;
        line-height: 1;
    }
    .guideRecalcModal .guideMulti__inputWrap input {
        width: 100%;
        height: 36px;
        border: 0;
        box-shadow: none;
        padding: 0;
        background: transparent;
    }
    .guideRecalcModal .guideMulti__inputWrap input:focus { outline: none; box-shadow: none; }
    .guideRecalcModal .guideMulti__drop {
        display: none;
        position: absolute;
        z-index: 10040;
        left: 10px;
        right: 10px;
        top: calc(100% + 8px);
        max-height: 220px;
        overflow-y: auto;
        border-radius: 16px;
        background: #fff;
        border: 1px solid #dbe8f8;
        box-shadow: 0 18px 50px rgba(35,71,120,.16);
    }
    .guideRecalcModal .guideMulti.is-open .guideMulti__drop { display: block; }
    .guideRecalcModal .guideMultiItem {
        padding: 11px 13px;
        cursor: pointer;
        border-bottom: 1px solid #edf2f7;
        color: #34445c;
        font-size: 14px;
        line-height: 1.35;
    }
    .guideRecalcModal .guideMultiItem:last-child { border-bottom: 0; }
    .guideRecalcModal .guideMultiItem:hover { background: #f8fbff; }
    .guideRecalcModal .guideMultiItem--create { color: #4158ff; font-weight: 900; }
    .guideRecalcPanel {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: flex-start;
        align-items: stretch;
        margin: 0 0 18px;
    }
    .guideRollbackPanel {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 14px;
        margin: 16px 0 0;
        padding: 14px 16px;
        border: 1px solid #dbe7f4;
        border-radius: 18px;
        background: #f8fbff;
        box-shadow: 0 14px 36px rgba(35,71,120,.08);
    }
    .guideRollbackPanel strong {
        display: block;
        color: var(--navy);
        font-size: 16px;
        line-height: 1.2;
        margin-bottom: 3px;
    }
    .guideRollbackPanel span {
        display: block;
        color: var(--muted);
        font-size: 13px;
        line-height: 1.35;
        font-weight: 800;
    }
    .guideRollbackButton {
        flex: 0 0 auto;
        border: 0;
        border-radius: 999px;
        background: #eef2ff;
        color: #2537d7;
        padding: 10px 15px;
        font-size: 13px;
        font-weight: 900;
        cursor: pointer;
        transition: background .16s ease, transform .16s ease;
    }
    .guideRollbackButton:hover {
        background: #dfe5ff;
        transform: translateY(-1px);
    }
    .guideRollbackButton:disabled {
        cursor: default;
        opacity: .65;
        transform: none;
    }
    .guideRecalcRollbackHint {
        margin-top: 6px !important;
        color: #4158ff !important;
        font-size: 13px !important;
        font-weight: 900;
    }
    .guideRecalcPrimary {
        display: inline-grid;
        gap: 3px;
        align-content: center;
        min-width: 230px;
        min-height: 62px;
        border: 0;
        border-radius: 20px;
        background: linear-gradient(135deg, #f8d873 0%, #f2b84b 100%);
        color: #14213d;
        padding: 11px 20px;
        text-align: left;
        font-weight: 900;
        cursor: pointer;
        box-shadow: 0 16px 34px rgba(200,166,90,.34);
        transition: transform .16s ease, box-shadow .16s ease;
    }
    .guideRecalcPrimary b {
        display: block;
        color: inherit;
        font-size: 17px;
        line-height: 1.15;
    }
    .guideRecalcPrimary span {
        display: block;
        color: rgba(20,33,61,.72);
        font-size: 12px;
        line-height: 1.25;
        font-weight: 900;
    }
    .guideRecalcPrimary:hover {
        transform: translateY(-2px);
        box-shadow: 0 20px 42px rgba(200,166,90,.40);
    }
    .guideExportExcel {
        display: inline-grid;
        gap: 3px;
        align-content: center;
        min-width: 230px;
        min-height: 62px;
        border: 1px solid #cbd7e8;
        border-radius: 20px;
        background: #fff;
        color: #14213d;
        padding: 11px 20px;
        text-align: left;
        font-weight: 900;
        cursor: pointer;
        box-shadow: 0 12px 28px rgba(15,23,42,.08);
        transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
    }
    .guideExportExcel b {
        display: block;
        color: inherit;
        font-size: 17px;
        line-height: 1.15;
    }
    .guideExportExcel span {
        display: block;
        color: #637083;
        font-size: 12px;
        line-height: 1.25;
        font-weight: 900;
    }
    .guideExportExcel:hover {
        transform: translateY(-2px);
        border-color: #9fb0c9;
        box-shadow: 0 18px 38px rgba(15,23,42,.12);
    }
    .guideRecalcPrimary--large {
        min-width: 280px;
        min-height: 72px;
        padding: 14px 22px;
    }
    .guideRecalcPrimary--large b,
    .guideRecalcPrimary--wide b {
        font-size: 20px;
    }
    .guideRecalcPrimary--large span,
    .guideRecalcPrimary--wide span {
        font-size: 13px;
    }
    .guideRecalcPanel--aboveSteps {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(250px, 320px);
        gap: 12px;
        margin: 0 0 18px;
    }
    .guideRecalcPanel--aboveSteps .guideRecalcPrimary {
        width: 100%;
        min-height: 76px;
        padding: 16px 22px;
    }
    .guideRecalcPanel--aboveSteps .guideExportExcel {
        width: 100%;
        min-height: 76px;
        padding: 16px 22px;
    }
    .guideRecalcPanel--aboveSteps .guideExportExcel b {
        font-size: 18px;
    }
    @media (max-width: 760px) {
        .guideRecalcPanel--aboveSteps {
            grid-template-columns: 1fr;
        }
    }
    .institutionChanceTab--recalc { display: none !important; }
    .guideRatingBox {
        margin-top: 34px;
        border-radius: 24px;
        background: #fff;
        border: 1px solid var(--line);
        padding: 22px;
        box-shadow: 0 18px 50px rgba(35, 71, 120, .08);
    }
    .guideRatingBox h3 { margin: 0 0 6px; color: var(--navy); font-size: 24px; line-height: 1.2; }
    .guideRatingBox p { margin: 0 0 14px; color: var(--muted); }
    .guideRatingStars { display: flex; gap: 7px; margin-bottom: 12px; }
    .guideRatingStar {
        width: 42px;
        height: 42px;
        border-radius: 999px;
        border: 1px solid #dbe8f8;
        background: #f8fbff;
        color: #c8a65a;
        font-size: 24px;
        line-height: 1;
        cursor: pointer;
    }
    .guideRatingStar.is-active { background: #f2d58a; border-color: #f2d58a; color: #18233d; }
    .guideRatingComment { display: none; margin-bottom: 12px; }
    .guideRatingComment.is-visible { display: block; }
    .guideRatingComment label { display: block; margin-bottom: 7px; color: var(--muted2); font-size: 12px; font-weight: 900; text-transform: uppercase; }
    .guideRatingComment textarea { width: 100%; min-height: 88px; border-radius: 16px; border: 1px solid var(--line); padding: 12px; font: inherit; resize: vertical; }
    .guideRatingMessage { min-height: 20px; color: var(--muted); font-size: 13px; font-weight: 700; }
    .guideRatingMessage.is-error { color: var(--red); }

    .institutionListV2 { display: grid; gap: 18px; }
    .institutionCardV2 { border-radius: 28px; overflow: hidden; border-color: #d8e4f2; }
    .institutionCardV2.is-hidden-by-user { display: none; }
    .institutionV2Head { display: flex; justify-content: space-between; gap: 18px; padding: 22px 24px; background: linear-gradient(180deg,#ffffff 0%,#f8fbff 100%); border-bottom: 1px solid var(--line2); }
    .institutionV2Main { display: flex; gap: 16px; align-items: flex-start; min-width: 0; }
    .institutionV2Logo { width: 58px; height: 58px; border-radius: 18px; display: flex; align-items: center; justify-content: center; background: #eef1ff; color: var(--blue-dark); font-weight: 900; font-size: 24px; flex: 0 0 auto; }
    .institutionV2MetaTop { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 8px; }
    .institutionV2MetaTop span { display: inline-flex; min-height: 26px; align-items: center; padding: 0 9px; border-radius: 999px; background: #eef5ff; color: #294764; font-size: 12px; font-weight: 800; }
    .institutionV2Head h3 { margin: 0; color: var(--navy); font-size: 25px; line-height: 1.15; }
    .institutionV2Url { margin-top: 6px; color: var(--muted); font-size: 13px; }
    .institutionV2Side { display: grid; gap: 8px; justify-items: end; flex: 0 0 auto; }
    .institutionRole { display: inline-flex; border-radius: 999px; padding: 9px 12px; font-size: 13px; font-weight: 900; white-space: nowrap; }
    .institutionRole--safe { background: var(--green-soft); color: var(--green); }
    .institutionRole--real { background: #fff3cf; color: #76500b; }
    .institutionRole--risk { background: var(--orange-soft); color: var(--orange); }
    .institutionRole--check { background: #eef1ff; color: var(--blue-dark); }
    .institutionV2Actions { display: flex; flex-wrap: wrap; gap: 10px; padding: 16px 24px 0; }
    .guideRemoveBtn { min-height: 38px; padding: 0 13px; border-radius: 999px; border: 1px solid var(--line); background: #fff; color: var(--muted); font-weight: 900; cursor: pointer; }
    .institutionV2QuickFacts { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 10px; padding: 16px 24px; }
    .factPill { border-radius: 16px; background: var(--soft); border: 1px solid var(--line2); padding: 12px; }
    .factPill span { display: block; color: var(--muted2); font-size: 11px; font-weight: 900; text-transform: uppercase; margin-bottom: 4px; }
    .factPill b { color: var(--navy); font-size: 14px; line-height: 1.25; }
    .factPill--green { background: var(--green-soft); border-color: #bfe8d1; }
    .factPill--gold { background: #fff3cf; border-color: #ead38f; }
    .institutionDates { margin: 0 24px 18px; border-radius: 18px; background: #fbfdff; border: 1px solid var(--line2); padding: 14px; }
    .institutionDates__title { color: var(--navy); font-weight: 900; margin-bottom: 9px; }
    .institutionDates__empty { color: var(--muted); font-size: 13px; }
    .institutionDateList { display: grid; gap: 7px; }
    .institutionDateItem { display: grid; grid-template-columns: 92px minmax(0,1fr) auto; gap: 9px; align-items: center; border-radius: 12px; background: #fff; border: 1px solid #eef2f7; padding: 9px 10px; font-size: 13px; }
    .institutionDateItem__date { font-weight: 900; color: var(--blue-dark); }
    .institutionDateItem__title { color: #253247; font-weight: 800; }
    .institutionDateItem__channel { color: var(--muted); font-size: 12px; }
    .programListV2 { display: grid; gap: 12px; padding: 0 24px 24px; }
    .programCardV2 { border-radius: 20px; background: #fff; border: 1px solid #e4edf7; padding: 16px; }
    .programCardV2__head { display: flex; justify-content: space-between; gap: 14px; align-items: flex-start; margin-bottom: 12px; }
    .programCardV2__summary > div { min-width: 0; width: 100%; }
    .programCardV2__head > .chanceBadge {
        white-space: normal;
        text-align: center;
        justify-content: center;
        max-width: 210px;
    }
    .programCardV2 h4 { margin: 0; color: var(--navy); font-size: 18px; line-height: 1.28; }
    .programScenarioBadges {
        display: flex;
        flex-wrap: wrap;
        gap: 7px;
        margin-top: 9px;
        padding-right: 4px;
    }
    .programScenarioBadge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        max-width: 100%;
        min-height: 28px;
        padding: 5px 9px;
        border-radius: 999px;
        border: 1px solid #e2e8f0;
        background: #fff;
        color: #475569;
        font-size: 11px;
        font-weight: 900;
        line-height: 1.15;
        white-space: nowrap;
    }
    .programScenarioBadge b {
        color: inherit;
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: .03em;
    }
    .programScenarioBadge em {
        color: inherit;
        font-style: normal;
    }
    .programScenarioBadge.chance-reliable,
    .programScenarioBadge.chance-high,
    .programScenarioBadge.chance-aa_high {
        background: var(--green-soft);
        border-color: #bbf7d0;
        color: var(--green);
    }
    .programScenarioBadge.chance-backup,
    .programScenarioBadge.chance-medium,
    .programScenarioBadge.chance-bb_real {
        background: #fff3cf;
        border-color: #f7d976;
        color: #76500b;
    }
    .programScenarioBadge.chance-risk,
    .programScenarioBadge.chance-cc_risk {
        background: var(--orange-soft);
        border-color: #fed7aa;
        color: var(--orange);
    }
    .programScenarioBadge.chance-unlikely,
    .programScenarioBadge.chance-dd_no {
        background: var(--red-soft);
        border-color: #fecaca;
        color: var(--red);
    }
    .programScenarioBadge.chance-unknown,
    .programScenarioBadge.chance-manual,
    .programScenarioBadge.chance-requires_check {
        background: #eef1ff;
        border-color: #dbe3ff;
        color: var(--blue-dark);
    }
    .programMetricsV2 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; }
    .programMetricsV2 div { border-radius: 14px; background: #f8fbff; border: 1px solid #e4edf7; padding: 11px; }
    .programMetricsV2 span { display: block; color: var(--muted2); font-size: 11px; font-weight: 900; text-transform: uppercase; margin-bottom: 4px; }
    .programMetricsV2 b { display: block; color: var(--navy); font-size: 14px; line-height: 1.3; }
    .programMetricsV2 small { display: block; margin-top: 4px; color: var(--muted); }
    .programCommentV2 { margin-top: 10px; border-radius: 14px; background: var(--soft); border: 1px solid var(--line2); padding: 11px 12px; color: #475569; font-size: 13px; }

    .calendarTopLegend { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 14px; }
    .calendarTopLegend div { display: inline-flex; align-items: center; gap: 7px; border-radius: 999px; background: #fff; border: 1px solid var(--line); padding: 8px 11px; color: var(--muted); font-size: 13px; font-weight: 800; }
    .calendarGrid { gap: 16px; }
    .calendarMonth { overflow: hidden; box-shadow: 0 10px 28px rgba(35,71,120,.05); }
    .calendarDay { min-height: 118px; border-right: 1px solid #edf2f7; border-bottom: 1px solid #edf2f7; }
    .calendarDay.has-critical, .calendarDay.has-important, .calendarDay.has-normal, .calendarDay.has-base, .calendarDay.has-soon { border-left: 0; }
    .calendarDay.has-critical { background: #fff7f7; }
    .calendarDay.has-important { background: #f6fcf8; }
    .calendarDay.has-normal { background: #f7f9ff; }
    .calendarDay.has-base { background: #fffdf4; }
    .calendarDay.has-soon { background: #fffaf4; }
    .calendarDayNum { background: #eef1ff; color: var(--blue-dark); }
    .calendarDay.is-today { box-shadow: inset 0 0 0 2px rgba(15,23,42,.18); }
    .calendarDay.has-critical .calendarDayNum { background: #fee2e2; color: var(--red); }
    .calendarDay.has-important .calendarDayNum { background: #e7f8ef; color: var(--green); }
    .calendarDay.has-normal .calendarDayNum { background: #eef1ff; color: var(--blue-dark); }
    .calendarDay.has-base .calendarDayNum { background: #f7f1df; color: #76500b; }
    .calendarInlineEvent { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; border: 0; background: rgba(255,255,255,.72); }
    .calendarDetails { background: #fff; padding: 0; overflow: hidden; }
    .calendarDetailsBody { padding: 20px; max-height: min(74vh, 680px); overflow: auto; }
    .calendarDetailsHead { position: sticky; top: 0; z-index: 1; background: #fff; padding: 18px 20px; border-bottom: 1px solid var(--line2); margin: 0; }
    .calendarNoteForm { background: #f8fafc; border: 1px solid var(--line2); border-radius: 18px; padding: 14px; margin-top: 14px; }
    .calendarNoteSpoiler .calendarNoteForm { margin: 0; border: 0; border-top: 1px solid var(--line2); border-radius: 0; }
    .calendarBackdrop { position: fixed; inset: 0; z-index: 9998; background: rgba(15,23,42,.46); }
    body.calendar-modal-open { overflow: hidden; }

    @media (max-width: 980px) {
        .admissionPlanBuckets, .institutionV2QuickFacts, .programMetricsV2, .admissionPlanScenarioGrid { grid-template-columns: 1fr; }
        .admissionPlanItem { grid-template-columns: 1fr; }
        .admissionPlanProgramList { margin-top: 8px; }
        .institutionV2Head { display: block; }
        .institutionV2Side { justify-items: start; margin-top: 14px; }
        .institutionDateItem { grid-template-columns: 1fr; }
        .programCardV2__head { display: block; }
        .programCardV2__head .chanceBadge { margin-top: 10px; }
    }



    /* Options v3.1: stronger cards, logos, modals, collapsible programs */
    .toc {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 20px;
    }
    .toc a {
        display: grid;
        grid-template-columns: 42px minmax(0, 1fr) 26px;
        gap: 14px;
        align-items: center;
        padding: 16px 18px;
        border-radius: 20px;
        background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
        border: 1px solid #dce7f5;
        box-shadow: 0 10px 28px rgba(35,71,120,.045);
    }
    .toc a:after {
        content: '→';
        width: 26px;
        height: 26px;
        border-radius: 999px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #eef1ff;
        color: var(--blue-dark);
        font-weight: 900;
    }
    .tocNum { margin-bottom: 0; }
    .toc strong { margin: 0 0 3px; font-size: 17px; line-height: 1.2; }
    .toc span { display: none; }

    .institutionListV2 { gap: 30px; }
    .institutionCardV2 {
        position: relative;
        border: 1px solid #d8e4f2;
        box-shadow: 0 22px 60px rgba(35,71,120,.10);
    }
    .institutionCardV2 + .institutionCardV2:before {
        content: '';
        position: absolute;
        left: 24px;
        right: 24px;
        top: -16px;
        height: 1px;
        background: linear-gradient(90deg, transparent, #cfd9e8, transparent);
    }
    .institutionV2Logo { overflow: hidden; background: #fff; border: 1px solid #dbe7f4; }
    .institutionV2Logo img { max-width: 100%; max-height: 100%; display: block; object-fit: contain; }
    .institutionV2TitleLink { color: var(--navy); text-decoration: none; }
    .institutionV2TitleLink:hover { color: var(--blue-dark); text-decoration: underline; }
    .institutionV2Url a { color: var(--blue-dark); text-decoration: none; font-weight: 800; }
    .institutionV2Url a:hover { text-decoration: underline; }
    .institutionV2Actions { padding-top: 18px; padding-bottom: 2px; }
    .calendarAddBtn.is-added { background: var(--green); color: #fff; box-shadow: 0 10px 24px rgba(17,97,51,.16); }
    .guideRemoveBtn:hover { background: var(--red-soft); color: var(--red); border-color: #fecaca; }
    .institutionDates { display: none !important; }
    .institutionDatesBtn { min-height: 38px; padding: 0 13px; border-radius: 999px; border: 1px solid var(--line); background: #fff; color: var(--blue-dark); font-weight: 900; cursor: pointer; }
    .institutionDatesBtn:hover { background: #eef1ff; }

    .programsAccV2 { margin: 0 24px 24px; border: 1px solid #dfe8f4; border-radius: 22px; overflow: hidden; background: #fff; }
    .programsAccV2__summary { list-style: none; cursor: pointer; padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; gap: 12px; background: #f8fbff; color: var(--navy); font-weight: 900; }
    .programsAccV2__summary::-webkit-details-marker { display: none; }
    .programsAccV2__summary span { color: var(--muted); font-size: 13px; font-weight: 800; }
    .programsAccV2__summary:after { content: 'Показать'; border-radius: 999px; background: #eef1ff; color: var(--blue-dark); padding: 7px 10px; font-size: 12px; font-weight: 900; }
    .programsAccV2[open] .programsAccV2__summary:after { content: 'Скрыть'; }
    .programsAccV2__body { padding: 16px; }
    .institutionAdditionalAdmissions { margin: 0 24px 24px; border: 1px solid #ead38f; border-radius: 22px; background: #fffaf0; padding: 16px; }
    .institutionAdditionalAdmissions__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
    .institutionAdditionalAdmissions__head strong { color: var(--navy); font-size: 17px; }
    .institutionAdditionalAdmissions__head a { color: var(--blue-dark); font-weight: 900; font-size: 13px; text-decoration: none; }
    .institutionAdditionalAdmissions__year { border-top: 1px solid #f1dfaa; padding-top: 12px; margin-top: 12px; }
    .institutionAdditionalAdmissions__year:first-of-type { border-top: 0; padding-top: 0; }
    .institutionAdditionalAdmissions__yearTitle { font-weight: 900; color: #76500b; margin-bottom: 8px; }
    .institutionAdditionalAdmissions__item { background: #fff; border: 1px solid #f0e0b0; border-radius: 16px; padding: 12px; margin-top: 10px; }
    .institutionAdditionalAdmissions__type { font-weight: 900; color: var(--navy); margin-bottom: 6px; }
    .institutionAdditionalAdmissions__item p { color: var(--muted); font-size: 14px; margin-bottom: 10px; }
    .institutionAdditionalAdmissions__programs { display: grid; gap: 8px; }
    .institutionAdditionalAdmissions__program { display: grid; grid-template-columns: minmax(0,1fr) auto auto; gap: 10px; align-items: center; border-top: 1px solid #edf1f6; padding-top: 8px; font-size: 13px; }
    .institutionAdditionalAdmissions__program:first-child { border-top: 0; padding-top: 0; }
    .institutionAdditionalAdmissions__program b { display: block; color: var(--navy); }
    .institutionAdditionalAdmissions__program span { display: block; color: var(--muted); }
    .institutionAdditionalAdmissions__program em { font-style: normal; color: var(--muted); font-weight: 800; white-space: nowrap; }
    .institutionAdditionalAdmissions__program a { color: var(--blue-dark); font-weight: 900; text-decoration: none; }
    .programListV2 { padding: 0; }
    .programCardV2 { box-shadow: 0 8px 24px rgba(35,71,120,.045); }
    .programCodeBadge { display: inline-flex; margin: 0 0 7px; padding: 5px 9px; border-radius: 999px; background: #eef1ff; color: var(--blue-dark); font-size: 12px; font-weight: 900; }

    .calendarModalSectionTitle { margin: 16px 0 8px; color: var(--navy); font-size: 16px; font-weight: 900; }
    .institutionDateModalList { display: grid; gap: 8px; }
    .institutionDateModalItem { display: grid; grid-template-columns: 104px minmax(0,1fr) auto; gap: 10px; align-items: start; border-radius: 14px; border: 1px solid #e5eaf0; background: #fff; padding: 11px 12px; }
    .institutionDateModalItem__date { color: var(--blue-dark); font-weight: 900; }
    .institutionDateModalItem__title { color: var(--navy); font-weight: 900; line-height: 1.35; }
    .institutionDateModalItem__aside { display: grid; justify-items: end; gap: 7px; }
    .institutionDateModalItem__meta { color: var(--muted); font-size: 12px; white-space: nowrap; }
    .institutionDateModalItem__show { border: 0; border-radius: 999px; background: #eef1ff; color: var(--blue-dark); padding: 7px 11px; font: inherit; font-size: 12px; font-weight: 900; line-height: 1; cursor: pointer; white-space: nowrap; }
    .institutionDateModalItem__show:hover { background: #dfe6ff; }
    .calendarDetailsBody { background: #fff; }
    .calendarDetails { border-radius: 24px; }
    .guideVersionFooter { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; justify-content: center; margin: 26px 0 0; padding: 18px 20px; border-radius: 22px; background: #fff; border: 1px solid var(--line); color: var(--muted); text-align: center; }
    .guideVersionFooter strong { color: var(--navy); }

    @media (max-width: 980px) {
        .toc a { grid-template-columns: 38px minmax(0,1fr); }
        .toc a:after { display: none; }
        .institutionDateModalItem { grid-template-columns: 1fr; }
        .institutionDateModalItem__aside { justify-items: start; }
        .institutionDateModalItem__meta { white-space: normal; }
        .programsAccV2 { margin-left: 16px; margin-right: 16px; }
        .institutionAdditionalAdmissions { margin-left: 16px; margin-right: 16px; }
        .institutionAdditionalAdmissions__program { grid-template-columns: 1fr; }
        .institutionAdditionalAdmissions__program em { white-space: normal; }
        .guideNedoborModalProgram { grid-template-columns: 1fr; }
        .guideNedoborModalProgram em { white-space: normal; }
    }



    /* Final v3.2 cleanup: data + strategy + logos */
    .dataExamPanel { margin-top: 18px; }
    .dataExamPanel h3 { margin: 0 0 10px; color: var(--navy); font-size: 21px; }
    .optionsStrategyBox {
        border-radius: 24px;
        background: linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
        border: 1px solid #dce7f5;
        padding: 20px;
        margin: 18px 0 22px;
        box-shadow: 0 12px 32px rgba(35,71,120,.06);
    }
    .optionsStrategyBox h3 { margin: 0 0 14px; color: var(--navy); font-size: 24px; line-height: 1.2; }
    .optionsStrategyGrid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; }
    .optionsStrategyGrid div { border-radius: 18px; background: #fff; border: 1px solid var(--line2); padding: 14px; }
    .optionsStrategyGrid strong { display: block; color: var(--navy); margin-bottom: 5px; }
    .optionsStrategyGrid span { display: block; color: var(--muted); font-size: 14px; line-height: 1.45; }
    .optionsStrategyNotes { margin: 14px 0 0; padding: 0; list-style: none; display: grid; gap: 8px; }
    .optionsStrategyNotes li { border-radius: 14px; background: #eef1ff; color: var(--blue-dark); padding: 10px 12px; font-weight: 800; font-size: 13px; line-height: 1.4; }
    .toc--clean a span { display: block; font-size: 13px; color: #64748b; line-height: 1.35; }
    .institutionV2Logo { background: #fff; }
    .institutionV2Logo img { width: 100%; height: 100%; object-fit: contain; }
    .institutionCardV2 { margin-bottom: 34px; }
    .institutionCardV2:after { content: ''; display: block; height: 10px; background: linear-gradient(90deg, transparent, rgba(65,88,255,.10), transparent); }
    @media (max-width: 980px) {
        .optionsStrategyGrid { grid-template-columns: 1fr; }
        .toc--clean a { grid-template-columns: 38px minmax(0,1fr); }
    }



    /* Guide contents + action plan final structure */
    .topBar__actions .btn { min-width: 170px; }
    .guideContents { background: linear-gradient(180deg,#ffffff 0%,#f8fbff 100%); }
    .guideContentsList { display: grid; gap: 14px; }
    .guideContentsItem {
        display: grid;
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 16px;
        align-items: flex-start;
        padding: 18px;
        border-radius: 22px;
        border: 1px solid #dce7f5;
        background: #fff;
        text-decoration: none;
        box-shadow: 0 12px 32px rgba(35,71,120,.055);
    }
    .guideContentsItem:hover { border-color: #b8c2ff; transform: translateY(-1px); }
    .guideContentsNum {
        width: 42px;
        height: 42px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--navy);
        color: #f2d58a;
        font-weight: 900;
    }
    .guideContentsBody strong { display: block; color: var(--navy); font-size: 19px; line-height: 1.22; margin-bottom: 4px; }
    .guideContentsBody em { display: block; color: var(--muted); font-style: normal; font-size: 14px; line-height: 1.45; }
    .guideContentsSub { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 7px; margin-top: 12px; }
    .guideContentsSub span { border-radius: 12px; background: #f5f8ff; border: 1px solid #e2e9f5; padding: 8px 10px; color: #3e5069; font-size: 13px; font-weight: 800; }

    .personalAppeal { background: linear-gradient(135deg,#0b1220 0%,#18233d 100%); color: #fff; border-color: #0b1220; }
    .personalAppeal h2 { color: #fff; }
    .personalAppeal .sectionLead { color: #d9e3f5; }
    .appealGrid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
    .appealCard { border-radius: 22px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); padding: 18px; }
    .appealCard h3 { margin: 0 0 8px; color: #f2d58a; font-size: 19px; }
    .appealCard p { color: #d9e3f5; margin: 0; }
    .appealCard--dark { background: rgba(255,255,255,.13); }

    .actionSteps { display: grid; gap: 16px; }
    .actionStep { border-radius: 24px; background: #fff; border: 1px solid #dce7f5; overflow: hidden; box-shadow: 0 14px 38px rgba(35,71,120,.06); }
    .actionStep summary {
        cursor: pointer;
        list-style: none;
        display: grid;
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 14px;
        align-items: flex-start;
        padding: 18px 20px;
        background: linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
    }
    .actionStep summary::-webkit-details-marker { display: none; }
    .actionStep summary strong { display: block; color: var(--navy); font-size: 20px; line-height: 1.22; margin-bottom: 4px; }
    .actionStep summary em { display: block; color: var(--muted); font-style: normal; font-size: 14px; line-height: 1.45; }
    .actionStepNum { width: 38px; height: 38px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; background: var(--navy); color: #f2d58a; font-weight: 900; }
    .actionStepBody { padding: 18px 20px 20px; border-top: 1px solid var(--line2); display: grid; gap: 12px; }
    .actionTask { border-radius: 18px; background: var(--soft); border: 1px solid var(--line2); padding: 15px 16px; }
    .actionTask h3 { margin: 0 0 6px; color: var(--navy); font-size: 18px; line-height: 1.25; }
    .actionTask p { margin: 0; color: #475569; line-height: 1.55; }
    .actionDoneBtn { justify-self: start; min-height: 42px; padding: 0 16px; border: 0; border-radius: 999px; background: var(--green); color: #fff; font-weight: 900; cursor: pointer; }
    .actionStep.is-done summary { background: #f3fbf6; }
    .actionStep.is-done .actionStepNum { background: var(--green); color: #fff; }
    .actionStep.is-done summary:after { content: 'Выполнено'; justify-self: start; margin-top: 8px; display: inline-flex; border-radius: 999px; padding: 6px 9px; background: var(--green-soft); color: var(--green); font-size: 12px; font-weight: 900; }

    @media (max-width: 980px) {
        .guideContentsSub, .appealGrid { grid-template-columns: 1fr; }
        .guideContentsItem { grid-template-columns: 42px minmax(0,1fr); padding: 15px; }
        .actionStep summary { grid-template-columns: 42px minmax(0,1fr); }
    }

    /* Final v4.1 contents popup and full nested contents */
    .topBar__actions button.btn { min-width: 190px; }
    .guideContentsFull { display: grid; gap: 12px; }
    .guideContentsMain {
        display: grid;
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 14px;
        align-items: flex-start;
        padding: 16px 18px;
        border-radius: 22px;
        border: 1px solid #dce7f5;
        background: #fff;
        text-decoration: none;
        box-shadow: 0 10px 28px rgba(35,71,120,.045);
    }
    .guideContentsMain--nested { background: linear-gradient(180deg,#ffffff 0%,#f8fbff 100%); }
    .guideContentsMain strong { display: block; margin: 0 0 4px; color: var(--navy); font-size: 18px; line-height: 1.2; }
    .guideContentsMain em { display: block; color: var(--muted); font-style: normal; font-size: 14px; line-height: 1.4; }
    .guideContentsSteps { display: grid; gap: 10px; margin-left: 62px; }
    .guideContentsStepGroup {
        display: grid;
        gap: 6px;
        border-radius: 18px;
        background: #f8fbff;
        border: 1px solid #dfe8f4;
        padding: 12px;
    }
    .guideContentsStepGroup a {
        display: block;
        color: #35465d;
        text-decoration: none;
        border-radius: 12px;
        padding: 7px 9px;
        font-size: 14px;
        line-height: 1.35;
    }
    .guideContentsStepGroup a:hover { background: #eef1ff; color: var(--blue-dark); }
    .guideContentsStepGroup b { color: var(--navy); font-size: 15px; }

    .guideContentsPopover {
        position: fixed;
        z-index: 10020;
        top: 60px;
        left: 50%;
        transform: translateX(-50%);
        width: min(900px, calc(100vw - 28px));
        max-height: calc(100vh - 84px);
        overflow: auto;
        display: none;
    }
    .guideContentsPopover.is-open { display: block; }
    .guideContentsPopover__panel {
        border-radius: 26px;
        background: #fff;
        border: 1px solid #dce7f5;
        box-shadow: 0 30px 90px rgba(15, 23, 42, .28);
        padding: 18px;
    }
    .guideContentsPopover__head {
        position: sticky;
        top: 0;
        z-index: 1;
        display: flex;
        justify-content: space-between;
        gap: 14px;
        align-items: center;
        margin: -18px -18px 14px;
        padding: 16px 18px;
        border-bottom: 1px solid var(--line2);
        background: #fff;
        border-radius: 26px 26px 0 0;
    }
    .guideContentsPopover__head strong { color: var(--navy); font-size: 20px; }
    .guideContentsPopover__close {
        width: 36px;
        height: 36px;
        border: 0;
        border-radius: 999px;
        background: #eef1ff;
        color: var(--blue-dark);
        font-size: 22px;
        line-height: 1;
        font-weight: 900;
        cursor: pointer;
    }
    .guideContentsBackdrop {
        position: fixed;
        inset: 0;
        z-index: 10010;
        background: rgba(15, 23, 42, .42);
    }
    body.guide-contents-open { overflow: hidden; }
    .dataExamPanel .chipRow { margin-top: 0; }
    .actionTask { scroll-margin-top: 86px; }

    @media (max-width: 980px) {
        .guideContentsSteps { margin-left: 0; }
        .guideContentsMain { grid-template-columns: 42px minmax(0,1fr); padding: 14px; }
        .guideContentsPopover { top: 10px; max-height: calc(100vh - 20px); }
        .guideContentsPopover__panel { border-radius: 22px; padding: 14px; }
        .guideContentsPopover__head { margin: -14px -14px 12px; padding: 14px; border-radius: 22px 22px 0 0; }
    }



    /* HARD FIX 2026-05-03: contents layout + nested program accordion */
    .guideContents,
    #toc.guideContents {
        overflow: hidden;
        background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
    }

    .guideContentsFull {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 14px !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .guideContentsFull a,
    .guideContentsFull a:visited,
    .guideContentsPopover a,
    .guideContentsPopover a:visited {
        color: inherit !important;
        text-decoration: none !important;
    }

    .guideContentsMain,
    a.guideContentsMain,
    div.guideContentsMain {
        display: grid !important;
        grid-template-columns: 48px minmax(0, 1fr) !important;
        gap: 16px !important;
        align-items: start !important;
        width: 100% !important;
        padding: 18px 20px !important;
        border-radius: 24px !important;
        border: 1px solid #dce7f5 !important;
        background: #fff !important;
        box-shadow: 0 14px 38px rgba(35,71,120,.07) !important;
        transform: none !important;
        text-decoration: none !important;
        min-height: 0 !important;
    }

    .guideContentsMain:hover {
        border-color: #b8c2ff !important;
        box-shadow: 0 18px 44px rgba(35,71,120,.10) !important;
    }

    .guideContentsMain--nested {
        background: linear-gradient(135deg, #0b1220 0%, #18233d 100%) !important;
        border-color: #0b1220 !important;
        color: #fff !important;
        margin-top: 4px !important;
    }

    .guideContentsMain--nested .guideContentsNum {
        background: #f2d58a !important;
        color: var(--navy) !important;
    }

    .guideContentsNum {
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        border-radius: 999px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: var(--navy) !important;
        color: #f2d58a !important;
        font-weight: 900 !important;
        font-size: 16px !important;
        line-height: 1 !important;
        margin: 0 !important;
    }

    .guideContentsMain strong,
    .guideContentsBody strong {
        display: block !important;
        margin: 0 0 5px !important;
        color: var(--navy) !important;
        font-size: 20px !important;
        line-height: 1.2 !important;
        font-weight: 900 !important;
        text-decoration: none !important;
    }

    .guideContentsMain--nested strong {
        color: #fff !important;
    }

    .guideContentsMain em,
    .guideContentsBody em {
        display: block !important;
        margin: 0 !important;
        color: var(--muted) !important;
        font-style: normal !important;
        font-size: 14px !important;
        line-height: 1.45 !important;
        text-decoration: none !important;
    }

    .guideContentsMain--nested em {
        color: #d9e3f5 !important;
    }

    .guideContentsSteps {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 14px !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .guideContentsStepGroup {
        display: block !important;
        border-radius: 22px !important;
        background: #fff !important;
        border: 1px solid #dce7f5 !important;
        box-shadow: 0 12px 32px rgba(35,71,120,.055) !important;
        overflow: hidden !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .guideContentsStepGroup a {
        display: flex !important;
        align-items: center !important;
        gap: 9px !important;
        min-height: 38px !important;
        padding: 9px 14px !important;
        border: 0 !important;
        border-top: 1px solid #edf2f7 !important;
        border-radius: 0 !important;
        background: #fff !important;
        color: #34445a !important;
        font-size: 13px !important;
        line-height: 1.3 !important;
        font-weight: 800 !important;
        text-decoration: none !important;
    }

    .guideContentsStepGroup a:first-child {
        border-top: 0 !important;
        min-height: 54px !important;
        background: linear-gradient(180deg,#f8fbff 0%, #eef5ff 100%) !important;
        color: var(--navy) !important;
        align-items: flex-start !important;
        padding: 13px 14px !important;
        border-radius: 20px 20px 0 0 !important;
    }

    .guideContentsStepGroup a:last-child {
        border-radius: 0 0 20px 20px !important;
    }

    .guideContentsStepGroup a:only-child {
        border-radius: 20px !important;
    }

    .guideContentsStepGroup a:not(:first-child)::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 999px;
        background: var(--blue);
        flex: 0 0 auto;
    }

    .guideContentsStepGroup a:hover {
        background: #f5f8ff !important;
        color: var(--blue-dark) !important;
    }

    .guideContentsStepGroup b {
        display: block !important;
        color: var(--navy) !important;
        font-size: 15px !important;
        line-height: 1.25 !important;
        font-weight: 900 !important;
        text-decoration: none !important;
    }

    .guideContentsPopover {
        position: fixed !important;
        z-index: 10010 !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: min(1040px, calc(100vw - 32px)) !important;
        max-height: min(86vh, 820px) !important;
        overflow: auto !important;
        display: none !important;
        background: transparent !important;
    }

    .guideContentsPopover.is-open {
        display: block !important;
    }

    .guideContentsPopover__panel {
        border-radius: 28px !important;
        background: #fff !important;
        border: 1px solid #dce7f5 !important;
        box-shadow: 0 30px 100px rgba(15,23,42,.28) !important;
        padding: 20px !important;
    }

    .guideContentsPopover__head {
        position: sticky !important;
        top: 0 !important;
        z-index: 2 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 16px !important;
        margin: -20px -20px 16px !important;
        padding: 18px 20px !important;
        background: #fff !important;
        border-bottom: 1px solid var(--line2) !important;
        border-radius: 28px 28px 0 0 !important;
    }

    .guideContentsPopover__head strong {
        color: var(--navy) !important;
        font-size: 22px !important;
        line-height: 1.15 !important;
        font-weight: 900 !important;
    }

    .guideContentsPopover__close {
        width: 40px !important;
        height: 40px !important;
        border: 0 !important;
        border-radius: 999px !important;
        background: #eef1ff !important;
        color: var(--blue-dark) !important;
        font-size: 22px !important;
        font-weight: 900 !important;
        cursor: pointer !important;
    }

    .guideContentsBackdrop {
        position: fixed !important;
        inset: 0 !important;
        z-index: 10000 !important;
        background: rgba(15,23,42,.46) !important;
    }

    body.guide-contents-open {
        overflow: hidden !important;
    }

    .actionStep.is-done summary:after {
        content: none !important;
        display: none !important;
    }

    .actionStep.is-done > summary {
        background: #f3fbf6 !important;
    }

    .actionStep.is-done > summary .actionStepNum {
        background: var(--green) !important;
        color: #fff !important;
    }

    .actionStep.is-done > summary strong::after {
        content: 'Выполнено';
        display: inline-flex;
        margin-left: 10px;
        vertical-align: middle;
        border-radius: 999px;
        padding: 5px 8px;
        background: var(--green-soft);
        color: var(--green);
        font-size: 11px;
        line-height: 1;
        font-weight: 900;
    }

    .actionStep .programsAccV2__summary,
    .actionStep.is-done .programsAccV2__summary {
        background: #f8fbff !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 12px !important;
        grid-template-columns: none !important;
        color: var(--navy) !important;
    }

    .actionStep .programsAccV2__summary:after,
    .actionStep.is-done .programsAccV2__summary:after {
        content: 'Показать' !important;
        display: inline-flex !important;
        border-radius: 999px !important;
        background: #eef1ff !important;
        color: var(--blue-dark) !important;
        padding: 7px 10px !important;
        font-size: 12px !important;
        font-weight: 900 !important;
        margin: 0 !important;
        flex: 0 0 auto !important;
    }

    .actionStep .programsAccV2[open] .programsAccV2__summary:after,
    .actionStep.is-done .programsAccV2[open] .programsAccV2__summary:after {
        content: 'Скрыть' !important;
    }

    .programsAccV2__summary strong {
        display: block !important;
        color: var(--navy) !important;
        font-size: 19px !important;
        line-height: 1.2 !important;
        margin: 0 !important;
        max-width: none !important;
    }

    .programsAccV2__summary span {
        color: var(--muted) !important;
        font-size: 13px !important;
        font-weight: 800 !important;
        margin-left: auto !important;
        white-space: nowrap !important;
    }

    @media (max-width: 980px) {
        .guideContentsMain,
        a.guideContentsMain,
        div.guideContentsMain {
            grid-template-columns: 42px minmax(0, 1fr) !important;
            padding: 15px !important;
            border-radius: 20px !important;
        }

        .guideContentsNum {
            width: 38px !important;
            height: 38px !important;
            min-width: 38px !important;
            font-size: 14px !important;
        }

        .guideContentsSteps {
            grid-template-columns: 1fr !important;
        }

        .guideContentsMain strong,
        .guideContentsBody strong {
            font-size: 17px !important;
        }

        .guideContentsPopover {
            width: calc(100vw - 20px) !important;
            max-height: calc(100vh - 20px) !important;
            top: 10px !important;
            left: 10px !important;
            transform: none !important;
        }

        .guideContentsPopover__panel {
            padding: 14px !important;
            border-radius: 22px !important;
        }

        .guideContentsPopover__head {
            margin: -14px -14px 12px !important;
            padding: 14px !important;
            border-radius: 22px 22px 0 0 !important;
        }

        .programsAccV2__summary {
            display: grid !important;
            grid-template-columns: 1fr auto !important;
        }

        .programsAccV2__summary span {
            grid-column: 1 / -1 !important;
            margin-left: 0 !important;
        }
    }


    /* Action plan pager v6 */
    .actionPlanSection { overflow: visible; }
    .actionPlanMeta {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
        margin: 0 0 16px;
    }
    .actionPlanMeta div {
        border-radius: 18px;
        background: var(--soft);
        border: 1px solid var(--line2);
        padding: 14px 16px;
    }
    .actionPlanMeta span { display: block; color: var(--muted2); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 5px; }
    .actionPlanMeta strong { display: block; color: var(--navy); font-size: 18px; line-height: 1.2; }
    .actionPlanAheadNotice {
        display: grid;
        gap: 4px;
        border-radius: 22px;
        background: var(--gold-soft);
        border: 1px solid #e6d29d;
        padding: 16px 18px;
        margin-bottom: 18px;
        color: #4b3a18;
    }
    .actionPlanAheadNotice strong { color: var(--navy); }
    .actionPlanAheadNotice span { color: #66532a; }
    .guideUpdateMessage {
        display: grid;
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 12px;
        align-items: start;
        margin: 0 0 18px;
        padding: 14px 16px;
        border-radius: 20px;
        background: #f8fbff;
        border: 1px solid #dbe3ff;
        box-shadow: 0 12px 28px rgba(35,71,120,.06);
    }
    .guideUpdateMessage__avatar {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: var(--blue);
        color: #fff;
        font-size: 16px;
        font-weight: 950;
        line-height: 1;
    }
    .guideUpdateMessage__body span {
        display: block;
        color: var(--muted2);
        font-size: 11px;
        font-weight: 900;
        letter-spacing: .05em;
        line-height: 1.2;
        text-transform: uppercase;
    }
    .guideUpdateMessage__body strong {
        display: block;
        margin-top: 3px;
        color: var(--navy);
        font-size: 16px;
        font-weight: 950;
        line-height: 1.2;
    }
    .guideUpdateMessage__body p {
        margin: 5px 0 0;
        color: var(--muted);
        font-size: 14px;
        font-weight: 700;
        line-height: 1.45;
    }
    .actionPlanNearestDate {
        display: grid;
        grid-template-columns: minmax(150px, 220px) minmax(0, 1fr) auto;
        gap: 14px;
        align-items: center;
        border-radius: 22px;
        background: #f8fbff;
        border: 1px solid #c9dcf8;
        padding: 16px 18px;
        margin: 0 0 18px;
        box-shadow: 0 12px 30px rgba(35,71,120,.06);
    }
    .actionPlanNearestDate[hidden] { display: none !important; }
    .actionPlanNearestDate__date span {
        display: block;
        margin-bottom: 5px;
        color: var(--muted2);
        font-size: 12px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: .05em;
    }
    .actionPlanNearestDate__date strong { display: block; color: var(--blue-dark); font-size: 24px; line-height: 1; }
    .actionPlanNearestDate__main { min-width: 0; }
    .actionPlanNearestDate__main strong { display: block; color: var(--navy); font-size: 18px; line-height: 1.2; }
    .actionPlanNearestDate__main p,
    .actionPlanNearestDate__main em { display: block; margin: 6px 0 0; color: var(--muted); font-size: 13px; line-height: 1.4; font-style: normal; }
    .actionPlanNearestDate__main em { color: var(--blue-dark); font-weight: 800; }
    .actionPlanNearestDate__link {
        border: 0;
        border-radius: 999px;
        background: var(--blue);
        color: #fff;
        min-height: 40px;
        padding: 0 14px;
        font-weight: 900;
        cursor: pointer;
        white-space: nowrap;
    }
    .actionTaskDates {
        margin: 0 0 18px;
        border-radius: 18px;
        border: 1px solid #dce7f5;
        background: #f8fbff;
        overflow: hidden;
    }
    .actionTaskDates summary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        min-height: 48px;
        padding: 12px 14px;
        cursor: pointer;
        color: var(--navy);
        font-weight: 900;
        list-style: none;
    }
    .actionTaskDates summary::-webkit-details-marker { display: none; }
    .actionTaskDates summary:after {
        content: '+';
        width: 26px;
        height: 26px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: #eef1ff;
        color: var(--blue-dark);
        flex: 0 0 26px;
    }
    .actionTaskDates[open] summary:after { content: '-'; }
    .actionTaskDates__body {
        display: grid;
        gap: 10px;
        padding: 0 14px 14px;
    }
    .actionTaskDates__empty {
        color: var(--muted);
        font-size: 14px;
        font-weight: 800;
    }
    .actionTaskDateItem {
        display: grid;
        grid-template-columns: 92px minmax(0, 1fr);
        gap: 10px;
        padding: 10px;
        border-radius: 14px;
        background: #fff;
        border: 1px solid #e6eef8;
    }
    .actionTaskDateItem__date {
        color: var(--blue-dark);
        font-weight: 900;
        white-space: nowrap;
    }
    .actionTaskDateItem__main strong {
        display: block;
        margin-bottom: 4px;
        color: var(--navy);
    }
    .actionTaskDateItem__main span,
    .actionTaskDateItem__main em {
        display: block;
        color: var(--muted);
        font-style: normal;
        font-size: 13px;
        line-height: 1.35;
    }
    .actionExtraQaBlock {
        margin-top: 18px;
        border-color: #dce7f5;
        background: #fbfdff;
    }
    .actionTopicArticlesBlock {
        margin-top: 18px;
        border-color: #dce7f5;
        background: #fff;
    }
    .actionTopicArticleList {
        display: grid;
        gap: 10px;
    }
    .actionTopicArticle {
        display: grid;
        gap: 5px;
        width: 100%;
        border-radius: 14px;
        background: #f8fbff;
        border: 1px solid #dce7f5;
        padding: 12px 14px;
        color: inherit;
        text-decoration: none;
        text-align: left;
        font: inherit;
        cursor: pointer;
    }
    .actionTopicArticle:hover {
        border-color: #b7c7ff;
        background: #f3f7ff;
    }
    .actionTopicArticle strong {
        color: var(--navy);
        font-size: 15px;
        line-height: 1.35;
    }
    .actionTopicArticle span {
        color: var(--muted);
        font-size: 13px;
        line-height: 1.45;
    }
    .actionTopicArticle em {
        color: var(--blue-dark);
        font-size: 12px;
        font-style: normal;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: .04em;
    }
    .guideArticleModalBackdrop {
        position: fixed;
        inset: 0;
        z-index: 10020;
        background: rgba(15, 23, 42, .52);
        backdrop-filter: blur(8px);
    }
    .guideArticleModal {
        position: fixed;
        z-index: 10021;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: min(900px, calc(100vw - 32px));
        max-height: min(86vh, 820px);
        display: grid;
        grid-template-rows: auto minmax(0, 1fr);
        overflow: hidden;
        border-radius: 26px;
        background: #fff;
        box-shadow: 0 28px 90px rgba(15, 23, 42, .30);
    }
    .guideArticleModal[hidden],
    .guideArticleModalBackdrop[hidden] {
        display: none;
    }
    .guideArticleModal__head {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 18px;
        padding: 22px 24px 18px;
        border-bottom: 1px solid #dce7f5;
        background: #fbfdff;
    }
    .guideArticleModal__head span {
        display: block;
        margin-bottom: 7px;
        color: var(--blue-dark);
        font-size: 12px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: .06em;
    }
    .guideArticleModal__head h3 {
        margin: 0;
        color: var(--navy);
        font-size: 25px;
        line-height: 1.18;
    }
    .guideArticleModal__close {
        flex: 0 0 auto;
        width: 38px;
        height: 38px;
        border: 0;
        border-radius: 999px;
        background: #eef1ff;
        color: var(--navy);
        font-size: 24px;
        line-height: 1;
        cursor: pointer;
    }
    .guideArticleModal__body {
        overflow: auto;
        padding: 24px;
    }
    .guideArticleModal__summary {
        margin: 0 0 20px;
        border-radius: 18px;
        background: #f8fbff;
        border: 1px solid #dce7f5;
        padding: 14px 16px;
        color: #38465a;
        font-size: 15px;
        line-height: 1.55;
        font-weight: 700;
    }
    .guideArticleModal__content {
        color: #253044;
        font-size: 16px;
        line-height: 1.7;
    }
    .guideArticleModal__content h2,
    .guideArticleModal__content h3,
    .guideArticleModal__content h4 {
        margin: 24px 0 10px;
        color: var(--navy);
        line-height: 1.25;
    }
    .guideArticleModal__content p { margin: 0 0 14px; }
    .guideArticleModal__content ul,
    .guideArticleModal__content ol {
        margin: 0 0 16px;
        padding-left: 24px;
    }
    .guideArticleModal__content li { margin-bottom: 8px; }
    .guideArticleModal__content img {
        max-width: 100%;
        height: auto;
        border-radius: 16px;
        margin: 10px 0;
        cursor: zoom-in;
    }
    .actionWordGuide img {
        cursor: zoom-in;
    }
    .guideImageModalBackdrop {
        position: fixed;
        inset: 0;
        z-index: 10070;
        background: rgba(15,23,42,.72);
        backdrop-filter: blur(3px);
    }
    .guideImageModal {
        position: fixed;
        z-index: 10080;
        inset: 22px;
        display: grid;
        grid-template-rows: auto minmax(0, 1fr);
        overflow: hidden;
        border-radius: 22px;
        background: #0f172a;
        box-shadow: 0 28px 80px rgba(0,0,0,.38);
    }
    .guideImageModal[hidden],
    .guideImageModalBackdrop[hidden] {
        display: none;
    }
    .guideImageModal__head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        min-width: 0;
        border-bottom: 1px solid rgba(255,255,255,.12);
        background: rgba(15,23,42,.96);
        padding: 12px 14px;
    }
    .guideImageModal__head strong {
        min-width: 0;
        color: #ffffff;
        font-size: 14px;
        font-weight: 900;
        line-height: 1.3;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .guideImageModal__close {
        flex: 0 0 auto;
        width: 34px;
        height: 34px;
        border: 0;
        border-radius: 999px;
        background: rgba(255,255,255,.12);
        color: #ffffff;
        font-size: 22px;
        font-weight: 900;
        line-height: 1;
        cursor: pointer;
    }
    .guideImageModal__body {
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: auto;
        padding: 18px;
    }
    .guideImageModal__body img {
        display: block;
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        background: #ffffff;
        cursor: zoom-out;
    }
    .guideArticleModal__content a {
        color: var(--blue-dark);
        font-weight: 900;
    }
    .guideArticleModal__content blockquote {
        margin: 18px 0;
        border-left: 4px solid #b7c7ff;
        background: #f8fbff;
        padding: 12px 16px;
        color: #38465a;
    }
    .guideArticleModal__content table {
        width: 100%;
        border-collapse: collapse;
        margin: 18px 0;
        font-size: 14px;
    }
    .guideArticleModal__content th,
    .guideArticleModal__content td {
        border: 1px solid #dce7f5;
        padding: 9px 10px;
        vertical-align: top;
    }
    .guideArticleModal__footer {
        margin-top: 22px;
        display: flex;
        justify-content: flex-end;
    }
    @media (max-width: 640px) {
        .guideArticleModal {
            width: calc(100vw - 18px);
            max-height: calc(100vh - 18px);
            border-radius: 20px;
        }
        .guideArticleModal__head,
        .guideArticleModal__body {
            padding: 18px;
        }
        .guideArticleModal__head h3 {
            font-size: 21px;
        }
    }
    .actionPendingNotice {
        margin: 14px 0 16px;
        border-radius: 18px;
        border: 1px solid #ead38f;
        background: #fff8e5;
        color: #5d4617;
        padding: 14px 16px;
        font-size: 14px;
        line-height: 1.45;
        font-weight: 900;
    }
    .actionExtraQaMeta {
        margin: 7px 0 10px;
        padding: 0 16px;
        color: var(--muted2);
        font-size: 12px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: .04em;
    }
    .actionExtraQaAnswer ul,
    .actionExtraQaAnswer ol { padding-left: 34px; padding-right: 16px; }
    .actionExtraQaAnswer p:last-child { margin-bottom: 0; }
    .actionPlanStepper { border-radius: 28px; background: #fff; border: 1px solid #dce7f5; box-shadow: 0 18px 50px rgba(35,71,120,.08); overflow: hidden; }
    .actionPlanStepper__tabs { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 0; background: #f8fbff; border-bottom: 1px solid var(--line2); }
    .actionTab {
        border: 0;
        border-right: 1px solid var(--line2);
        background: transparent;
        padding: 14px 10px;
        cursor: pointer;
        text-align: left;
        color: var(--muted);
        font: inherit;
    }
    .actionTab:last-child { border-right: 0; }
    .actionTab b { display: inline-flex; width: 30px; height: 30px; align-items: center; justify-content: center; border-radius: 999px; background: #eef1ff; color: var(--blue-dark); margin-bottom: 7px; font-weight: 900; }
    .actionTab span { display: block; font-size: 12px; line-height: 1.25; font-weight: 900; }
    .actionTab.is-active { background: #fff; color: var(--navy); }
    .actionTab.is-active b { background: var(--navy); color: #f2d58a; }
    .actionTab.is-done b { background: var(--green); color: #fff; }
    .actionStepPane { display: none; padding: 22px; }
    .actionStepPane.is-active { display: block; }
    .actionStepHero {
        display: grid;
        grid-template-columns: 56px minmax(0, 1fr) auto;
        gap: 16px;
        align-items: start;
        border-radius: 24px;
        background: linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
        border: 1px solid var(--line2);
        padding: 18px;
        margin-bottom: 16px;
    }
    .actionStepHero .actionStepNum { width: 48px; height: 48px; font-size: 19px; }
    .actionStepHero h3 { margin: 3px 0 6px; color: var(--navy); font-size: 26px; line-height: 1.1; }
    .actionStepHero p { margin: 0; color: var(--muted); }
    .actionStepPeriod { display: inline-flex; border-radius: 999px; background: #eef1ff; color: var(--blue-dark); padding: 7px 10px; font-size: 12px; font-weight: 900; }
    .actionStepStatus { justify-self: end; border-radius: 999px; padding: 8px 11px; background: #eef1ff; color: var(--blue-dark); font-size: 12px; font-weight: 900; white-space: nowrap; }
    .actionStepStatus.is-current { background: var(--green-soft); color: var(--green); }
    .actionStepStatus.is-future { background: var(--gold-soft); color: #76500b; }
    .actionStepStatus.is-past { background: #f1f5f9; color: #64748b; }
    .actionStepBody { border-top: 0; padding: 0; display: grid; gap: 12px; }
    .actionTask { position: relative; padding-left: 18px; }
    .actionTask:before { content: ''; position: absolute; left: 0; top: 18px; bottom: 18px; width: 4px; border-radius: 999px; background: #dbe3ff; }
    .actionPlanControls {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        padding: 16px 22px 22px;
        background: #fbfdff;
        border-top: 1px solid var(--line2);
    }
    .actionPlanControls .btn { min-width: 160px; }
    .actionPlanControls .jsActionDone { background: var(--green); }
    .actionStepPane.is-done .actionStepHero { background: #f3fbf6; border-color: #bfe8d1; }
    .actionStepPane.is-done .actionStepHero h3:after { content: ' · выполнено'; color: var(--green); font-size: 15px; }
    #timeline { margin-top: 34px; }
    @media (max-width: 980px) {
        .actionPlanMeta { grid-template-columns: 1fr; }
        .actionPlanNearestDate { grid-template-columns: 1fr; }
        .actionPlanNearestDate__link { width: 100%; }
        .actionPlanStepper__tabs { grid-template-columns: repeat(2, minmax(0,1fr)); }
        .actionStepHero { grid-template-columns: 48px minmax(0,1fr); }
        .actionStepStatus { grid-column: 1 / -1; justify-self: start; }
        .actionPlanControls { flex-direction: column; }
        .actionPlanControls .btn { width: 100%; }
        .actionTaskDateItem { grid-template-columns: 1fr; }
    }



    /* v6.1: options live inside action steps */
    .actionTask--options {
        padding: 0;
        overflow: hidden;
        background: #fff;
        border-color: #dce7f5;
    }
    .actionTask--options > .embeddedOptions {
        padding: 0;
    }
    .actionTask--options > .actionTaskChecklist {
        margin: 18px 20px 16px 22px;
    }
    .actionTask--options .sectionTitleBlock {
        margin-bottom: 16px;
    }
    .actionTask--options .sectionTitleBlock h2 {
        margin: 0 0 8px;
        font-size: 30px;
    }
    .actionTask--options .sectionLead {
        margin-bottom: 0;
    }
    .actionTask--options .optionsStrategyBox,
    .actionTask--options .admissionPlanSummary {
        margin-left: 0;
        margin-right: 0;
    }
    .actionTask--options .institutionCardV2 {
        margin-bottom: 24px;
    }
    .actionTask--recalc .recalcInlinePanel {
        margin-top: 12px;
        display: grid;
        gap: 8px;
        border-radius: 16px;
        background: #fff;
        border: 1px solid var(--line2);
        padding: 14px;
    }
    .recalcInlinePanel strong {
        color: var(--navy);
    }
    .recalcInlinePanel span {
        color: var(--muted);
        font-size: 14px;
        line-height: 1.45;
    }
    .recalcInlinePanel .btn {
        justify-self: start;
    }
    @media (max-width: 980px) {
        .actionTask--options > .embeddedOptions { padding: 0; }
        .actionTask--options .sectionTitleBlock h2 { font-size: 24px; }
    }



    /* Action stage subtabs */
    .actionSubTabs {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        padding: 0 22px 18px;
        margin-top: -4px;
    }
    .actionSubTab {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 38px;
        padding: 0 12px;
        border-radius: 999px;
        border: 1px solid #dce7f5;
        background: #fff;
        color: #334155;
        font-size: 13px;
        font-weight: 900;
        cursor: pointer;
        transition: .16s ease;
    }
    .actionSubTab:hover { border-color: #b8c2ff; color: var(--blue-dark); background: #f7f9ff; }
    .actionSubTab.is-active {
        background: var(--navy);
        border-color: var(--navy);
        color: #fff;
        box-shadow: 0 10px 24px rgba(15,23,42,.12);
    }
    .actionStepBody .actionTask[data-sub] { display: none; }
    .actionStepBody .actionTask[data-sub].is-sub-active { display: block; }
    .actionTask--options.is-sub-active { display: block; }
    @media (max-width: 980px) {
        .actionSubTabs { padding: 0 16px 16px; overflow-x: auto; flex-wrap: nowrap; }
        .actionSubTab { flex: 0 0 auto; }
    }



    /* v9: clearer stage subtabs + fixed guide contents contrast */
    .actionStepHero {
        grid-template-columns: 50px minmax(0,1fr) auto !important;
        gap: 10px !important;
        align-items: center !important;
        padding: 16px 18px !important;
    }
    .actionStepHero .actionStepNum {
        width: 46px !important;
        height: 46px !important;
        margin: 0 !important;
    }
    .actionStepHero h3 {
        margin: 0 0 4px !important;
        font-size: 25px !important;
        line-height: 1.12 !important;
    }
    .actionStepHero p {
        margin: 0 !important;
        color: #43546b !important;
        font-weight: 800 !important;
    }
    .actionStepStatus {
        align-self: center !important;
    }
    .actionSubTabs {
        position: relative;
        counter-reset: actionSub;
        display: grid !important;
        grid-template-columns: repeat(4, minmax(0,1fr));
        gap: 10px !important;
        padding: 0 22px 18px !important;
        margin-top: 0 !important;
    }
    .actionSubTabs::before {
        content: 'Содержание этапа';
        grid-column: 1 / -1;
        color: var(--muted2);
        font-size: 12px;
        font-weight: 900;
        letter-spacing: .08em;
        text-transform: uppercase;
        margin-bottom: -2px;
    }
    .actionSubTab {
        justify-content: flex-start !important;
        gap: 10px;
        min-height: 54px !important;
        height: auto !important;
        padding: 10px 12px !important;
        border-radius: 16px !important;
        background: #fff !important;
        border: 1px solid #dce7f5 !important;
        box-shadow: 0 8px 22px rgba(35,71,120,.045);
        color: var(--navy) !important;
        text-align: left;
        line-height: 1.2;
    }
    .actionSubTab::before {
        counter-increment: actionSub;
        content: counter(actionSub);
        width: 28px;
        height: 28px;
        flex: 0 0 28px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #eef1ff;
        color: var(--blue-dark);
        font-weight: 900;
        font-size: 12px;
    }
    .actionSubTab::after {
        content: attr(data-deadline);
        display: block;
        color: var(--muted2);
        font-size: 10px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: .06em;
        margin-left: auto;
    }
    .actionSubTab.is-active {
        background: linear-gradient(135deg, #0b1220 0%, #18233d 100%) !important;
        border-color: #0b1220 !important;
        color: #fff !important;
        box-shadow: 0 14px 34px rgba(15,23,42,.16) !important;
    }
    .actionSubTab.is-active::before {
        background: #f2d58a;
        color: var(--navy);
    }
    .actionSubTab.is-active::after {
        color: #f2d58a;
    }
    .actionTask[data-sub] {
        border-radius: 22px !important;
        background: #fff !important;
        border: 1px solid #dce7f5 !important;
        box-shadow: 0 12px 32px rgba(35,71,120,.055);
        padding: 18px 20px 18px 22px !important;
    }
    .actionTask[data-sub]::before {
        background: var(--blue) !important;
        top: 18px !important;
        bottom: 18px !important;
    }
    .actionTask[data-sub] h3 {
        font-size: 22px !important;
        margin-bottom: 8px !important;
    }
    .actionTaskSubKicker {
        display: inline-flex;
        margin-bottom: 10px;
        border-radius: 999px;
        padding: 6px 9px;
        background: #ede9fe;
        color: #5b21b6;
        font-size: 11px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: .06em;
    }
    .actionRichIntro {
        margin: 0 0 14px;
        color: var(--text);
        font-size: 16px;
        line-height: 1.62;
    }
    .actionPremiumNote {
        display: grid;
        gap: 5px;
        border-radius: 18px;
        background: linear-gradient(135deg, #fff6d8 0%, #fffaf0 100%);
        border: 1px solid #ead28b;
        padding: 14px 16px;
        margin: 14px 0;
        color: #4f3d16;
    }
    .actionPremiumNote strong {
        color: var(--navy);
        font-size: 15px;
    }
    .guideMonitoringTop {
        margin: 24px auto 0;
        width: min(100%, 1180px);
        border: 1px solid #dce7f5;
        border-radius: 22px;
        background: #ffffff;
        padding: 18px;
        text-align: left;
        box-shadow: 0 16px 36px rgba(35,71,120,.08);
    }
    .guideMonitoringTop__head {
        display: grid;
        gap: 6px;
        margin-bottom: 12px;
    }
    .guideMonitoringTop__head span {
        color: var(--blue);
        font-size: 12px;
        font-weight: 900;
        letter-spacing: .04em;
        text-transform: uppercase;
    }
    .guideMonitoringTop__head h2 {
        margin: 0;
        color: var(--navy);
        font-size: 24px;
        line-height: 1.2;
    }
    .guideMonitoringTop__head p {
        margin: 0;
        color: var(--muted);
        font-size: 15px;
        line-height: 1.5;
    }
    .guideMonitoringTop .actionMonitoringSpoiler {
        margin: 12px 0 0;
    }
    .actionStageChecklist {
        margin: 14px 0 16px;
        border-radius: 20px;
        border: 1px solid #dce7f5;
        background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
        padding: 16px;
        box-shadow: 0 12px 30px rgba(35,71,120,.06);
    }
    .actionStageChecklist.is-complete {
        border-color: #b7e4c1;
        background: linear-gradient(180deg, #f7fff9 0%, #eaf8ee 100%);
        box-shadow: 0 12px 30px rgba(29,128,67,.08);
    }
    .actionTaskChecklist {
        margin: 0 0 16px;
        border-radius: 18px;
        box-shadow: none;
    }
    .actionStageChecklist__head {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 12px;
        flex-wrap: wrap;
    }
    .actionChecklistDate {
        display: inline-flex;
        align-items: center;
        border-radius: 999px;
        background: #fff8e7;
        border: 1px solid #efd891;
        color: #7a4f05;
        padding: 6px 10px;
        font-size: 12px;
        font-style: normal;
        font-weight: 900;
        line-height: 1.2;
    }
    .actionStageChecklist.is-complete .actionChecklistDate {
        border-color: #b7e4c1;
        background: #e9f8ee;
        color: #0f5b2d;
    }
    .actionStageChecklist__head span {
        color: var(--blue);
        font-size: 12px;
        font-weight: 900;
        letter-spacing: .04em;
        text-transform: uppercase;
    }
    .actionStageChecklist.is-complete .actionStageChecklist__head span {
        color: #15803d;
    }
    .actionStageChecklist__head b {
        color: var(--navy);
        font-size: 18px;
        line-height: 1.25;
    }
    .actionStageChecklist.is-complete .actionStageChecklist__head b {
        color: #0f5b2d;
    }
    .actionChecklist {
        counter-reset: actionChecklist;
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 8px;
        width: 100%;
        min-width: 0;
        margin: 14px 0 0;
        padding: 12px;
        list-style: none;
        border: 1px solid #efd891;
        border-radius: 18px;
        background: #fff8e7;
        box-shadow: 0 10px 22px rgba(178,126,25,.07);
    }
    .actionChecklist.is-complete {
        border-color: #b7e4c1;
        background: #e9f8ee;
        box-shadow: 0 10px 22px rgba(29,128,67,.07);
    }
    .actionChecklist li {
        counter-increment: actionChecklist;
        position: relative;
        box-sizing: border-box;
        width: 100%;
        min-width: 0;
        max-width: 100%;
        border-radius: 16px;
        background: #ffffff;
        border: 1px solid rgba(215,154,25,.28);
        padding: 12px 14px 12px 48px;
        color: var(--text);
        font-weight: 800;
        line-height: 1.35;
        transition: background .18s ease, border-color .18s ease, color .18s ease;
    }
    .actionChecklist li[data-checklist-skip-all="1"] {
        counter-increment: none;
        background: #f8fbff;
        border-color: #dce7f5;
    }
    .actionChecklist li.is-done {
        color: #0f5b2d;
        border-color: #b7e4c1;
        background: #f3fbf5;
    }
    .actionChecklist li:before {
        content: counter(actionChecklist);
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        border-radius: 999px;
        color: #ffffff;
        background: #d79a19;
        font-family: Arial, sans-serif;
        font-size: 12px;
        font-variant-numeric: tabular-nums;
        font-weight: 900;
        line-height: 1;
        box-shadow: 0 0 0 4px rgba(215,154,25,.16);
    }
    .actionChecklist li[data-checklist-skip-all="1"]:before {
        content: '0';
        background: var(--navy);
        box-shadow: 0 0 0 4px rgba(15,23,42,.12);
    }
    .actionChecklist li.is-done:before {
        background: #15803d;
        box-shadow: 0 0 0 4px rgba(21,128,61,.14);
    }
    .actionChecklistItemLabel {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 12px;
        box-sizing: border-box;
        width: 100%;
        min-width: 0;
        max-width: 100%;
        cursor: pointer;
    }
    .actionChecklistText {
        display: block;
        min-width: 0;
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: normal;
    }
    .actionChecklistContent {
        display: grid;
        gap: 7px;
        min-width: 0;
        max-width: 100%;
    }
    .actionChecklistItemDate {
        display: inline-block;
        justify-self: start;
        width: auto;
        max-width: 100%;
        min-width: 0;
        border-radius: 999px;
        border: 1px solid #efd891;
        background: #fff8e7;
        color: #7a4f05;
        padding: 5px 9px;
        font-size: 12px;
        font-weight: 900;
        line-height: 1.2;
        white-space: normal;
        overflow-wrap: anywhere;
    }
    .actionChecklist li.is-done .actionChecklistItemDate {
        border-color: #b7e4c1;
        background: #e9f8ee;
        color: #0f5b2d;
    }
    .actionChecklistDoneControl {
        position: relative;
        display: inline-flex;
        align-items: center;
        gap: 7px;
        min-height: 32px;
        border-radius: 999px;
        border: 1px solid #efd891;
        background: #fff8e7;
        padding: 6px 10px;
        color: #7a4f05;
        font-size: 12px;
        font-weight: 900;
        line-height: 1;
        white-space: nowrap;
        transition: background .18s ease, border-color .18s ease, color .18s ease;
    }
    .actionChecklistDoneControl input {
        position: absolute;
        inset: 0;
        opacity: 0;
        cursor: pointer;
    }
    .actionChecklistFakeCheck {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        border: 2px solid currentColor;
        background: #ffffff;
        color: inherit;
        font-size: 12px;
        line-height: 1;
    }
    .actionChecklistFakeCheck:after {
        content: '';
    }
    .actionChecklist li.is-done .actionChecklistDoneControl {
        border-color: #9ed9ad;
        background: #e5f7ea;
        color: #0f5b2d;
    }
    .actionChecklist li.is-done .actionChecklistFakeCheck {
        background: #15803d;
        border-color: #15803d;
        color: #ffffff;
    }
    .actionChecklist li.is-done .actionChecklistFakeCheck:after {
        content: '\2713';
    }
    @media (max-width: 640px) {
        .guideMonitoringTop {
            padding: 14px;
            border-radius: 18px;
        }
        .guideMonitoringTop__head h2 {
            font-size: 20px;
        }
        .actionChecklistItemLabel {
            grid-template-columns: 1fr;
            gap: 10px;
        }
        .actionChecklistDoneControl {
            justify-self: start;
        }
        .actionChecklist li {
            padding: 12px 10px 12px 42px;
        }
        .actionChecklist li:before {
            left: 10px;
            width: 22px;
            height: 22px;
            box-shadow: 0 0 0 3px rgba(215,154,25,.16);
        }
        .actionChecklist li.is-done:before {
            box-shadow: 0 0 0 3px rgba(21,128,61,.14);
        }
        .actionChecklistText {
            font-size: 14px;
            line-height: 1.32;
        }
        .actionChecklistItemDate {
            border-radius: 12px;
            font-size: 11px;
            line-height: 1.25;
            padding: 5px 8px;
        }
    }
    .actionMiniGrid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        margin-top: 14px;
    }
    .actionMiniCard {
        border-radius: 16px;
        background: #fff;
        border: 1px solid #dce7f5;
        padding: 13px 14px;
        box-shadow: 0 8px 22px rgba(35,71,120,.045);
    }
    .actionMiniCard b {
        display: block;
        margin-bottom: 5px;
        color: var(--navy);
        font-size: 14px;
    }
    .actionMiniCard span {
        color: var(--muted);
        font-size: 13px;
        line-height: 1.45;
    }
    .guideFaqSection {
        margin-top: 22px;
        border-radius: 28px;
        background: linear-gradient(135deg, #0b1220 0%, #18233d 100%);
        color: #fff;
        border: 1px solid #202c49;
        padding: 24px;
        box-shadow: 0 18px 50px rgba(11,18,32,.22);
    }
    .guideFaqSection .sectionTitleBlock {
        margin-bottom: 16px;
    }
    .guideFaqSection .eyebrow {
        color: #f2d58a;
    }
    .guideFaqSection h2 {
        color: #fff;
    }
    .guideFaqSection .sectionLead {
        color: #d9e3f5;
    }
    .guideFaqGrid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    .guideFaqItem {
        border-radius: 18px;
        background: rgba(255,255,255,.08);
        border: 1px solid rgba(255,255,255,.14);
        overflow: hidden;
    }
    .guideFaqItem summary {
        cursor: pointer;
        list-style: none;
        padding: 15px 16px;
        color: #fff;
        font-weight: 900;
        line-height: 1.35;
    }
    .guideFaqItem summary::-webkit-details-marker {
        display: none;
    }
    .guideFaqItem summary:after {
        content: '+';
        float: right;
        color: #f2d58a;
        font-size: 20px;
        line-height: 1;
        margin-left: 12px;
    }
    .guideFaqItem[open] summary:after {
        content: '-';
    }
    .guideFaqItem p {
        margin: 0;
        padding: 0 16px 16px;
        color: #d9e3f5;
        line-height: 1.6;
    }
    .guideFaqTag {
        display: inline-flex;
        width: fit-content;
        border-radius: 999px;
        background: rgba(242,213,138,.16);
        color: #f2d58a;
        padding: 5px 8px;
        margin: 0 16px 10px;
        font-size: 11px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: .05em;
    }
    .actionDeepGuide {
        margin-top: 18px;
        display: grid;
        gap: 12px;
    }
    .actionDeepGuide__title {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 4px;
        color: var(--navy);
        font-size: 18px;
        font-weight: 900;
    }
    .actionDeepGuide__title:before {
        content: '';
        width: 10px;
        height: 10px;
        border-radius: 999px;
        background: var(--gold);
        box-shadow: 0 0 0 5px rgba(200,166,90,.16);
    }
    .actionDeepGuide__section {
        border-radius: 18px;
        background: #f8fbff;
        border: 1px solid #dce7f5;
        padding: 16px;
    }
    .actionDeepGuide__section h4 {
        margin: 0 0 10px;
        color: var(--navy);
        font-size: 18px;
        line-height: 1.25;
    }
    .actionDeepGuide__section h5 {
        margin: 14px 0 8px;
        color: var(--blue-dark);
        font-size: 15px;
        line-height: 1.35;
    }
    .actionDeepGuide__section p {
        margin: 0 0 10px;
        color: var(--text);
        line-height: 1.62;
    }
    .actionDeepGuide__section p:last-child {
        margin-bottom: 0;
    }
    .actionDeepGuide__section .actionDeepGuide__date {
        border-radius: 12px;
        background: #fff;
        border: 1px solid #e3eaf5;
        padding: 10px 12px;
        font-weight: 800;
    }
    .actionDeepGuide__list {
        margin: 8px 0 0;
        padding-left: 20px;
        color: var(--text);
        line-height: 1.62;
    }
    .actionDeepGuide__list li {
        margin: 6px 0;
    }
    .actionDeepGuide__dates {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }
    .actionDeepGuide__qa {
        border-radius: 16px;
        background: #fff;
        border: 1px solid #dce7f5;
        overflow: hidden;
    }
    .actionDeepGuide__qa summary {
        cursor: pointer;
        list-style: none;
        padding: 14px 16px;
        color: var(--navy);
        font-weight: 900;
        line-height: 1.4;
    }
    .actionDeepGuide__qa summary::-webkit-details-marker {
        display: none;
    }
    .actionDeepGuide__qa summary:after {
        content: '+';
        float: right;
        color: #f2d58a;
        font-size: 20px;
        line-height: 1;
        margin-left: 12px;
    }
    .actionDeepGuide__qa[open] summary:after {
        content: '-';
    }
    .actionDeepGuide__qa p {
        margin: 0;
        padding: 0 16px 16px;
        color: var(--text);
        line-height: 1.6;
    }
    .actionTask--wordGuide {
        margin-top: 12px;
    }
    .actionWordGuide {
        display: grid;
        gap: 16px;
        margin-top: 16px;
        counter-reset: guideBlock;
    }
    .actionWordGuide__block {
        position: relative;
        overflow: hidden;
        border-radius: 22px;
        background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
        border: 1px solid #dce7f5;
        padding: 22px 22px 22px 26px;
        box-shadow: 0 14px 36px rgba(35,71,120,.06);
    }
    .actionWordGuide__block:before {
        content: '';
        position: absolute;
        inset: 0 auto 0 0;
        width: 5px;
        background: linear-gradient(180deg, var(--blue) 0%, #f2d58a 100%);
    }
    .actionWordGuide__block h4 {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        margin: 0 0 14px;
        color: var(--navy);
        font-size: 22px;
        line-height: 1.22;
        letter-spacing: 0;
    }
    .actionWordGuide__block h4:before {
        content: '';
        flex: 0 0 auto;
        display: block;
        width: 10px;
        height: 10px;
        border-radius: 999px;
        background: var(--gold);
        box-shadow: 0 0 0 5px rgba(200,166,90,.16);
        margin-top: 8px;
    }
    .actionWordGuide__sectionHeading {
        margin: 0;
        color: var(--navy);
        font-size: 26px;
        line-height: 1.16;
        letter-spacing: 0;
    }
    .actionWordGuide__method {
        background: linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
        border-color: #ead28b;
        box-shadow: 0 16px 38px rgba(200,166,90,.12);
    }
    .actionWordGuide__method:before {
        width: 7px;
        background: linear-gradient(180deg, var(--gold) 0%, var(--blue) 100%);
    }
    .actionWordGuide__subblock {
        margin-left: 22px;
        background: #ffffff;
        border-color: #e6edf7;
        box-shadow: 0 10px 24px rgba(35,71,120,.045);
        padding-top: 18px;
        padding-bottom: 18px;
    }
    .actionWordGuide__subblock:before {
        width: 3px;
        background: #dce7f5;
    }
    .actionWordGuide__subblock h5:first-child {
        margin-top: 0;
    }
    .actionWordGuide__caption {
        max-width: 760px;
        margin: 6px 0 0;
        color: var(--muted);
        font-size: 13px;
        line-height: 1.4;
    }
    .actionWordGuide__imageHeading {
        max-width: 760px;
        margin: 22px 0 -10px;
        padding-left: 14px;
        border-left: 4px solid var(--gold);
    }
    .actionWordGuide__imageHeading strong {
        display: block;
        color: var(--navy);
        font-size: 16px;
        line-height: 1.35;
        font-weight: 900;
    }
    .actionWordGuide__imageHeading span {
        display: block;
        margin-top: 4px;
        color: var(--muted);
        font-size: 14px;
        line-height: 1.5;
    }
    .actionWordGuide__imageHeading + .actionWordGuide__image {
        margin-top: 18px;
    }
    .actionWordGuide__inlineArticle {
        color: var(--blue-dark);
        font-weight: 900;
        text-decoration: underline;
        text-decoration-thickness: .08em;
        text-underline-offset: 3px;
    }
    .actionWordGuide__block h5 {
        margin: 16px 0 8px;
        color: var(--blue-dark);
        font-size: 16px;
        line-height: 1.35;
    }
    .actionWordGuide__block p {
        margin: 0 0 12px;
        color: #243145;
        line-height: 1.72;
        font-size: 16px;
    }
    .actionWordGuide__block p:last-child {
        margin-bottom: 0;
    }
    .actionWordGuide__lead {
        border-radius: 16px;
        background: #f3f7ff;
        border: 1px solid #dce7f5;
        padding: 13px 15px;
        color: var(--navy) !important;
        font-weight: 800;
    }
    .actionWordGuide__note {
        border-radius: 16px;
        background: #fff8e7;
        border: 1px solid #efd790;
        padding: 13px 15px;
        color: #493917 !important;
        font-weight: 750;
    }
    .actionWordGuide__stageNotice {
        margin: 14px 0 16px;
    }
    .actionWordGuide__stageNotice:before {
        background: #d69a22;
    }
    .actionWordGuide__stageNotice p {
        color: #493917 !important;
        font-weight: 750;
    }
    .actionWordGuide__tableLink {
        margin-top: 14px !important;
    }
    .actionWordGuide__tableLink a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 38px;
        padding: 8px 14px;
        border-radius: 999px;
        border: 1px solid #b9d2f3;
        background: #eef6ff;
        color: #124a8d;
        font-weight: 900;
        text-decoration: none;
        line-height: 1.2;
    }
    .actionWordGuide__tableLink a:hover {
        border-color: #82b4ec;
        background: #e0f0ff;
    }
    .dviOrganizer {
        background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
        border-color: #cfe0f5;
        box-shadow: 0 18px 44px rgba(35,71,120,.10);
    }
    .dviOrganizer:before {
        background: linear-gradient(180deg, #2563eb 0%, #d69a22 100%);
    }
    .dviOrganizer__header {
        display: grid;
        gap: 10px;
        margin-bottom: 16px;
    }
    .dviOrganizer__kicker {
        display: inline-flex;
        width: fit-content;
        align-items: center;
        min-height: 30px;
        padding: 6px 11px;
        border-radius: 999px;
        background: #eaf3ff;
        border: 1px solid #bdd7f4;
        color: #124a8d;
        font-size: 12px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: .04em;
    }
    .dviOrganizer__header h4 {
        margin-bottom: 0;
        font-size: 24px;
        line-height: 1.18;
        color: var(--navy);
    }
    .dviOrganizer__header p {
        max-width: 880px;
    }
    .dviOrganizer__alert {
        display: grid;
        grid-template-columns: 190px minmax(0, 1fr);
        gap: 14px;
        align-items: start;
        margin: 16px 0;
        border-radius: 18px;
        background: #fff8e7;
        border: 1px solid #efd790;
        padding: 14px 16px;
    }
    .dviOrganizer__alert b {
        color: #493917;
        font-size: 15px;
        line-height: 1.35;
    }
    .dviOrganizer__alert span {
        color: #493917;
        font-size: 14px;
        line-height: 1.48;
        font-weight: 750;
    }
    .dviOrganizer__columns {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        margin: 18px 0;
    }
    .dviOrganizer__columns div {
        display: grid;
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 5px 10px;
        align-content: start;
        min-height: 116px;
        border-radius: 16px;
        background: #ffffff;
        border: 1px solid #dce7f5;
        padding: 12px;
        box-shadow: 0 10px 22px rgba(35,71,120,.05);
    }
    .dviOrganizer__columns b {
        grid-row: 1 / 3;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        margin-top: 0;
        border-radius: 10px;
        background: #1e5aa5;
        color: #ffffff;
        font-size: 13px;
    }
    .dviOrganizer__columns span {
        align-self: start;
        padding-top: 1px;
        color: var(--navy);
        font-size: 14px;
        font-weight: 900;
        line-height: 1.25;
    }
    .dviOrganizer__columns em {
        color: #5d6d83;
        font-size: 12px;
        line-height: 1.38;
        font-style: normal;
        font-weight: 650;
    }
    .dviOrganizer__example {
        margin: 18px 0;
        border-radius: 20px;
        background: #ffffff;
        border: 1px solid #d8e4f2;
        overflow: hidden;
        box-shadow: 0 18px 36px rgba(35,71,120,.08);
    }
    .dviOrganizer__exampleHead {
        display: flex;
        justify-content: space-between;
        gap: 16px;
        padding: 16px 18px;
        background: #f3f7ff;
        border-bottom: 1px solid #d8e4f2;
    }
    .dviOrganizer__exampleHead b {
        color: var(--navy);
        font-size: 17px;
        line-height: 1.25;
    }
    .dviOrganizer__exampleHead span {
        max-width: 420px;
        color: #5d6d83;
        font-size: 13px;
        line-height: 1.35;
        font-weight: 750;
        text-align: right;
    }
    .dviOrganizer__tableWrap {
        overflow-x: auto;
    }
    .dviOrganizer__table {
        width: 100%;
        min-width: 1180px;
        border-collapse: separate;
        border-spacing: 0;
        table-layout: fixed;
        font-size: 13px;
        line-height: 1.35;
    }
    .dviOrganizer__table th,
    .dviOrganizer__table td {
        border-right: 1px solid #e3ebf5;
        border-bottom: 1px solid #e3ebf5;
        padding: 10px;
        vertical-align: top;
        color: #253247;
    }
    .dviOrganizer__table th {
        background: #f8fbff;
        color: var(--navy);
        text-align: left;
        font-size: 12px;
        font-weight: 900;
    }
    .dviOrganizer__table td {
        background: #ffffff;
        font-weight: 650;
    }
    .dviOrganizer__link {
        color: #124a8d;
        font-weight: 900;
        text-decoration: underline;
        text-decoration-thickness: .08em;
        text-underline-offset: 3px;
    }
    .dviOrganizer__link:hover {
        color: #0b3261;
    }
    .dviOrganizer__table tbody tr:nth-child(even) td {
        background: #fbfdff;
    }
    .dviOrganizer__table th:nth-child(1) { width: 13%; }
    .dviOrganizer__table th:nth-child(2) { width: 15%; }
    .dviOrganizer__table th:nth-child(3) { width: 14%; }
    .dviOrganizer__table th:nth-child(4) { width: 16%; }
    .dviOrganizer__table th:nth-child(5) { width: 10%; }
    .dviOrganizer__table th:nth-child(6) { width: 9%; }
    .dviOrganizer__table th:nth-child(7) { width: 9%; }
    .dviOrganizer__table th:nth-child(8) { width: 18%; }
    .dviOrganizer__table th:nth-child(9) { width: 56px; text-align: center; }
    .dviOrganizer__table td:nth-child(9) {
        text-align: center;
        color: #1e5aa5;
        font-size: 12px;
        line-height: 1.25;
        font-weight: 900;
    }
    .dviOrganizer__table th:last-child,
    .dviOrganizer__table td:last-child {
        border-right: 0;
    }
    .dviOrganizer__table tr:last-child td {
        border-bottom: 0;
    }
    .dviOrganizer__tips {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        margin: 18px 0;
    }
    .dviOrganizer__tips div {
        border-radius: 16px;
        background: #f7fbf8;
        border: 1px solid #cfe7d6;
        padding: 13px 14px;
    }
    .dviOrganizer__tips b {
        display: block;
        margin-bottom: 6px;
        color: #176139;
        font-size: 14px;
    }
    .dviOrganizer__tips span {
        display: block;
        color: #314255;
        font-size: 13px;
        line-height: 1.45;
        font-weight: 700;
    }
    .actionWordGuide__todo {
        background: linear-gradient(180deg, #f7fbf8 0%, #ffffff 100%);
        border-color: #cfe7d6;
    }
    .actionWordGuide__todo:before {
        background: #91c9a3;
    }
    .actionWordGuide__todo h5 {
        color: #176139;
    }
    .actionWordGuide__list {
        display: grid;
        gap: 8px;
        margin: 12px 0;
        padding: 0;
        list-style: none;
    }
    .actionWordGuide__list li {
        position: relative;
        border-radius: 14px;
        background: #f8fbff;
        border: 1px solid #e3eaf5;
        padding: 10px 12px 10px 32px;
        color: #243145;
        line-height: 1.48;
        font-weight: 700;
    }
    .actionWordGuide__list li:before {
        content: '';
        position: absolute;
        left: 13px;
        top: 16px;
        width: 7px;
        height: 7px;
        border-radius: 999px;
        background: var(--blue);
        box-shadow: 0 0 0 4px rgba(65,88,255,.10);
    }
    .actionWordGuide__list--emphasis li {
        background: #ffffff;
        border-color: #d6e3f3;
        box-shadow: 0 8px 20px rgba(35,71,120,.055);
    }
    .actionWordGuide__list--emphasis li:before {
        background: var(--gold);
        box-shadow: 0 0 0 4px rgba(200,166,90,.16);
    }
    .actionWordGuide__list--numbered {
        counter-reset: guideList;
    }
    .actionWordGuide__list--numbered li {
        padding-left: 46px;
        counter-increment: guideList;
    }
    .actionWordGuide__list--numbered li:before {
        content: counter(guideList);
        top: 10px;
        left: 12px;
        width: 24px;
        height: 24px;
        display: grid;
        place-items: center;
        color: #ffffff;
        font-size: 12px;
        font-weight: 900;
        line-height: 1;
        background: var(--blue-dark);
        box-shadow: none;
    }
    .actionWordGuide__spoiler {
        margin: 12px 0;
        border-radius: 16px;
        border: 1px solid #dbe8f8;
        background: #f8fbff;
        overflow: hidden;
    }
    .actionWordGuide__spoiler summary {
        cursor: pointer;
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 13px 15px;
        color: var(--navy);
        font-weight: 900;
        line-height: 1.38;
    }
    .actionWordGuide__spoiler summary::-webkit-details-marker {
        display: none;
    }
    .actionWordGuide__spoiler summary:after {
        content: '+';
        flex: 0 0 auto;
        width: 26px;
        height: 26px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: #ffffff;
        border: 1px solid #dbe8f8;
        color: var(--gold);
        font-size: 20px;
        line-height: 1;
    }
    .actionWordGuide__spoiler[open] summary:after {
        content: '-';
    }
    .actionWordGuide__spoilerBody {
        padding: 0 15px 15px;
    }
    .actionWordGuide__spoiler > summary ~ :not(.actionWordGuide__spoilerBody) {
        margin-left: 15px;
        margin-right: 15px;
    }
    .actionWordGuide__spoiler > summary ~ :last-child:not(.actionWordGuide__spoilerBody) {
        margin-bottom: 15px;
    }
    .actionWordGuide__spoilerBody h5 {
        margin: 14px 0 8px;
    }
    .actionWordGuide__spoilerBody p {
        margin: 0 0 10px;
        color: var(--text);
        font-size: 15px;
        line-height: 1.62;
    }
    .actionWordGuide__spoilerBody p:last-child {
        margin-bottom: 0;
    }
    .actionMonitoringSpoiler {
        background: #ffffff;
        border-color: #cfe0f4;
        box-shadow: 0 12px 30px rgba(35,71,120,.08);
    }
    .actionMonitoringBlock {
        overflow: hidden;
        margin: 18px 0 22px;
        border: 1px solid #b8d7ff;
        border-radius: 22px;
        background: #ffffff;
        box-shadow: 0 18px 42px rgba(35,71,120,.10);
        scroll-margin-top: 96px;
    }
    .actionMonitoringBlock__head {
        display: grid;
        gap: 6px;
        background: linear-gradient(135deg, #e8f3ff 0%, #f8fbff 100%);
        border-bottom: 1px solid #cfe0f4;
        padding: 16px 18px;
    }
    .actionMonitoringBlock__head span {
        color: var(--blue);
        font-size: 12px;
        font-weight: 900;
        letter-spacing: .04em;
        line-height: 1.1;
        text-transform: uppercase;
    }
    .actionMonitoringBlock__head h4 {
        margin: 0;
        color: var(--navy);
        font-size: 22px;
        line-height: 1.18;
    }
    .actionMonitoringBlock__head p {
        margin: 0;
        color: #40516a;
        font-size: 14px;
        line-height: 1.45;
    }
    .actionMonitoringBlock__body {
        padding: 16px;
    }
    .guideMonitoringHint {
        border-radius: 14px;
        border: 1px solid #ead28b;
        background: #fff8e7;
        padding: 12px 14px;
    }
    .guideMonitoringHint > b {
        display: block;
        margin-bottom: 8px;
        color: var(--navy);
        font-size: 15px;
    }
    .guideMonitoringSteps {
        margin: 0;
        padding-left: 20px;
        color: var(--text);
        font-size: 14px;
        line-height: 1.5;
    }
    .guideMonitoringSteps li + li {
        margin-top: 6px;
    }
    .guideMonitoringTitle {
        margin: 0 0 6px;
        color: var(--navy);
        font-size: 20px;
        line-height: 1.2;
    }
    .guideMonitoringLead {
        margin: 0 0 10px !important;
        color: var(--muted) !important;
        font-size: 14px !important;
        line-height: 1.45 !important;
    }
    .guideMonitoringTool {
        display: grid;
        gap: 12px;
        margin-top: 12px;
    }
    .guideMonitoringControls,
    .guideMonitoringFooter {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    .guideMonitoringControls label {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        min-width: min(100%, 300px);
        color: var(--muted);
        font-size: 13px;
        font-weight: 900;
    }
    .guideMonitoringControls input {
        flex: 1 1 150px;
        min-width: 0;
        border: 1px solid #d9e4f1;
        border-radius: 10px;
        padding: 10px 11px;
        font: inherit;
        color: var(--text);
        background: #ffffff;
    }
    .guideMonitoringFooter {
        justify-content: space-between;
        color: var(--muted);
        font-size: 13px;
        line-height: 1.45;
    }
    .guideMonitoringTableWrap {
        overflow: visible;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }
    .guideMonitoringSummary {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 10px;
        margin-bottom: 12px;
    }
    .guideMonitoringSummary--empty,
    .guideMonitoringSummaryItem {
        border: 1px solid #dce7f5;
        border-radius: 16px;
        background: #f8fbff;
        padding: 12px;
    }
    .guideMonitoringSummaryItem {
        display: grid;
        align-content: start;
        gap: 7px;
        min-width: 0;
    }
    .guideMonitoringSummaryItem b {
        color: var(--navy);
        font-size: 14px;
        line-height: 1.28;
        overflow-wrap: anywhere;
    }
    .guideMonitoringSummaryItem em {
        color: var(--muted);
        font-size: 12px;
        font-style: normal;
        font-weight: 900;
    }
    .guideMonitoringGroups {
        display: grid;
        gap: 24px;
    }
    .guideMonitoringGroup {
        overflow: hidden;
        border: 1px solid #cfe0f3;
        border-radius: 22px;
        background: linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
        box-shadow: 0 16px 34px rgba(35,71,120,.09);
    }
    .guideMonitoringGroupHead {
        display: grid;
        grid-template-columns: 52px minmax(260px, 1fr) auto auto auto;
        align-items: center;
        gap: 14px;
        border-bottom: 1px solid #e5edf7;
        background: linear-gradient(135deg, #eef6ff 0%, #ffffff 68%);
        padding: 16px;
        cursor: pointer;
    }
    .guideMonitoringVuzLogo {
        width: 52px;
        height: 52px;
        border-radius: 16px;
        display: grid;
        place-items: center;
        border: 1px solid #c9dcf2;
        background: #ffffff;
        color: var(--blue-dark);
        box-shadow: inset 0 0 0 6px #f3f8ff;
        font-size: 22px;
        font-weight: 900;
        line-height: 1;
        overflow: hidden;
    }
    .guideMonitoringVuzLogo img {
        display: block;
        max-width: 78%;
        max-height: 78%;
        object-fit: contain;
    }
    .guideMonitoringVuzLogo--fallback img {
        max-width: 58%;
        max-height: 58%;
        opacity: .72;
    }
    .guideMonitoringVuzField {
        display: grid;
        gap: 6px;
        min-width: 0;
    }
    .guideMonitoringVuzField span {
        color: var(--navy);
        font-size: 12px;
        font-weight: 900;
        line-height: 1.25;
    }
    .guideMonitoringVuzSuggest {
        position: relative;
        min-width: 0;
    }
    .guideMonitoringVuzLocked {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        min-height: 44px;
        border-radius: 12px;
        border: 1px solid #d9e4f1;
        background: #ffffff;
        padding: 9px 10px 9px 12px;
    }
    .guideMonitoringVuzLocked b {
        color: var(--navy);
        font-size: 14px;
        line-height: 1.28;
        overflow-wrap: anywhere;
    }
    .guideMonitoringVuzLocked button {
        flex: 0 0 auto;
        border: 0;
        border-radius: 999px;
        background: #eef4ff;
        color: var(--blue-dark);
        padding: 7px 11px;
        font-size: 12px;
        font-weight: 900;
        cursor: pointer;
    }
    .guideMonitoringVuzLocked button:hover {
        background: #dfeaff;
    }
    .guideMonitoringVuzSuggest__drop {
        display: none;
        position: absolute;
        z-index: 20;
        left: 0;
        right: 0;
        top: calc(100% + 6px);
        overflow: hidden;
        max-height: 260px;
        overflow-y: auto;
        border-radius: 14px;
        border: 1px solid #d9e4f1;
        background: #ffffff;
        box-shadow: 0 16px 34px rgba(35,71,120,.14);
    }
    .guideMonitoringVuzSuggest__drop.is-open {
        display: block;
    }
    .guideMonitoringVuzOption {
        display: block;
        width: 100%;
        border: 0;
        border-bottom: 1px solid #edf2f7;
        background: #ffffff;
        color: var(--text);
        padding: 10px 12px;
        text-align: left;
        font: inherit;
        font-size: 13px;
        font-weight: 800;
        line-height: 1.3;
        cursor: pointer;
    }
    .guideMonitoringVuzOption:last-child {
        border-bottom: 0;
    }
    .guideMonitoringVuzOption:hover {
        background: #f8fbff;
        color: var(--blue-dark);
    }
    .guideMonitoringVuzOption--empty,
    .guideMonitoringVuzOption--empty:hover {
        cursor: default;
        color: var(--muted);
        background: #ffffff;
    }
    .guideMonitoringGroupMeta {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
        color: var(--muted);
        font-size: 12px;
        font-weight: 900;
    }
    .guideMonitoringGroupMeta > span:not(.guideMonitoringChance) {
        border-radius: 999px;
        background: #eef4fb;
        padding: 8px 10px;
        white-space: nowrap;
    }
    .guideMonitoringCompetitions {
        display: grid;
        gap: 12px;
        padding: 12px;
    }
    .guideMonitoringCompetition {
        overflow: hidden;
        border: 1px solid #e3ebf5;
        border-radius: 14px;
        background: #ffffff;
    }
    .guideMonitoringCompetitionHead {
        display: grid;
        grid-template-columns: minmax(240px, 1fr) auto auto;
        align-items: end;
        gap: 12px;
        border-bottom: 1px solid #e8eff8;
        background: #fbfdff;
        padding: 12px;
    }
    .guideMonitoringCompetitionTitle {
        display: grid;
        gap: 6px;
        min-width: 0;
    }
    .guideMonitoringCompetitionTitle span {
        color: var(--navy);
        font-size: 12px;
        font-weight: 900;
        line-height: 1.25;
    }
    .guideMonitoringCompetitionTitle textarea {
        min-height: 42px;
        resize: vertical;
    }
    .guideMonitoringCompetitionMeta {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex-wrap: wrap;
        gap: 8px;
        color: var(--muted);
        font-size: 12px;
        font-weight: 900;
    }
    .guideMonitoringCompetitionMeta > span:not(.guideMonitoringChance) {
        border-radius: 999px;
        background: #eef4fb;
        padding: 8px 10px;
        white-space: nowrap;
    }
    .guideMonitoringTableShell {
        overflow: visible;
        padding: 12px;
    }
    .guideMonitoringTable {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
        table-layout: fixed;
        font-size: 13px;
        border: 1px solid #e3ebf5;
        border-radius: 14px;
        overflow: hidden;
    }
    .guideMonitoringTable th,
    .guideMonitoringTable td {
        border-right: 1px solid #e3ebf5;
        border-bottom: 1px solid #e3ebf5;
        padding: 8px;
        vertical-align: top;
        background: #ffffff;
        overflow-wrap: anywhere;
    }
    .guideMonitoringTable th {
        background: #f3f7ff;
        color: var(--navy);
        text-align: left;
        font-weight: 900;
        line-height: 1.25;
    }
    .guideMonitoringTable th:nth-child(1) {
        width: 24%;
    }
    .guideMonitoringTable th:nth-child(2) {
        width: 18%;
    }
    .guideMonitoringTable th:nth-child(3) {
        width: 13%;
    }
    .guideMonitoringTable th:nth-child(4) {
        width: 16%;
    }
    .guideMonitoringTable th:nth-child(5) {
        width: 18%;
    }
    .guideMonitoringTable th:nth-child(6) {
        width: 11%;
    }
    .guideMonitoringTable th:nth-child(7) {
        width: 44px;
    }
    .guideMonitoringTable--conditions th:nth-child(1) {
        width: 30%;
    }
    .guideMonitoringTable--conditions th:nth-child(2) {
        width: 12%;
    }
    .guideMonitoringTable--conditions th:nth-child(3) {
        width: 17%;
    }
    .guideMonitoringTable--conditions th:nth-child(4) {
        width: 21%;
    }
    .guideMonitoringTable--conditions th:nth-child(5) {
        width: 14%;
    }
    .guideMonitoringTable--conditions th:nth-child(6) {
        width: 44px;
    }
    .guideMonitoringTable th:last-child,
    .guideMonitoringTable td:last-child {
        border-right: 0;
    }
    .guideMonitoringTable tr:last-child td {
        border-bottom: 0;
    }
    .guideMonitoringTable input,
    .guideMonitoringTable textarea,
    .guideMonitoringTable select,
    .guideMonitoringCompetitionTitle textarea,
    .guideMonitoringVuzField input {
        width: 100%;
        min-width: 0;
        border: 1px solid #d9e4f1;
        border-radius: 9px;
        background: #ffffff;
        color: var(--text);
        font: inherit;
        line-height: 1.35;
        padding: 8px 9px;
    }
    .guideMonitoringTable textarea {
        min-height: 44px;
        resize: vertical;
    }
    .guideMonitoringCellStack {
        display: grid;
        gap: 7px;
        min-width: 0;
    }
    .guideMonitoringConditionGrid {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 8px;
        min-width: 0;
    }
    .guideMonitoringMiniField--wide,
    .guideMonitoringConditionGrid .guideMonitoringListLink {
        grid-column: 1 / -1;
    }
    .guideMonitoringMiniField {
        display: grid;
        gap: 4px;
        min-width: 0;
    }
    .guideMonitoringMiniField span {
        color: var(--muted);
        font-size: 11px;
        font-weight: 900;
        line-height: 1.2;
    }
    .guideMonitoringCalc {
        border-radius: 10px;
        border: 1px solid #dce7f5;
        background: #f8fbff;
        color: var(--navy);
        padding: 7px 9px;
        font-size: 12px;
        font-weight: 900;
        line-height: 1.25;
    }
    .guideMonitoringListLink {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 34px;
        border-radius: 999px;
        background: #eef1ff;
        color: var(--blue-dark);
        padding: 7px 11px;
        font-size: 12px;
        font-weight: 900;
        line-height: 1.2;
        text-decoration: none;
    }
    .guideMonitoringListLink:hover {
        background: #dfe6ff;
        color: var(--blue-dark);
        text-decoration: none;
    }
    .guideMonitoringListLink.is-hidden {
        display: none;
    }
    .guideMonitoringTable input:focus,
    .guideMonitoringTable textarea:focus,
    .guideMonitoringTable select:focus,
    .guideMonitoringCompetitionTitle textarea:focus,
    .guideMonitoringVuzField input:focus,
    .guideMonitoringControls input:focus {
        outline: none;
        border-color: var(--blue);
        box-shadow: 0 0 0 3px rgba(65,88,255,.12);
    }
    .guideMonitoringChance {
        display: inline-flex;
        align-items: center;
        min-height: 32px;
        border-radius: 999px;
        padding: 7px 10px;
        font-weight: 900;
        line-height: 1.25;
        white-space: normal;
    }
    .guideMonitoringTable td[data-label="Шанс"] .guideMonitoringChance {
        justify-content: center;
        width: 100%;
    }
    .guideMonitoringChance--high {
        color: #0f5b2d;
        background: #e9f8ee;
        border: 1px solid #bfebcc;
    }
    .guideMonitoringChance--good {
        color: #5f470c;
        background: #fff6d8;
        border: 1px solid #ecd38d;
    }
    .guideMonitoringChance--edge {
        color: #7a3f07;
        background: #fff0dc;
        border: 1px solid #efc08a;
    }
    .guideMonitoringChance--low {
        color: #8d1f1f;
        background: #fff0f0;
        border: 1px solid #f0b9b9;
    }
    .guideMonitoringChance--none {
        color: #516070;
        background: #eef3f8;
        border: 1px solid #d8e3ef;
    }
    .guideMonitoringIconBtn {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        border: 1px solid #d9e4f1;
        background: #ffffff;
        color: #8d1f1f;
        font-size: 20px;
        font-weight: 900;
        line-height: 1;
        cursor: pointer;
    }
    .guideMonitoringIconBtn:hover {
        border-color: #f0b9b9;
        background: #fff5f5;
    }
    .guideMonitoringCollapseBtn {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        border: 1px solid #d9e4f1;
        background: #ffffff;
        color: var(--blue-dark);
        font-size: 20px;
        font-weight: 900;
        line-height: 1;
        cursor: pointer;
    }
    .guideMonitoringCollapseBtn:hover {
        border-color: #b9cef0;
        background: #f4f8ff;
    }
    .guideMonitoringGroup.is-collapsed .guideMonitoringCompetitions,
    .guideMonitoringGroup.is-collapsed .guideMonitoringGroupActions {
        display: none;
    }
    .guideMonitoringGroup.is-collapsed .guideMonitoringGroupHead {
        border-bottom: 0;
    }
    .guideMonitoringGroupActions {
        display: flex;
        justify-content: flex-start;
        padding: 0 12px 14px;
    }
    .guideMonitoringCompetitionActions {
        display: flex;
        justify-content: flex-start;
        padding: 0 12px 12px;
    }
    @media (max-width: 1180px) {
        .guideMonitoringTable {
            font-size: 12px;
        }
        .guideMonitoringTable th,
        .guideMonitoringTable td {
            padding: 7px;
        }
    }
    @media (max-width: 860px) {
        .guideMonitoringGroupHead {
            grid-template-columns: 44px minmax(0, 1fr) auto auto;
            align-items: center;
        }
        .guideMonitoringCompetitionHead {
            grid-template-columns: 1fr;
            align-items: stretch;
        }
        .guideMonitoringVuzLogo {
            width: 44px;
            height: 44px;
            border-radius: 14px;
            font-size: 19px;
        }
        .guideMonitoringGroupMeta,
        .guideMonitoringCompetitionMeta {
            grid-column: 1 / -1;
            justify-content: flex-start;
        }
        .guideMonitoringGroupHead .guideMonitoringIconBtn,
        .guideMonitoringGroupHead .guideMonitoringCollapseBtn {
            justify-self: start;
        }
        .guideMonitoringCompetitionHead .guideMonitoringIconBtn {
            justify-self: start;
        }
        .guideMonitoringTable {
            display: block;
            border: 0;
            border-radius: 0;
            background: transparent;
        }
        .guideMonitoringTable thead {
            position: absolute;
            width: 1px;
            height: 1px;
            overflow: hidden;
            clip: rect(0 0 0 0);
            white-space: nowrap;
        }
        .guideMonitoringTable tbody {
            display: grid;
            gap: 10px;
        }
        .guideMonitoringTable tr {
            display: block;
            border: 1px solid #e3ebf5;
            border-radius: 14px;
            background: #ffffff;
            padding: 10px;
        }
        .guideMonitoringTable td {
            display: grid;
            grid-template-columns: 150px minmax(0, 1fr);
            gap: 8px;
            align-items: start;
            border: 0;
            padding: 7px 0;
        }
        .guideMonitoringTable td::before {
            content: attr(data-label);
            color: var(--navy);
            font-size: 12px;
            font-weight: 900;
            line-height: 1.3;
        }
        .guideMonitoringTable td[data-label=""] {
            display: flex;
            justify-content: flex-start;
        }
        .guideMonitoringTable td[data-label=""]::before {
            display: none;
        }
    }
    @media (max-width: 540px) {
        .guideMonitoringSummary {
            grid-template-columns: 1fr;
        }
        .guideMonitoringTable td {
            grid-template-columns: 1fr;
        }
        .guideMonitoringTable td::before {
            margin-bottom: -2px;
        }
        .guideMonitoringConditionGrid {
            grid-template-columns: 1fr;
        }
    }
    .actionWordGuide__dates {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
        margin: 12px 0;
    }
    .actionWordGuide__date {
        border-radius: 15px;
        background: #fffaf0;
        border: 1px solid #ead28b;
        padding: 11px 12px;
        color: #4f3d16;
        font-weight: 800;
        line-height: 1.45;
    }
    .actionWordGuide__date b {
        color: var(--navy);
    }
    .actionWordGuide__deadlineSummary {
        display: grid;
        gap: 10px;
        margin: 14px 0 0;
    }
    .actionWordGuide__deadlineFocus {
        display: grid;
        gap: 8px;
        margin: 14px 0;
        padding: 14px 16px;
        border: 1px solid #d4ddff;
        border-left: 4px solid var(--blue);
        border-radius: 12px;
        background: #f5f8ff;
        color: var(--navy);
        box-shadow: 0 8px 22px rgba(35,71,120,.06);
    }
    .actionWordGuide__deadlineFocus p {
        margin: 0;
        color: inherit;
        font-weight: 750;
        line-height: 1.55;
    }
    .actionWordGuide__deadlineFocus a {
        color: var(--blue-dark);
        font-weight: 900;
        text-decoration: underline;
        text-underline-offset: 3px;
    }
    .actionWordGuide__deadlineEvent,
    .actionWordGuide__deadlineConsent {
        border: 1px solid #dce7f5;
        background: #f8fbff;
        border-radius: 12px;
        color: var(--navy);
        box-shadow: 0 8px 22px rgba(35,71,120,.06);
    }
    .actionWordGuide__deadlineEvent {
        display: grid;
        grid-template-columns: minmax(120px, 160px) 1fr;
        align-items: center;
        gap: 12px;
        padding: 12px 14px;
    }
    .actionWordGuide__deadlineDate {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 32px;
        border-radius: 999px;
        background: #eef1ff;
        color: var(--blue-dark);
        font-size: 13px;
        font-weight: 900;
        line-height: 1.2;
    }
    .actionWordGuide__deadlineEvent b {
        font-size: 15px;
        line-height: 1.35;
    }
    .actionWordGuide__deadlineConsent {
        padding: 14px;
        background: #fff;
    }
    .actionWordGuide__deadlineConsentTitle {
        color: var(--navy);
        font-size: 15px;
        font-weight: 900;
        line-height: 1.35;
    }
    .actionWordGuide__deadlineConsentGrid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-top: 10px;
    }
    .actionWordGuide__deadlineConsentItem {
        border: 1px solid #e2e9f7;
        background: #f7faff;
        border-radius: 10px;
        padding: 12px;
        min-width: 0;
    }
    .actionWordGuide__deadlineConsentItem span {
        display: block;
        color: var(--blue-dark);
        font-size: 13px;
        font-weight: 900;
        line-height: 1.25;
        margin-bottom: 6px;
    }
    .actionWordGuide__deadlineConsentItem b {
        display: block;
        color: var(--navy);
        font-size: 15px;
        line-height: 1.25;
    }
    .actionWordGuide__deadlineConsentItem p {
        color: var(--muted);
        font-size: 13px;
        line-height: 1.35;
        margin: 4px 0 0;
    }
    .actionWordGuide__step {
        border-radius: 18px;
        background: #0b1220;
        color: #d9e3f5;
        padding: 16px 18px;
        margin: 12px 0;
    }
    .actionWordGuide__step b {
        display: block;
        color: #f2d58a;
        margin-bottom: 5px;
    }
    .actionAnalysisPanel {
        border-radius: 22px;
        background: linear-gradient(135deg, #0b1220 0%, #17213a 100%);
        color: #d9e3f5;
        padding: 20px;
        margin: 16px 0;
        border: 1px solid #24314e;
        box-shadow: 0 16px 38px rgba(11,18,32,.18);
    }
    .actionAnalysisPanel h4 {
        margin: 0 0 12px;
        color: #fff;
        font-size: 20px;
        line-height: 1.25;
    }
    .actionAnalysisPanel h4:before {
        display: none;
    }
    .actionAnalysisGrid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }
    .actionAnalysisCard {
        border-radius: 16px;
        background: rgba(255,255,255,.08);
        border: 1px solid rgba(255,255,255,.14);
        padding: 13px 14px;
    }
    .actionAnalysisCard b {
        display: block;
        color: #f2d58a;
        margin-bottom: 6px;
        font-size: 14px;
    }
    .actionAnalysisCard span {
        display: block;
        color: #d9e3f5;
        line-height: 1.48;
        font-size: 14px;
    }
    .actionDecisionFlow {
        display: grid;
        gap: 8px;
        margin-top: 12px;
    }
    .actionDecisionFlow div {
        border-radius: 14px;
        background: rgba(242,213,138,.12);
        border: 1px solid rgba(242,213,138,.22);
        padding: 10px 12px;
        color: #fff;
        font-weight: 500;
        line-height: 1.45;
    }
    .actionDecisionFlow div b {
        font-weight: 900;
        color: #f2d58a;
    }
    .actionRealCompetitors {
        margin-top: 12px;
        border-radius: 18px;
        background: rgba(255,255,255,.08);
        border: 1px solid rgba(255,255,255,.14);
        padding: 14px;
    }
    .actionRealCompetitors h5 {
        margin: 0 0 10px;
        color: #f2d58a;
        font-size: 16px;
        line-height: 1.35;
    }
    .actionRealCompetitors__grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
    .actionRealCompetitors__grid div {
        border-radius: 14px;
        border: 1px solid rgba(255,255,255,.12);
        background: rgba(5,14,30,.18);
        padding: 11px 12px;
    }
    .actionRealCompetitors__grid b {
        display: block;
        margin-bottom: 5px;
        color: #ffffff;
        font-size: 14px;
        line-height: 1.35;
    }
    .actionRealCompetitors__grid p {
        margin: 0;
        color: #d9e3f5;
        font-size: 14px;
        line-height: 1.5;
    }
    .actionRealCompetitors > p {
        margin: 10px 0 0;
        color: #d9e3f5;
        font-size: 14px;
        line-height: 1.5;
    }
    .actionRealCompetitors > p b {
        color: #ffffff;
    }
    .actionRealCompetitors--light {
        margin: 12px 0;
        background: #f8fbff;
        border-color: #dbe8f8;
    }
    .actionRealCompetitors--light h5 {
        color: var(--navy);
    }
    .actionRealCompetitors--light .actionRealCompetitors__grid div {
        background: #ffffff;
        border-color: #dce7f5;
    }
    .actionRealCompetitors--light .actionRealCompetitors__grid b,
    .actionRealCompetitors--light > p b {
        color: var(--navy);
    }
    .actionRealCompetitors--light .actionRealCompetitors__grid p,
    .actionRealCompetitors--light > p {
        color: var(--text);
    }
    @media (max-width: 760px) {
        .actionRealCompetitors__grid {
            grid-template-columns: 1fr;
        }
    }
    .actionWordGuide__qa {
        border-radius: 16px;
        background: #fff;
        border: 1px solid #dce7f5;
        overflow: hidden;
    }
    .actionWordGuide__qa + .actionWordGuide__qa {
        margin-top: 10px;
    }
    .actionWordGuide__qa summary {
        cursor: pointer;
        list-style: none;
        padding: 14px 16px;
        color: var(--navy);
        font-weight: 900;
        line-height: 1.4;
    }
    .actionWordGuide__qa summary::-webkit-details-marker {
        display: none;
    }
    .actionWordGuide__qa summary:after {
        content: '+';
        float: right;
        color: var(--gold);
        font-size: 20px;
        line-height: 1;
        margin-left: 12px;
    }
    .actionWordGuide__qa[open] summary:after {
        content: '-';
    }
    .actionWordGuide__qa p {
        margin: 0;
        padding: 0 16px 16px;
        color: var(--text);
        line-height: 1.65;
    }
    .actionWordGuide__image {
        display: block;
        width: 100%;
        max-width: 760px;
        border-radius: 18px;
        border: 1px solid #dce7f5;
        box-shadow: 0 14px 36px rgba(35,71,120,.12);
        margin: 24px 0 10px;
    }
    .actionWordGuide__image + .actionWordGuide__image {
        margin-top: 14px;
    }
    .actionTask--wordGuide .actionWordGuide:first-child {
        margin-top: 0;
    }
    @media (max-width: 820px) {
        .actionChecklist,
        .actionMiniGrid,
        .guideFaqGrid,
        .actionDeepGuide__dates,
        .actionWordGuide__dates,
        .actionWordGuide__deadlineConsentGrid,
        .actionAnalysisGrid,
        .dviOrganizer__columns,
        .dviOrganizer__tips {
            grid-template-columns: 1fr;
        }
        .actionWordGuide__deadlineEvent {
            grid-template-columns: 1fr;
        }
        .dviOrganizer__header h4 {
            font-size: 21px;
        }
        .dviOrganizer__alert,
        .dviOrganizer__exampleHead {
            grid-template-columns: 1fr;
            display: grid;
        }
        .dviOrganizer__exampleHead span {
            max-width: none;
            text-align: left;
        }
        .dviOrganizer__tableWrap {
            overflow: visible;
        }
        .dviOrganizer__table {
            display: block;
            min-width: 0;
            border: 0;
        }
        .dviOrganizer__table thead {
            position: absolute;
            width: 1px;
            height: 1px;
            overflow: hidden;
            clip: rect(0 0 0 0);
        }
        .dviOrganizer__table tbody {
            display: grid;
            gap: 10px;
        }
        .dviOrganizer__table tr {
            display: block;
            border: 1px solid #d8e4f2;
            border-radius: 16px;
            background: #ffffff;
            overflow: hidden;
        }
        .dviOrganizer__table td {
            display: grid;
            grid-template-columns: 128px minmax(0, 1fr);
            gap: 8px;
            align-items: start;
            border-right: 0;
            padding: 9px 12px;
            font-size: 13px;
        }
        .dviOrganizer__table td::before {
            content: attr(data-label);
            color: var(--navy);
            font-size: 12px;
            font-weight: 900;
        }
        .dviOrganizer__table td:nth-child(9) {
            text-align: left;
            font-size: 13px;
        }
        .dviOrganizer__table tr:last-child td {
            border-bottom: 1px solid #e3ebf5;
        }
        .dviOrganizer__table tr:last-child td:last-child,
        .dviOrganizer__table td:last-child {
            border-bottom: 0;
        }
        .actionWordGuide__subblock {
            margin-left: 0;
        }
    }
    .guideContents,
    #toc.guideContents {
        background: linear-gradient(135deg, #0b1220 0%, #18233d 100%) !important;
        color: #fff !important;
        border-color: #0b1220 !important;
    }
    .guideContents h2,
    #toc.guideContents h2 {
        color: #fff !important;
    }
    .guideContents .sectionLead,
    #toc.guideContents .sectionLead {
        color: #d9e3f5 !important;
    }
    .guideContentsFull {
        gap: 14px !important;
    }
    .guideContentsMain,
    a.guideContentsMain,
    div.guideContentsMain {
        background: rgba(255,255,255,.08) !important;
        border-color: rgba(255,255,255,.14) !important;
        color: #fff !important;
        box-shadow: none !important;
    }
    .guideContentsMain strong,
    .guideContentsBody strong {
        color: #fff !important;
    }
    .guideContentsMain em,
    .guideContentsBody em {
        color: #cbd7ea !important;
    }
    .guideContentsMain--nested {
        background: rgba(255,255,255,.12) !important;
        border-color: rgba(242,213,138,.35) !important;
    }
    .guideContentsMain--nested .guideContentsNum,
    .guideContentsNum {
        background: #f2d58a !important;
        color: var(--navy) !important;
    }
    .guideContentsSteps {
        background: rgba(255,255,255,.06) !important;
        border: 1px solid rgba(255,255,255,.12) !important;
        border-radius: 22px !important;
        padding: 14px !important;
        margin-left: 0 !important;
    }
    .guideContentsStepGroup {
        background: rgba(255,255,255,.08) !important;
        border: 1px solid rgba(255,255,255,.12) !important;
        border-radius: 18px !important;
        padding: 12px !important;
    }
    .guideContentsStepGroup a {
        background: rgba(255,255,255,.08) !important;
        border-color: rgba(255,255,255,.10) !important;
        color: #e7eefb !important;
    }
    .guideContentsStepGroup a:first-child {
        background: #f2d58a !important;
        color: var(--navy) !important;
        border-color: #f2d58a !important;
    }
    .guideContentsStepGroup a:first-child b,
    .guideContentsStepGroup b {
        color: inherit !important;
    }
    .guideContentsPopover__panel {
        background: #fff !important;
    }
    .guideContentsPopover .guideContentsFull {
        background: transparent !important;
    }
    .guideContentsPopover .guideContentsSteps {
        background: #f8fbff !important;
        border-color: #dce7f5 !important;
    }
    .guideContentsPopover .guideContentsStepGroup {
        background: #fff !important;
        border-color: #dce7f5 !important;
    }
    .guideContentsPopover .guideContentsMain,
    .guideContentsPopover a.guideContentsMain,
    .guideContentsPopover div.guideContentsMain {
        background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
        border-color: #dce7f5 !important;
        color: var(--navy) !important;
    }
    .guideContentsPopover .guideContentsMain strong,
    .guideContentsPopover .guideContentsBody strong { color: var(--navy) !important; }
    .guideContentsPopover .guideContentsMain em,
    .guideContentsPopover .guideContentsBody em { color: var(--muted) !important; }
    .guideContentsPopover .guideContentsStepGroup a {
        background: #f7f9ff !important;
        border-color: #e2e9f5 !important;
        color: #334155 !important;
    }
    .guideContentsPopover .guideContentsStepGroup a:first-child {
        background: var(--navy) !important;
        color: #f2d58a !important;
        border-color: var(--navy) !important;
        border-radius: 16px 16px 0 0 !important;
    }
    .guideContentsPopover .guideContentsStepGroup a:last-child,
    .guideContentsStepGroup a:last-child {
        border-radius: 0 0 16px 16px !important;
    }
    .guideContentsPopover .guideContentsStepGroup a:only-child,
    .guideContentsStepGroup a:only-child {
        border-radius: 16px !important;
    }
    @media (max-width: 980px) {
        .actionStepHero {
            grid-template-columns: 46px minmax(0,1fr) !important;
        }
        .actionStepStatus {
            grid-column: 1 / -1;
            justify-self: start !important;
        }
        .actionSubTabs {
            grid-template-columns: 1fr !important;
            overflow: visible !important;
            padding: 0 16px 16px !important;
        }
        .actionSubTab {
            width: 100%;
        }
        .guideContentsSteps { padding: 10px !important; }
    }



    /* v10: fixed action subtabs — explicit, readable, no tab JS break */
    .actionPlanStepper {
        overflow: hidden;
    }

    .actionStepPane.is-active {
        display: block !important;
    }

    .actionStepPane:not(.is-active) {
        display: none !important;
    }

    .actionStepHero {
        grid-template-columns: 50px minmax(0, 1fr) auto !important;
        align-items: center !important;
        gap: 12px !important;
        margin-bottom: 18px !important;
    }

    .actionStepHero .actionStepNum {
        align-self: center !important;
    }

    .actionStepHero h3 {
        margin: 0 0 3px !important;
    }

    .actionStepHero p {
        font-weight: 800 !important;
        color: #3d4f67 !important;
    }

    .actionSubTabs {
        counter-reset: actionSub;
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
        gap: 12px !important;
        margin: 0 22px 20px !important;
        padding: 16px !important;
        border-radius: 24px !important;
        background: #f8fbff !important;
        border: 1px solid #dce7f5 !important;
        box-shadow: inset 0 1px 0 rgba(255,255,255,.7) !important;
        overflow: visible !important;
    }

    .actionSubTabs::before {
        content: 'Содержание этапа';
        grid-column: 1 / -1;
        display: flex;
        align-items: center;
        min-height: 26px;
        margin: 0 0 2px;
        color: #64748b;
        font-size: 12px;
        line-height: 1;
        font-weight: 900;
        letter-spacing: .08em;
        text-transform: uppercase;
    }
    .actionTaskDeadline {
        display: inline-flex;
        align-items: center;
        min-height: 30px;
        margin: -2px 0 14px;
        padding: 0 11px;
        border-radius: 999px;
        background: #fffaf0;
        border: 1px solid #ead38f;
        color: #76500b;
        font-size: 12px;
        font-weight: 900;
        line-height: 1.25;
    }

    .actionSubTab {
        counter-increment: actionSub;
        display: grid !important;
        grid-template-columns: 36px minmax(0, 1fr) !important;
        grid-template-rows: auto auto !important;
        column-gap: 10px !important;
        row-gap: 2px !important;
        align-items: center !important;
        justify-content: stretch !important;
        width: 100% !important;
        min-height: 66px !important;
        padding: 12px 13px !important;
        border-radius: 18px !important;
        border: 1px solid #dce7f5 !important;
        background: #fff !important;
        color: var(--navy) !important;
        box-shadow: 0 8px 22px rgba(35,71,120,.045) !important;
        text-align: left !important;
        font-size: 14px !important;
        line-height: 1.2 !important;
        font-weight: 900 !important;
        white-space: normal !important;
    }

    .actionSubTab::before {
        content: counter(actionSub);
        grid-column: 1;
        grid-row: 1 / span 2;
        width: 34px;
        height: 34px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #eef1ff;
        color: var(--blue-dark);
        font-size: 13px;
        font-weight: 900;
    }

    .actionSubTab::after {
        content: attr(data-deadline);
        grid-column: 2;
        grid-row: 2;
        display: block;
        margin: 0 !important;
        color: #7b8797;
        font-size: 10px;
        line-height: 1;
        font-weight: 900;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .actionSubTab:hover {
        transform: translateY(-1px);
        border-color: #b8c2ff !important;
        background: #ffffff !important;
    }

    .actionSubTab.is-active {
        background: linear-gradient(135deg, #0b1220 0%, #18233d 100%) !important;
        border-color: #0b1220 !important;
        color: #fff !important;
        box-shadow: 0 16px 36px rgba(15,23,42,.18) !important;
    }

    .actionSubTab.is-active::before {
        background: #f2d58a !important;
        color: var(--navy) !important;
    }

    .actionSubTab.is-active::after {
        color: #f2d58a !important;
    }

    .actionStepBody .actionTask[data-sub] {
        display: none !important;
    }

    .actionStepBody .actionTask[data-sub].is-sub-active {
        display: block !important;
    }

    .actionTask[data-sub].is-sub-active {
        border-radius: 24px !important;
        border: 1px solid #dce7f5 !important;
        background: #fff !important;
        box-shadow: 0 14px 38px rgba(35,71,120,.065) !important;
        padding: 20px 22px 20px 24px !important;
    }

    .actionTaskSubKicker {
        display: inline-flex !important;
        margin: 0 0 12px !important;
        border-radius: 999px !important;
        padding: 7px 10px !important;
        background: #ede9fe !important;
        color: #5b21b6 !important;
        font-size: 11px !important;
        line-height: 1 !important;
        font-weight: 900 !important;
        text-transform: uppercase !important;
        letter-spacing: .08em !important;
    }

    .actionTask[data-sub].is-sub-active h3 {
        font-size: 24px !important;
        line-height: 1.15 !important;
        margin: 0 0 8px !important;
    }

    .actionTask[data-sub].is-sub-active p {
        font-size: 15px !important;
        line-height: 1.6 !important;
    }

    .actionPlanControls {
        align-items: center !important;
    }

    .actionPlanControls .btn:disabled {
        opacity: .45;
        cursor: not-allowed;
    }

    @media (max-width: 980px) {
        .actionSubTabs {
            grid-template-columns: 1fr !important;
            margin: 0 16px 16px !important;
            padding: 14px !important;
        }

        .actionSubTab {
            min-height: 62px !important;
        }

        .actionStepHero {
            grid-template-columns: 46px minmax(0,1fr) !important;
        }

        .actionStepStatus {
            grid-column: 1 / -1 !important;
            justify-self: start !important;
        }
    }



    /* Final v10.1 fixes: Roboto, rounded stage tabs, correct substep numbering */
    html, body, button, input, textarea, select {
        font-family: Roboto, Arial, Helvetica, sans-serif !important;
    }

    .actionPlanStepper {
        border-radius: 30px !important;
        overflow: hidden !important;
        background: #fff !important;
    }

    .actionPlanStepper__tabs {
        gap: 8px !important;
        padding: 12px !important;
        background: #eef3fa !important;
        border-bottom: 1px solid #dce7f5 !important;
        border-radius: 30px 30px 0 0 !important;
    }

    .actionPlanStepper__tabs .actionTab {
        border: 1px solid #dce7f5 !important;
        border-radius: 18px !important;
        background: #fff !important;
        padding: 13px 12px !important;
        box-shadow: 0 8px 20px rgba(35,71,120,.045) !important;
    }

    .actionPlanStepper__tabs .actionTab:last-child {
        border-right: 1px solid #dce7f5 !important;
    }

    .actionPlanStepper__tabs .actionTab.is-active {
        background: linear-gradient(135deg, #0b1220 0%, #18233d 100%) !important;
        color: #fff !important;
        border-color: #0b1220 !important;
        box-shadow: 0 14px 34px rgba(15,23,42,.16) !important;
    }

    .actionPlanStepper__tabs .actionTab.is-active b {
        background: #f2d58a !important;
        color: var(--navy) !important;
    }

    .actionPlanStepper__tabs .actionTab.is-done:not(.is-active) {
        background: #f6fcf8 !important;
        border-color: #bfe8d1 !important;
    }

    .actionPlanStepper__tabs .actionTab b {
        margin-bottom: 8px !important;
    }

    .actionSubTabs {
        counter-reset: actionSub !important;
    }

    .actionSubTab {
        counter-increment: none !important;
    }

    .actionSubTab::before {
        counter-increment: actionSub !important;
        content: counter(actionSub) !important;
    }

    @media (max-width: 980px) {
        .actionPlanStepper__tabs {
            grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
            padding: 10px !important;
            gap: 8px !important;
        }

        .actionPlanStepper__tabs .actionTab {
            border-radius: 16px !important;
        }
    }


    /* V11 selected universities + compact mobile cards */
    .selectedInstitutionsSection { background: linear-gradient(180deg,#ffffff 0%,#f8fbff 100%); }
    .selectedInstitutionsSection .admissionPlanSummary { margin: 0; }
    .admissionPlanBuckets { grid-template-columns: 1fr !important; }
    .admissionPlanBucket--risk { background: rgba(255, 255, 255, .08); border-color: rgba(255,255,255,.14); }
    .admissionPlanItem { position: relative; padding-right: 38px; }
    .admissionPlanItem__remove { position:absolute; right:8px; top:8px; width:24px; height:24px; border:0; border-radius:999px; background:rgba(255,255,255,.16); color:#fff; font-weight:900; cursor:pointer; }
    .admissionPlanItem__remove:hover { background: var(--red-soft); color: var(--red); }
    .institutionV2Head { align-items: stretch; }
    .institutionV2Main { flex: 1 1 auto; min-width: 0; }
    .institutionV2Logo { width: 64px; height: 64px; }
    .institutionV2Side { min-width: 160px; }
    .institutionV2Head h3 { overflow-wrap: anywhere; }
    .institutionV2Actions { align-items: center; }
    .calendarAddBtn, .institutionDatesBtn, .guideRemoveBtn { max-width: 100%; }
    .programCodeBadge { letter-spacing: .02em; }

    .planCategoryChooser {
        display: grid;
        gap: 7px;
        min-width: 230px;
        max-width: 280px;
    }
    .planCategoryChooser__label {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        color: var(--muted2);
        font-size: 11px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: .04em;
    }
    .planCategoryChooser__recommended {
        display: inline-flex;
        align-items: center;
        min-height: 22px;
        padding: 0 8px;
        border-radius: 999px;
        background: var(--green-soft);
        color: var(--green);
        font-size: 10px;
        font-weight: 900;
        text-transform: none;
        letter-spacing: 0;
        white-space: nowrap;
    }
    .planCategoryChooser select {
        width: 100%;
        min-height: 38px;
        border-radius: 14px;
        border: 1px solid var(--line);
        background: #fff;
        color: var(--navy);
        font-weight: 900;
        padding: 0 12px;
        outline: none;
    }
    .planCategoryChooser select:focus {
        border-color: #b8c2ff;
        box-shadow: 0 0 0 3px rgba(65,88,255,.12);
    }
    @media (max-width: 980px) {
        .guideShell { padding-left: 10px; padding-right: 10px; }
        .section { padding: 16px; }
        .actionTask { padding: 12px; }
        .embeddedOptions .sectionTitleBlock h2 { font-size: 24px; }
        .admissionPlanBuckets { grid-template-columns: 1fr !important; }
        .institutionListV2 { gap: 16px; }
        .institutionCardV2 { border-radius: 20px; margin-bottom: 18px; overflow: hidden; }
        .institutionV2Head { display: grid !important; grid-template-columns: 1fr; padding: 14px; gap: 12px; }
        .institutionV2Main { gap: 10px; width: 100%; }
        .institutionV2Logo { width: 48px; height: 48px; border-radius: 14px; font-size: 20px; }
        .institutionV2MetaTop { gap: 5px; }
        .institutionV2MetaTop span { min-height: 24px; font-size: 11px; padding: 0 8px; }
        .institutionV2Head h3 { font-size: 20px; line-height: 1.18; }
        .institutionV2Side { min-width: 0; justify-items: start; }
        .institutionRole { font-size: 12px; padding: 7px 10px; }
        .institutionV2Actions { padding: 12px 14px 0; gap: 8px; display: grid; grid-template-columns: 1fr; }
        .institutionV2Actions .planCategoryChooser { width: 100%; max-width: none; min-width: 0; }
        .institutionV2Actions .calendarAddBtn, .institutionV2Actions .institutionDatesBtn, .institutionV2Actions .guideRemoveBtn { width: 100%; min-height: 42px; }
        .institutionV2QuickFacts { padding: 12px 14px; gap: 8px; }
        .factPill { padding: 10px; }
        .programsAccV2 { margin: 0 14px 14px !important; border-radius: 18px; }
        .programsAccV2__summary { padding: 13px; display: grid; grid-template-columns: 1fr auto; }
        .programsAccV2__body { padding: 12px; }
        .programCardV2 { padding: 12px; border-radius: 16px; }
        .programMetricsV2 { grid-template-columns: 1fr !important; }
    }



    /* V12 mobile/card tightening */
    .embeddedOptions { width: 100%; min-width: 0; overflow: visible; }
    .actionTask--options { padding: 0; background: transparent; border: 0; }
    .institutionCardV2 { max-width: 100%; }
    .institutionV2Head, .institutionV2Actions, .institutionV2QuickFacts, .programsAccV2 { min-width: 0; }
    @media (max-width: 560px) {
        .guideShell { padding-left: 8px !important; padding-right: 8px !important; }
        .section { padding-left: 12px !important; padding-right: 12px !important; }
        .institutionV2Main { display: grid; grid-template-columns: 48px minmax(0,1fr); align-items: start; }
        .institutionV2Head h3 { font-size: 18px !important; line-height: 1.18 !important; }
        .institutionV2Url { font-size: 12px; }
        .institutionV2MetaTop span { font-size: 10px; }
        .factPill b { font-size: 13px; }
        .admissionPlanSummary { padding: 14px; border-radius: 20px; }
        .admissionPlanBuckets { gap: 10px; }
        .guideRecalcModal { padding: 16px; border-radius: 20px; }
        .guideRollbackPanel { align-items: stretch; flex-direction: column; }
        .guideRollbackButton { width: 100%; }
        .guideRecalcModal .guideFields,
        .guideRecalcModal .guideFields--geo,
        .guideRecalcModal .guideChecks--forms,
        .guideRecalcModal .guideConditionSplit,
        .guideRecalcModal .guideEgeGrid,
        .guideRecalcPreview__stats { grid-template-columns: 1fr; }
        .guideRecalcModal .guideEgeGrid label { grid-template-columns: minmax(0,1fr) 82px; }
    }


    /* V13 selected list + institution card polish */
    .admissionPlanBucket__items { gap: 10px !important; }
    .admissionPlanItem {
        position: relative;
        display: block;
        width: 100%;
        border: 0;
        text-align: left;
        border-radius: 16px;
        background: rgba(255,255,255,.10);
        color: #fff;
        padding: 12px 40px 12px 12px !important;
        cursor: pointer;
        font-family: inherit;
    }
    .admissionPlanItem:hover { background: rgba(255,255,255,.16); }
    .admissionPlanItem b { display: block; color: #fff; font-size: 14px; line-height: 1.25; margin-bottom: 4px; }
    .admissionPlanItem span { display: block; color: #d9e3f5; font-size: 12px; line-height: 1.35; }
    .admissionPlanItem__specialties { margin-top: 8px; display: grid; gap: 4px; }
    .admissionPlanItem__specialty { color: #eef3ff; font-size: 12px; line-height: 1.25; }
    .admissionPlanItem__specialty:before { content: '• '; color: #f2d58a; }
    .admissionPlanItem__remove {
        position:absolute;
        right:8px;
        top:8px;
        width:24px;
        height:24px;
        border:0;
        border-radius:999px;
        background:rgba(255,255,255,.16);
        color:#fff;
        font-weight:900;
        cursor:pointer;
        z-index: 2;
    }
        .admissionPlanItem__remove:hover { background: var(--red-soft); color: var(--red); }
        .selectedInstitutionsSection .admissionPlanItem {
            display: block !important;
            padding: 14px !important;
        }
        .selectedInstitutionsSection .admissionPlanItem__top {
            display: grid;
            grid-template-columns: 64px minmax(0, 1fr) auto;
            gap: 12px;
            align-items: start;
            margin-bottom: 12px;
        }
        .admissionPlanItem__logo {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            background: #fff;
            color: var(--navy);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            font-size: 24px;
            font-weight: 900;
            border: 1px solid rgba(255,255,255,.24);
        }
        .admissionPlanItem__logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }
        .selectedInstitutionsSection .admissionPlanItem b {
            font-size: 20px;
            line-height: 1.18;
            margin-bottom: 6px;
        }
        .selectedInstitutionsSection .admissionPlanBucket__items {
            display: grid !important;
            grid-template-columns: 1fr !important;
            overflow: visible;
        }
        .selectedInstitutionsSection .admissionPlanItem__remove {
            position: static;
            width: 30px;
        height: 30px;
        border: 1px solid rgba(255,255,255,.24);
    }
    .selectedInstitutionsSection .admissionPlanItem__meta span,
    .selectedInstitutionsSection .admissionPlanProgram__chance { display: inline-flex; }
    .selectedInstitutionsSection .admissionPlanProgramsSpoiler__title { display: block; color: #fff; font-size: 13px; font-weight: 900; }
    .selectedInstitutionsSection .admissionPlanProgramsSpoiler__count { display: inline-flex; align-items: center; color: #d9e3f5; font-size: 12px; }
    @media (max-width: 980px) {
        .selectedInstitutionsSection .admissionPlanItem {
            display: block !important;
        }
        .selectedInstitutionsSection .admissionPlanItem__top {
            grid-template-columns: 52px minmax(0, 1fr) auto;
        }
        .admissionPlanItem__logo {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            font-size: 20px;
        }
    }
    .institutionCardV2.is-plan-target { outline: 4px solid rgba(65,88,255,.22); outline-offset: 4px; }
    .institutionV2Actions {
        display: grid !important;
        grid-template-columns: minmax(220px, 280px) minmax(180px, max-content) minmax(120px, max-content) minmax(130px, max-content);
        align-items: end !important;
        gap: 10px !important;
    }
    .institutionV2Actions .calendarAddBtn,
    .institutionV2Actions .institutionDatesBtn,
    .institutionV2Actions .guideRemoveBtn { white-space: nowrap; min-height: 40px; }
    .programCardV2__budgetPaid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0,1fr));
        gap: 10px;
        margin-top: 12px;
    }
    .programScenarioCard {
        border-radius: 16px;
        border: 1px solid #e4edf7;
        background: #f8fbff;
        padding: 12px;
    }
    .programScenarioCard--budget { background: var(--green-soft); border-color: #bfe8d1; }
    .programScenarioCard--paid { background: #fff3cf; border-color: #ead38f; }
    .programScenarioCard__head { display:flex; justify-content:space-between; gap:8px; align-items:center; margin-bottom: 8px; }
    .programScenarioCard__head strong { color: var(--navy); font-size: 14px; }
    .programScenarioGrid { display:grid; grid-template-columns: 1fr; gap: 8px; }
    .programScenarioGrid span { display:block; color: var(--muted2); font-size: 10px; font-weight: 900; text-transform: uppercase; margin-bottom: 3px; }
    .programScenarioGrid b { display:block; color: var(--navy); font-size: 14px; line-height: 1.25; }
    @media (max-width: 980px) {
        .institutionV2Actions { grid-template-columns: 1fr !important; align-items: stretch !important; }
        .institutionV2Actions .calendarAddBtn,
        .institutionV2Actions .institutionDatesBtn,
        .institutionV2Actions .guideRemoveBtn { width: 100%; }
        .programCardV2__budgetPaid { grid-template-columns: 1fr; }
        .programScenarioGrid { grid-template-columns: 1fr; }
    }

    @media print {
        body { background: #fff; }
        .topBar { display: none; }
        .guideShell { max-width: none; padding: 0; }
        .section, .cover, .institutionCard, .timelineCard, .blockCard { box-shadow: none; page-break-inside: avoid; }
        .section { border-radius: 0; margin-top: 0; page-break-before: always; }
        .cover { border-radius: 0; }
        .tableWrap { overflow: visible; }
        .programTable { min-width: 0; font-size: 11px; }
    }

    /* Institution card v14: grouped layout, contacts, recommendation, mobile fix */
    .institutionCardV2 { overflow: hidden; border: 1px solid #d8e4f2; }
    .institutionV2HeaderGrid {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 18px;
        padding: 22px 24px;
        background: linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
        border-bottom: 1px solid var(--line2);
    }
    .institutionV2Identity { display: flex; gap: 16px; align-items: flex-start; min-width: 0; }
    .institutionV2LogoLink { display: inline-flex; flex: 0 0 auto; text-decoration: none; }
    .institutionV2TitleBlock { min-width: 0; }
    .institutionV2TitleBlock h3 { margin: 0; color: var(--navy); font-size: 25px; line-height: 1.15; overflow-wrap: anywhere; }
    .institutionV2LinkRow { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
    .institutionV2LinkRow a { display: inline-flex; align-items: center; min-height: 28px; padding: 0 10px; border-radius: 999px; background: #eef1ff; color: var(--blue-dark); text-decoration: none; font-weight: 900; font-size: 12px; }
    .institutionV2LinkRow a:hover { background: #dfe5ff; }
    .institutionV2StatusPanel { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; min-width: 170px; }

    .institutionV2InfoGrid { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 12px; padding: 16px 24px; background: #fff; }
    .institutionInfoBox { border-radius: 18px; background: #f8fbff; border: 1px solid #e3edf8; padding: 14px; min-width: 0; }
    .institutionInfoBox--accent { background: #fffaf0; border-color: #ead38f; }
    .institutionInfoBox__title { color: var(--navy); font-weight: 900; font-size: 15px; margin-bottom: 10px; }
    .institutionInfoList { display: grid; gap: 8px; }
    .institutionInfoList--two { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .institutionInfoList div { min-width: 0; }
    .institutionInfoList span { display: block; color: var(--muted2); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 3px; }
    .institutionInfoList b { display: block; color: var(--navy); font-size: 13px; line-height: 1.3; word-break: break-word; }
    .institutionInfoList a { color: var(--blue-dark); text-decoration: none; }
    .institutionInfoList a:hover { text-decoration: underline; }
    .institutionCheckLinks { display: flex; flex-wrap: wrap; gap: 8px; }
    .institutionCheckLinks a, .institutionCheckLinks span { display: inline-flex; min-height: 30px; align-items: center; padding: 0 10px; border-radius: 999px; background: #fff; border: 1px solid #ead38f; color: #76500b; font-weight: 900; font-size: 12px; text-decoration: none; }

    .institutionScenarioPanel { margin: 0 24px 18px; padding: 14px; border: 1px solid #dce7f5; border-radius: 14px; background: #f9fbff; }
    .institutionScenarioPanel__head { display: flex; gap: 12px; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
    .institutionScenarioPanel__head strong { display: block; color: var(--navy); font-size: 16px; font-weight: 900; }
    .institutionScenarioPanel__head span { display: block; margin-top: 3px; color: var(--muted2); font-size: 13px; line-height: 1.35; }
    .institutionScenarioPanel__head .institutionCheckBtn { width: auto; flex: 0 0 auto; white-space: nowrap; text-align: center; }
    .institutionScenarioPanel__grid { display: grid; grid-template-columns: minmax(0,1.35fr) minmax(0,1fr); gap: 12px; }
    .institutionScenarioPanel__block { min-width: 0; padding: 12px; border-radius: 12px; background: #fff; border: 1px solid #e5edf7; }
    .institutionScenarioPanel__block > b { display: block; margin-bottom: 9px; color: var(--navy); font-size: 13px; font-weight: 900; }
    .institutionScenarioSummary { display: flex; flex-wrap: wrap; gap: 8px; }
    .institutionScenarioScore { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 2px 10px; align-items: center; margin-bottom: 9px; padding: 9px 10px; border-radius: 10px; background: #f8fafc; border: 1px solid #e2e8f0; }
    .institutionScenarioScore span { color: #64748b; font-size: 12px; font-weight: 800; line-height: 1.25; }
    .institutionScenarioScore b { color: var(--navy); font-size: 18px; font-weight: 900; line-height: 1; }
    .institutionScenarioScore small { grid-column: 1 / -1; color: #64748b; font-size: 11px; line-height: 1.3; }
    .institutionScenarioPill { display: inline-flex; align-items: center; gap: 6px; min-height: 30px; padding: 6px 10px; border-radius: 9px; border: 1px solid #dce7f5; background: #f8fbff; color: #25324a; font-size: 12px; font-weight: 900; line-height: 1.25; }
    .institutionScenarioPill--quota { border-color: #9dc2f7; background: #eef6ff; color: #123c75; }
    .institutionScenarioPill em { color: #64748b; font-style: normal; font-weight: 800; }
    .institutionScenarioEmpty { padding: 9px 10px; border-radius: 9px; border: 1px dashed #cbd5e1; background: #f8fafc; color: #64748b; font-size: 12px; font-weight: 800; }
    .institutionScenarioPanel .guideFieldHint { margin-top: 8px; color: #64748b; font-size: 12px; line-height: 1.35; font-weight: 700; }
    .institutionScenarioPanel .guideChecks { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 8px; }
    .institutionScenarioPanel .guideChecks label { min-width: 0; margin: 0; padding: 9px 10px; border: 1px solid #dce7f5; border-radius: 10px; background: #f8fbff; color: #25324a; font-size: 12px; font-weight: 800; line-height: 1.25; }
    .institutionScenarioPanel .guideChecks input { margin-right: 6px; }
    .institutionScenarioPanel .guideChecks label:has(input:checked) { border-color: #9dc2f7; background: #eef6ff; color: #123c75; }

    .institutionV2Actions--grouped { display: grid; grid-template-columns: minmax(240px, 300px) minmax(0, 1fr); gap: 12px; align-items: end; padding: 0 24px 18px; }
    .institutionActionGroup { min-width: 0; }
    .institutionActionGroup--buttons { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: flex-start; }
    .institutionActionGroup--buttons .calendarAddBtn,
    .institutionActionGroup--buttons .institutionDatesBtn,
    .institutionActionGroup--buttons .guideRemoveBtn { min-height: 40px; white-space: normal; text-align: center; }
    .planCategoryChooser { min-width: 0 !important; max-width: none !important; }
    .planCategoryChooser__label { align-items: flex-start; }
    .planCategoryChooser__recommended { white-space: normal; text-align: right; }

    .specialtyCardV2 { border-color: #dce7f5; }
    .programCardV2__summary {
        position: relative;
        margin-bottom: 0;
        padding-right: 42px;
        cursor: pointer;
        list-style: none;
    }
    .programCardV2__summary::-webkit-details-marker {
        display: none;
    }
    .programCardV2__summary::after {
        content: '+';
        position: absolute;
        top: 0;
        right: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: #eef1ff;
        color: var(--blue-dark);
        font-size: 18px;
        font-weight: 900;
        line-height: 1;
    }
    .programCardV2[open] > .programCardV2__summary {
        margin-bottom: 12px;
    }
    .programCardV2[open] > .programCardV2__summary::after {
        content: '−';
    }
    .programCardV2__details {
        border-top: 1px solid #edf2f7;
        padding-top: 12px;
    }
    .programCodeBadge { letter-spacing: .02em; }
    .programCardV2__budgetPaid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 12px; }
    .programScenarioCard { border-radius: 16px; border: 1px solid #e5eaf0; background: #fbfdff; padding: 13px; }
    .programScenarioCard--budget { background: #f6fcf8; border-color: #bfe8d1; }
    .programScenarioCard--paid { background: #fffaf0; border-color: #ead38f; }
    .programScenarioCard__head { display: flex; justify-content: space-between; gap: 10px; align-items: center; margin-bottom: 10px; }
    .programScenarioCard__head .chanceBadge {
        white-space: normal;
        text-align: center;
        justify-content: center;
        max-width: 180px;
    }
    .programScenarioCard__head strong { color: var(--navy); }
    .programScenarioCard__head strong small {
        display: block;
        margin-top: 2px;
        color: #64748b;
        font-size: 10px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: .04em;
    }
    .programScenarioGrid { display: grid; grid-template-columns: 1fr; gap: 8px; }
    .programScenarioGrid div { border-radius: 12px; background: rgba(255,255,255,.78); border: 1px solid rgba(226,232,240,.8); padding: 9px; }
    .programScenarioGrid span { display: block; color: var(--muted2); font-size: 10px; font-weight: 900; text-transform: uppercase; margin-bottom: 3px; }
    .programScenarioGrid b { display: block; color: var(--navy); font-size: 13px; }
    .programScenarioMiniStatus {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 26px;
        padding: 4px 8px;
        border-radius: 999px;
        border: 1px solid #e2e8f0;
        background: #fff;
        color: #475569;
        font-size: 11px;
        font-weight: 900;
        line-height: 1.2;
        text-align: center;
    }
    .programScenarioMiniStatus.chance-reliable,
    .programScenarioMiniStatus.chance-high,
    .programScenarioMiniStatus.chance-aa_high {
        background: var(--green-soft);
        border-color: #bbf7d0;
        color: var(--green);
    }
    .programScenarioMiniStatus.chance-backup,
    .programScenarioMiniStatus.chance-medium,
    .programScenarioMiniStatus.chance-bb_real {
        background: #fff3cf;
        border-color: #f7d976;
        color: #76500b;
    }
    .programScenarioMiniStatus.chance-risk,
    .programScenarioMiniStatus.chance-cc_risk {
        background: var(--orange-soft);
        border-color: #fed7aa;
        color: var(--orange);
    }
    .programScenarioMiniStatus.chance-unlikely,
    .programScenarioMiniStatus.chance-dd_no {
        background: var(--red-soft);
        border-color: #fecaca;
        color: var(--red);
    }
    .programScenarioMiniStatus.chance-unknown,
    .programScenarioMiniStatus.chance-manual,
    .programScenarioMiniStatus.chance-requires_check {
        background: #eef1ff;
        border-color: #dbe3ff;
        color: var(--blue-dark);
    }
    .programScenarioStrip {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-top: 10px;
        padding: 10px 12px;
        border-radius: 14px;
        border: 1px solid #dbe7f4;
        background: #f8fbff;
    }
    .programScenarioStrip__main {
        min-width: 0;
    }
    .programScenarioStrip__main span {
        display: block;
        color: #64748b;
        font-size: 10px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: .03em;
    }
    .programScenarioStrip__main b {
        display: block;
        color: var(--navy);
        font-size: 13px;
        line-height: 1.25;
    }
    .programScenarioStrip__meta {
        flex: 0 0 auto;
        color: #475569;
        font-size: 12px;
        font-weight: 800;
        line-height: 1.3;
        text-align: right;
    }
    .programScenarioChips {
        display: flex;
        flex-wrap: wrap;
        gap: 7px;
        margin-top: 8px;
    }
    .programScenarioChip {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        min-height: 28px;
        padding: 5px 9px;
        border-radius: 999px;
        border: 1px solid #e2e8f0;
        background: #fff;
        color: #334155;
        font-size: 11px;
        line-height: 1.2;
    }
    .programScenarioChip--quota,
    .programScenarioChip.is-selected {
        border-color: #c7d2fe;
        background: #f4f7ff;
        color: #1e3a8a;
    }
    .programScenarioChip b,
    .programScenarioChip em {
        font-size: inherit;
        line-height: inherit;
    }
    .programScenarioChip b {
        font-weight: 900;
    }
    .programScenarioChip em {
        color: inherit;
        font-style: normal;
        font-weight: 700;
        opacity: .84;
    }
    .programFormTabs {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin: 8px 0 12px;
    }
    .programFormTab {
        min-height: 34px;
        border-radius: 999px;
        border: 1px solid #dbe7f4;
        background: #fff;
        color: #475569;
        padding: 0 12px;
        font-weight: 900;
        cursor: pointer;
    }
    .programFormTab.is-active {
        background: #eef1ff;
        border-color: #c7d2fe;
        color: var(--blue-dark);
    }
    .programFormPane {
        display: none;
    }
    .programFormPane.is-active {
        display: block;
    }
    .programInfoActions {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin: 0 0 14px;
    }
    .programInfoBtn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 34px;
        border: 0;
        border-radius: 999px;
        background: #eef1ff;
        color: var(--blue-dark);
        padding: 0 13px;
        font: inherit;
        font-size: 12px;
        font-weight: 900;
        cursor: pointer;
    }
    .programInfoBtn:hover {
        background: #dfe5ff;
    }
    .programMetricsV2 b.programSubjectLine {
        display: flex;
        flex-wrap: wrap;
        gap: 7px;
        align-items: center;
    }
    .programSubjectLine__text {
        min-width: 0;
        overflow-wrap: anywhere;
    }
    .programEntranceLink {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 26px;
        border: 0;
        border-radius: 999px;
        background: #eef1ff;
        color: var(--blue-dark);
        padding: 0 9px;
        font: inherit;
        font-size: 12px;
        font-weight: 900;
        cursor: pointer;
        text-decoration: none;
    }
    .programEntranceLink:hover {
        background: #dfe5ff;
    }
    .programEntranceExamList {
        display: grid;
        gap: 10px;
        margin-top: 14px;
    }
    .programEntranceExamItem {
        border-radius: 16px;
        border: 1px solid #dbe7f4;
        background: #fff;
        padding: 13px 14px;
    }
    .programEntranceExamItem strong {
        display: block;
        color: var(--navy);
        font-size: 15px;
        line-height: 1.3;
    }
    .programEntranceExamItem span {
        display: block;
        margin-top: 5px;
        color: #64748b;
        font-weight: 800;
        line-height: 1.4;
    }
    .specialtyProgramsBackdrop {
        position: fixed;
        inset: 0;
        z-index: 9998;
        background: rgba(9, 18, 34, .58);
    }
    .specialtyProgramsModal {
        position: fixed;
        z-index: 9999;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: min(920px, calc(100vw - 28px));
        max-height: calc(100vh - 40px);
        overflow: hidden;
        border-radius: 24px;
        border: 1px solid #dbe7f4;
        background: #fff;
        box-shadow: 0 24px 70px rgba(15, 23, 42, .28);
    }
    .specialtyProgramsModal[hidden],
    .specialtyProgramsBackdrop[hidden] {
        display: none;
    }
    .specialtyProgramsModal__head {
        display: flex;
        justify-content: space-between;
        gap: 14px;
        align-items: flex-start;
        padding: 20px 22px 16px;
        border-bottom: 1px solid #e7eef7;
        background: #f8fbff;
    }
    .specialtyProgramsModal__head h3 {
        margin: 0;
        color: var(--navy);
        font-size: 22px;
        line-height: 1.2;
    }
    .specialtyProgramsModal__head span {
        display: block;
        margin-bottom: 5px;
        color: #64748b;
        font-size: 12px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: .04em;
    }
    .specialtyProgramsModal__close {
        flex: 0 0 auto;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 0;
        background: #e9eef6;
        color: var(--navy);
        font-size: 22px;
        font-weight: 900;
        cursor: pointer;
    }
    .specialtyProgramsModal__body {
        max-height: calc(100vh - 150px);
        overflow: auto;
        padding: 18px 22px 22px;
    }
    .specialtyProgramsIntro,
    .specialtyProgramsMode {
        border-radius: 18px;
        border: 1px solid #dbe7f4;
        background: #f8fbff;
        padding: 14px;
        color: #38465a;
        line-height: 1.48;
    }
    .specialtyProgramsMode {
        margin-top: 10px;
        background: #fffaf0;
        border-color: #ead38f;
    }
    .specialtyProgramsIntro strong,
    .specialtyProgramsMode strong {
        display: block;
        color: var(--navy);
        margin-bottom: 5px;
    }
    .specialtyProgramsLinks {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 10px;
    }
    .specialtyProgramsLink {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 34px;
        border-radius: 999px;
        background: #eef1ff;
        color: var(--blue-dark);
        padding: 0 13px;
        font-size: 12px;
        font-weight: 900;
        text-decoration: none;
    }
    .specialtyProgramsLink:hover {
        background: #dfe5ff;
        color: var(--blue-dark);
    }
    .specialtyProfileList {
        display: grid;
        gap: 10px;
        margin-top: 14px;
    }
    .specialtyProfileCard {
        border-radius: 18px;
        border: 1px solid #dbe7f4;
        background: #fff;
        overflow: hidden;
    }
    .specialtyProfileCard summary {
        cursor: pointer;
        padding: 14px 16px;
        color: var(--navy);
        font-weight: 900;
        list-style: none;
        background: #f8fbff;
    }
    .specialtyProfileCard summary::-webkit-details-marker {
        display: none;
    }
    .specialtyProfileCard summary::after {
        content: '+';
        float: right;
        color: var(--blue-dark);
        font-size: 18px;
    }
    .specialtyProfileCard[open] summary::after {
        content: '−';
    }
    .specialtyProfileCard__body {
        display: grid;
        gap: 12px;
        padding: 14px 16px 16px;
    }
    .specialtyProfileSection {
        border-radius: 16px;
        border: 1px solid #edf1f6;
        background: #fbfdff;
        padding: 13px;
        color: #243244;
        line-height: 1.55;
        font-size: 14px;
    }
    .specialtyProfileSection h4 {
        margin: 0 0 8px;
        color: var(--navy);
        font-size: 15px;
    }
    .specialtyProfileSection p {
        margin: 0 0 9px;
    }
    .specialtyProfileSection p:last-child {
        margin-bottom: 0;
    }
    .specialtyProgramsEmpty {
        border-radius: 18px;
        border: 1px dashed #cbd5e1;
        color: #64748b;
        padding: 14px;
        background: #f8fafc;
    }
    .programScenarioExplain {
        margin-top: 12px;
        border-radius: 14px;
        border: 1px solid #dbe7f4;
        background: #fbfdff;
        padding: 12px;
    }
    .programScenarioDetails {
        padding: 0;
        overflow: hidden;
    }
    .programScenarioDetails__summary {
        position: relative;
        display: flex;
        justify-content: space-between;
        gap: 12px;
        align-items: center;
        min-height: 42px;
        padding: 10px 42px 10px 12px;
        cursor: pointer;
        list-style: none;
    }
    .programScenarioDetails__summary::-webkit-details-marker {
        display: none;
    }
    .programScenarioDetails__summary::after {
        content: '+';
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: #eef1ff;
        color: var(--blue-dark);
        font-weight: 900;
    }
    .programScenarioDetails[open] .programScenarioDetails__summary::after {
        content: '−';
    }
    .programScenarioDetails__summary strong,
    .programScenarioDetails__summary span {
        display: block;
    }
    .programScenarioDetails__summary strong {
        color: var(--navy);
        font-size: 13px;
        line-height: 1.25;
    }
    .programScenarioDetails__summary span {
        color: #64748b;
        font-size: 12px;
        line-height: 1.3;
        text-align: right;
    }
    .programScenarioDetails[open] .programScenarioExplain__grid {
        padding: 0 12px 12px;
    }
    .programScenarioExplain__head {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        align-items: flex-start;
        margin-bottom: 9px;
    }
    .programScenarioExplain__head strong {
        display: block;
        color: var(--navy);
        font-size: 14px;
        line-height: 1.25;
    }
    .programScenarioExplain__head span {
        display: block;
        max-width: 620px;
        color: #64748b;
        font-size: 12px;
        line-height: 1.35;
    }
    .programScenarioExplain__grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }
    .programScenarioExplain__card {
        min-width: 0;
        border-radius: 10px;
        border: 1px solid #e4edf7;
        background: #fff;
        padding: 10px;
    }
    .programScenarioExplain__card--quota {
        border-color: #c7d2fe;
        background: #f8f9ff;
    }
    .programScenarioExplain__card.is-muted {
        border-style: dashed;
        background: #f8fafc;
    }
    .programScenarioExplain__card b,
    .programScenarioExplain__card span,
    .programScenarioExplain__card small {
        display: block;
    }
    .programScenarioExplain__card b {
        color: var(--navy);
        font-size: 13px;
        line-height: 1.25;
    }
    .programScenarioExplain__card span {
        margin-top: 5px;
        color: #334155;
        font-size: 12px;
        line-height: 1.35;
    }
    .programScenarioExplain__card small {
        margin-top: 6px;
        color: #64748b;
        font-size: 11px;
        line-height: 1.3;
    }
    .programQuotaBlock {
        margin-top: 12px;
        border-radius: 18px;
        border: 1px solid #dbe7f4;
        background: #f8fbff;
        padding: 13px;
    }
    .programQuotaDetails {
        padding: 0;
        overflow: hidden;
    }
    .programQuotaBlock__summary {
        position: relative;
        display: flex;
        justify-content: space-between;
        gap: 12px;
        align-items: center;
        min-height: 44px;
        padding: 10px 42px 10px 13px;
        cursor: pointer;
        list-style: none;
    }
    .programQuotaBlock__summary::-webkit-details-marker {
        display: none;
    }
    .programQuotaBlock__summary::after {
        content: '+';
        position: absolute;
        right: 13px;
        top: 50%;
        transform: translateY(-50%);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: #eef1ff;
        color: var(--blue-dark);
        font-weight: 900;
    }
    .programQuotaBlock[open] .programQuotaBlock__summary::after {
        content: '−';
    }
    .programQuotaBlock__summary strong {
        color: var(--navy);
        font-size: 14px;
        line-height: 1.25;
    }
    .programQuotaBlock__summary span {
        color: #64748b;
        font-size: 12px;
        font-weight: 800;
        line-height: 1.3;
    }
    .programQuotaBlock__head {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        align-items: flex-start;
        margin-bottom: 10px;
    }
    .programQuotaBlock__head strong {
        display: block;
        color: var(--navy);
        font-size: 15px;
        line-height: 1.25;
    }
    .programQuotaBlock__head span {
        display: block;
        margin-top: 3px;
        color: #64748b;
        font-size: 12px;
        line-height: 1.35;
    }
    .programQuotaGrid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
    }
    .programQuotaDetails .programQuotaGrid {
        padding: 0 13px 13px;
    }
    .programQuotaCard {
        border-radius: 14px;
        background: #fff;
        border: 1px solid #e4edf7;
        padding: 10px;
        min-width: 0;
    }
    .programQuotaCard--general {
        border-color: #c7d2fe;
        background: #f8f9ff;
    }
    .programQuotaCard__title {
        color: var(--navy);
        font-weight: 900;
        margin-bottom: 7px;
        line-height: 1.25;
    }
    .programQuotaRows {
        display: grid;
        gap: 5px;
    }
    .programQuotaRows div {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        border-top: 1px solid #eef2f7;
        padding-top: 5px;
    }
    .programQuotaRows span {
        color: #64748b;
        font-size: 12px;
        line-height: 1.3;
    }
    .programQuotaRows b {
        color: var(--navy);
        font-size: 12px;
        line-height: 1.3;
        text-align: right;
        white-space: nowrap;
    }
    .programQuotaHint {
        margin-top: 7px;
        color: #64748b;
        font-size: 12px;
        line-height: 1.35;
    }

    @media (max-width: 980px) {
        .institutionV2HeaderGrid { grid-template-columns: 1fr; padding: 14px; gap: 12px; }
        .institutionV2Identity { gap: 10px; }
        .institutionV2TitleBlock h3 { font-size: 20px; }
        .institutionV2StatusPanel { align-items: flex-start; min-width: 0; }
        .institutionV2InfoGrid { grid-template-columns: 1fr; padding: 12px 14px; gap: 10px; }
        .institutionInfoList--two { grid-template-columns: 1fr 1fr; }
        .institutionV2Actions--grouped { grid-template-columns: 1fr; padding: 0 14px 14px; }
        .institutionScenarioPanel { margin: 0 14px 14px; }
        .institutionScenarioPanel__head, .institutionScenarioPanel__grid { grid-template-columns: 1fr; }
        .institutionScenarioPanel__head { display: grid; }
        .institutionScenarioPanel__head .institutionCheckBtn { width: 100%; white-space: normal; }
        .institutionActionGroup--buttons { display: grid; grid-template-columns: 1fr; gap: 8px; }
        .institutionActionGroup--buttons .calendarAddBtn,
        .institutionActionGroup--buttons .institutionDatesBtn,
        .institutionActionGroup--buttons .guideRemoveBtn { width: 100%; justify-content: center; }
        .programCardV2__budgetPaid, .programMetricsV2, .programScenarioExplain__grid, .programQuotaGrid { grid-template-columns: 1fr; }
        .programScenarioGrid { grid-template-columns: 1fr; }
        .programsAccV2__body { padding: 12px; }
    }
    @media (max-width: 560px) {
        .institutionInfoList--two, .programScenarioGrid { grid-template-columns: 1fr; }
        .institutionV2Logo { width: 48px; height: 48px; border-radius: 14px; }
        .institutionV2MetaTop span { font-size: 10px; }
        .programsAccV2__body,
        .programListV2,
        .admissionPlanProgramList {
            overflow-x: auto;
            overflow-y: hidden;
            -webkit-overflow-scrolling: touch;
            overscroll-behavior-x: contain;
            scrollbar-width: thin;
        }
        .programsAccV2__body {
            margin-left: -12px;
            margin-right: -12px;
            padding-left: 12px;
            padding-right: 12px;
        }
        .programCardV2,
        .admissionPlanProgram {
            min-width: 520px;
        }
        .specialtyProgramsModal {
            width: calc(100vw - 18px);
            border-radius: 18px;
        }
        .specialtyProgramsModal__head,
        .specialtyProgramsModal__body {
            padding-left: 14px;
            padding-right: 14px;
        }
        .admissionPlanProgramList {
            padding-bottom: 8px;
        }
    }

    .institutionCheckLinks--buttons {
        display: grid;
        gap: 8px;
    }

    .institutionCheckBtn {
        width: 100%;
        border: 0;
        border-radius: 14px;
        background: #eef1ff;
        color: var(--blue-dark);
        padding: 10px 12px;
        text-align: left;
        font: inherit;
        font-size: 13px;
        font-weight: 900;
        cursor: pointer;
        line-height: 1.25;
    }

    .institutionCheckBtn:hover {
        background: #dfe6ff;
    }

    .guideInfoModalList {
        margin: 12px 0 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 9px;
    }

    .guideInfoModalList li {
        border-radius: 14px;
        background: #f8fafc;
        border: 1px solid var(--line2);
        padding: 11px 12px;
        color: #38465a;
    }

    .guideInfoModalList strong {
        color: var(--navy);
    }

    .guideInfoModalBadgeRow {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin: 12px 0;
    }

    .guideInfoModalBadge {
        display: inline-flex;
        border-radius: 999px;
        padding: 7px 10px;
        background: #eef1ff;
        color: var(--blue-dark);
        font-size: 12px;
        font-weight: 900;
    }

    .guideInfoModalBadge--green {
        background: var(--green-soft);
        color: var(--green);
    }

    .guideInfoModalBadge--red {
        background: var(--red-soft);
        color: var(--red);
    }

    .guideInfoModalStatus {
        display: grid;
        gap: 5px;
        margin-top: 12px;
        border-radius: 16px;
        border: 1px solid var(--line2);
        background: #f8fafc;
        padding: 12px 14px;
    }

    .guideInfoModalStatus strong {
        color: var(--navy);
        font-size: 17px;
    }

    .guideInfoModalStatus span {
        color: var(--muted);
        font-size: 14px;
    }

    .guideInfoModalStatus--green {
        background: var(--green-soft);
        border-color: #bfe8d1;
    }

    .guideInfoModalStatus--green strong {
        color: var(--green);
    }

    .guideInfoModalStatus--red {
        background: var(--red-soft);
        border-color: #fecaca;
    }

    .guideInfoModalStatus--red strong {
        color: var(--red);
    }

    .guideNedoborModalList {
        display: grid;
        gap: 14px;
        margin-top: 14px;
    }

    .guideNedoborModalYear {
        border-radius: 18px;
        border: 1px solid #ead38f;
        background: #fffaf0;
        padding: 14px;
    }

    .guideNedoborModalYear__title {
        color: #76500b;
        font-weight: 900;
        margin-bottom: 10px;
    }

    .guideNedoborModalItem {
        border-radius: 16px;
        border: 1px solid #f0e0b0;
        background: #fff;
        padding: 12px;
        margin-top: 10px;
    }

    .guideNedoborModalItem__type {
        color: var(--navy);
        font-weight: 900;
        margin-bottom: 8px;
    }

    .guideNedoborModalItem__text {
        color: #38465a;
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .guideNedoborModalItem__text p {
        margin: 0 0 8px;
    }

    .guideNedoborModalPrograms {
        display: grid;
        gap: 8px;
    }

    .guideNedoborModalProgram {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto auto;
        gap: 10px;
        align-items: center;
        border-top: 1px solid #edf1f6;
        padding-top: 8px;
        font-size: 13px;
    }

    .guideNedoborModalProgram:first-child {
        border-top: 0;
        padding-top: 0;
    }

    .guideNedoborModalProgram b,
    .guideNedoborModalProgram span {
        display: block;
    }

    .guideNedoborModalProgram b {
        color: var(--navy);
    }

    .guideNedoborModalProgram span {
        color: var(--muted);
    }

    .guideNedoborModalProgram em {
        color: var(--muted);
        font-style: normal;
        font-weight: 800;
        white-space: nowrap;
    }

    .guideNedoborModalProgram a {
        color: var(--blue-dark);
        font-weight: 900;
        text-decoration: none;
    }

    .guideTargetModalIntro {
        margin: 0 0 14px;
        border-radius: 16px;
        background: #f8fbff;
        border: 1px solid #dce7f5;
        padding: 12px 14px;
        color: #38465a;
        font-size: 14px;
        line-height: 1.5;
    }

    .guideTargetModalIntro a {
        color: var(--blue-dark);
        font-weight: 900;
        text-decoration: none;
    }

    .guideTargetModalList {
        display: grid;
        gap: 10px;
    }

    .guideTargetModalItem {
        display: grid;
        gap: 9px;
        border-radius: 16px;
        background: #fff;
        border: 1px solid #dce7f5;
        padding: 13px 14px;
    }

    .guideTargetModalItem__title {
        color: var(--navy);
        font-size: 16px;
        font-weight: 900;
        line-height: 1.35;
    }

    .guideTargetModalItem__meta {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .guideTargetModalItem__meta span {
        border-radius: 999px;
        background: #eef1ff;
        color: var(--blue-dark);
        padding: 6px 9px;
        font-size: 12px;
        font-weight: 900;
    }

    .guideTargetModalItem__text {
        display: grid;
        gap: 5px;
        color: #38465a;
        font-size: 13px;
        line-height: 1.45;
    }

    .guideTargetModalItem__links {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 2px;
    }

    .guideInstitutionQuestionIntro {
        margin: 0 0 14px;
        color: var(--muted);
        font-size: 14px;
        line-height: 1.45;
    }

    .guideInstitutionQuestionList {
        display: grid;
        gap: 12px;
    }

    .guideInstitutionQuestionItem {
        display: grid;
        grid-template-columns: 96px minmax(0, 1fr);
        gap: 14px;
        border-radius: 18px;
        border: 1px solid #dce7f5;
        background: #f8fbff;
        padding: 14px 15px;
    }

    .guideInstitutionQuestionItem__date {
        border-right: 1px solid #dce7f5;
        color: var(--muted2);
        font-size: 12px;
        line-height: 1.25;
        font-weight: 900;
        text-transform: uppercase;
    }

    .guideInstitutionQuestionItem__date b {
        display: block;
        color: var(--navy);
        font-size: 14px;
        margin-bottom: 4px;
    }

    .guideInstitutionQuestionItem__meta {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 8px;
        color: var(--muted2);
        font-size: 12px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: .04em;
    }

    .guideInstitutionQuestionItem__question {
        color: var(--navy);
        font-weight: 900;
        line-height: 1.4;
        margin-bottom: 10px;
    }

    .guideInstitutionQuestionItem__answer {
        color: #38465a;
        font-size: 14px;
        line-height: 1.55;
    }

    .guideInstitutionQuestionItem__answer p:last-child { margin-bottom: 0; }
    .guideInstitutionQuestionLinks { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
    .guideInstitutionQuestionLink { display: inline-flex; }

    @media (max-width: 640px) {
        .guideInstitutionQuestionItem {
            grid-template-columns: 1fr;
        }

        .guideInstitutionQuestionItem__date {
            border-right: 0;
            border-bottom: 1px solid #dce7f5;
            padding-bottom: 8px;
        }
    }

    .guideInfoModalNotice {
        margin-top: 12px;
        border-radius: 16px;
        background: #fff8e5;
        border: 1px solid #ead38f;
        color: #76500b;
        padding: 12px 14px;
        font-size: 13px;
        line-height: 1.45;
    }

    .institutionListV2--bucketed {
        gap: 20px;
    }

    .institutionChanceBucket {
        margin: 8px 0 -6px;
        border-radius: 22px;
        padding: 18px 20px;
        background: #f8fafc;
        border: 1px solid var(--line2);
        box-shadow: 0 12px 32px rgba(35,71,120,.055);
    }

    .institutionChanceBucket__label {
        color: var(--navy);
        font-size: 22px;
        line-height: 1.2;
        font-weight: 900;
        margin-bottom: 5px;
    }

    .institutionChanceBucket__desc {
        color: var(--muted);
        font-size: 14px;
        line-height: 1.45;
    }

    .institutionChanceBucket--safe {
        background: var(--green-soft);
        border-color: #bfe8d1;
    }

    .institutionChanceBucket--real {
        background: #fff3cf;
        border-color: #ead38f;
    }

    .institutionChanceBucket--risk {
        background: var(--orange-soft);
        border-color: #fed7aa;
    }

    .institutionChanceBucket--check {
        background: #eef1ff;
        border-color: #dbe3ff;
    }

    .institutionChanceBucket--request {
        background: #f3e8ff;
        border-color: #d8b4fe;
    }

    .chance-competition_check {
        background: #fff7ed;
        color: #9a3412;
        border: 1px solid #fed7aa;
    }

    .chance-too_low {
        background: var(--red-soft);
        color: var(--red);
    }
    .institutionChanceBucket--competition {
        background: #fff7ed;
        border-color: #fed7aa;
    }

    .programCompetitionCheckNotice {
        margin-top: 12px;
        border-radius: 16px;
        background: #fff7ed;
        border: 1px solid #fed7aa;
        padding: 12px 14px;
        color: #9a3412;
    }

    .programCompetitionCheckNotice strong {
        display: block;
        font-size: 13px;
        font-weight: 900;
        margin-bottom: 4px;
        color: #7c2d12;
    }

    .programCompetitionCheckNotice span {
        display: block;
        font-size: 13px;
        line-height: 1.45;
    }

    .chance-good {
        background: var(--green-soft);
        color: var(--green);
    }

    .chance-competition_check {
        background: #fff7ed;
        color: #9a3412;
        border: 1px solid #fed7aa;
    }

    .chance-too_low {
        background: var(--red-soft);
        color: var(--red);
    }

    .programHistoryMini--compact {
        margin-top: 10px;
        padding: 10px 12px;
        border-radius: 14px;
    }

    .programHistoryMini__top {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: baseline;
        margin-bottom: 8px;
    }

    .programHistoryMini__hint {
        color: var(--muted2);
        font-size: 11px;
        font-weight: 800;
    }

    .programHistoryCompactRows {
        display: grid;
        gap: 6px;
    }

    .programHistoryCompactRow {
        display: grid;
        grid-template-columns: 52px minmax(0, 1fr) minmax(0, 1fr);
        gap: 8px;
        align-items: center;
        padding: 6px 8px;
        border-radius: 10px;
        background: #fff;
        border: 1px solid rgba(124, 58, 237, .12);
        color: var(--muted);
        font-size: 12px;
    }

    .programHistoryCompactRow b {
        color: var(--navy);
        font-weight: 900;
    }

    .programHistoryCompactRow span {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    @media (max-width: 640px) {
        .programHistoryCompactRow {
            grid-template-columns: 48px minmax(0, 1fr);
        }

        .programHistoryCompactRow span {
            white-space: normal;
        }
    }

    .programCompetitionNotice {
        margin-top: 12px;
        border-radius: 16px;
        background: #eef1ff;
        border: 1px solid #dbe3ff;
        padding: 12px 14px;
        color: #38465a;
    }

    .programCompetitionNotice strong {
        display: block;
        color: var(--navy);
        margin-bottom: 4px;
        font-size: 13px;
        font-weight: 900;
    }

    .programCompetitionNotice span {
        display: block;
        font-size: 13px;
        line-height: 1.45;
    }

    .programCompetitionNotice--ukrup {
        background: #fff8e5;
        border-color: #ead38f;
        color: #76500b;
    }

    .programCompetitionCheckNotice {
        margin-top: 12px;
        border-radius: 16px;
        background: #fff7ed;
        border: 1px solid #fed7aa;
        padding: 12px 14px;
        color: #9a3412;
    }

    .programCompetitionCheckNotice strong {
        display: block;
        font-size: 13px;
        font-weight: 900;
        margin-bottom: 4px;
        color: #7c2d12;
    }

    .programCompetitionCheckNotice span {
        display: block;
        font-size: 13px;
        line-height: 1.45;
    }

    .institutionChanceTabs {
        position: sticky;
        top: 66px;
        z-index: 30;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin: 18px 0 18px;
        padding: 12px;
        border-radius: 22px;
        background: rgba(255,255,255,.94);
        border: 1px solid var(--line);
        box-shadow: 0 14px 40px rgba(35,71,120,.08);
        backdrop-filter: blur(10px);
    }

    .institutionChanceTab {
        border: 1px solid var(--line2);
        background: #fff;
        color: var(--navy);
        border-radius: 999px;
        padding: 9px 12px;
        font-size: 13px;
        line-height: 1.2;
        font-weight: 900;
        cursor: pointer;
    }

    .institutionChanceTab:hover {
        background: #f8fbff;
        border-color: #b8c2ff;
    }

    .institutionChanceTab.is-active {
        background: var(--navy);
        color: #fff;
        border-color: var(--navy);
    }

    .institutionChanceTab--safe.is-active {
        background: var(--green);
        border-color: var(--green);
    }

    .institutionChanceTab--real.is-active {
        background: #76500b;
        border-color: #76500b;
    }

    .institutionChanceTab--check.is-active {
        background: var(--blue-dark);
        border-color: var(--blue-dark);
    }

    .institutionChanceTab--risk.is-active {
        background: var(--orange);
        border-color: var(--orange);
    }

    .institutionChanceTab--competition.is-active {
        background: #9a3412;
        border-color: #9a3412;
    }

    .institutionChanceTab--request.is-active {
        background: #6d28d9;
        border-color: #6d28d9;
    }

    .institutionChanceEmpty {
        display: none;
        border-radius: 22px;
        background: #fff8e5;
        border: 1px solid #ead38f;
        color: #76500b;
        padding: 18px 20px;
        font-weight: 800;
    }

    .institutionChanceEmpty.is-visible {
        display: block;
    }

    @media (max-width: 980px) {
        .institutionChanceTabs {
            position: static;
            padding: 10px;
        }

        .institutionChanceTab {
            width: 100%;
            text-align: left;
        }
    }
