:root {
    --navy: #1e2748;
    --navy-deep: #161b32;
    --accent: #b1222c;
    --mist: #f5f6f9;
    --ink: #1e2748;
    --muted: #667085;
    --line: #e6e8ee;
    --white: #ffffff;
    --bg: #f7f8fb;
    --radius: 6px;
    --shadow: 0 16px 40px rgba(30, 39, 72, 0.08);
    --max: 1280px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body.site-body {
    margin: 0;
    padding-top: 76px;
    color: var(--ink);
    background: var(--white);
    font-family: "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", "Microsoft YaHei", system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--accent); }
button { font: inherit; }

.site-container {
    width: min(var(--max), calc(100% - 64px));
    margin: 0 auto;
}
.site-container--narrow { width: min(840px, calc(100% - 64px)); }

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    height: 76px;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid transparent;
    transition: box-shadow .25s, border-color .25s;
    overflow: visible;
}
.site-header.is-scrolled {
    box-shadow: 0 8px 24px rgba(16, 40, 68, .06);
    border-bottom-color: var(--line);
}
.site-header:has(.site-nav__item.is-open) {
    border-bottom-color: transparent;
    box-shadow: none;
}
.site-header__inner {
    height: 76px;
    display: flex;
    align-items: center;
    gap: 32px;
    overflow: visible;
}
.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--navy-deep);
    min-width: 0;
}
.site-logo:hover { color: var(--navy-deep); }
.site-logo > img { height: 48px; width: auto; max-width: min(240px, 46vw); }
.site-logo__mark {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
    flex: 0 0 46px;
    background: transparent;
}
.site-logo__mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: none;
}
.site-logo__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    line-height: 1;
}
.site-logo__text strong {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--navy-deep);
}
.site-logo__text small {
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .06em;
    color: var(--navy-deep);
    text-transform: uppercase;
    white-space: nowrap;
}

.site-nav { display: flex; gap: 4px; margin-left: auto; align-items: stretch; height: 76px; overflow: visible; }
.site-nav__item { position: relative; display: flex; align-items: center; }
.site-nav__item.has-sub { position: static; }
.site-nav__link {
    position: relative;
    padding: 8px 12px;
    color: var(--ink);
    font-size: 15px;
    font-weight: 400;
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color .15s ease, background .15s ease;
}
.site-nav__caret {
    width: 0; height: 0; border-left: 5px solid transparent; border-right: 5px solid transparent;
    border-top: 6px solid currentColor; opacity: .7; margin-top: 2px;
}
.site-nav__link:hover,
.site-nav__item.has-sub:hover > .site-nav__link,
.site-nav__item.has-sub:focus-within > .site-nav__link,
.site-nav__item.has-sub.is-open > .site-nav__link {
    color: var(--ink);
    background: #fff6f6;
}
.site-nav__link.is-active {
    color: var(--accent);
    background: transparent;
    font-weight: 400;
}
.site-nav__link.is-active::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 4px;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
}
.site-nav__item.has-sub:hover > .site-nav__link.is-active,
.site-nav__item.has-sub:focus-within > .site-nav__link.is-active,
.site-nav__item.has-sub.is-open > .site-nav__link.is-active,
.site-nav__link.is-active:hover {
    color: var(--accent);
    background: transparent;
}

