.guide-page {
    --guide-navy: #181819;
    --guide-navy-deep: #33333a;
    --guide-teal: #5672f7;
    --guide-teal-dark: #4560e6;
    --guide-blue: #5672f7;
    --guide-ink: #181819;
    --guide-muted: #54545a;
    --guide-line: #dcdbd3;
    --guide-soft: #e7e9fc;
    --guide-paper: #f5f4ef;
    --guide-cream: #efeee8;
    --guide-white: #ffffff;
    margin: 0;
    color: var(--guide-ink);
    background: var(--guide-cream);
    font-family: Pretendard, "Apple SD Gothic Neo", "Noto Sans KR", system-ui, sans-serif;
    line-height: 1.65;
    word-break: keep-all;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
}

.guide-page *,
.guide-page *::before,
.guide-page *::after {
    box-sizing: border-box;
}

.guide-page h1,
.guide-page h2,
.guide-page h3,
.guide-page p,
.guide-page ul,
.guide-page ol {
    margin-top: 0;
}

.guide-page a {
    color: inherit;
    text-decoration: none;
}

.guide-page button,
.guide-page input,
.guide-page select,
.guide-page summary {
    font: inherit;
}

.guide-page :focus-visible {
    outline: 3px solid rgba(86, 114, 247, 0.45);
    outline-offset: 3px;
}

.guide-page .guide-skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 999;
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--guide-white);
    background: var(--guide-navy-deep);
    transform: translateY(-160%);
}

.guide-page .guide-skip-link:focus {
    transform: translateY(0);
}

.guide-page .guide-container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

.guide-page .nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1.5px solid #1a1a1c;
    background: rgba(239, 238, 232, 0.9);
    backdrop-filter: saturate(150%) blur(12px);
    -webkit-backdrop-filter: saturate(150%) blur(12px);
}

.guide-page .nav-in {
    width: 100%;
    max-width: 1480px;
    height: 74px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.guide-page .brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    color: var(--guide-ink);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.3px;
    white-space: nowrap;
}

.guide-page .brand .mark {
    width: 26px;
    height: 26px;
    color: var(--guide-blue);
}

.guide-page .nav-menu {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: clamp(12px, 1.2vw, 20px);
    margin-left: auto;
    white-space: nowrap;
}

.guide-page .nav-menu > a {
    flex: none;
    color: var(--guide-muted);
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    transition: color 0.15s ease;
}

.guide-page .nav-menu > a:hover,
.guide-page .nav-menu > a.active {
    color: var(--guide-blue);
}

.guide-page .nav-auth {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
}

.guide-page .nav-auth a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 11px;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    transition: 0.15s ease;
}

.guide-page .nav-auth-login {
    color: var(--guide-muted);
    border: 1px solid transparent;
}

.guide-page .nav-auth-login:hover {
    color: var(--guide-blue);
    border-color: var(--guide-line);
    background: var(--guide-paper);
}

.guide-page .nav-auth-join {
    color: var(--guide-white);
    border: 1px solid var(--guide-blue);
    background: var(--guide-blue);
    box-shadow: 0 8px 18px rgba(86, 114, 247, 0.18);
}

.guide-page .nav-auth-join:hover {
    border-color: var(--guide-teal-dark);
    background: var(--guide-teal-dark);
    transform: translateY(-1px);
}

.guide-page .nav-mobile-auth,
.guide-page .nav-burger {
    display: none;
}

.guide-page .nav-burger {
    margin-left: auto;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 76px;
    min-height: 42px;
    padding: 8px 11px;
    border: 1px solid #1a1a1c;
    border-radius: 11px;
    color: var(--guide-ink);
    background: var(--guide-white);
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(20, 20, 22, 0.06);
}

.guide-page .nav-burger > .nav-burger-label {
    display: block;
    white-space: nowrap;
}

.guide-page .nav-burger > .nav-burger-lines {
    position: relative;
    display: block;
    width: 22px;
    height: 16px;
    flex: none;
}

.guide-page .nav-burger-lines i {
    position: absolute;
    left: 0;
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}

.guide-page .nav-burger-lines i:nth-child(1) {
    top: 0;
}

.guide-page .nav-burger-lines i:nth-child(2) {
    top: 7px;
}

.guide-page .nav-burger-lines i:nth-child(3) {
    top: 14px;
}

