.hk-clb {
    --hk-accent: #7357e8;
    --hk-accent-dark: #5134c9;
    --hk-accent-2: #aa98ff;
    --hk-accent-rgb: 115, 87, 232;
    --hk-accent-soft: #f4f1ff;
    --hk-ink: #293844;
    --hk-muted: #687985;
    --hk-line: #e3e9ed;
    --hk-green: #147a58;
    --hk-green-soft: #eaf7f1;
    --hk-amber: #9c5a0a;
    --hk-amber-soft: #fff4e5;
    --hk-site-font: "IRANSansWeb_FaNumBold", "IRANSansWeb_FaNum", "IRANSansWeb", Tahoma, sans-serif;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    color: var(--hk-ink);
    background: transparent;
    font-family: var(--hk-site-font);
    font-size: 16px;
    line-height: 1.9;
    font-weight: 400;
    box-sizing: border-box;
}

.hk-clb[data-theme="ielts"] {
    --hk-accent: #7357e8;
    --hk-accent-dark: #5134c9;
    --hk-accent-2: #aa98ff;
    --hk-accent-rgb: 115, 87, 232;
    --hk-accent-soft: #f4f1ff;
}

.hk-clb[data-theme="celpip"] {
    --hk-accent: #147c67;
    --hk-accent-dark: #0c6452;
    --hk-accent-2: #67cdb5;
    --hk-accent-rgb: 20, 124, 103;
    --hk-accent-soft: #edf9f5;
}

.hk-clb[data-theme="pte"] {
    --hk-accent: #2b65c7;
    --hk-accent-dark: #1d4c9e;
    --hk-accent-2: #77a8ff;
    --hk-accent-rgb: 43, 101, 199;
    --hk-accent-soft: #eff5ff;
}

.hk-clb[data-theme="tef"] {
    --hk-accent: #14788b;
    --hk-accent-dark: #0d6071;
    --hk-accent-2: #64c3cf;
    --hk-accent-rgb: 20, 120, 139;
    --hk-accent-soft: #edf9fa;
}

.hk-clb[data-theme="tcf"] {
    --hk-accent: #aa5b2b;
    --hk-accent-dark: #884319;
    --hk-accent-2: #e7a26f;
    --hk-accent-rgb: 170, 91, 43;
    --hk-accent-soft: #fff4ed;
}

.hk-clb *,
.hk-clb *::before,
.hk-clb *::after {
    box-sizing: border-box;
    font-family: var(--hk-site-font) !important;
}

.hk-clb [hidden] {
    display: none !important;
}

.hk-clb button,
.hk-clb input {
    font: inherit;
}

.hk-clb button:focus-visible,
.hk-clb input:focus-visible,
.hk-clb summary:focus-visible {
    outline: 3px solid rgba(var(--hk-accent-rgb), .2);
    outline-offset: 3px;
}

.hk-clb__hero {
    max-width: 780px;
    margin: 0 auto 28px;
    text-align: center;
}

.hk-clb__kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 7px;
    padding: 4px 13px;
    border-radius: 999px;
    color: var(--hk-accent);
    background: var(--hk-accent-soft);
    font-size: 14px;
    font-weight: 700;
    transition: 180ms ease;
}

.hk-clb__kicker::before {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--hk-accent), var(--hk-accent-2));
    box-shadow: 0 0 0 4px rgba(var(--hk-accent-rgb), .09);
    content: "";
}

.hk-clb__hero h2 {
    margin: 0;
    color: var(--hk-ink);
    font-size: clamp(29px, 3.15vw, 37px);
    line-height: 1.5;
    font-weight: 800;
    letter-spacing: -.35px;
}

.hk-clb__hero > p {
    margin: 5px 0 20px;
    color: var(--hk-muted);
    font-size: 16px;
    line-height: 1.9;
}

.hk-clb__mode {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: min(550px, 100%);
    margin: 0 auto;
    padding: 5px;
    border-radius: 999px;
    background: #eef2f4;
    box-shadow: inset 0 0 0 1px rgba(41, 56, 68, .04);
}