.site-nav__panel {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    max-width: 100%;
    z-index: 101;
    background: #fff;
    border-top: 1px solid #eeeef2;
    border-bottom: 1px solid #eeeef2;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}
.site-nav__item.has-sub:hover .site-nav__panel,
.site-nav__item.has-sub:focus-within .site-nav__panel,
.site-nav__item.has-sub.is-open .site-nav__panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
}
.site-mega {
    width: min(1280px, calc(100% - 64px));
    max-width: 1280px;
    margin: 0 auto;
    padding: 22px 0 20px;
}
.site-mega--about,
.site-mega--course {
    display: grid;
    align-items: start;
    padding: 16px 0 14px;
}
.site-mega--about {
    grid-template-columns: minmax(0, 68%) minmax(280px, 32%);
    column-gap: 40px;
}
.site-mega--course {
    grid-template-columns: minmax(0, 65%) minmax(280px, 35%);
    column-gap: 40px;
}
.site-mega--guide {
    display: grid;
    grid-template-columns: minmax(0, 68%) minmax(280px, 32%);
    column-gap: 40px;
    align-items: start;
}
.site-mega__intro { margin-bottom: 16px; }
.site-mega--about .site-mega__intro,
.site-mega--course .site-mega__intro,
.site-mega--guide .site-mega__intro {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 12px;
}
.site-mega__intro strong {
    display: block;
    font-size: 16px;
    color: var(--navy-deep);
    font-weight: 600;
}
.site-mega__intro p {
    margin: 4px 0 0;
    font-size: 13px;
    color: #667085;
}
.site-mega__body { display: block; }
.site-mega--about .site-mega__body,
.site-mega--course .site-mega__body,
.site-mega--guide .site-mega__body {
    display: contents;
}
.site-mega--about .site-mega__grid,
.site-mega--course .site-mega__grid,
.site-mega--guide .site-mega__grid {
    grid-column: 1;
    grid-row: 2;
}
.site-mega--about .site-mega__feature,
.site-mega--course .site-mega__feature,
.site-mega--guide .site-mega__hint {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: start;
}
.site-mega__grid {
    display: grid;
    gap: 4px 12px;
    min-width: 0;
}
.site-mega__grid--2 { grid-template-columns: repeat(2, 1fr); }
.site-mega__grid--3 { grid-template-columns: repeat(3, 1fr); }
.site-mega__grid--4 { grid-template-columns: repeat(4, 1fr); }
.site-mega--about .site-mega__grid,
.site-mega--course .site-mega__grid {
    gap: 28px 48px;
    align-content: start;
    height: auto;
}
.site-mega--guide .site-mega__grid { gap: 4px 20px; }
.site-mega--process {
    padding: 20px 0 14px;
}
.site-mega--process .site-mega__intro { margin-bottom: 18px; }
.site-mega--process .site-mega__grid {
    --flow-gap: 12px;
    --flow-row: 24px;
    --flow-line: #b7c0cf;
    --flow-arrow: 56px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: var(--flow-gap);
    row-gap: var(--flow-row);
}
.site-mega--process .site-mega__item:nth-child(1) { grid-column: 1; grid-row: 1; }
.site-mega--process .site-mega__item:nth-child(2) { grid-column: 2; grid-row: 1; }
.site-mega--process .site-mega__item:nth-child(3) { grid-column: 3; grid-row: 1; }
.site-mega--process .site-mega__item:nth-child(4) { grid-column: 3; grid-row: 2; }
.site-mega--process .site-mega__item:nth-child(5) { grid-column: 2; grid-row: 2; }
.site-mega--process .site-mega__item:nth-child(6) { grid-column: 1; grid-row: 2; }
.site-mega--process .site-mega__item:nth-child(7) { grid-column: 1; grid-row: 3; }
.site-mega--process .site-mega__item:nth-child(8) { grid-column: 2; grid-row: 3; }
.site-mega--process .site-mega__item:nth-child(9) { grid-column: 3; grid-row: 3; }
.site-mega--process .site-mega__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    padding: 8px 10px;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 10px;
}
.site-mega--process .site-mega__copy {
    flex: 0 0 auto;
    min-width: 0;
}
.site-mega--process .site-mega__title {
    font-size: 15px;
    font-weight: 600;
}
.site-mega__flow {
    display: none;
}
.site-mega--process .site-mega__flow {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    min-width: 0;
    height: 12px;
    margin-top: 7px;
    padding: 0 12px;
    pointer-events: none;
}
.site-mega--process .site-mega__flow::before {
    content: "";
    flex: 0 1 var(--flow-arrow);
    width: var(--flow-arrow);
    max-width: calc(100% - 12px);
    height: 2px;
    background: var(--flow-line);
    border-radius: 1px;
}
.site-mega--process .site-mega__flow::after {
    content: "";
    flex: none;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-left: 9px solid var(--flow-line);
}
.site-mega--process .site-mega__item:nth-child(3) .site-mega__flow,
.site-mega--process .site-mega__item:nth-child(4) .site-mega__flow,
.site-mega--process .site-mega__item:nth-child(9) .site-mega__flow {
    display: none;
}
.site-mega--process .site-mega__item:nth-child(5) .site-mega__flow,
.site-mega--process .site-mega__item:nth-child(6) .site-mega__flow {
    flex-direction: row-reverse;
}
.site-mega--process .site-mega__item:nth-child(5) .site-mega__flow::after,
.site-mega--process .site-mega__item:nth-child(6) .site-mega__flow::after {
    border: 6px solid transparent;
    border-right: 9px solid var(--flow-line);
}
.site-mega--about .site-mega__item {
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 10px;
    gap: 12px;
    padding: 10px 12px;
}
.site-mega--about .site-mega__item:hover {
    background: #fff5f5;
    box-shadow: none;
    transform: none;
}
.site-mega--about .site-mega__item:hover .site-mega__copy small {
    color: #667085;
}
.site-mega--course .site-mega__item {
    gap: 14px;
    padding: 8px 10px;
}
.site-mega__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    color: var(--ink);
    position: relative;
}
.site-mega__icon {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    color: #3d4a63;
    margin-top: 2px;
}
.site-mega__heading { display: flex; align-items: baseline; gap: 8px; min-width: 0; }
.site-mega__no {
    flex: none;
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .04em;
    font-variant-numeric: tabular-nums;
    line-height: 1.4;
}
.site-mega__title {
    display: block;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--ink);
}
.site-mega__copy small {
    display: block;
    margin-top: 2px;
    font-size: 13px;
    line-height: 1.45;
    color: #667085;
    font-weight: 400;
}
.site-mega__item:hover { background: #fff6f6; color: var(--ink); }
.site-mega__item:hover .site-mega__icon,
.site-mega__item:hover .site-mega__title { color: var(--accent); }
.site-mega--process .site-mega__item.is-step:nth-child(3)::before,
.site-mega--process .site-mega__item.is-step:nth-child(6)::before {
    content: "";
    position: absolute;
    left: 20px;
    top: auto;
    bottom: -15px;
    width: 2px;
    height: 15px;
    background: var(--flow-line);
    border-radius: 1px;
    pointer-events: none;
}
.site-mega--process .site-mega__item.is-step:nth-child(3)::after,
.site-mega--process .site-mega__item.is-step:nth-child(6)::after {
    content: "";
    position: absolute;
    left: 15px;
    top: auto;
    bottom: -29px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-top: 9px solid var(--flow-line);
    pointer-events: none;
}

.site-mega__frame {
    display: block;
    overflow: hidden;
    border-radius: 14px;
    background: #eef0f5;
}
.site-mega__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}
.site-mega__photo,
.site-mega__feature,
.site-mega__hint {
    display: flex;
    flex-direction: column;
    min-width: 0;
    color: var(--ink);
}
.site-mega--about .site-mega__feature {
    position: relative;
    display: block;
    width: min(100%, 400px);
    min-height: 220px;
    justify-self: end;
    align-self: stretch;
    overflow: hidden;
    border-radius: 16px;
    color: #fff;
    background: #eef0f5;
    box-shadow: none;
    transition: transform .25s ease;
}
.site-mega--about .site-mega__feature .site-mega__frame {
    position: absolute;
    inset: 0;
    height: 100%;
    aspect-ratio: auto;
    border-radius: 16px;
}
.site-mega--about .site-mega__feature::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(22, 27, 50, .04) 36%, rgba(22, 27, 50, .62) 100%);
    pointer-events: none;
}
.site-mega--about .site-mega__photo {
    width: min(100%, 400px);
    justify-self: end;
}
.site-mega--about .site-mega__photo .site-mega__frame {
    width: 100%;
    height: 212px;
    aspect-ratio: auto;
}
.site-mega--course .site-mega__feature {
    position: relative;
    display: block;
    width: min(100%, 400px);
    height: 228px;
    justify-self: end;
    overflow: hidden;
    border-radius: 14px;
    color: #fff;
    background: #eef0f5;
}
.site-mega--course .site-mega__feature .site-mega__frame {
    position: absolute;
    inset: 0;
    height: 100%;
    aspect-ratio: auto;
    border-radius: 14px;
}
.site-mega--course .site-mega__feature::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(22, 27, 50, .06) 32%, rgba(22, 27, 50, .72) 100%);
    pointer-events: none;
}
.site-mega__photo .site-mega__frame { aspect-ratio: 16 / 9; }
.site-mega__feature .site-mega__frame,
.site-mega__hint .site-mega__frame { aspect-ratio: 16 / 9; }
.site-mega__photo:hover,
.site-mega__hint:hover { color: var(--navy); }
.site-mega--about .site-mega__feature:hover,
.site-mega--course .site-mega__feature:hover { color: #fff; }
.site-mega--about .site-mega__feature:hover {
    transform: scale(1.015);
}
.site-mega__photo:hover img,
.site-mega--course .site-mega__feature:hover img,
.site-mega__hint:hover img { transform: scale(1.03); }
.site-mega__feature-copy,
.site-mega__hint-copy {
    display: flex;
    flex-direction: column;
    padding: 14px 2px 0;
}
.site-mega--about .site-mega__feature-copy,
.site-mega--course .site-mega__feature-copy {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 22px 20px 18px;
}
.site-mega__feature-copy small {
    font-size: 12px;
    letter-spacing: .06em;
    color: var(--accent);
    font-weight: 600;
}
.site-mega--course .site-mega__feature-copy small {
    color: rgba(255, 255, 255, .78);
    font-weight: 500;
}
.site-mega__feature-copy strong,
.site-mega__hint-copy strong {
    margin-top: 4px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--navy-deep);
}
.site-mega--about .site-mega__feature-copy strong,
.site-mega--course .site-mega__feature-copy strong {
    margin-top: 6px;
    color: #fff;
    font-size: 20px;
}
.site-mega--about .site-mega__feature-copy strong {
    margin-top: 0;
    font-size: 18px;
}
.site-mega__hint-copy strong { font-size: 16px; }
.site-mega__feature-copy em {
    margin: 6px 0 0;
    font-style: normal;
    font-size: 13px;
    line-height: 1.5;
    color: #667085;
    font-weight: 400;
}
.site-mega--course .site-mega__feature-copy em {
    color: rgba(255, 255, 255, .82);
}
.site-mega__text-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 400;
    color: var(--navy);
    transition: color .2s ease;
}
.site-mega__photo .site-mega__text-cta { margin-top: 8px; }
.site-mega--about .site-mega__feature .site-mega__text-cta,
.site-mega--course .site-mega__feature .site-mega__text-cta {
    margin-top: 12px;
    color: #fff;
}
.site-mega--about .site-mega__feature .site-mega__text-cta {
    margin-top: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, .88);
}
.site-mega__photo:hover .site-mega__text-cta,
.site-mega__hint:hover .site-mega__text-cta { color: var(--accent); }
.site-mega--about .site-mega__feature:hover .site-mega__text-cta,
.site-mega--course .site-mega__feature:hover .site-mega__text-cta { color: #fff; }
.site-mega__photo:hover .site-mega__more-arrow,
.site-mega__feature:hover .site-mega__more-arrow,
.site-mega__hint:hover .site-mega__more-arrow { transform: translateX(5px); }
.site-mega__more {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding-top: 14px;
    border-top: 1px solid #eeeef2;
    font-size: 14px;
    font-weight: 400;
    color: var(--navy);
    transition: color .2s ease;
}
.site-mega__more span { position: relative; }
.site-mega__more span::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .2s ease;
}
.site-mega__more-arrow {
    display: inline-block;
    transition: transform .2s ease;
}
.site-mega__more:hover { color: var(--accent); }
.site-mega__more:hover span::after {
    transform: scaleX(1);
    transform-origin: left;
}
.site-mega__more:hover .site-mega__more-arrow { transform: translateX(5px); }
.site-mega--process .site-mega__more {
    margin-top: 16px;
    padding-top: 12px;
    border-top-color: #eaecf0;
}