.guide-page .nav-burger.open {
    color: var(--guide-blue);
    border-color: #b9c2f5;
    background: var(--guide-soft);
}

.guide-page .nav-burger.open .nav-burger-lines i:nth-child(1) {
    top: 7px;
    transform: rotate(45deg);
}

.guide-page .nav-burger.open .nav-burger-lines i:nth-child(2) {
    opacity: 0;
}

.guide-page .nav-burger.open .nav-burger-lines i:nth-child(3) {
    top: 7px;
    transform: rotate(-45deg);
}

.guide-page .guide-hero {
    position: relative;
    overflow: hidden;
    color: var(--guide-ink);
    border-bottom: 1.5px solid #1a1a1c;
    background:
        radial-gradient(circle at 84% 20%, rgba(86, 114, 247, 0.2), transparent 34%),
        var(--guide-cream);
}

.guide-page .guide-hero::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -180px;
    width: 460px;
    height: 460px;
    border: 1px solid rgba(86, 114, 247, 0.22);
    border-radius: 50%;
}

.guide-page .guide-hero__inner {
    position: relative;
    z-index: 1;
    padding-top: 104px;
    padding-bottom: 104px;
    text-align: center;
}

.guide-page .guide-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    margin-bottom: 18px;
    padding: 6px 14px;
    border: 1px solid #cdd3fb;
    border-radius: 999px;
    color: var(--guide-blue);
    background: var(--guide-soft);
    font-size: 13px;
    font-weight: 750;
}

.guide-page .guide-hero h1 {
    margin-bottom: 20px;
    color: var(--guide-ink);
    font-size: clamp(36px, 6vw, 62px);
    line-height: 1.12;
    letter-spacing: -0.055em;
}

.guide-page .guide-hero p {
    max-width: 720px;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    color: var(--guide-muted);
    font-size: clamp(16px, 2vw, 19px);
}

.guide-page .guide-hero__actions,
.guide-page .guide-final-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 11px;
    margin-top: 30px;
}

.guide-page .guide-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 11px;
    font-weight: 800;
    line-height: 1.3;
    text-align: center;
    cursor: pointer;
    transition: transform 0.16s ease, background-color 0.16s ease, border-color 0.16s ease;
}

.guide-page .guide-button:hover {
    transform: translateY(-2px);
}

.guide-page .guide-button--primary {
    color: var(--guide-white);
    background: var(--guide-blue);
    box-shadow: 0 8px 22px rgba(86, 114, 247, 0.26);
}

.guide-page .guide-button--primary:hover {
    background: var(--guide-teal-dark);
}

.guide-page .guide-button--secondary {
    color: var(--guide-ink);
    border-color: #1a1a1c;
    background: rgba(255, 255, 255, 0.42);
}

.guide-page .guide-section {
    padding: 84px 0;
    border-bottom: 1.5px solid #1a1a1c;
    background: var(--guide-cream);
    scroll-margin-top: 86px;
}

.guide-page .guide-section--tinted {
    background: var(--guide-cream);
}

.guide-page .guide-section-heading {
    max-width: 760px;
    margin: 0 auto 36px;
    text-align: center;
}

.guide-page .guide-section-heading > span,
.guide-page .guide-role-panel__heading > span,
.guide-page .guide-final-cta > .guide-container > span {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--guide-teal-dark);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0.08em;
}

.guide-page .guide-section-heading h2,
.guide-page .guide-role-panel__heading h2,
.guide-page .guide-final-cta h2 {
    margin-bottom: 14px;
    color: var(--guide-navy);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.2;
    letter-spacing: -0.045em;
}

.guide-page .guide-section-heading p,
.guide-page .guide-role-panel__heading p {
    margin-bottom: 0;
    color: var(--guide-muted);
    font-size: 17px;
}

.guide-page .guide-section-heading--left {
    margin: 0;
    text-align: left;
}

.guide-page .guide-flow-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    padding: 0;
    list-style: none;
}

.guide-page .guide-flow-list li {
    position: relative;
    min-height: 220px;
    padding: 24px 20px;
    border: 1px solid var(--guide-line);
    border-radius: 16px;
    background: var(--guide-white);
    box-shadow: 0 10px 28px rgba(24, 24, 25, 0.06);
}