.hk-clb__mode button {
    min-height: 48px;
    padding: 8px 15px;
    border: 0;
    border-radius: 999px;
    color: #5d6f7a;
    background: transparent;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    transition: 170ms ease;
}

.hk-clb__mode button.is-active {
    color: var(--hk-accent);
    background: #fff;
    box-shadow: 0 5px 15px rgba(41, 56, 68, .09);
}

.hk-clb__workspace {
    position: relative;
    overflow: hidden;
    border: 0;
    border-radius: 34px;
    background: #fff;
    box-shadow: 0 24px 65px rgba(35, 50, 62, .1);
    isolation: isolate;
}

.hk-clb__workspace::before,
.hk-clb__workspace::after {
    position: absolute;
    z-index: -1;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--hk-accent-rgb), .11) 0, rgba(var(--hk-accent-rgb), 0) 70%);
    content: "";
    pointer-events: none;
    transition: background 180ms ease;
}

.hk-clb__workspace::before {
    inset-block-start: -190px;
    inset-inline-end: -140px;
}

.hk-clb__workspace::after {
    inset-block-end: -210px;
    inset-inline-start: -150px;
}

.hk-clb__block,
.hk-clb__results {
    position: relative;
    z-index: 1;
    padding: 32px 36px;
}

.hk-clb__tests {
    padding-bottom: 36px;
}

.hk-clb__scores {
    background: linear-gradient(145deg, rgba(var(--hk-accent-rgb), .025), rgba(var(--hk-accent-rgb), .075));
}

.hk-clb__block-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 23px;
    text-align: center;
}

.hk-clb__step-number {
    display: inline-grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(145deg, var(--hk-accent), var(--hk-accent-dark));
    box-shadow: 0 8px 18px rgba(var(--hk-accent-rgb), .24);
    font-size: 18px;
    line-height: 1;
    font-weight: 800;
    transition: 180ms ease;
}

.hk-clb__block-title h3 {
    margin: 0;
    color: var(--hk-ink);
    font-size: 21px;
    line-height: 1.55;
    font-weight: 800;
}