.site-nav-overlay {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    background: rgba(22, 27, 50, .12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .22s ease, visibility .22s ease;
}
.site-nav-overlay.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.site-header__actions { display: flex; align-items: center; gap: 10px; }
.site-header .site-btn,
.site-drawer .site-btn { font-weight: 400; }

.site-btn {
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 44px; padding: 0 18px; border-radius: var(--radius);
    font-weight: 600; border: 1px solid transparent; transition: .2s ease;
}
.site-btn--sm { min-height: 40px; padding: 0 14px; font-size: 14px; }
.site-btn--block { width: 100%; }
.site-btn--primary { background: var(--navy); color: #fff; }
.site-btn--primary:hover { background: var(--navy-deep); color: #fff; }
.site-btn--accent { background: var(--accent); color: #fff; }
.site-btn--accent:hover { filter: brightness(.95); color: #fff; }
.site-btn--consult {
    background: #fff;
    color: var(--accent);
    border-color: var(--accent);
    border-radius: 999px;
    font-weight: 400;
    gap: 8px;
    padding: 0 18px 0 20px;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.site-btn--consult:hover,
.site-btn--consult:focus {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.site-btn--consult svg { display: block; flex: 0 0 14px; }
.site-btn--ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.site-btn--light { background: rgba(255,255,255,.16); color: #fff; border-color: rgba(255,255,255,.28); }
.site-btn--light:hover { background: #fff; color: var(--navy); }

.site-menu-btn {
    display: none;
    position: relative;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    padding: 10px;
    z-index: 2;
}
.site-menu-btn span {
    display: block;
    height: 2px;
    background: var(--navy);
    margin: 5px 0;
    border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease;
}
.site-menu-btn[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.site-menu-btn[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.site-menu-btn[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.site-drawer[hidden] { display: none; }
.site-drawer {
    position: fixed;
    inset: 0;
    z-index: 50;
    background: rgba(22, 27, 50, 0);
    transition: background .3s ease;
}
.site-drawer.is-open {
    background: rgba(22, 27, 50, .45);
}
.site-drawer__panel {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: min(360px, 86vw);
    background: #fff;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transform: translateX(100%);
    transition: transform .34s cubic-bezier(.22, 1, .36, 1);
    will-change: transform;
}
.site-drawer.is-open .site-drawer__panel {
    transform: translateX(0);
}
@media (prefers-reduced-motion: reduce) {
    .site-drawer,
    .site-drawer__panel {
        transition: none;
    }
}
.site-drawer__head { display: flex; justify-content: space-between; font-weight: 700; }
.site-drawer__close { border: 0; background: none; font-size: 28px; line-height: 1; }
.site-drawer__nav { display: flex; flex-direction: column; gap: 6px; overflow: auto; }
.site-drawer__nav a { padding: 12px 8px; border-radius: var(--radius); color: var(--ink); display: block; }
.site-drawer__nav a:hover { color: var(--accent); background: #fff6f6; }
.site-drawer__nav a.is-active {
    background: transparent; color: var(--accent); font-weight: 400;
}
.site-drawer__parent {
    width: 100%; text-align: left; border: 0; background: none; padding: 12px 8px;
    border-radius: var(--radius); color: var(--ink); font-weight: 400; display: flex; justify-content: space-between;
}
.site-drawer__parent::after { content: "+"; color: currentColor; }
.site-drawer__parent[aria-expanded="true"]::after { content: "–"; }
.site-drawer__parent:hover,
.site-drawer__parent[aria-expanded="true"] {
    color: var(--ink); background: #fff6f6;
}
.site-drawer__parent.is-active { color: var(--accent); background: transparent; }
.site-drawer__sub { padding: 0 0 8px 12px; }
.site-drawer__sub a { font-size: 14px; color: var(--muted); }
.site-drawer__sub a:hover { color: var(--accent); background: #fff6f6; }
.site-drawer__label {
    margin: 10px 8px 4px;
    font-size: 12px;
    letter-spacing: .08em;
    color: #667085;
    font-weight: 700;
}
.site-drawer__more { color: var(--navy) !important; font-weight: 400; }
.site-drawer__consult {
    margin-top: auto;
    min-height: 48px;
}

.hero {
    position: relative;
    min-height: clamp(640px, 88vh, 860px);
    display: grid;
    align-items: stretch;
    color: #fff;
    overflow: hidden;
    background: var(--navy-deep);
}
.hero__stage { position: absolute; inset: 0; }
.hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 0;
}
.hero__slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 1;
}
.hero__media,
.hero__visual,
.hero__overlay {
    position: absolute;
    inset: 0;
}
.hero__media {
    background: center/cover no-repeat var(--hero-image);
    transform: scale(1.02);
    will-change: transform, opacity;
}
.hero__visual {
    background:
        radial-gradient(1200px 500px at 80% 20%, rgba(177, 34, 44, .32), transparent 50%),
        linear-gradient(120deg, var(--navy-deep) 8%, var(--navy) 55%, #2a335c 100%);
}
.hero__visual::after {
    content: ""; position: absolute; right: -8%; bottom: -20%;
    width: 58%; height: 80%;
    background: radial-gradient(circle at 30% 40%, rgba(255,255,255,.16), transparent 55%);
}
.hero__overlay {
    background:
        linear-gradient(105deg, rgba(14, 18, 36, .88) 8%, rgba(14, 18, 36, .55) 46%, rgba(14, 18, 36, .22) 78%),
        linear-gradient(0deg, rgba(14, 18, 36, .42) 0%, transparent 42%);
}
.hero__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 132px 0 110px;
}
.hero__copy {
    max-width: 560px;
    transform: translateY(18px);
    opacity: 0;
}
.hero__slide.is-active .hero__copy {
    animation: heroCopyIn .9s cubic-bezier(.22, 1, .36, 1) .12s both;
}
.hero__copy.is-static {
    opacity: 1;
    transform: none;
    animation: none;
}
@keyframes heroCopyIn {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero .site-kicker--light {
    margin: 0 0 14px;
    letter-spacing: .14em;
}
.hero h1 {
    margin: 0 0 18px;
    font-size: clamp(32px, 3.8vw, 48px);
    line-height: 1.28;
    font-weight: 700;
    letter-spacing: -.02em;
    text-wrap: balance;
    text-shadow: 0 10px 40px rgba(0, 0, 0, .28);
}
.hero__desc {
    margin: 0;
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255,255,255,.88);
    max-width: 28em;
}
.hero__cta {
    display: flex;
    gap: 12px;
    margin: 28px 0 28px;
    flex-wrap: wrap;
}
    
/* 特效：淡入 */
.hero--fade .hero__slide {
    transition: opacity 1.05s ease, visibility 1.05s ease;
}
.hero--fade .hero__slide.is-active .hero__media {
    animation: heroFadeZoom 7.2s ease-out both;
}
@keyframes heroFadeZoom {
    from { transform: scale(1.08); }
    to { transform: scale(1.02); }
}

/* 特效：左右推移 */
.hero--slide .hero__slide {
    opacity: 1;
    visibility: visible;
    transform: translateX(8%);
    transition: transform 1s cubic-bezier(.22, 1, .36, 1), opacity .85s ease, visibility .85s;
}
.hero--slide .hero__slide.is-active {
    transform: translateX(0);
}
.hero--slide .hero__slide.is-leaving {
    transform: translateX(-8%);
    opacity: 0;
    z-index: 2;
}
.hero--slide .hero__slide:not(.is-active):not(.is-leaving) {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* 特效：缩放推进 */
.hero--zoom .hero__slide {
    transition: opacity 1s ease, visibility 1s ease;
}
.hero--zoom .hero__slide .hero__media {
    transform: scale(1.16);
    transition: transform 6.8s cubic-bezier(.2, .8, .2, 1);
}
.hero--zoom .hero__slide.is-active .hero__media {
    transform: scale(1.02);
}

.hero__progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    height: 3px;
    background: rgba(255, 255, 255, .16);
    pointer-events: none;
    overflow: hidden;
}
.hero__progress-bar {
    display: block;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: left center;
    background: var(--accent);
    will-change: transform;
}
.hero__progress-bar.is-running {
    animation: heroProgress var(--hero-progress-ms, 5600ms) linear forwards;
}
.hero.is-paused .hero__progress-bar.is-running {
    animation-play-state: paused;
}
@keyframes heroProgress {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.hero__controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 28px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    pointer-events: none;
}
.hero__nav {
    pointer-events: auto;
    position: static;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.32);
    border-radius: 50%;
    background: rgba(14, 18, 36, .42);
    color: #fff;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    transition: background .2s ease, border-color .2s ease;
}
.hero__nav:hover {
    background: rgba(177, 34, 44, .92);
    border-color: transparent;
}
.hero__nav-icon {
    display: block;
    width: 9px;
    height: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    box-sizing: border-box;
}
.hero__nav--prev .hero__nav-icon {
    transform: translateX(1px) rotate(135deg);
}
.hero__nav--next .hero__nav-icon {
    transform: translateX(-1px) rotate(-45deg);
}
.hero__nav--prev,
.hero__nav--next {
    left: auto;
    right: auto;
}
.hero__dots {
    pointer-events: auto;
    position: static;
    left: auto;
    bottom: auto;
    transform: none;
    display: flex;
    gap: 8px;
    align-items: center;
}
.hero__dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 0;
    padding: 0;
    background: rgba(255,255,255,.4);
    transition: width .25s ease, background .25s ease;
}
.hero__dot.is-active {
    width: 24px;
    background: #fff;
}
.hero.is-paused .hero__dot.is-active {
    animation: none;
}

.site-section { padding: 60px 0; }
.site-section--muted { background: var(--bg); }
.site-section--split {
    background: linear-gradient(180deg, #f3f5f9 0%, #eef1f6 100%);
    border-top: 1px solid #e4e8ef;
    border-bottom: 1px solid #e4e8ef;
}
.site-section__head { max-width: 640px; margin-bottom: 48px; }
.site-section__head--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.site-section__head--center .site-kicker {
    justify-content: center;
}
.site-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-size: 18px;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0 0 14px;
    line-height: 1;
}
.site-kicker::before {
    content: "";
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    flex: none;
}
.site-kicker--light { color: #e7b4b7; }
.site-kicker--light::before { background: currentColor; }
h1, h2, h3 { letter-spacing: -.02em; }
.site-section h2, .page-hero h1 { font-size: clamp(32px, 4vw, 44px); margin: 0 0 12px; color: var(--navy-deep); }
.site-lead { color: var(--muted); font-size: 16px; line-height: 1.7; margin: 0; }

.page-hero { padding: 72px 0 24px; background: linear-gradient(180deg, var(--mist), #fff); }
.page-hero h1 { font-size: clamp(32px, 4vw, 48px); }
.page-hero--banner {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 420px;
    padding: 120px 0 64px;
    color: #fff;
    background:
        linear-gradient(105deg, rgba(14, 18, 36, .82) 6%, rgba(14, 18, 36, .46) 58%, rgba(14, 18, 36, .28) 100%),
        var(--page-hero-cover, none) center 40%/cover no-repeat,
        var(--navy-deep);
}
.page-hero--banner h1 { color: #fff; }
.page-hero--banner .site-lead {
    max-width: 560px;
    color: rgba(255, 255, 255, .88);
}
.page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.card-grid { display: grid; gap: 20px; }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }

.info-card, .course-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 28px; box-shadow: var(--shadow); transition: transform .25s, box-shadow .25s;
}
.info-card:hover, .course-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(30, 39, 72, .12); }
.info-card__no { color: var(--accent); font-weight: 700; letter-spacing: .08em; }
.info-card h3 { margin: 12px 0 8px; font-size: 22px; color: var(--navy-deep); }
.info-card p { color: var(--muted); margin: 0 0 16px; }
.info-card__cover { border-radius: var(--radius); margin: -8px 0 16px; height: 160px; object-fit: cover; width: 100%; }

.info-card--advantage {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 100%;
    overflow: hidden;
    padding: 28px 26px 30px;
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity .75s cubic-bezier(.22, 1, .36, 1),
        transform .75s cubic-bezier(.22, 1, .36, 1),
        box-shadow .25s;
    transition-delay: calc(var(--reveal-i, 0) * 100ms + 140ms), calc(var(--reveal-i, 0) * 100ms + 140ms), 0s;
}
.info-card--advantage .info-card__no {
    position: absolute;
    top: 10px;
    right: 14px;
    z-index: 0;
    margin: 0;
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.04em;
    font-variant-numeric: tabular-nums;
    color: var(--accent);
    opacity: 0;
    pointer-events: none;
    user-select: none;
    transform: translateX(12px);
    transition:
        opacity .9s cubic-bezier(.22, 1, .36, 1),
        transform .9s cubic-bezier(.22, 1, .36, 1);
    transition-delay: calc(var(--reveal-i, 0) * 100ms + 280ms);
}
.info-card__icon {
    position: relative;
    z-index: 1;
    flex: none;
    width: 48px;
    height: 48px;
    margin: 0 0 20px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    background: rgba(177, 34, 44, .08);
    transform: scale(.86);
    transition: transform .55s cubic-bezier(.22, 1, .36, 1);
    transition-delay: calc(var(--reveal-i, 0) * 100ms + 220ms);
}
.info-card__icon-svg {
    display: block;
    width: 22px;
    height: 22px;
}
.info-card--advantage h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.3;
}
.info-card--advantage p {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
}

#advantages .site-section__head {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity .8s cubic-bezier(.22, 1, .36, 1),
        transform .8s cubic-bezier(.22, 1, .36, 1);
}
#advantages.is-inview .site-section__head {
    opacity: 1;
    transform: translateY(0);
}
#advantages.is-inview .info-card--advantage {
    opacity: 1;
    transform: translateY(0);
}
#advantages.is-inview .info-card--advantage:hover {
    transform: translateY(-4px);
    transition-delay: 0s;
    transition-duration: .25s, .25s, .25s;
}
#advantages.is-inview .info-card--advantage .info-card__no {
    opacity: .1;
    transform: translateX(0);
}
#advantages.is-inview .info-card--advantage .info-card__icon {
    transform: scale(1);
}
@media (prefers-reduced-motion: reduce) {
    #advantages .site-section__head,
    #advantages .info-card--advantage,
    #advantages .info-card--advantage .info-card__no,
    #advantages .info-card--advantage .info-card__icon {
        opacity: 1;
        transform: none;
        transition: none;
    }
    #advantages .info-card--advantage .info-card__no {
        opacity: .1;
    }
}

.course-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    min-height: 100%;
}
.course-card__media {
    position: relative;
    height: 156px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(180deg, rgba(14, 18, 36, .28), rgba(14, 18, 36, .58)),
        var(--course-cover, none) center/cover no-repeat,
        linear-gradient(145deg, rgba(27, 36, 72, .92), rgba(177, 34, 44, .72));
}
.course-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(14, 18, 36, .22));
    pointer-events: none;
}
.course-card__cover {
    display: none;
}
.course-card__icon {
    position: relative;
    z-index: 1;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(14, 18, 36, .38);
    border: 1px solid rgba(255, 255, 255, .28);
    backdrop-filter: blur(6px);
}
.course-card__icon-svg {
    display: block;
    width: 26px;
    height: 26px;
}
.course-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px 22px 24px;
}
.course-card__badge {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
    width: 84px;
    height: 84px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: none;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    pointer-events: none;
}
.course-card__badge::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    border-style: solid;
    border-width: 0 84px 84px 0;
    border-color: transparent var(--accent) transparent transparent;
}
.course-card__badge::after {
    content: "推荐";
    position: absolute;
    top: 16px;
    right: -6px;
    width: 72px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    line-height: 1;
    text-align: center;
    transform: rotate(45deg);
}
.course-card h3 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.3;
    color: var(--navy-deep);
}
.course-card__summary {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0 0 14px;
    min-height: calc(1.7em * 2);
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}
.course-card ul {
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
    color: var(--ink);
}
.course-card li {
    position: relative;
    margin: 8px 0;
    padding-left: 22px;
    font-size: 14px;
    line-height: 1.55;
}
.course-card li::before {
    content: "★";
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    height: auto;
    border-radius: 0;
    background: none;
    color: #f5b400;
    font-size: 13px;
    line-height: 1.55;
}
.course-card.is-featured {
    border-color: rgba(177, 34, 44, .28);
    box-shadow: 0 16px 36px rgba(177, 34, 44, .1);
}
.course-card.is-featured .course-card__media {
    background:
        linear-gradient(180deg, rgba(177, 34, 44, .18), rgba(14, 18, 36, .62)),
        var(--course-cover, none) center/cover no-repeat,
        linear-gradient(145deg, rgba(177, 34, 44, .92), rgba(27, 36, 72, .78));
}
.course-card__price {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
}
.course-card .site-link {
    margin-top: auto;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 400;
    color: var(--navy-deep);
    text-decoration: none;
    transition: color .2s ease;
}
.course-card .site-link span {
    position: relative;
}
.course-card .site-link span::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .2s ease;
}
.course-card .site-link::after {
    content: "→";
    display: inline-block;
    transition: transform .2s ease;
}
.course-card .site-link:hover {
    color: var(--accent);
    text-decoration: none;
}
.course-card .site-link:hover span::after {
    transform: scaleX(1);
    transform-origin: left;
}
.course-card .site-link:hover::after {
    transform: translateX(5px);
}

