@import url("https://cdn.jsdelivr.net/gh/eunchurn/NanumSquareNeo@0.0.6/nanumsquareneo.css");

:root {
    color-scheme: light;
    --ink: #182018;
    --muted: #66705f;
    --line: #e4eadc;
    --paper: #ffffff;
    --soft: #f6faef;
    --brand: #62b33f;
    --brand-dark: #0b9531;
    --brand-deep: #244f23;
    --accent: #ff7300;
    --accent-dark: #ff7300;
    --mint: #007ddb;
    --shadow: 0 20px 60px rgba(36, 79, 35, 0.14);
    --radius: 8px;
    font-family: "NanumSquareNeo", "Pretendard", "Noto Sans KR", "Segoe UI", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    text-align: center;
    word-break: keep-all;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(228, 234, 220, 0.92);
    backdrop-filter: blur(12px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    gap: 24px;
}

.logo {
    display: inline-flex;
    align-items: center;
    font-weight: 800;
    text-decoration: none;
}

.logo-image {
    display: block;
    width: 150px;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: #43503f;
    font-size: 0.96rem;
    font-weight: 700;
}

.main-nav a {
    text-decoration: none;
}

.main-nav a:hover {
    color: var(--accent);
}

.hero-section {
    position: relative;
    display: grid;
    align-content: end;
    min-height: calc(100vh - 72px);
    padding: 116px 0 28px;
    overflow: hidden;
    color: #fff;
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media {
    background:
        linear-gradient(90deg, rgba(35, 71, 32, 0.78), rgba(255, 115, 0, 0.2)),
        url("assets/hero-study.png") center / cover;
    transform: scale(1.02);
}

.hero-overlay {
    background:
        linear-gradient(180deg, rgba(24, 32, 24, 0.08), rgba(24, 32, 24, 0.7)),
        radial-gradient(circle at 78% 18%, rgba(255, 115, 0, 0.34), transparent 34%);
}

.hero-content,
.hero-stats {
    position: relative;
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(calc(100% - 40px), 760px);
    max-width: 760px;
    transform: translate(-50%, -50%);
    padding-bottom: 0;
}

.eyebrow,
.section-label {
    margin: 0 0 14px;
    color: var(--accent);
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-content h1 {
    margin: 0;
    font-size: clamp(3.05rem, 6.2vw, 5.9rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.hero-content h1 span {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.68em;
}

.level-test-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 44px;
    padding: 13px 26px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.2;
    background: var(--accent);
    border: 0;
    border-radius: 999px;
    box-shadow: 0 14px 30px rgba(255, 115, 0, 0.22);
    transition: background 0.18s ease, transform 0.18s ease;
}

.level-test-btn:hover {
    color: #fff;
    background: var(--brand-dark);
    transform: translateY(-2px);
}

.hero-text {
    max-width: 660px;
    margin: 22px auto 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.15rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.primary-btn,
.secondary-btn,
button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 0;
    border-radius: var(--radius);
    font: inherit;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.primary-btn {
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--brand));
    box-shadow: 0 14px 30px rgba(255, 115, 0, 0.2);
}

.primary-btn:hover {
    background: linear-gradient(135deg, var(--accent-dark), var(--brand-dark));
}

.secondary-btn {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.34);
}

.hero-consult-btn {
    border-radius: 999px;
}

.hero-stats {
    align-self: end;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #fff;
    color: var(--ink);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-stats div {
    padding: 24px 28px;
    border-right: 1px solid var(--line);
}

.hero-stats div:last-child {
    border-right: 0;
}

.hero-stats strong {
    display: block;
    color: var(--brand-dark);
    font-size: 1.85rem;
    line-height: 1;
}

.hero-stats span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-weight: 700;
}

section {
    scroll-margin-top: 86px;
}

.intro-section,
.program-section,
.process-section,
.special-title-section,
.region-section,
.tuition-section {
    padding: 92px 0;
}

.region-detail-section {
    background: var(--soft);
}

.intro-section {
    background: #fff;
}

.program-section {
    background: var(--soft);
}

.process-section {
    background: #fff;
}

.region-map-section {
    background: linear-gradient(180deg, #fff7ef, #ffffff);
}

.tuition-section {
    background: #fff;
    border-top: 1px solid var(--line);
}

.region-section {
    background: #fff;
}

.special-title-section {
    background: #fff;
}

.special-slider {
    position: relative;
    width: min(430px, 100%);
    margin: 34px auto 0;
}

.special-card {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    border-radius: 16px;
    background: transparent;
    filter: none;
    touch-action: pan-y;
    user-select: none;
}

.special-track {
    display: flex;
    width: 100%;
    will-change: transform;
    transition: transform 0.48s cubic-bezier(.22, .7, .25, 1);
}

.special-track.is-dragging {
    transition: none;
}

.special-slide {
    display: block;
    flex: 0 0 100%;
    width: 100%;
    height: auto;
    pointer-events: none;
}

.special-slide.active {
    display: block;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 30px;
    height: 74px;
    min-height: 74px;
    padding: 0;
    color: var(--accent);
    background: transparent;
    box-shadow: none;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
    transform: translateY(-50%);
}

.slider-arrow:hover {
    background: transparent;
    color: var(--green);
}

.slider-arrow.prev {
    left: 8px;
}

.slider-arrow.next {
    right: 8px;
}

.intro-grid,
.process-grid,
.tuition-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 56px;
    align-items: center;
}

.intro-grid {
    grid-template-columns: 1fr;
    max-width: 860px;
    text-align: center;
}

.process-grid {
    grid-template-columns: 1fr;
    max-width: 920px;
    text-align: center;
}

.intro-copy {
    max-width: 760px;
    margin: 0 auto;
}

h2 {
    margin: 0;
    font-size: clamp(2rem, 3.2vw, 3.1rem);
    line-height: 1.22;
    letter-spacing: 0;
}

.intro-copy p,
.process-heading p,
.price-panel p,
.faq-list p {
    color: var(--muted);
    line-height: 1.8;
}

.intro-copy p:first-child {
    margin-top: 4px;
}

.academy-body-image {
    width: min(100%, 706px);
    height: auto;
    margin: 34px auto 0;
    border-radius: var(--radius);
}

.section-header {
    max-width: 720px;
    margin: 0 auto 38px;
    text-align: center;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.program-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
    gap: 28px;
    align-items: start;
}

.program-stack {
    display: grid;
    gap: 18px;
}

.region-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.region-toggle {
    max-width: 100%;
}

.region-summary {
    position: relative;
    display: block;
    padding: 22px 56px 22px;
    margin-bottom: 0;
    list-style: none;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 14px 34px rgba(36, 79, 35, 0.08);
    cursor: pointer;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

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

.region-summary::marker {
    content: "";
}

.region-toggle[open] .region-summary {
    margin-bottom: 30px;
}

.region-summary:hover {
    border-color: var(--accent);
    box-shadow: 0 16px 38px rgba(255, 115, 0, 0.12);
    transform: translateY(-2px);
}

.region-summary h2 {
    color: var(--ink);
}

.region-summary-icon {
    position: absolute;
    top: 50%;
    right: 24px;
    width: 16px;
    height: 16px;
    border-right: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    transform: translateY(-65%) rotate(45deg);
    transition: transform 0.18s ease;
}

.region-toggle[open] .region-summary-icon {
    transform: translateY(-35%) rotate(225deg);
}

.region-card {
    overflow: hidden;
    text-decoration: none;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 14px 34px rgba(36, 79, 35, 0.08);
}

.region-card-body {
    padding: 34px 28px;
}

.region-card-body span {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 900;
}

.region-card-body h3 {
    margin: 0 0 12px;
    color: var(--ink);
    font-size: 1.6rem;
}

.region-card-body p {
    min-height: 54px;
    margin: 0 0 22px;
    color: var(--muted);
    line-height: 1.7;
}

.region-card-body a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 20px;
    color: #fff;
    text-decoration: none;
    background: var(--accent);
    border-radius: 999px;
    font-weight: 700;
}

.region-card-body a:hover {
    color: #fff;
    background: var(--brand-dark);
}

.region-hero {
    padding: 86px 0 72px;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(35, 71, 32, 0.78), rgba(255, 115, 0, 0.28)),
        linear-gradient(180deg, rgba(24, 32, 24, 0.08), rgba(24, 32, 24, 0.64)),
        url("assets/hero-study.png") center / cover no-repeat;
}

.region-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 44px;
    align-items: center;
}