.hk-clb__test-list {
    display: grid;
    direction: ltr;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.hk-clb__test {
    --test-color: var(--hk-accent);
    --test-dark: var(--hk-accent-dark);
    --test-soft: var(--hk-accent-soft);
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 9px 12px;
    border: 0;
    border-radius: 999px;
    color: #40525e;
    background: #f3f6f7;
    box-shadow: inset 0 0 0 1px rgba(41, 56, 68, .055);
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    transition: 170ms ease;
}

.hk-clb__test::before {
    width: 9px;
    height: 9px;
    flex: 0 0 9px;
    border-radius: 50%;
    background: var(--test-color);
    box-shadow: 0 0 0 4px var(--test-soft);
    content: "";
}

.hk-clb__test[data-test="ielts"] { --test-color: #7357e8; --test-dark: #5134c9; --test-soft: #f4f1ff; }
.hk-clb__test[data-test="celpip"] { --test-color: #147c67; --test-dark: #0c6452; --test-soft: #edf9f5; }
.hk-clb__test[data-test="pte"] { --test-color: #2b65c7; --test-dark: #1d4c9e; --test-soft: #eff5ff; }
.hk-clb__test[data-test="tef"] { --test-color: #14788b; --test-dark: #0d6071; --test-soft: #edf9fa; }
.hk-clb__test[data-test="tcf"] { --test-color: #aa5b2b; --test-dark: #884319; --test-soft: #fff4ed; }

.hk-clb__test:hover {
    color: var(--test-color);
    background: var(--test-soft);
    box-shadow: inset 0 0 0 1px rgba(var(--hk-accent-rgb), .09);
    transform: translateY(-1px);
}

.hk-clb__test.is-active {
    color: #fff;
    background: linear-gradient(135deg, var(--test-color), var(--test-dark));
    box-shadow: 0 10px 22px rgba(var(--hk-accent-rgb), .23);
}

.hk-clb__test.is-active::before {
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, .17);
}

.hk-clb__score-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 7px 13px;
    margin-bottom: 23px;
    color: #596c78;
    text-align: center;
    font-size: 15px;
    line-height: 1.8;
}

.hk-clb__score-meta strong {
    padding: 5px 13px;
    border-radius: 999px;
    color: var(--hk-accent);
    background: #fff;
    box-shadow: 0 5px 16px rgba(41, 56, 68, .08);
    font-size: 15px;
    white-space: nowrap;
}

.hk-clb__tef-format,
.hk-clb__target-picker {
    display: flex;
    width: fit-content;
    max-width: 100%;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin: 0 auto 22px;
    padding: 9px 12px 9px 17px;
    border: 0;
    border-radius: 999px;
    color: #576a76;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 6px 18px rgba(41, 56, 68, .065);
    text-align: center;
    font-size: 15px;
    font-weight: 700;
}

.hk-clb__mini-switch {
    display: grid;
    direction: ltr;
    grid-template-columns: 1fr 1.45fr;
    gap: 4px;
    min-width: 330px;
    padding: 4px;
    border-radius: 999px;
    background: #e9eef1;
}

.hk-clb__mini-switch button {
    min-height: 38px;
    padding: 6px 11px;
    border: 0;
    border-radius: 999px;
    color: #5b6c78;
    background: transparent;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
}

.hk-clb__mini-switch button.is-active {
    color: var(--hk-accent);
    background: #fff;
    box-shadow: 0 3px 9px rgba(41, 56, 68, .09);
}

.hk-clb__levels {
    display: flex;
    direction: ltr;
    gap: 5px;
}

.hk-clb__levels button {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: #51646f;
    background: #edf1f3;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
}

.hk-clb__levels button.is-active {
    color: #fff;
    background: linear-gradient(145deg, var(--hk-accent), var(--hk-accent-dark));
    box-shadow: 0 5px 12px rgba(var(--hk-accent-rgb), .22);
}

.hk-clb__score-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 17px;
}

.hk-clb__score-field {
    min-width: 0;
}

.hk-clb__score-field label {
    display: block;
    margin-bottom: 9px;
    color: #465965;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
}

.hk-clb__score-control {
    display: grid;
    height: 68px;
    grid-template-columns: 50px minmax(0, 1fr) 50px;
    align-items: center;
    padding: 5px;
    border: 1.5px solid rgba(41, 56, 68, .12);
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(41, 56, 68, .075);
    transition: 170ms ease;
}

.hk-clb__score-control:hover,
.hk-clb__score-control:focus-within {
    border-color: rgba(var(--hk-accent-rgb), .52);
    box-shadow: 0 10px 25px rgba(var(--hk-accent-rgb), .12), 0 0 0 4px rgba(var(--hk-accent-rgb), .07);
}

.hk-clb__score-input,
.hk-clb__target-score {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    height: 56px;
    min-height: 0 !important;
    padding: 0 6px !important;
    border: 0 !important;
    border-radius: 0 !important;
    color: var(--hk-ink);
    background: transparent !important;
    box-shadow: none !important;
}

.hk-clb__score-input {
    outline: 0;
    text-align: center;
    font-size: 28px;
    line-height: 1;
    font-weight: 800;
    caret-color: var(--hk-accent);
    cursor: text;
}

.hk-clb__target-score {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
}

.hk-clb__target-score strong {
    color: var(--hk-accent);
    font-size: 27px;
    font-weight: 800;
}

.hk-clb__target-score small {
    color: var(--hk-muted);
    font-size: 13px;
}

.hk-clb__controls {
    display: contents;
}

.hk-clb__controls button {
    display: grid;
    width: 44px;
    height: 44px;
    grid-row: 1;
    place-items: center;
    justify-self: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: var(--hk-accent);
    background: var(--hk-accent-soft);
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    font-weight: 800;
    transition: 150ms ease;
}

.hk-clb__controls button:first-child {
    grid-column: 1;
}

.hk-clb__controls button:last-child {
    grid-column: 3;
}

.hk-clb__controls button:hover {
    color: #fff;
    background: var(--hk-accent);
    transform: scale(1.04);
}

.hk-clb__calculate {
    position: relative;
    display: flex;
    width: min(450px, 100%);
    min-height: 57px;
    align-items: center;
    justify-content: center;
    margin: 28px auto 0;
    padding: 11px 24px;
    overflow: hidden;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--hk-accent), var(--hk-accent-dark));
    box-shadow: 0 13px 28px rgba(var(--hk-accent-rgb), .25);
    cursor: pointer;
    font-size: 16px;
    font-weight: 800;
    transition: 170ms ease;
}

.hk-clb__calculate::after {
    position: absolute;
    width: 90px;
    height: 90px;
    inset-block-start: -55px;
    inset-inline-start: 18%;
    border-radius: 50%;
    background: rgba(255, 255, 255, .13);
    content: "";
}

.hk-clb__calculate span {
    position: relative;
    z-index: 1;
}

.hk-clb__calculate:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(var(--hk-accent-rgb), .3);
}