#courses .site-section__head {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity .8s cubic-bezier(.22, 1, .36, 1),
        transform .8s cubic-bezier(.22, 1, .36, 1);
}
#courses .course-card {
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity .75s cubic-bezier(.22, 1, .36, 1),
        transform .75s cubic-bezier(.22, 1, .36, 1),
        box-shadow .25s;
    transition-delay: calc(var(--reveal-i, 0) * 100ms + 140ms), calc(var(--reveal-i, 0) * 100ms + 140ms), 0s;
}
#courses.is-inview .site-section__head {
    opacity: 1;
    transform: translateY(0);
}
#courses.is-inview .course-card {
    opacity: 1;
    transform: translateY(0);
}
#courses.is-inview .course-card:hover {
    transform: translateY(-4px);
    transition-delay: 0s;
    transition-duration: .25s, .25s, .25s;
}
@media (prefers-reduced-motion: reduce) {
    #courses .site-section__head,
    #courses .course-card {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.site-link { font-weight: 600; }
.site-link::after { content: " →"; }

.process-flow {
    --process-gap-x: clamp(48px, 6vw, 88px);
    --process-gap-y: clamp(40px, 4.5vw, 56px);
    --process-line: #f5c518;
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: var(--process-gap-x);
    row-gap: var(--process-gap-y);
}
.process-flow__item:nth-child(1) { grid-column: 1; grid-row: 1; }
.process-flow__item:nth-child(2) { grid-column: 2; grid-row: 1; }
.process-flow__item:nth-child(3) { grid-column: 3; grid-row: 1; }
.process-flow__item:nth-child(4) { grid-column: 3; grid-row: 2; }
.process-flow__item:nth-child(5) { grid-column: 2; grid-row: 2; }
.process-flow__item:nth-child(6) { grid-column: 1; grid-row: 2; }
.process-flow__item:nth-child(7) { grid-column: 1; grid-row: 3; }
.process-flow__item:nth-child(8) { grid-column: 2; grid-row: 3; }
.process-flow__item:nth-child(9) { grid-column: 3; grid-row: 3; }

.process-flow__item {
    position: relative;
    display: block;
    min-width: 0;
}
.process-flow__node {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 100%;
    padding: 20px 18px 22px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(30, 39, 72, .05);
    transition: background .22s ease, transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.process-flow__item:hover .process-flow__node {
    background: #fff7f7;
    border-color: rgba(177, 34, 44, .18);
    box-shadow: 0 12px 28px rgba(30, 39, 72, .08);
    transform: translateY(-2px);
}
.process-flow__no {
    display: block;
    margin: 0 0 14px;
    font-size: clamp(28px, 2.4vw, 34px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: .02em;
    font-variant-numeric: tabular-nums;
    color: rgba(198, 40, 40, .18);
}
.process-flow__head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 10px;
}
.process-flow__icon {
    display: inline-flex;
    flex: none;
    margin: 0;
    color: #5b6478;
    transition: color .22s ease;
}
.process-flow__icon-svg {
    display: block;
    width: 24px;
    height: 24px;
}
.process-flow__item:hover .process-flow__icon {
    color: var(--accent);
}
.process-flow__node h3 {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--navy-deep);
    transition: color .22s ease;
}
.process-flow__node h3 a {
    color: inherit;
}
.process-flow__item:hover .process-flow__node h3 {
    color: var(--accent);
}
.process-flow__node p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.process-flow__rail {
    display: none;
}
.process-flow__item:nth-child(1) .process-flow__rail,
.process-flow__item:nth-child(2) .process-flow__rail,
.process-flow__item:nth-child(5) .process-flow__rail,
.process-flow__item:nth-child(6) .process-flow__rail,
.process-flow__item:nth-child(7) .process-flow__rail,
.process-flow__item:nth-child(8) .process-flow__rail {
    position: absolute;
    top: 50%;
    left: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--process-gap-x);
    height: 18px;
    margin: 0;
    transform: translateY(-50%);
    pointer-events: none;
}
.process-flow__rail::before {
    content: "";
    flex: 1 1 auto;
    height: 3px;
    max-width: calc(100% - 16px);
    background: var(--process-line);
    border-radius: 2px;
}
.process-flow__rail::after {
    content: "";
    flex: none;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 0 7px 12px;
    border-color: transparent transparent transparent var(--process-line);
}
.process-flow__item:nth-child(5) .process-flow__rail,
.process-flow__item:nth-child(6) .process-flow__rail {
    flex-direction: row-reverse;
}
.process-flow__item:nth-child(5) .process-flow__rail::after,
.process-flow__item:nth-child(6) .process-flow__rail::after {
    border-width: 7px 12px 7px 0;
    border-color: transparent var(--process-line) transparent transparent;
}