.guide-page .guide-flow-list li:not(:last-child)::after {
    content: "→";
    position: absolute;
    top: 35px;
    right: -12px;
    z-index: 2;
    color: var(--guide-teal);
    font-weight: 900;
}

.guide-page .guide-step-number {
    display: grid;
    place-items: center;
    width: 35px;
    height: 35px;
    margin-bottom: 18px;
    border-radius: 50%;
    color: var(--guide-white);
    background: var(--guide-teal);
    font-weight: 850;
}

.guide-page .guide-flow-list h3 {
    margin-bottom: 9px;
    color: var(--guide-navy);
    font-size: 18px;
    letter-spacing: -0.025em;
}

.guide-page .guide-flow-list p {
    margin-bottom: 0;
    color: var(--guide-muted);
    font-size: 14px;
}

.guide-page .guide-notice {
    margin: 20px 0 0;
    padding: 15px 18px;
    border-left: 4px solid var(--guide-teal);
    border-radius: 8px;
    color: var(--guide-muted);
    background: var(--guide-soft);
    font-size: 14px;
}

.guide-page .guide-role-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}

.guide-page .guide-role-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 56px;
    padding: 11px 14px;
    border: 1px solid var(--guide-line);
    border-radius: 12px;
    color: var(--guide-muted);
    background: var(--guide-white);
    font-weight: 780;
    text-align: center;
}

.guide-page .guide-role-nav a.is-current {
    color: var(--guide-white);
    border-color: var(--guide-blue);
    background: var(--guide-blue);
}

.guide-page .guide-role-nav small {
    padding: 3px 6px;
    border-radius: 999px;
    color: var(--guide-blue);
    background: var(--guide-white);
    font-size: 10px;
    font-weight: 850;
}

.guide-page .guide-role-panel {
    padding: clamp(24px, 5vw, 48px);
    border: 1px solid var(--guide-line);
    border-radius: 22px;
    background: var(--guide-white);
    box-shadow: 0 20px 50px rgba(24, 24, 25, 0.08);
}

.guide-page .guide-role-panel__heading {
    max-width: 760px;
    margin-bottom: 28px;
}

.guide-page .guide-role-panel__heading h2 {
    font-size: clamp(27px, 3.4vw, 37px);
}

.guide-page .guide-role-cards,
.guide-page .guide-compare-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.guide-page .guide-role-cards article,
.guide-page .guide-compare-grid article {
    padding: 24px;
    border: 1px solid var(--guide-line);
    border-radius: 16px;
    background: var(--guide-paper);
}

.guide-page .guide-role-icon,
.guide-page .guide-service-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border: 1px solid #cdd3fb;
    border-radius: 12px;
    color: var(--guide-teal-dark);
    background: var(--guide-soft);
    font-weight: 900;
}

.guide-page .guide-role-cards h3,
.guide-page .guide-compare-grid h3,
.guide-page .guide-service-grid h3,
.guide-page .guide-test-grid h3 {
    margin-bottom: 9px;
    color: var(--guide-navy);
    font-size: 20px;
    letter-spacing: -0.03em;
}

.guide-page .guide-role-cards p,
.guide-page .guide-service-grid p,
.guide-page .guide-test-grid p {
    color: var(--guide-muted);
    font-size: 14px;
}

.guide-page .guide-role-cards a,
.guide-page .guide-service-grid a {
    color: var(--guide-teal-dark);
    font-weight: 800;
}

.guide-page .guide-compare-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.guide-page .guide-compare-grid article > span {
    color: var(--guide-teal-dark);
    font-size: 12px;
    font-weight: 850;
}

.guide-page .guide-compare-grid ul {
    min-height: 112px;
    padding-left: 20px;
    color: var(--guide-muted);
}

.guide-page .guide-compare-grid .guide-button--secondary {
    color: var(--guide-navy);
    border-color: var(--guide-line);
    background: var(--guide-white);
}

.guide-page .guide-teacher-paths {
    margin-bottom: 20px;
}

.guide-page .guide-finder {
    padding: 22px;
    border: 1px solid #cdd3fb;
    border-radius: 16px;
    background: var(--guide-soft);
    scroll-margin-top: 96px;
}

.guide-page .guide-finder__heading {
    margin-bottom: 18px;
}

.guide-page .guide-finder__heading > span {
    color: var(--guide-teal-dark);
    font-size: 12px;
    font-weight: 850;
}