.hk-clb__results {
    background: linear-gradient(180deg, #fff, rgba(var(--hk-accent-rgb), .025));
}

.hk-clb__result-primary {
    position: relative;
    display: flex;
    width: 172px;
    height: 172px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    margin: 5px auto 30px;
    padding: 20px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(145deg, var(--hk-accent), var(--hk-accent-dark));
    box-shadow: 0 18px 38px rgba(var(--hk-accent-rgb), .3);
    text-align: center;
}

.hk-clb__result-primary::before {
    position: absolute;
    inset: -11px;
    border: 2px solid rgba(var(--hk-accent-rgb), .13);
    border-radius: 50%;
    content: "";
}

.hk-clb__result-primary::after {
    position: absolute;
    width: 24px;
    height: 24px;
    inset-block-start: 19px;
    inset-inline-start: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
    content: "";
}

.hk-clb__result-primary > span {
    color: rgba(255, 255, 255, .86);
    font-size: 15px;
    font-weight: 700;
}

.hk-clb__result-primary > div {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 7px;
    color: #fff;
}

.hk-clb__result-primary [data-benchmark] {
    font-size: 23px;
    font-weight: 800;
}

.hk-clb__result-primary strong {
    color: #fff;
    font-size: 47px;
    line-height: 1;
    font-weight: 850;
}

.hk-clb__skill-results {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.hk-clb__skill-result {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3px;
    padding: 13px 11px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(145deg, #fff, var(--hk-accent-soft));
    box-shadow: 0 9px 24px rgba(41, 56, 68, .075), inset 0 0 0 1px rgba(var(--hk-accent-rgb), .07);
    text-align: center;
}

.hk-clb__skill-result span,
.hk-clb__skill-result strong {
    display: block;
    width: 100%;
    text-align: center;
}

.hk-clb__skill-result span {
    color: #647681;
    font-size: 15px;
    font-weight: 700;
}

.hk-clb__skill-result strong {
    color: var(--hk-accent);
    font-size: 20px;
    font-weight: 800;
}

.hk-clb__next-target {
    position: relative;
    margin-top: 24px;
    padding: 24px 25px;
    overflow: hidden;
    border: 0;
    border-radius: 30px 30px 9px 30px;
    color: #536773;
    background: linear-gradient(135deg, var(--hk-accent-soft), #fff);
    box-shadow: inset 0 0 0 1px rgba(var(--hk-accent-rgb), .07);
    text-align: center;
}

.hk-clb__next-target::after {
    position: absolute;
    width: 150px;
    height: 150px;
    inset-block-end: -105px;
    inset-inline-start: -48px;
    border-radius: 50%;
    background: rgba(var(--hk-accent-rgb), .07);
    content: "";
}

.hk-clb__next-target > * {
    position: relative;
    z-index: 1;
}

.hk-clb__next-target p {
    margin: 0;
    color: var(--hk-ink);
    font-size: 19px;
    font-weight: 800;
}

.hk-clb__next-target p strong,
.hk-clb__next-target li strong {
    color: var(--hk-accent);
}

.hk-clb__next-note {
    display: block;
    margin-top: 6px;
    font-size: 15px;
    line-height: 1.8;
}

.hk-clb__next-target ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px 18px;
    margin: 15px 0 0;
    padding: 0;
    list-style: none;
}

.hk-clb__next-target li {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 5px 4px;
    background: transparent;
    font-size: 15px;
    line-height: 1.55;
}

.hk-clb__next-target li::before {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: var(--hk-accent);
    box-shadow: 0 0 0 4px rgba(var(--hk-accent-rgb), .1);
    content: "";
}

.hk-clb__next-target li b {
    color: var(--hk-ink);
    font-size: 15px;
}

.hk-clb__next-target li span {
    color: #627580;
    font-size: 15px;
}

.hk-clb__programs {
    margin-top: 24px;
    overflow: hidden;
    border: 0;
    border-radius: 28px;
    background: #f3f6f7;
}

.hk-clb__programs summary {
    display: flex;
    min-height: 66px;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 14px 20px;
    color: var(--hk-ink);
    cursor: pointer;
    list-style: none;
    text-align: center;
    font-size: 18px;
    font-weight: 800;
}

.hk-clb__programs summary::-webkit-details-marker {
    display: none;
}

.hk-clb__programs summary::after {
    display: inline-grid;
    width: 31px;
    height: 31px;
    flex: 0 0 31px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--hk-accent);
    background: #fff;
    box-shadow: 0 5px 13px rgba(41, 56, 68, .09);
    content: "+";
    font-size: 20px;
    line-height: 1;
    font-weight: 400;
}

.hk-clb__programs[open] summary::after {
    content: "−";
}

.hk-clb__program-note {
    margin: -2px 18px 17px;
    color: #687a86;
    text-align: center;
    font-size: 15px;
    line-height: 1.8;
}

.hk-clb__program-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
    padding: 0 18px 18px;
}

.hk-clb__program-card {
    position: relative;
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 18px 15px;
    overflow: hidden;
    border: 0;
    border-radius: 22px 22px 7px 22px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(41, 56, 68, .065);
    text-align: center;
}

.hk-clb__program-card::after {
    position: absolute;
    width: 52px;
    height: 52px;
    inset-block-start: -30px;
    inset-inline-end: -24px;
    border-radius: 50%;
    background: var(--hk-accent-soft);
    content: "";
}

.hk-clb__program-card h4,
.hk-clb__program-card p,
.hk-clb__program-card .hk-clb__status {
    position: relative;
    z-index: 1;
}

.hk-clb__program-card h4 {
    width: 100%;
    margin: 0;
    color: var(--hk-ink);
    text-align: center;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 800;
}

.hk-clb__program-card p {
    width: 100%;
    margin: 0;
    color: #687a86;
    text-align: center;
    font-size: 15px;
    line-height: 1.7;
}

.hk-clb__status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 6px;
    padding: 5px 11px;
    border-radius: 999px;
    white-space: nowrap;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
}