.process-flow__item:nth-child(3)::before,
.process-flow__item:nth-child(6)::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: calc(-1 * var(--process-gap-y) + 10px);
    z-index: 2;
    width: 3px;
    height: calc(var(--process-gap-y) - 24px);
    background: var(--process-line);
    border-radius: 2px;
    transform: translateX(-50%);
    pointer-events: none;
}
.process-flow__item:nth-child(3)::after,
.process-flow__item:nth-child(6)::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: calc(-1 * var(--process-gap-y) + 2px);
    z-index: 2;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 7px 0 7px;
    border-color: var(--process-line) transparent transparent transparent;
    transform: translateX(-50%);
    pointer-events: none;
}

#process .site-section__head {
    margin-bottom: 52px;
}
#process .site-section__head,
#process .process-flow__item {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity .75s cubic-bezier(.22, 1, .36, 1),
        transform .75s cubic-bezier(.22, 1, .36, 1);
}
#process .process-flow__item {
    transition-delay: calc(var(--reveal-i, 0) * 70ms + 100ms);
}
#process.is-inview .site-section__head,
#process.is-inview .process-flow__item {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    #process .site-section__head,
    #process .process-flow__item {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.split__visual {
    min-height: 460px;
    border-radius: 12px;
    overflow: hidden;
    background:
        linear-gradient(160deg, rgba(22, 27, 50, .28), rgba(22, 27, 50, .52)),
        var(--split-cover, none) center/cover no-repeat,
        linear-gradient(160deg, rgba(177, 34, 44, .18), rgba(22, 27, 50, .55)),
        radial-gradient(circle at 30% 20%, #6b7394, var(--navy-deep) 70%);
    box-shadow: 0 18px 40px rgba(30, 39, 72, .12);
}
.split__copy .site-btn--primary {
    font-weight: 400;
    min-width: 168px;
    transition: background .22s ease, transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.split__copy .site-btn--primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(177, 34, 44, .28);
}
.check-list { padding: 0; list-style: none; margin: 20px 0 28px; }
.check-list li { padding: 8px 0 8px 28px; position: relative; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 14px; width: 14px; height: 7px; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg); }