.guide-page .guide-finder__heading h3 {
    margin: 4px 0 6px;
    color: var(--guide-navy);
    font-size: 24px;
    letter-spacing: -0.03em;
}

.guide-page .guide-finder__heading p {
    margin: 0;
    color: var(--guide-muted);
    font-size: 14px;
}

.guide-page .guide-finder__controls {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.guide-page .guide-finder__controls label {
    display: grid;
    gap: 7px;
    color: var(--guide-navy);
    font-size: 13px;
    font-weight: 800;
}

.guide-page .guide-finder__controls select,
.guide-page .guide-finder__controls input {
    width: 100%;
    min-height: 48px;
    padding: 10px 12px;
    border: 1px solid var(--guide-line);
    border-radius: 10px;
    color: var(--guide-ink);
    background: var(--guide-white);
    font-size: 16px;
}

.guide-page .guide-finder__button {
    margin-top: 16px;
}

.guide-page .guide-finder__results {
    margin-top: 18px;
}

.guide-page .guide-finder__results > p {
    margin-bottom: 0;
    color: var(--guide-muted);
}

.guide-page .guide-result-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.guide-page .guide-result-card {
    padding: 20px;
    border: 1px solid var(--guide-line);
    border-radius: 14px;
    background: var(--guide-white);
}

.guide-page .guide-result-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.guide-page .guide-result-card__meta span,
.guide-page .guide-tags span {
    padding: 4px 8px;
    border-radius: 999px;
    color: var(--guide-teal-dark);
    background: var(--guide-soft);
    font-size: 11px;
    font-weight: 800;
}

.guide-page .guide-result-card h3 {
    margin-bottom: 8px;
    color: var(--guide-navy);
    font-size: 18px;
}

.guide-page .guide-result-card p {
    margin-bottom: 12px;
    color: var(--guide-muted);
    font-size: 13px;
}

.guide-page .guide-result-card a {
    color: var(--guide-teal-dark);
    font-weight: 800;
}

.guide-page .guide-result-note,
.guide-page .guide-result-empty {
    margin: 14px 0 0;
    color: var(--guide-muted);
    font-size: 13px;
}

.guide-page .guide-service-grid,
.guide-page .guide-test-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.guide-page .guide-service-grid article {
    padding: 25px;
    border: 1px solid var(--guide-line);
    border-radius: 16px;
    background: var(--guide-white);
    box-shadow: 0 10px 28px rgba(24, 24, 25, 0.05);
}

.guide-page .guide-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.guide-page .guide-section--navy {
    color: var(--guide-ink);
    background: var(--guide-cream);
}

.guide-page .guide-section--navy .guide-section-heading > span {
    color: var(--guide-blue);
}

.guide-page .guide-section--navy .guide-section-heading h2,
.guide-page .guide-section--navy .guide-test-grid h3 {
    color: var(--guide-ink);
}

.guide-page .guide-section--navy .guide-section-heading p,
.guide-page .guide-section--navy .guide-test-grid p {
    color: var(--guide-muted);
}

.guide-page .guide-test-grid article {
    padding: 23px;
    border: 1px solid var(--guide-line);
    border-radius: 15px;
    background: var(--guide-white);
    box-shadow: 0 8px 22px rgba(24, 24, 25, 0.05);
}

.guide-page .guide-test-grid article > span {
    display: inline-block;
    margin-bottom: 9px;
    color: var(--guide-blue);
    font-size: 12px;
    font-weight: 800;
}

.guide-page .guide-split,
.guide-page .guide-faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(30px, 6vw, 80px);
    align-items: start;
}

.guide-page .guide-checklist {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.guide-page .guide-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 18px;
    border: 1px solid var(--guide-line);
    border-radius: 13px;
    background: var(--guide-white);
    font-weight: 700;
}

.guide-page .guide-checklist span {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    border-radius: 50%;
    color: var(--guide-white);
    background: var(--guide-teal);
    font-size: 12px;
}

.guide-page .guide-faq-list {
    display: grid;
    gap: 9px;
}

.guide-page .guide-faq-list details {
    border: 1px solid var(--guide-line);
    border-radius: 12px;
    background: var(--guide-white);
}

.guide-page .guide-faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 56px;
    padding: 15px 18px;
    color: var(--guide-navy);
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.guide-page .guide-faq-list summary::-webkit-details-marker {
    display: none;
}