.hk-clb__status::before {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    content: "";
}

.hk-clb__status.is-pass {
    color: var(--hk-green);
    background: var(--hk-green-soft);
}

.hk-clb__status.is-pass::before {
    background: var(--hk-green);
}

.hk-clb__status.is-fail {
    color: var(--hk-amber);
    background: var(--hk-amber-soft);
}

.hk-clb__status.is-fail::before {
    background: var(--hk-amber);
}

@media (max-width: 900px) {
    .hk-clb__test-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hk-clb__score-grid,
    .hk-clb__skill-results {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .hk-clb {
        font-size: 15px;
    }

    .hk-clb__hero {
        margin-bottom: 22px;
    }

    .hk-clb__hero h2 {
        font-size: 29px;
        letter-spacing: 0;
    }

    .hk-clb__hero > p {
        margin-inline: 7px;
        font-size: 15px;
    }

    .hk-clb__mode button {
        min-height: 47px;
        padding-inline: 7px;
        font-size: 14px;
        line-height: 1.65;
    }

    .hk-clb__workspace {
        border-radius: 25px;
    }

    .hk-clb__block,
    .hk-clb__results {
        padding: 26px 15px;
    }

    .hk-clb__block-title {
        gap: 10px;
        margin-bottom: 20px;
    }

    .hk-clb__step-number {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        font-size: 16px;
    }

    .hk-clb__block-title h3 {
        font-size: 18px;
    }

    .hk-clb__test-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
    }

    .hk-clb__test {
        min-height: 53px;
        padding-inline: 7px;
        font-size: 14px;
    }

    .hk-clb__test:last-child {
        grid-column: 1 / -1;
    }

    .hk-clb__score-meta {
        display: block;
        font-size: 15px;
    }

    .hk-clb__score-meta strong {
        display: table;
        margin: 0 auto 7px;
        font-size: 15px;
    }

    .hk-clb__tef-format,
    .hk-clb__target-picker {
        display: block;
        width: 100%;
        padding: 12px;
        border-radius: 22px;
        font-size: 15px;
    }

    .hk-clb__mini-switch,
    .hk-clb__levels {
        min-width: 0;
        margin-top: 9px;
    }

    .hk-clb__levels {
        justify-content: space-between;
    }

    .hk-clb__levels button {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .hk-clb__score-grid {
        gap: 17px 10px;
    }

    .hk-clb__score-field label {
        font-size: 15px;
    }

    .hk-clb__score-control {
        height: 62px;
        grid-template-columns: 44px minmax(0, 1fr) 44px;
        padding: 4px;
    }

    .hk-clb__score-input,
    .hk-clb__target-score {
        height: 52px;
    }

    .hk-clb__score-input,
    .hk-clb__target-score strong {
        font-size: 25px;
    }

    .hk-clb__controls button {
        width: 39px;
        height: 39px;
        font-size: 20px;
    }

    .hk-clb__calculate {
        min-height: 54px;
        margin-top: 25px;
        font-size: 15px;
    }

    .hk-clb__result-primary {
        width: 154px;
        height: 154px;
        margin-bottom: 27px;
        padding: 16px;
    }

    .hk-clb__result-primary > span {
        font-size: 14px;
    }

    .hk-clb__result-primary strong {
        font-size: 42px;
    }

    .hk-clb__result-primary [data-benchmark] {
        font-size: 21px;
    }

    .hk-clb__skill-results {
        gap: 10px;
    }

    .hk-clb__skill-result {
        min-height: 80px;
        padding: 12px 8px;
    }

    .hk-clb__skill-result span {
        font-size: 15px;
    }

    .hk-clb__skill-result strong {
        font-size: 18px;
    }

    .hk-clb__next-target {
        padding: 21px 13px;
        border-radius: 24px 24px 8px 24px;
    }

    .hk-clb__next-target p {
        font-size: 18px;
    }

    .hk-clb__next-target ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .hk-clb__next-target li {
        min-height: 53px;
        flex-direction: column;
        gap: 1px;
        padding: 6px 4px;
    }

    .hk-clb__next-target li::before {
        display: none;
    }

    .hk-clb__programs {
        border-radius: 24px;
    }

    .hk-clb__programs summary {
        min-height: 62px;
        padding-inline: 12px;
        font-size: 17px;
    }

    .hk-clb__program-note {
        margin-inline: 13px;
        font-size: 15px;
    }

    .hk-clb__program-grid {
        grid-template-columns: 1fr;
        padding: 0 12px 12px;
    }

    .hk-clb__program-card h4 {
        font-size: 16px;
    }

    .hk-clb__program-card p {
        font-size: 15px;
    }
}

@media (max-width: 390px) {
    .hk-clb__hero h2 {
        font-size: 26px;
    }

    .hk-clb__mode button {
        font-size: 13px;
    }

    .hk-clb__score-control {
        grid-template-columns: 41px minmax(0, 1fr) 41px;
    }

    .hk-clb__controls button {
        width: 37px;
        height: 37px;
    }

    .hk-clb__next-target ul {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hk-clb *,
    .hk-clb *::before,
    .hk-clb *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