#about .split__visual {
    opacity: 0;
    transform: translateX(-32px);
    transition:
        opacity .8s cubic-bezier(.22, 1, .36, 1),
        transform .8s cubic-bezier(.22, 1, .36, 1);
}
#about .split__copy .site-kicker,
#about .split__copy h2,
#about .split__copy .site-lead,
#about .split__copy .site-rich {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity .7s cubic-bezier(.22, 1, .36, 1),
        transform .7s cubic-bezier(.22, 1, .36, 1);
}
#about .split__copy h2 { transition-delay: 80ms; }
#about .split__copy .site-lead,
#about .split__copy .site-rich { transition-delay: 140ms; }
#about .check-list li {
    opacity: 0;
    transform: translateY(12px);
    transition:
        opacity .55s cubic-bezier(.22, 1, .36, 1),
        transform .55s cubic-bezier(.22, 1, .36, 1);
}
#about .check-list li:nth-child(1) { transition-delay: 220ms; }
#about .check-list li:nth-child(2) { transition-delay: 290ms; }
#about .check-list li:nth-child(3) { transition-delay: 360ms; }
#about .check-list li:nth-child(4) { transition-delay: 430ms; }
#about .check-list li:nth-child(5) { transition-delay: 500ms; }
#about .split__copy .site-btn--primary {
    opacity: 0;
    transform: translateY(12px);
    transition:
        opacity .6s cubic-bezier(.22, 1, .36, 1),
        transform .6s cubic-bezier(.22, 1, .36, 1),
        background .22s ease,
        box-shadow .22s ease,
        border-color .22s ease,
        color .22s ease;
    transition-delay: 560ms, 560ms, 0s, 0s, 0s, 0s;
}
#about.is-inview .split__visual,
#about.is-inview .split__copy .site-kicker,
#about.is-inview .split__copy h2,
#about.is-inview .split__copy .site-lead,
#about.is-inview .split__copy .site-rich,
#about.is-inview .check-list li,
#about.is-inview .split__copy .site-btn--primary {
    opacity: 1;
    transform: none;
}
#about.is-inview .split__copy .site-btn--primary:hover {
    transform: translateY(-2px);
    transition-delay: 0s;
    transition-duration: .22s;
}
@media (prefers-reduced-motion: reduce) {
    #about .split__visual,
    #about .split__copy .site-kicker,
    #about .split__copy h2,
    #about .split__copy .site-lead,
    #about .split__copy .site-rich,
    #about .check-list li,
    #about .split__copy .site-btn--primary {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.gallery { display: grid; grid-template-columns: 1.4fr 1fr 1fr; grid-template-rows: 240px 200px; gap: 14px; }
.gallery__item {
    position: relative;
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    display: grid;
    place-items: end start;
    padding: 18px;
    color: #fff;
    font-weight: 600;
    background: var(--navy-deep);
}
.gallery__link {
    position: absolute;
    inset: 0;
    display: block;
    cursor: zoom-in;
}
.gallery__item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}
.gallery__item--lg img { object-position: center 22%; }
.gallery__item--wide img { object-position: center 42%; }
.gallery__item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(14, 18, 36, .62) 100%);
    pointer-events: none;
}
.gallery__item figcaption {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 15px;
    letter-spacing: .04em;
    text-shadow: 0 1px 10px rgba(0, 0, 0, .45);
    pointer-events: none;
}
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item--lg { grid-row: 1 / span 2; }
.gallery__item--wide { grid-column: 2 / span 2; }
@media (prefers-reduced-motion: reduce) {
    .gallery__item img,
    .gallery__item:hover img { transform: none; transition: none; }
}

#gallery .site-section__head,
#gallery .gallery__item {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity .75s cubic-bezier(.22, 1, .36, 1),
        transform .75s cubic-bezier(.22, 1, .36, 1);
}
#gallery .gallery__item {
    transition-delay: calc(var(--reveal-i, 0) * 80ms + 100ms);
}
#gallery .gallery__item:nth-child(1) { --reveal-i: 0; }
#gallery .gallery__item:nth-child(2) { --reveal-i: 1; }
#gallery .gallery__item:nth-child(3) { --reveal-i: 2; }
#gallery .gallery__item:nth-child(4) { --reveal-i: 3; }
#gallery.is-inview .site-section__head,
#gallery.is-inview .gallery__item {
    opacity: 1;
    transform: none;
}
@media (prefers-reduced-motion: reduce) {
    #gallery .site-section__head,
    #gallery .gallery__item {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.site-lightbox {
    position: fixed;
    inset: 0;
    z-index: 220;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px 80px 48px;
}
.site-lightbox[hidden] { display: none; }
.site-lightbox__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    padding: 0;
    background: rgba(14, 18, 36, .88);
    cursor: zoom-out;
}
.site-lightbox__stage {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 100%;
    max-height: 100%;
}
.site-lightbox__img {
    display: block;
    max-width: min(1120px, 100%);
    max-height: calc(100vh - 140px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    background: #111;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .4);
}
.site-lightbox__meta {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 0;
    color: #fff;
}
.site-lightbox__caption {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
}
.site-lightbox__count {
    margin: 0;
    color: rgba(255, 255, 255, .62);
    font-size: 13px;
    font-variant-numeric: tabular-nums;
}
.site-lightbox__close,
.site-lightbox__nav {
    position: absolute;
    z-index: 2;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .32);
    background: rgba(14, 18, 36, .42);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease;
}
.site-lightbox__close:hover,
.site-lightbox__nav:hover {
    background: rgba(177, 34, 44, .92);
    border-color: transparent;
}
.site-lightbox__close {
    top: 18px;
    right: 18px;
    font-size: 28px;
    line-height: 1;
    font-weight: 300;
}
.site-lightbox__nav { top: 50%; transform: translateY(-50%); }
.site-lightbox__nav--prev { left: 16px; }
.site-lightbox__nav--next { right: 16px; }
.site-lightbox__nav-icon {
    display: block;
    width: 9px;
    height: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    box-sizing: border-box;
}
.site-lightbox__nav--prev .site-lightbox__nav-icon { transform: translateX(1px) rotate(135deg); }
.site-lightbox__nav--next .site-lightbox__nav-icon { transform: translateX(-1px) rotate(-45deg); }
@media (max-width: 860px) {
    .site-lightbox { padding: 64px 16px 24px; }
    .site-lightbox__nav--prev { left: 8px; }
    .site-lightbox__nav--next { right: 8px; }
    .site-lightbox__img { max-height: calc(100vh - 120px); }
}

.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
    width: 100%; text-align: left; background: none; border: 0; padding: 18px 36px 18px 0;
    font-size: 18px; font-weight: 600; cursor: pointer; position: relative;
}
.faq__q::after { content: "+"; position: absolute; right: 0; top: 16px; color: var(--navy); }
.faq__q[aria-expanded="true"]::after { content: "–"; }
.faq__a { padding: 0 0 18px; color: var(--muted); }