.guide-page .guide-faq-list summary span {
    color: var(--guide-teal);
    font-size: 21px;
    transition: transform 0.16s ease;
}

.guide-page .guide-faq-list details[open] summary span {
    transform: rotate(45deg);
}

.guide-page .guide-faq-list details p {
    margin: 0;
    padding: 0 18px 18px;
    color: var(--guide-muted);
}

.guide-page .guide-final-cta {
    padding: 82px 0;
    color: var(--guide-ink);
    background: var(--guide-cream);
    text-align: center;
}

.guide-page .guide-final-cta > .guide-container > span {
    color: var(--guide-teal-dark);
}

.guide-page .guide-final-cta h2 {
    color: var(--guide-ink);
}

.guide-page .guide-final-cta p {
    color: var(--guide-muted);
}

.guide-page .guide-final-cta .guide-button--light {
    color: var(--guide-white);
    background: var(--guide-teal-dark);
}

.guide-page .guide-final-cta .guide-button--outline-light {
    color: var(--guide-ink);
    border-color: #9da8d6;
    background: rgba(255, 255, 255, 0.45);
}

.guide-page .guide-footer {
    padding: 38px 0;
    color: rgba(255, 255, 255, 0.72);
    background: var(--guide-navy-deep);
}

.guide-page .guide-footer .guide-container {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px 30px;
    align-items: center;
}

.guide-page .guide-brand--footer {
    display: inline-flex;
    align-items: center;
    font-size: 20px;
    font-weight: 800;
    color: var(--guide-white);
}

.guide-page .guide-footer nav {
    display: flex;
    justify-content: flex-end;
    gap: 18px;
    font-size: 13px;
    font-weight: 700;
}

.guide-page .guide-footer p {
    grid-column: 1 / -1;
    margin-bottom: 0;
    font-size: 12px;
}

@media (max-width: 1280px) {
    .guide-page .nav-in {
        padding-right: 22px;
        padding-left: 22px;
        gap: 18px;
    }

    .guide-page .nav-menu {
        gap: 11px;
    }

    .guide-page .nav-menu > a {
        font-size: 14px;
    }

    .guide-page .nav-auth a {
        padding-right: 9px;
        padding-left: 9px;
    }
}