.region-hero-single {
    display: block;
    max-width: 820px;
}

.region-hero-copy {
    text-align: center;
}

.region-hero-copy h1 {
    margin: 0;
    font-size: clamp(2.5rem, 5vw, 4.7rem);
    line-height: 1.12;
}

.region-hero-copy h1 span {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.82em;
}

.region-hero-copy p:not(.section-label) {
    margin: 22px auto 0;
    max-width: 540px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
}

.region-hero-image,
.region-map-image {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 18px 22px 34px rgba(24, 32, 24, 0.14);
}

.region-hero-image {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.region-detail-section,
.region-map-section {
    padding: 82px 0;
}

.region-map-section h2 {
    line-height: 1.45;
}

.region-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.region-info-panel {
    padding: 32px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 14px 34px rgba(36, 79, 35, 0.08);
}

.region-info-panel h2 {
    font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.region-info-panel p:not(.section-label) {
    margin: 18px 0 0;
    color: var(--muted);
    line-height: 1.8;
}

.region-tags,
.school-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 0;
    margin: 22px 0 0;
    list-style: none;
}

.region-tags span,
.school-list li {
    padding: 9px 13px;
    color: var(--brand-dark);
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
}

.region-map-image {
    max-width: 706px;
    margin: 0 auto;
}

.program-card,
.price-panel,
.faq-list details {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 10px 32px rgba(36, 79, 35, 0.07);
}

.program-card {
    min-height: 290px;
    padding: 30px;
}

.program-stack .program-card {
    min-height: auto;
}

.program-card-image {
    width: 92%;
    height: 180px;
    margin: 0 auto 18px;
    object-fit: cover;
    object-position: center center;
    border-radius: var(--radius);
}

.program-card h3 {
    margin: 0 0 14px;
    font-size: 1.45rem;
}

.program-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.managed-class-card {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
    align-self: center;
}

.managed-class-card .special-slider {
    margin-top: 12px;
    margin-bottom: 22px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 14px;
}

.slider-dot {
    width: 9px;
    height: 9px;
    min-height: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #d7dfd2;
    box-shadow: none;
    cursor: pointer;
    transition: width 0.18s ease, background 0.18s ease;
}

.slider-dot.active {
    width: 24px;
    background: var(--accent);
}

.managed-class-card .special-card {
    box-shadow: none;
}

.programs-process-image {
    display: block;
    width: min(100%, 706px);
    height: auto;
    margin: 58px auto 0;
}

.timeline {
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 0 auto;
    max-width: 760px;
    list-style: none;
    counter-reset: step;
}

.timeline li {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.timeline strong {
    font-size: 1.14rem;
}

.process-heading .section-label {
    color: var(--accent);
}

.timeline span {
    color: var(--muted);
    line-height: 1.65;
}

.tuition-grid {
    align-items: stretch;
}

.process-students-image {
    width: min(100%, 706px);
    height: auto;
    margin: 36px auto 0;
}

.price-panel {
    padding: 28px;
}

.price-panel h3 {
    margin: 0 0 18px;
    font-size: 1.35rem;
}

.tuition-note {
    margin-top: 14px;
    color: #9aa493;
    font-size: 0.78rem;
    line-height: 1.5;
    text-align: right;
}

.tuition-table-wrap {
    overflow: hidden;
    border-radius: var(--radius);
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.price-panel table + h3 {
    margin-top: 28px;
}

th,
td {
    padding: 14px 10px;
    border: 0;
    border-right: 1px solid #b7dca8;
    border-bottom: 1px solid #b7dca8;
    text-align: center;
}

th:last-child,
td:last-child {
    border-right: 0;
}

tbody tr:last-child td {
    border-bottom: 0;
}

tbody td:first-child {
    border-left: 1px solid #b7dca8;
}

tbody td:last-child {
    border-right: 1px solid #b7dca8;
}

tbody tr:last-child td {
    border-bottom: 1px solid #b7dca8;
}

th {
    color: #fff;
    background: var(--brand-dark);
}

td:first-child {
    font-weight: 800;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-list details {
    padding: 20px 22px;
}

.faq-list summary {
    font-weight: 900;
    cursor: pointer;
}

.faq-list p {
    margin: 14px 0 0;
}

.floating-contact {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 40;
    display: grid;
    gap: 8px;
    width: 112px;
}

.floating-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 42px;
    padding: 8px 12px;
    text-decoration: none;
    text-align: center;
    color: #fff;
    border: 0;
    border-radius: 999px;
    box-shadow: 0 14px 34px rgba(24, 32, 24, 0.2);
    font-weight: 400;
    font-size: 0.8rem;
    font-family: "NanumSquareNeo", "Pretendard", "Noto Sans KR", "Segoe UI", Arial, sans-serif;
    letter-spacing: 0.04em;
    transition: filter 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.floating-item span {
    flex: 0 0 auto;
    font-size: 0.9rem;
    line-height: 1;
}

.floating-item:hover {
    color: #fff;
    transform: translateY(-4px);
    filter: brightness(1.08);
    box-shadow: 0 18px 34px rgba(24, 32, 24, 0.28);
}

.floating-label {
    font-size: 0.8rem;
    font-weight: 900;
}

.floating-item strong {
    font-size: 0.98rem;
}

.floating-item.phone {
    color: #fff;
    background: #ff7300;
}

.floating-item.sms {
    color: #fff;
    background: #30394b;
}

.floating-item.consult {
    color: #fff;
    background: #164090;
}

.site-footer {
    padding: 26px 0 104px;
    color: #e4efdc;
    background: #142b15;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer-inner strong {
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-inner span {
    font-size: 0.76rem;
    font-weight: 300;
}

@media (hover: hover) and (pointer: fine) {
    a:hover,
    button:hover,
    summary:hover {
        color: var(--accent);
    }

    .primary-btn:hover {
        color: #fff;
        background: var(--accent);
    }

    .level-test-btn:hover {
        color: #fff;
        background: var(--brand-dark);
    }

    .floating-item:hover {
        color: #fff;
        transform: translateY(-4px);
        filter: brightness(1.08);
    }

    .secondary-btn:hover {
        color: var(--accent);
        border-color: var(--accent);
    }

    .slider-arrow:hover {
        color: var(--accent);
    }
}

@media (hover: none) {
    a:active,
    button:active,
    summary:active {
        color: var(--accent);
    }

    .primary-btn:active {
        color: #fff;
        background: var(--accent);
    }

    .floating-item:active {
        color: #fff;
        filter: brightness(1.08);
    }

    .secondary-btn:active {
        color: var(--accent);
        border-color: var(--accent);
    }

    .slider-arrow:active {
        color: var(--accent);
    }
}

@media (max-width: 1100px) {
    .tuition-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 900px) {
    .hero-section {
        display: grid;
        align-content: end;
        min-height: 72vh;
        padding: 48px 0 24px;
        color: #fff;
        background: #142b15;
    }

    .hero-media {
        position: absolute;
        inset: 0;
        width: auto;
        aspect-ratio: auto;
        margin: 0;
        border-radius: 0;
        background:
            linear-gradient(90deg, rgba(35, 71, 32, 0.56), rgba(255, 115, 0, 0.16)),
            linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(24, 32, 24, 0.18)),
            url("assets/hero-study.png") center center / cover no-repeat;
        box-shadow: none;
        transform: none;
    }

    .hero-overlay {
        display: block;
        background:
            linear-gradient(180deg, rgba(24, 32, 24, 0.04), rgba(24, 32, 24, 0.28)),
            radial-gradient(circle at 78% 18%, rgba(255, 115, 0, 0.2), transparent 34%);
    }

    .hero-content {
        top: 48%;
        padding-bottom: 0;
    }

    .level-test-btn {
        margin-top: 64px;
    }

    .hero-text {
        color: rgba(255, 255, 255, 0.88);
    }

    .secondary-btn {
        color: #fff;
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.34);
    }

    .header-inner,
    .main-nav {
        align-items: center;
    }

    .header-inner {
        flex-direction: column;
        padding: 16px 0;
    }

    .main-nav {
        width: 100%;
        justify-content: center;
        overflow-x: auto;
        padding-bottom: 4px;
        white-space: nowrap;
    }

    .intro-grid,
    .process-grid,
    .tuition-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .program-grid {
        grid-template-columns: 1fr;
    }

    .program-layout {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .managed-class-card {
        max-width: 100%;
    }

    .region-grid,
    .region-hero-grid,
    .region-detail-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-stats div {
        border-right: 1px solid var(--line);
        border-bottom: 0;
    }

    .hero-stats div:last-child {
        border-right: 0;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 28px, 1120px);
    }

    .hero-section {
        min-height: 62vh;
        padding: 32px 0 14px;
    }

    .hero-media {
        background-position: center center, center center, center center;
        background-repeat: repeat, repeat, no-repeat;
        background-size: auto, auto, cover;
    }

    .hero-content {
        top: 47%;
        padding-bottom: 0;
    }

    .hero-content h1 {
        font-size: 2.35rem;
        line-height: 1.16;
    }

    .hero-content h1 span {
        margin-top: 8px;
        font-size: 0.72em;
    }

    .level-test-btn {
        margin-top: 64px;
        padding: 10px 18px;
        font-size: 0.86rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-stats div {
        padding: 16px 7px;
        border-right: 1px solid var(--line);
        border-bottom: 0;
    }

    .hero-stats strong {
        font-size: 0.98rem;
    }

    .hero-stats span {
        margin-top: 4px;
        font-size: 0.68rem;
        line-height: 1.25;
        word-break: keep-all;
    }

    .hero-stats div:last-child {
        border-right: 0;
    }

    .hero-actions,
    .primary-btn,
    .secondary-btn {
        width: 100%;
    }

    .intro-section,
    .program-section,
    .process-section,
    .special-title-section,
    .region-section,
    .region-detail-section,
    .region-map-section,
    .tuition-section {
        padding: 66px 0;
    }

    .special-title-section {
        background: #fff;
    }

    .special-slider {
        width: min(360px, calc(100% - 64px));
        margin-top: 26px;
    }

    .special-card {
        min-height: 520px;
        border-radius: 14px;
    }

    .slider-arrow {
        width: 28px;
        height: 64px;
        min-height: 64px;
        font-size: 1.8rem;
    }

    .slider-arrow.prev {
        left: 6px;
    }

    .slider-arrow.next {
        right: 6px;
    }

    .timeline li {
        grid-template-columns: 1fr;
    }

    .timeline span {
        grid-column: auto;
    }

    .price-panel,
    .program-card {
        padding: 22px;
    }

    .process-students-image {
        width: 100%;
        margin-top: 30px;
    }

    .program-card-image {
        height: 160px;
    }

    .region-card-body,
    .region-info-panel {
        padding: 22px;
    }

    .region-card-body p {
        min-height: 0;
    }

    .region-hero {
        padding: 54px 0 58px;
    }

    th,
    td {
        padding: 12px 6px;
        font-size: 0.9rem;
    }

    .floating-contact {
        right: 14px;
        bottom: 14px;
        left: 14px;
        width: auto;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .floating-item {
        min-height: 50px;
        padding: 8px 7px;
        text-align: center;
        font-size: 0.82rem;
        border-radius: 999px;
    }

    .floating-item span {
        font-size: 0.9rem;
    }

    .floating-label {
        font-size: 0.75rem;
    }

    .floating-item strong {
        font-size: 0.86rem;
    }
}
.logo-text {
    color: #17324d;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    font-size: 22px;
    font-weight: 800;
    white-space: nowrap;
}
.academy-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
    gap: 48px;
    align-items: start;
}

.academy-copy h2 { margin: 8px 0 24px; }
.academy-copy p { margin: 0 0 14px; line-height: 1.85; }
.academy-feature-panel { padding: 30px; border-top: 4px solid #ff7400; background: #f4f7f8; }
.academy-feature-panel h3 { margin: 0 0 20px; }
.academy-feature-panel ul { display: grid; gap: 13px; margin: 0; padding-left: 20px; }
.academy-guide-image { grid-column: 1 / -1; display: block; width: min(100%, 980px); margin: 28px auto 0; }

.region-main-cta { margin-top: 28px; }
.region-toggle { border: 0; cursor: pointer; }
.main-region-list { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; margin-top: 28px; }
.main-region-list[hidden] { display: none; }
.main-region-list a { display: flex; min-height: 76px; flex-direction: column; justify-content: center; gap: 5px; padding: 14px 16px; border: 1px solid #dbe1e5; border-radius: 6px; color: #17252d; text-decoration: none; background: #fff; }
.main-region-list a:hover { border-color: #ff7400; }
.main-region-list span { color: #6c7880; font-size: 13px; }

@media (max-width: 900px) {
    .academy-layout { grid-template-columns: 1fr; }
    .academy-guide-image { grid-column: 1; }
    .main-region-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
    .main-region-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.school-exam-content h2 { margin: 0; }
.school-exam-content .school-list { margin: 20px 0 0; }
.school-exam-content > p { margin-top: 22px; line-height: 1.75; }
.school-care-list { display: grid; gap: 10px; margin-top: 24px; }
.school-care-list div { display: grid; grid-template-columns: 88px 1fr; gap: 12px; align-items: center; padding: 13px 14px; border-left: 3px solid var(--accent); background: #f5f7f8; }
.school-care-list strong { color: var(--green); }
.school-care-list span { color: #65727a; font-size: .92rem; }
@media (max-width: 560px) { .school-care-list div { grid-template-columns: 1fr; gap: 4px; } }