#faq .site-section__head,
#faq .faq__item {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity .65s cubic-bezier(.22, 1, .36, 1),
        transform .65s cubic-bezier(.22, 1, .36, 1);
}
#faq .faq__item {
    transition-delay: calc(var(--reveal-i, 0) * 60ms + 80ms);
}
#faq.is-inview .site-section__head,
#faq.is-inview .faq__item {
    opacity: 1;
    transform: none;
}
@media (prefers-reduced-motion: reduce) {
    #faq .site-section__head,
    #faq .faq__item {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.cta-banner {
    position: relative;
    margin: 0 32px;
    border-radius: 12px;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(105deg, rgba(14, 18, 36, .88) 8%, rgba(14, 18, 36, .72) 48%, rgba(14, 18, 36, .58) 100%),
        var(--cta-cover, none) center/cover no-repeat,
        linear-gradient(120deg, var(--navy-deep), var(--navy) 72%);
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity .8s cubic-bezier(.22, 1, .36, 1),
        transform .8s cubic-bezier(.22, 1, .36, 1);
}
.cta-banner.is-inview {
    opacity: 1;
    transform: none;
}
@media (prefers-reduced-motion: reduce) {
    .cta-banner {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
.cta-banner__inner {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 64px 8px;
}
.cta-banner h2 { color: #fff; margin: 0 0 8px; }
.cta-banner p { margin: 0; color: rgba(255,255,255,.86); }
.cta-banner__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
    gap: 24px;
    align-items: start;
}
.contact-stack { display: grid; gap: 24px; }
.contact-panel {
    padding: 28px 32px;
    background: #fff;
    border: 1px solid #e4e7ec;
    border-radius: 16px;
}
.contact-panel h2 {
    margin: 0 0 8px;
    color: var(--navy-deep);
    font-size: 22px;
}
.contact-panel__lead {
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 15px;
}
.contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.contact-list li {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list small {
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 13px;
}
.contact-list a,
.contact-list strong {
    color: var(--navy-deep);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.45;
    word-break: break-word;
}
.contact-list a:hover { color: var(--accent); }
.contact-list__icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 12px;
    background-color: rgba(177, 34, 44, .08);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px;
}
.contact-list__icon--phone { background-image: url("../img/website/icon-phone.svg"); }
.contact-list__icon--pin { background-image: url("../img/website/icon-pin.svg"); }
.contact-list__icon--mail { background-image: url("../img/website/icon-mail.svg"); }
.contact-list__icon--shield { background-image: url("../img/website/icon-shield.svg"); }
.contact-panel__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}
.contact-complaint {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
    align-items: flex-start;
}
.contact-complaint p { margin: 0 0 8px; }
.contact-complaint p:last-child { margin-bottom: 0; }
.contact-complaint__extra { margin-top: 8px; }
.contact-panel--map { min-height: 100%; }
.map-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 280px;
    margin-top: 8px;
    padding: 28px 20px;
    border-radius: 14px;
    background:
        radial-gradient(circle at 50% 42%, rgba(177, 34, 44, .12), transparent 42%),
        linear-gradient(160deg, #eef1f6, #d7dce8);
    color: var(--navy-deep);
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease;
}
.map-panel:hover {
    color: var(--navy-deep);
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(30, 39, 72, .1);
}
.map-panel__pin {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: #fff url("../img/website/icon-pin.svg") center / 24px no-repeat;
    box-shadow: 0 8px 20px rgba(177, 34, 44, .12);
}
.map-panel strong { font-size: 18px; }
.map-panel small { color: var(--muted); font-size: 13px; }

.site-footer {
    background: #141414;
    color: #fff;
    padding: 80px 0 28px;
}
.site-footer__col,
.site-friends,
.site-footer__bottom {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity .7s cubic-bezier(.22, 1, .36, 1),
        transform .7s cubic-bezier(.22, 1, .36, 1);
}
.site-footer__col:nth-child(1) { transition-delay: 0ms; }
.site-footer__col:nth-child(2) { transition-delay: 80ms; }
.site-footer__col:nth-child(3) { transition-delay: 160ms; }
.site-footer__col:nth-child(4) { transition-delay: 240ms; }
.site-friends { transition-delay: 280ms; }
.site-footer__bottom { transition-delay: 320ms; }
.site-footer.is-inview .site-footer__col,
.site-footer.is-inview .site-friends,
.site-footer.is-inview .site-footer__bottom {
    opacity: 1;
    transform: none;
}
@media (prefers-reduced-motion: reduce) {
    .site-footer__col,
    .site-friends,
    .site-footer__bottom {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
.site-footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr .9fr 1.25fr;
    gap: 48px 56px;
    align-items: start;
}
.site-footer__logo-link {
    display: inline-block;
    margin: 0 0 28px;
}
.site-footer__logo {
    width: 88px;
    height: auto;
    padding: 0;
    background: transparent;
    border-radius: 0;
    object-fit: contain;
}
.site-footer__label {
    margin: 0 0 18px;
    color: #8e8e8e;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .04em;
    line-height: 1.4;
}
.site-footer__label--spaced { margin-top: 36px; }
.site-footer__lead {
    margin: 0 0 6px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 2.2;
}
.site-footer__links,
.site-footer__contact {
    list-style: none;
    margin: 0;
    padding: 0;
}
.site-footer__links li,
.site-footer__contact li {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 2.2;
}
.site-footer a { color: #fff; }
.site-footer a:hover { color: rgba(255, 255, 255, .72); }
.site-footer__disclaimer {
    margin: 0;
    max-width: 36em;
    color: #8e8e8e;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.75;
}
.site-friends {
    display: flex;
    gap: 20px 28px;
    align-items: baseline;
    flex-wrap: wrap;
    margin: 48px 0 0;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}
.site-friends__label {
    color: #8e8e8e;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .04em;
}
.site-friends__list {
    display: flex;
    gap: 8px 28px;
    flex-wrap: wrap;
}
.site-friends__list a {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
}
.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px 24px;
    flex-wrap: wrap;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: #8e8e8e;
    font-size: 12px;
    line-height: 1.6;
}
.site-footer__bottom p { margin: 0; }
.site-footer__bottom a { color: #8e8e8e; }
.site-footer__bottom a:hover { color: #fff; }

.site-totop {
    position: fixed;
    right: max(20px, env(safe-area-inset-right));
    bottom: max(20px, env(safe-area-inset-bottom));
    z-index: 30;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    border-radius: 4px;
    background: var(--navy-deep);
    color: #fff;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    box-shadow: 0 8px 20px rgba(14, 18, 36, .28);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease, background .2s ease, box-shadow .2s ease;
}
.site-totop.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
}
.site-totop:hover {
    background: var(--accent);
    box-shadow: 0 10px 24px rgba(177, 34, 44, .32);
}
.site-totop svg { display: block; margin: 0 auto; }

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 56px 64px;
    align-items: start;
}
.article-body { min-width: 0; }
.article-cover {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
    object-position: center 22%;
    border-radius: 16px;
    margin: 0 0 48px;
    background: var(--navy-deep);
}
.article-content {
    color: #475467;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.85;
}
.article-content > *:first-child { margin-top: 0; }
.article-content > *:last-child { margin-bottom: 0; }
.article-content p {
    margin: 0 0 24px;
}
.article-content h2 {
    margin: 64px 0 20px;
    color: #101828;
    font-size: clamp(28px, 3vw, 34px);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -.02em;
}
.article-content h3 {
    margin: 0 0 10px;
    color: #101828;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}
.article-content ul,
.article-content ol {
    margin: 0 0 24px;
    padding-left: 1.35em;
}
.article-content li { margin: 0 0 8px; }
.article-content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 32px 0 48px;
    border-radius: 16px;
}
.article-content blockquote {
    margin: 48px 0 0;
    padding: 28px 32px;
    border: 0;
    border-radius: 16px;
    background: #f8fafc;
    color: #101828;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;
}
.article-content .about-intro { margin: 0 0 8px; }
.article-content .about-intro h2 { margin-top: 10px; }
.article-content .about-intro .eyebrow {
    margin: 0 0 10px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .08em;
    line-height: 1.4;
}
.article-content .about-intro .lead {
    max-width: 800px;
    margin-bottom: 22px;
    color: #344054;
    font-size: clamp(20px, 2vw, 22px);
    line-height: 1.7;
}
.article-content .about-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 48px 0 72px;
}
.article-content .about-stat {
    min-width: 0;
    padding: 4px 24px 4px 0;
}
.article-content .about-stat:not(:last-child) {
    border-right: 1px solid #e4e7ec;
    padding-right: 28px;
    margin-right: 28px;
}
.article-content .about-stat strong {
    display: block;
    margin: 0 0 8px;
    color: #14213d;
    font-size: clamp(32px, 3.2vw, 42px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.03em;
    font-variant-numeric: tabular-nums;
}
.article-content .about-stat span {
    display: block;
    color: #667085;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}
.article-content .about-values {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 40px;
    margin: 8px 0 8px;
}
.article-content .about-values > * {
    min-width: 0;
    padding-top: 20px;
    border-top: 2px solid #e4e7ec;
    transition: border-color .2s ease;
}
.article-content .about-values > *:hover { border-top-color: var(--accent); }
.article-content .about-values h3 {
    margin-bottom: 12px;
    color: #101828;
}
.article-content .about-values p { margin: 0; }
.article-content .about-quote {
    position: relative;
    margin-top: 64px;
    padding: 36px 40px;
    font-size: clamp(22px, 2.2vw, 26px);
}
.article-content .about-quote::before {
    content: "";
    display: block;
    width: 36px;
    height: 3px;
    margin: 0 0 20px;
    border-radius: 2px;
    background: var(--accent);
}
.article-body > .course-card__price {
    margin: 0 0 28px;
    font-size: 22px;
}
.article-content .course-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 40px;
    margin: 28px 0 40px;
}
.article-content .course-facts > * {
    padding: 20px 0;
    border-top: 1px solid #e4e7ec;
}
.article-content .course-facts h3 {
    margin: 0 0 8px;
    color: var(--accent);
    font-size: 15px;
    font-weight: 600;
}
.article-content .course-facts p { margin: 0; }
.article-content .process-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 8px 0 40px;
}
.article-content .process-highlights > * {
    padding: 20px 22px;
    border: 1px solid #e4e7ec;
    border-radius: 14px;
    background: #fff;
}
.article-content .process-highlights p {
    margin: 0;
    color: #344054;
}
.article-content ol ol,
.article-content ol ul,
.article-content ul ul {
    margin: 10px 0 4px;
}
.article-content .exam-points li strong {
    display: block;
    margin-bottom: 6px;
    color: #101828;
}
.article-content .exam-points p {
    margin: 6px 0 0;
    color: #475467;
    font-size: 16px;
}
.article-content .service-areas {
    display: grid;
    gap: 16px;
    margin: 40px 0 0;
}
.article-content .service-area {
    padding: 28px 32px 24px;
    border: 1px solid #e4e7ec;
    border-radius: 16px;
    background: #fff;
}
.article-content .service-area h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 10px;
    font-size: 22px;
}
.article-content .service-area h2::before {
    content: "";
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 12px;
    background: rgba(177, 34, 44, .08) url("../img/website/icon-pin.svg") center / 20px no-repeat;
}
.article-content .service-area h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 18px 0 12px;
    color: #667085;
    font-size: 15px;
    font-weight: 600;
}
.article-content .service-area h3::before {
    content: "";
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    background: url("../img/website/icon-bus.svg") center / contain no-repeat;
}
.article-content .service-area > p,
.article-content .service-area .service-scope {
    margin: 0 0 4px;
    color: #475467;
}
.article-content .service-area ol {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 20px;
    margin: 0;
    padding-left: 0;
    list-style: none;
    counter-reset: service-stop;
}
.article-content .service-area li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    color: #344054;
    font-size: 15px;
    line-height: 1.65;
}
.article-content .service-area li::before {
    counter-increment: service-stop;
    content: counter(service-stop);
    flex: 0 0 auto;
    min-width: 22px;
    height: 22px;
    padding: 0 5px;
    border-radius: 999px;
    background: rgba(177, 34, 44, .08);
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    line-height: 22px;
    text-align: center;
    font-variant-numeric: tabular-nums;
}
.article-content .service-area .service-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 18px 0 0;
    padding-top: 16px;
    border-top: 1px solid #e4e7ec;
    color: #667085;
    font-size: 15px;
    line-height: 1.7;
}
.article-content .service-area .service-note::before {
    content: "";
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin-top: 4px;
    background: url("../img/website/icon-car.svg") center / contain no-repeat;
}
.article-aside h2 {
    margin: 0 0 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy-deep);
}
.article-aside ul { list-style: none; margin: 0; padding: 0; }
.article-aside a {
    display: block;
    padding: 10px 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.5;
    border-bottom: 1px solid var(--line);
}
.article-aside a.is-active { color: var(--navy); font-weight: 600; }
.site-rich p { margin: 0 0 1em; }