@media (max-width: 1180px) {
    .guide-page .nav {
        background: var(--guide-cream);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .guide-page .nav-in {
        position: relative;
        height: 74px;
        min-height: 74px;
    }

    .guide-page .nav-burger {
        display: flex;
    }

    .guide-page .nav-auth {
        display: none;
    }

    .guide-page .nav-menu,
    .guide-page .nav-menu.open {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        z-index: 1000;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 5px;
        max-height: calc(100vh - 86px);
        margin: 0;
        padding: 12px;
        overflow-y: auto;
        border: 1px solid var(--guide-line);
        border-radius: 0 0 14px 14px;
        background: var(--guide-cream);
        box-shadow: 0 18px 34px rgba(20, 20, 22, 0.14);
        white-space: normal;
    }

    .guide-page .nav-menu.open {
        display: flex;
    }

    .guide-page .nav-menu > a {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        min-width: 0;
        min-height: 46px;
        padding: 10px 13px;
        border: 1px solid transparent;
        border-radius: 10px;
        background: transparent;
        font-size: 15px;
        font-weight: 700;
        line-height: 1.25;
        letter-spacing: -0.25px;
        text-align: left;
        white-space: nowrap;
        box-shadow: none;
    }

    .guide-page .nav-menu > a:hover,
    .guide-page .nav-menu > a.active {
        color: var(--guide-blue);
        border-color: #cdd3fb;
        background: var(--guide-soft);
    }

    .guide-page .nav-menu .aidm-course-menu {
        display: block;
        width: 100%;
    }

    .guide-page .nav-menu .aidm-course-menu > .aidm-course-trigger {
        justify-content: space-between;
        width: 100%;
        min-height: 46px;
        padding: 10px 13px;
        border: 1px solid transparent;
        border-radius: 10px;
        font-size: 15px;
        font-weight: 700;
        text-align: left;
    }

    .guide-page .nav-menu .aidm-course-menu.is-open > .aidm-course-trigger {
        color: var(--guide-blue);
        border-color: #cdd3fb;
        background: var(--guide-soft);
    }

    .guide-page .nav-menu .aidm-course-menu > .aidm-course-panel {
        position: static;
        display: none;
        width: 100%;
        min-width: 0;
        max-width: none;
        margin: 4px 0 2px;
        padding: 5px 0 5px 13px;
        border: 0;
        border-left: 2px solid #cdd3fb;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }

    .guide-page .nav-menu .aidm-course-menu.is-open > .aidm-course-panel {
        display: grid;
        transform: none;
    }

    .guide-page .nav-menu .aidm-course-menu > .aidm-course-panel::before {
        display: none;
    }

    .guide-page .nav-mobile-auth {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: center;
        gap: 7px;
        width: 100%;
        padding: 7px 0 0;
    }

    .guide-page .nav-mobile-auth a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        padding: 8px 10px;
        border: 1px solid #1a1a1c;
        border-radius: 9px;
        background: rgba(255, 255, 255, 0.58);
        font-size: 13px;
        font-weight: 700;
        line-height: 1;
        text-align: center;
        white-space: nowrap;
    }

    .guide-page .nav-mobile-auth .nav-mobile-join {
        color: var(--guide-white);
        border-color: var(--guide-blue);
        background: var(--guide-blue);
    }
}

@media (max-width: 980px) {
    .guide-page .guide-flow-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .guide-page .guide-flow-list li {
        min-height: 190px;
    }

    .guide-page .guide-flow-list li:not(:last-child)::after {
        display: none;
    }

    .guide-page .guide-flow-list li:last-child {
        grid-column: 1 / -1;
        min-height: auto;
    }

    .guide-page .guide-finder__controls {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .guide-page .guide-result-grid,
    .guide-page .guide-service-grid,
    .guide-page .guide-test-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 720px) {
    .guide-page .guide-container {
        width: min(100% - 28px, 1160px);
    }

    .guide-page .nav-in {
        padding-right: 20px;
        padding-left: 20px;
    }

    .guide-page .brand {
        font-size: 19px;
    }

    .guide-page .guide-hero__inner {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .guide-page .guide-hero h1 {
        font-size: 36px;
    }

    .guide-page .guide-section {
        padding: 62px 0;
        scroll-margin-top: 72px;
    }

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

    .guide-page .guide-section-heading p,
    .guide-page .guide-role-panel__heading p {
        font-size: 15px;
    }

    .guide-page .guide-role-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .guide-page .guide-role-nav a:last-child {
        grid-column: 1 / -1;
    }

    .guide-page .guide-role-cards,
    .guide-page .guide-compare-grid,
    .guide-page .guide-split,
    .guide-page .guide-faq-layout {
        grid-template-columns: 1fr;
    }

    .guide-page .guide-compare-grid ul {
        min-height: 0;
    }

    .guide-page .guide-finder__controls,
    .guide-page .guide-result-grid,
    .guide-page .guide-service-grid,
    .guide-page .guide-test-grid {
        grid-template-columns: 1fr;
    }

    .guide-page .guide-finder__button {
        width: 100%;
    }

    .guide-page .guide-final-cta {
        padding: 64px 0;
    }

    .guide-page .guide-footer .guide-container {
        grid-template-columns: 1fr;
    }

    .guide-page .guide-footer nav {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .guide-page .guide-footer p {
        grid-column: auto;
    }
}

@media (max-width: 480px) {
    .guide-page .nav-in {
        padding-right: 16px;
        padding-left: 16px;
    }

    .guide-page .nav-burger {
        min-width: 70px;
        padding-right: 9px;
        padding-left: 9px;
    }

    .guide-page .nav-mobile-auth {
        grid-template-columns: 1fr;
    }

    .guide-page .guide-hero__actions,
    .guide-page .guide-final-cta__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .guide-page .guide-button {
        width: 100%;
        min-height: 50px;
    }

    .guide-page .guide-flow-list {
        grid-template-columns: 1fr;
    }

    .guide-page .guide-flow-list li,
    .guide-page .guide-flow-list li:last-child {
        grid-column: auto;
        min-height: auto;
    }

    .guide-page .guide-role-panel {
        padding: 20px;
        border-radius: 17px;
    }

    .guide-page .guide-role-nav a {
        min-height: 52px;
        padding: 8px;
        font-size: 14px;
    }

    .guide-page .guide-role-nav small {
        display: none;
    }

    .guide-page .guide-finder {
        padding: 16px;
    }
}

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