@media (max-width: 1100px) {
    .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .process-flow {
        --process-gap-x: 36px;
        --process-gap-y: 36px;
    }
    .split, .contact-layout, .article-layout { grid-template-columns: 1fr; }
    .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 40px 40px; }
    .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 180px 180px; }
    .gallery__item--lg { grid-row: auto; }
    .gallery__item--wide { grid-column: auto; }
    .site-mega__grid--2,
    .site-mega__grid--3,
    .site-mega__grid--4 { grid-template-columns: repeat(2, 1fr); }
    .site-mega--about,
    .site-mega--course,
    .site-mega--guide {
        grid-template-columns: minmax(0, 1fr) minmax(180px, 28%);
        column-gap: 24px;
    }
    .site-mega--about .site-mega__grid,
    .site-mega--course .site-mega__grid { gap: 20px 32px; }
    .site-mega--about .site-mega__feature,
    .site-mega--course .site-mega__feature { width: min(100%, 280px); justify-self: stretch; }
    .site-mega--about .site-mega__feature { min-height: 188px; }
    .site-mega--course .site-mega__feature { height: 188px; }
    .site-mega--process .site-mega__grid {
        --flow-gap: 8px;
        --flow-row: 20px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .site-container, .site-container--narrow { width: calc(100% - 40px); }
    .article-content {
        font-size: 16px;
    }
    .article-content h2 {
        margin-top: 48px;
        font-size: 28px;
    }
    .article-content .about-intro .lead { font-size: 19px; }
    .article-content .about-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin: 36px 0 48px;
        row-gap: 24px;
    }
    .article-content .about-stat:nth-child(2n) {
        border-right: none;
        margin-right: 0;
        padding-right: 0;
    }
    .article-content .about-stat:nth-child(2n-1) {
        border-right: 1px solid #e4e7ec;
        margin-right: 20px;
        padding-right: 20px;
    }
    .article-content .about-values {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .article-content .about-quote {
        margin-top: 48px;
        padding: 28px 20px;
        font-size: 20px;
    }
    .article-content .course-facts {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .article-content .process-highlights {
        grid-template-columns: 1fr;
    }
    .article-content .service-area {
        padding: 22px 20px 18px;
    }
    .article-content .service-area ol {
        grid-template-columns: 1fr;
    }
    .site-header__inner {
        gap: 12px;
        justify-content: space-between;
    }
    .site-logo { flex: 1 1 auto; min-width: 0; }
    .site-logo__text { min-width: 0; }
    .site-logo__text strong,
    .site-logo__text small {
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .site-nav, .site-header .site-btn--ghost, .site-header .site-btn--primary, .site-header .site-btn--accent, .site-header .site-btn--consult { display: none; }
    .site-header__actions {
        margin-left: auto;
        flex: 0 0 auto;
    }
    .site-menu-btn { display: block; }
    .site-nav-overlay { display: none; }
    .hero { min-height: 620px; }
    .hero__content {
        padding: 108px 0 88px;
        align-items: flex-end;
    }
    .hero__copy { max-width: 100%; }
    .hero h1 { font-size: clamp(30px, 7.5vw, 40px); }
    .hero__desc { font-size: 15px; }
    .hero__controls { bottom: 18px; gap: 12px; }
    .hero__nav { width: 36px; height: 36px; }
    .hero__nav-icon { width: 8px; height: 8px; }
    .card-grid--3, .card-grid--4 { grid-template-columns: 1fr; }
    .process-flow {
        grid-template-columns: 1fr;
        row-gap: 8px;
    }
    .process-flow__item {
        grid-column: 1 !important;
        grid-row: auto !important;
    }
    .process-flow__rail,
    .process-flow__item:nth-child(3)::before,
    .process-flow__item:nth-child(6)::before,
    .process-flow__item:nth-child(3)::after,
    .process-flow__item:nth-child(6)::after,
    .process-flow__item .process-flow__node::after {
        display: none !important;
    }
    .cta-banner { margin: 0 20px; }
    .cta-banner__inner { flex-direction: column; align-items: flex-start; }
    .page-hero--banner {
        min-height: 320px;
        padding: 88px 0 48px;
    }
    .contact-panel { padding: 22px 20px; }
    .map-panel { min-height: 220px; }
    .site-section { padding: 60px 0; }
    .site-footer { padding: 56px 0 24px; }
    .site-footer__grid { grid-template-columns: 1fr; gap: 36px; }
    .site-footer__logo { width: 72px; }
    .site-footer__logo-link { margin-bottom: 24px; }
    .site-logo__mark { width: 40px; height: 40px; flex-basis: 40px; }
    .site-logo__text strong { font-size: 18px; }
    .site-logo__text small { font-size: 7.5px; }
}
