@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");

:root {
    --page-bg: #f4f7fb;
    --sidebar-width: 280px;
    --surface: rgba(255, 255, 255, 0.88);
    --surface-strong: #ffffff;
    --line: rgba(19, 35, 58, 0.08);
    --line-strong: rgba(19, 35, 58, 0.12);
    --text-main: #16263d;
    --text-soft: #667587;
    --accent: #0f5fb6;
    --shadow: 0 18px 48px rgba(18, 35, 58, 0.08);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at top left, rgba(167, 201, 239, 0.18), transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, var(--page-bg) 100%);
    color: var(--text-main);
    font-family: "Pretendard", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
    line-height: 1.6;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    border: 0;
    vertical-align: top;
}

.page-shell {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(18px);
}

.site-header__inner,
.site-footer__inner {
    width: 100%;
    margin: 0 auto;
    padding-left: 32px;
    padding-right: 32px;
}

.site-main {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
    flex: 1 0 auto;
}

.site-header__shell {
    width: min(1280px, 100%);
    margin: 0 auto;
}

.site-header__shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-height: 78px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.brand-block {
    margin: 0;
    flex: 0 0 auto;
}

.brand-block__logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-block__text {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.brand-block__mark {
    display: block;
    width: 42px;
    height: auto;
    flex: 0 0 auto;
}

.brand-block__name,
.brand-block__domain {
    display: block;
    line-height: 1.1;
}

.brand-block__name {
    color: #000000;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.05em;
}

.brand-block__domain {
    color: #667587;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.main-nav {
    flex: 1 1 auto;
}

.main-nav__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav__list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
}

.main-nav__item {
    position: relative;
    flex: 0 0 auto;
}

.main-nav__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 84px;
    padding: 0 16px;
    color: var(--text-main);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: color 0.2s ease;
}

.main-nav__item:hover .main-nav__link,
.main-nav__item.is-active .main-nav__link {
    color: var(--accent);
}

.main-nav__link:after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.main-nav__item:hover .main-nav__link:after,
.main-nav__item.is-active .main-nav__link:after {
    transform: scaleX(1);
}

.site-main {
    padding: 40px 0 64px;
}

.subpage-shell {
    border: 1px solid var(--line);
    border-radius: 32px;
    background: var(--surface-strong);
    box-shadow: 0 24px 56px rgba(18, 35, 58, 0.08);
    overflow: visible;
}

.subpage-layout {
    display: grid;
    grid-template-columns: var(--sidebar-width) minmax(0, 1fr);
    gap: 0;
    align-items: start;
}

.subpage-shell .side-nav,
.subpage-shell .subpage-content {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.subpage-shell .side-nav {
    position: sticky;
    top: 104px;
    align-self: start;
    padding: 32px 24px 28px;
}

.side-nav__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 0 4px 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(19, 35, 58, 0.06);
}

.side-nav__title {
    margin: 0;
    color: var(--text-main);
    font-size: clamp(24px, 2vw, 28px);
    line-height: 1.14;
    font-weight: 650;
    letter-spacing: -0.05em;
}

.side-nav__toggle {
    display: none;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid rgba(19, 35, 58, 0.1);
    border-radius: 999px;
    background: #ffffff;
    color: var(--text-main);
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.side-nav__list {
    position: relative;
    display: grid;
    gap: 6px;
    margin: 0;
    padding: 4px 0 0;
    list-style: none;
}

.side-nav__list:before {
    content: "";
    position: absolute;
    left: 14px;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background: #c8d3e0;
}

.side-nav__item {
    border-bottom: 0;
}

.side-nav__link {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 0 16px 0 34px;
    border: 1px solid rgba(19, 35, 58, 0);
    border-radius: 18px;
    background: transparent;
    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: -0.024em;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.side-nav__link:before {
    content: "";
    position: absolute;
    left: 10px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #c8d3e0;
    transform: translateY(-50%);
    transition: left 0.2s ease, width 0.2s ease, height 0.2s ease, background-color 0.2s ease;
}

.side-nav__link:hover,
.side-nav__link.is-active {
    color: var(--text-main);
}

.side-nav__link:hover {
    border-color: rgba(19, 35, 58, 0.08);
    background: rgba(255, 255, 255, 0.62);
}

.side-nav__link.is-active {
    border-color: transparent;
    background: transparent;
    color: var(--text-main);
    font-weight: 600;
}

.side-nav__link:hover:before,
.side-nav__link.is-active:before {
    background: linear-gradient(180deg, #0558b3 0%, #2f74c0 100%);
}

.side-nav__link.is-active:before {
    left: 12px;
    width: 4px;
    height: 24px;
}

.subpage-shell .subpage-content {
    min-width: 0;
    padding: 36px 40px 40px;
    border-left: 1px solid var(--line);
}

.subpage-head {
    --subpage-title-size: clamp(28px, 4vw, 36px);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.subpage-head__top {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.subpage-head__symbol {
    display: block;
    flex: 0 0 auto;
    width: 5px;
    height: calc(var(--subpage-title-size) * 0.84);
    border-radius: 999px;
    background: linear-gradient(180deg, #0558b3 0%, #2f74c0 100%);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.34) inset;
}

.subpage-head__title {
    margin: 0;
    font-size: var(--subpage-title-size);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.subpage-head__crumb {
    margin: 0;
    display: flex;
    justify-content: flex-end;
    min-width: 0;
}

.subpage-head__crumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.subpage-head__crumb-item {
    display: inline-flex;
    align-items: center;
    gap: 0;
    min-width: 0;
    color: var(--text-soft);
    font-size: 13px;
    letter-spacing: 0.01em;
}

.subpage-head__crumb-item:after {
    content: "";
    display: block;
    flex: 0 0 auto;
    width: 6px;
    height: 6px;
    margin: 0 10px 0 8px;
    border-top: 1.5px solid rgba(22, 38, 61, 0.32);
    border-right: 1.5px solid rgba(22, 38, 61, 0.32);
    transform: rotate(45deg);
}

.subpage-head__crumb-item:last-child:after {
    display: none;
}

.subpage-head__crumb-link,
.subpage-head__crumb-current {
    display: inline-flex;
    align-items: center;
    min-height: 0;
    padding: 0;
    white-space: nowrap;
}

.subpage-head__crumb-link {
    color: var(--text-soft);
    transition: color 0.2s ease;
}

.subpage-head__crumb-link:hover {
    color: var(--accent);
}

.subpage-head__crumb-current {
    color: var(--text-main);
    font-weight: 600;
}

.subpage-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 18px 0 28px;
}

.subpage-divider__accent {
    display: block;
    flex: 0 0 auto;
    width: 44px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent) 0%, rgba(15, 95, 182, 0.18) 100%);
}

.subpage-divider__line {
    display: block;
    flex: 1 1 auto;
    height: 1px;
    background: linear-gradient(90deg, rgba(15, 95, 182, 0.28) 0%, rgba(19, 35, 58, 0.08) 72%, rgba(19, 35, 58, 0) 100%);
}

.legacy-content {
    min-width: 0;
    overflow-x: auto;
}

.legacy-content-body {
    color: var(--text-main);
}

.legacy-content-body p {
    margin-top: 0;
}

.legacy-content-body img {
    max-width: 100%;
    height: auto;
}

.school-solution-image-only {
    display: block;
    max-width: 100%;
    height: auto;
}

.catalog-sheets {
    display: grid;
    gap: 18px;
}

.catalog-sheets img {
    display: block;
    width: 100%;
    height: auto;
}

.legacy-content-body table {
    max-width: 100%;
}

.policy-page {
    display: grid;
    gap: 24px;
    color: #24344c;
    font-size: 17px;
    line-height: 1.72;
    word-break: keep-all;
}

.policy-page p,
.policy-page ol,
.policy-page ul {
    margin: 0;
}

.policy-page__lead,
.policy-page__section,
.policy-page__notice,
.policy-page__updated {
    padding: 24px 26px;
    border: 1px solid #dce5f0;
    border-radius: 10px;
    background: #ffffff;
}

.policy-page__lead {
    border-color: #cddbeb;
    background: #f7f9fc;
}

.policy-page__lead p,
.policy-page__section p {
    margin-top: 10px;
}

.policy-page__lead p:first-child,
.policy-page__section p:first-of-type {
    margin-top: 0;
}

.policy-page__section h3 {
    margin: 0 0 12px;
    color: #16263d;
    font-size: 21px;
    line-height: 1.35;
    font-weight: 500;
}

.policy-page__ordered,
.policy-page__list {
    display: grid;
    gap: 8px;
    padding-left: 22px;
}

.policy-page__ordered + p,
.policy-page__list + p,
.policy-page__section p + .policy-page__ordered,
.policy-page__section p + .policy-page__list {
    margin-top: 12px;
}

.policy-page__notice,
.policy-page__updated {
    color: #516277;
    background: #f7f9fc;
}

.location-page,
.sitemap-page {
    display: grid;
    gap: 24px;
}

.location-page__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    gap: 24px;
    align-items: stretch;
}

.location-page__map {
    overflow: hidden;
    min-height: 460px;
    border: 1px solid #dce5f0;
    border-radius: 10px;
    background: #eef3f8;
    box-shadow: 0 14px 34px rgba(19, 35, 58, 0.08);
}

.location-page__map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 460px;
    border: 0;
}

.location-page__info,
.sitemap-card {
    border: 1px solid #dce5f0;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(19, 35, 58, 0.07);
}

.location-page__info {
    display: grid;
    align-content: space-between;
    gap: 24px;
    padding: 26px;
}

.location-page__list {
    display: grid;
    gap: 0;
    margin: 0;
}

.location-page__list div {
    display: grid;
    gap: 7px;
    padding: 17px 0;
    border-top: 1px solid #e5ebf3;
}

.location-page__list div:first-child {
    padding-top: 0;
    border-top: 0;
}

.location-page__list dt {
    color: #0f5fb6;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 500;
}

.location-page__list dd {
    margin: 0;
    color: #1f3048;
    font-size: 18px;
    line-height: 1.55;
    word-break: keep-all;
}

.location-page__list a {
    color: inherit;
}

.location-page__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.location-page__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 16px;
    border: 1px solid #12305a;
    border-radius: 6px;
    background: #12305a;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 500;
    font-family: inherit;
    text-align: center;
    cursor: pointer;
}

.sitemap-page__grid {
    display: block;
    column-count: 2;
    column-gap: 18px;
}

.sitemap-card {
    display: inline-block;
    overflow: hidden;
    width: 100%;
    margin: 0 0 18px;
    break-inside: avoid;
    page-break-inside: avoid;
}

.sitemap-card h3 {
    margin: 0;
    padding: 18px 22px;
    border-bottom: 1px solid #dce5f0;
    background: #132b4f;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 500;
}

.sitemap-card h3 a {
    color: inherit;
}

.sitemap-card__links,
.sitemap-card__group ul {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sitemap-card__links {
    padding: 12px 22px 18px;
}

.sitemap-card__links li,
.sitemap-card__group li {
    border-top: 1px solid #edf2f7;
}

.sitemap-card__links li:first-child,
.sitemap-card__group li:first-child {
    border-top: 0;
}

.sitemap-card__links a,
.sitemap-card__group a {
    display: block;
    padding: 11px 0;
    color: #24344c;
    font-size: 17px;
    line-height: 1.45;
    word-break: keep-all;
}

.sitemap-card__groups {
    display: grid;
    gap: 0;
    padding: 10px 22px 18px;
}

.sitemap-card__group {
    padding: 12px 0;
    border-top: 1px solid #e2e9f2;
}

.sitemap-card__group:first-child {
    border-top: 0;
}

.sitemap-card__group h4 {
    margin: 0;
}

.sitemap-card__group h4 a {
    color: #0f5fb6;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 500;
}

.sitemap-card__group ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 18px;
    margin-top: 6px;
}

.sitemap-card__group li {
    border-top-style: dashed;
}

.sitemap-card__group li a {
    color: #516277;
    font-size: 15px;
}

.business-field {
    display: grid;
    gap: 34px;
}

.business-field__intro {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    gap: 42px;
    align-items: end;
    min-height: 330px;
    padding: clamp(34px, 4vw, 52px);
    border-radius: 4px;
    background: #12305a;
    color: #ffffff;
}

.business-field__intro::before {
    content: "";
    position: absolute;
    left: clamp(34px, 4vw, 52px);
    right: clamp(34px, 4vw, 52px);
    top: 30px;
    height: 1px;
    background: rgba(255, 255, 255, 0.22);
}

.business-field__intro::after {
    content: "SERVICE PORTFOLIO";
    position: absolute;
    right: -10px;
    bottom: -16px;
    color: rgba(255, 255, 255, 0.06);
    font-size: clamp(54px, 9vw, 118px);
    line-height: 0.82;
    font-weight: 800;
    letter-spacing: 0;
    white-space: nowrap;
    pointer-events: none;
}

.business-field__label {
    position: relative;
    z-index: 1;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.business-field__intro h2 {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: 0;
    word-break: keep-all;
}

.business-field__intro p:last-child {
    position: relative;
    z-index: 1;
    max-width: 520px;
    margin: 0;
    padding: 22px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.76);
    font-size: 18px;
    line-height: 1.78;
    word-break: keep-all;
}

.business-field__overview {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid #cfd9e7;
    border-bottom: 1px solid #cfd9e7;
}

.business-field__overview article {
    min-height: 164px;
    padding: 22px 20px;
    border-left: 1px solid #cfd9e7;
    background: #ffffff;
}

.business-field__overview article:first-child {
    border-left: 0;
}

.business-field__overview span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    margin-bottom: 18px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #0f5fb6;
    font-size: 15px;
    line-height: 1;
}

.business-field__overview h3 {
    margin: 0;
    color: #16263d;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 500;
    letter-spacing: 0;
}

.business-field__overview p {
    margin: 8px 0 0;
    color: #667587;
    font-size: 14px;
    line-height: 1.55;
    word-break: keep-all;
}

.business-field__areas {
    display: grid;
    gap: 0;
    border-top: 1px solid #cfd9e7;
}

.business-field-card {
    position: relative;
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 0;
    overflow: visible;
    border: 0;
    border-bottom: 1px solid #cfd9e7;
    border-radius: 0;
    background: #ffffff;
    box-shadow: none;
}

.business-field-card__side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    min-height: 100%;
    padding: 30px 26px;
    border-right: 1px solid #cfd9e7;
    background: #f7f9fc;
    color: #16263d;
}

.business-field-card__side span {
    color: #0f5fb6;
    font-size: 18px;
    line-height: 1;
}

.business-field-card__side strong {
    color: #16263d;
    font-size: 26px;
    line-height: 1.32;
    font-weight: 500;
    letter-spacing: 0;
    word-break: keep-all;
}

.business-field-card__body {
    min-width: 0;
    padding: 30px 0 32px 34px;
}

.business-field-card__kicker {
    margin: 0 0 8px;
    color: #0f5fb6;
    font-size: 15px;
    line-height: 1;
    font-weight: 500;
}

.business-field-card__body h3 {
    margin: 0;
    color: #16263d;
    font-size: 30px;
    line-height: 1.25;
    font-weight: 500;
    letter-spacing: 0;
    word-break: keep-all;
}

.business-field-card__body > p:not(.business-field-card__kicker) {
    margin: 14px 0 0;
    color: #667587;
    font-size: 16px;
    line-height: 1.72;
    word-break: keep-all;
}

.business-field-card__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.business-field-card__chips span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 5px 11px;
    border: 1px solid #d8e3f0;
    border-radius: 2px;
    background: #ffffff;
    color: #24344c;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 400;
}

.business-field-card__effects {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin: 20px 0 0;
}

.business-field-card__effects div {
    padding: 14px;
    border: 1px solid #d8e3f0;
    border-radius: 2px;
    background: #ffffff;
}

.business-field-card__effects dt,
.business-field-card__effects dd {
    margin: 0;
}

.business-field-card__effects dt {
    color: #16263d;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 500;
}

.business-field-card__effects dd {
    margin-top: 6px;
    color: #667587;
    font-size: 13px;
    line-height: 1.5;
    word-break: keep-all;
}

.joint-curriculum {
    display: grid;
    gap: 28px;
}

.joint-curriculum__intro {
    position: relative;
    padding-left: 28px;
}

.joint-curriculum__intro::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 4px;
    width: 4px;
    border-radius: 999px;
    background: #0f5fb6;
}

.joint-curriculum__label {
    margin: 0 0 12px;
    color: #0f5fb6;
    font-size: 13px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0;
}

.joint-curriculum__intro h2 {
    max-width: 880px;
    margin: 0;
    color: #16263d;
    font-size: clamp(34px, 4.2vw, 52px);
    line-height: 1.12;
    font-weight: 500;
    letter-spacing: 0;
    word-break: keep-all;
}

.joint-curriculum__intro p:last-child {
    max-width: 900px;
    margin: 18px 0 0;
    color: #667587;
    font-size: 17px;
    line-height: 1.75;
    word-break: keep-all;
}

.joint-curriculum__common {
    display: grid;
    grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
    gap: 24px;
    align-items: center;
    padding: 24px 26px;
    border: 1px solid rgba(19, 35, 58, 0.1);
    border-radius: 14px;
    background: #f7f9fc;
}

.joint-curriculum__common span {
    display: block;
    margin-bottom: 8px;
    color: #0f5fb6;
    font-size: 13px;
    line-height: 1;
    font-weight: 500;
}

.joint-curriculum__common h3 {
    margin: 0;
    color: #16263d;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 500;
    letter-spacing: 0;
    word-break: keep-all;
}

.joint-curriculum__common ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.joint-curriculum__common li {
    position: relative;
    padding-left: 14px;
    color: #40516a;
    font-size: 15px;
    line-height: 1.5;
    word-break: keep-all;
}

.joint-curriculum__common li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #0f5fb6;
}

.joint-curriculum__cases {
    display: grid;
    gap: 20px;
}

.joint-case {
    display: grid;
    grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
    gap: 26px;
    align-items: stretch;
    padding: 20px;
    border: 1px solid rgba(19, 35, 58, 0.1);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(19, 35, 58, 0.06);
}

.joint-case__visual {
    margin: 0;
    overflow: hidden;
    border: 1px solid #dce5f0;
    border-radius: 12px;
    background: #eef3f8;
    aspect-ratio: 16 / 10;
}

.joint-case__visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.joint-case__body {
    display: grid;
    align-content: center;
    min-width: 0;
}

.joint-case__region {
    margin: 0 0 8px;
    color: #0f5fb6;
    font-size: 15px;
    line-height: 1;
    font-weight: 500;
}

.joint-case__body h3 {
    margin: 0;
    color: #16263d;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 500;
    letter-spacing: 0;
    word-break: keep-all;
}

.joint-case__summary {
    margin: 14px 0 0;
    color: #667587;
    font-size: 16px;
    line-height: 1.72;
    word-break: keep-all;
}

.joint-case__features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.joint-case__features span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 5px 11px;
    border: 1px solid #d8e3f0;
    border-radius: 999px;
    background: #f5f8fc;
    color: #24344c;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 400;
}

.it-service-map {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.it-service-map__head {
    margin-bottom: 32px;
}

.it-service-map__head-copy {
    position: relative;
    min-width: 0;
    padding: 4px 0 0 28px;
}

.it-service-map__head-copy::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 4px;
    width: 4px;
    border-radius: 999px;
    background: #0f5fb6;
}

.it-service-map__slogan {
    display: grid;
    gap: 4px;
    max-width: 900px;
    margin: 0;
    color: #16263d;
    font-size: clamp(38px, 4.7vw, 62px);
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: 0;
    word-break: keep-all;
}

.it-service-map__slogan span {
    display: block;
}

.it-service-map__slogan strong {
    color: #0f5fb6;
    font-weight: 500;
}

.it-service-map__head p {
    max-width: 820px;
    margin: 20px 0 0;
    color: #667587;
    font-size: 18px;
    line-height: 1.72;
    word-break: keep-all;
}

.it-service-map__diagram {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 730px;
    padding: 38px;
    border: 1px solid rgba(19, 35, 58, 0.1);
    border-radius: 18px;
    background: #f7f9fc;
    overflow: hidden;
}

.it-service-map__diagram::before,
.it-service-map__diagram::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 0;
    border: 1px dashed rgba(15, 95, 182, 0.22);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.it-service-map__diagram::before {
    width: 520px;
    height: 520px;
}

.it-service-map__diagram::after {
    width: 340px;
    height: 340px;
}

.it-service-map__connector {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 190px;
    height: 2px;
    border-radius: 999px;
    background: #aac2e7;
    transform-origin: center;
}

.it-service-map__connector::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #0f5fb6;
    transform: translate(50%, -50%);
}

.it-service-map__connector--software {
    top: calc(50% - 122px);
    left: calc(50% - 94px);
    transform: translate(-50%, -50%) rotate(-148deg);
}

.it-service-map__connector--infra {
    top: calc(50% - 122px);
    left: calc(50% + 94px);
    transform: translate(-50%, -50%) rotate(-32deg);
}

.it-service-map__connector--web {
    top: calc(50% + 122px);
    left: calc(50% - 94px);
    transform: translate(-50%, -50%) rotate(148deg);
}

.it-service-map__connector--security {
    top: calc(50% + 122px);
    left: calc(50% + 94px);
    transform: translate(-50%, -50%) rotate(32deg);
}

.it-service-map__hub {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 11px;
    width: 250px;
    min-height: 250px;
    padding: 28px;
    border-radius: 50%;
    background: #12305a;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 22px 46px rgba(18, 48, 90, 0.2);
}

.it-service-map__hub span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
    line-height: 1.25;
    font-weight: 500;
    letter-spacing: 0;
}

.it-service-map__hub strong {
    color: #ffffff;
    font-size: 32px;
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: 0;
}

.it-service-map__hub p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.58;
    word-break: keep-all;
}

.it-service-map__node {
    position: absolute;
    z-index: 2;
    width: 270px;
    padding: 20px;
    border: 1px solid rgba(19, 35, 58, 0.1);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 16px 34px rgba(19, 35, 58, 0.08);
}

.it-service-map__node--software {
    top: 38px;
    left: 38px;
}

.it-service-map__node--infra {
    top: 38px;
    right: 38px;
}

.it-service-map__node--web {
    bottom: 38px;
    left: 38px;
}

.it-service-map__node--security {
    bottom: 38px;
    right: 38px;
}

.it-service-map__node-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 12px;
}

.it-service-map__node-top p {
    margin: 0 0 6px;
    color: #667587;
    font-size: 12px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0;
}

.it-service-map__node-top h3 {
    margin: 0;
    color: #16263d;
    font-size: 23px;
    line-height: 1.22;
    font-weight: 500;
    letter-spacing: 0;
    word-break: keep-all;
}

.it-service-map__node-top span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border: 1px solid #d6e3f4;
    border-radius: 10px;
    background: #eef5ff;
    color: #0f5fb6;
    font-size: 13px;
    line-height: 1;
    font-weight: 500;
}

.it-service-map__node-desc {
    margin: 0 0 14px;
    color: #667587;
    font-size: 14px;
    line-height: 1.58;
    word-break: keep-all;
}

.it-service-map__node ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.it-service-map__node li {
    position: relative;
    padding-left: 14px;
    color: #24344c;
    font-size: 14px;
    line-height: 1.5;
    word-break: keep-all;
}

.it-service-map__node li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #0f5fb6;
}

.it-service-map__bottom {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}

.it-service-map__bottom article {
    padding: 18px;
    border: 1px solid rgba(19, 35, 58, 0.1);
    border-radius: 14px;
    background: #ffffff;
}

.it-service-map__bottom h3 {
    margin: 0 0 8px;
    color: #16263d;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 500;
    letter-spacing: 0;
}

.it-service-map__bottom p {
    margin: 0;
    color: #667587;
    font-size: 14px;
    line-height: 1.58;
    word-break: keep-all;
}

@media (max-width: 1180px) {
    .location-page__grid {
        grid-template-columns: 1fr;
    }

    .location-page__info {
        align-content: start;
    }

    .sitemap-page__grid {
        column-count: 1;
    }

    .business-field__intro {
        grid-template-columns: 1fr;
        gap: 28px;
        min-height: 0;
    }

    .business-field__intro p:last-child {
        max-width: 760px;
    }

    .business-field__overview {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .business-field__overview article:nth-child(odd) {
        border-left: 0;
    }

    .business-field__overview article:nth-child(n + 3) {
        border-top: 1px solid #cfd9e7;
    }

    .business-field-card {
        grid-template-columns: 1fr;
    }

    .business-field-card__side {
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid #cfd9e7;
    }

    .business-field-card__body {
        padding: 26px 0 30px;
    }

    .joint-case {
        grid-template-columns: 1fr;
    }

    .joint-case__body {
        align-content: start;
    }

    .it-service-map {
        padding: 0;
    }

    .it-service-map__diagram {
        display: grid;
        gap: 16px;
        min-height: 0;
        padding: 22px;
        place-items: stretch;
    }

    .it-service-map__diagram::before,
    .it-service-map__diagram::after,
    .it-service-map__connector {
        display: none;
    }

    .it-service-map__hub,
    .it-service-map__node {
        position: static;
        width: 100%;
    }

    .it-service-map__hub {
        min-height: 170px;
        border-radius: 18px;
    }

    .it-service-map__bottom {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .policy-page {
        gap: 16px;
        font-size: 15px;
        line-height: 1.68;
    }

    .policy-page__lead,
    .policy-page__section,
    .policy-page__notice,
    .policy-page__updated {
        padding: 18px;
        border-radius: 8px;
    }

    .policy-page__section h3 {
        font-size: 19px;
    }

    .location-page,
    .sitemap-page {
        gap: 20px;
    }

    .location-page__map,
    .location-page__map iframe {
        min-height: 360px;
    }

    .location-page__info {
        padding: 20px;
    }

    .location-page__list dd {
        font-size: 16px;
    }

    .location-page__actions {
        grid-template-columns: 1fr;
    }

    .sitemap-card h3 {
        padding: 16px 18px;
        font-size: 20px;
    }

    .sitemap-card__links,
    .sitemap-card__groups {
        padding-left: 18px;
        padding-right: 18px;
    }

    .sitemap-card__group ul {
        grid-template-columns: 1fr;
    }

    .business-field {
        gap: 22px;
    }

    .business-field__intro {
        gap: 24px;
        padding: 28px 20px;
        border-radius: 2px;
    }

    .business-field__intro h2 {
        font-size: 32px;
        line-height: 1.16;
    }

    .business-field__intro p:last-child {
        padding-top: 18px;
        font-size: 15px;
    }

    .business-field__overview {
        grid-template-columns: 1fr;
    }

    .business-field__overview article {
        min-height: 0;
        border-left: 0;
        border-top: 1px solid #cfd9e7;
    }

    .business-field__overview article:first-child {
        border-top: 0;
    }

    .business-field-card {
        border-radius: 0;
    }

    .business-field-card__side {
        padding: 22px 0;
        background: #ffffff;
    }

    .business-field-card__side strong {
        font-size: 23px;
    }

    .business-field-card__body {
        padding: 20px 0 28px;
    }

    .business-field-card__body h3 {
        font-size: 22px;
    }

    .business-field-card__body > p:not(.business-field-card__kicker) {
        font-size: 15px;
    }

    .business-field-card__effects {
        grid-template-columns: 1fr;
    }

    .joint-curriculum {
        gap: 22px;
    }

    .joint-curriculum__intro {
        padding-left: 18px;
    }

    .joint-curriculum__intro::before {
        width: 3px;
    }

    .joint-curriculum__intro h2 {
        font-size: 30px;
        line-height: 1.16;
    }

    .joint-curriculum__intro p:last-child {
        font-size: 15px;
    }

    .joint-curriculum__common {
        grid-template-columns: 1fr;
        padding: 18px;
        border-radius: 12px;
    }

    .joint-curriculum__common h3 {
        font-size: 21px;
    }

    .joint-curriculum__common ul {
        grid-template-columns: 1fr;
    }

    .joint-case {
        gap: 16px;
        padding: 16px;
        border-radius: 12px;
    }

    .joint-case__visual {
        border-radius: 10px;
        aspect-ratio: 4 / 3;
    }

    .joint-case__body h3 {
        font-size: 22px;
    }

    .joint-case__summary {
        font-size: 15px;
    }

    .it-service-map {
        padding: 0;
        border-radius: 0;
    }

    .it-service-map__head-copy {
        padding-left: 18px;
    }

    .it-service-map__head-copy::before {
        width: 3px;
    }

    .it-service-map__slogan {
        gap: 3px;
        font-size: 31px;
        line-height: 1.16;
    }

    .it-service-map__head p {
        margin-top: 16px;
        font-size: 15px;
    }

    .it-service-map__diagram {
        padding: 14px;
        border-radius: 14px;
    }

    .it-service-map__hub {
        padding: 22px 18px;
    }

    .it-service-map__hub strong {
        font-size: 28px;
    }

    .it-service-map__node,
    .it-service-map__bottom article {
        padding: 16px;
    }

    .it-service-map__node-top h3 {
        font-size: 21px;
    }

    .it-service-map__bottom {
        grid-template-columns: 1fr;
    }
}

.case-study-table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(19, 35, 58, 0.1);
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(19, 35, 58, 0.08);
}

.case-study-table {
    width: 100%;
    min-width: 860px;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
    font-family: "Pretendard", "Malgun Gothic", "Apple SD Gothic Neo", sans-serif;
}

.case-study-table caption {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.case-study-table__type-col {
    width: 18%;
}

.case-study-table__name-col {
    width: 28%;
}

.case-study-table__work-col {
    width: 54%;
}

.case-study-table th,
.case-study-table td {
    padding: 15px 18px;
    border-right: 1px solid #e1e8f2;
    border-bottom: 1px solid #e1e8f2;
    color: #24344c;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.55;
    text-align: left;
    vertical-align: middle;
    word-break: keep-all;
}

.case-study-table th:last-child,
.case-study-table td:last-child {
    border-right: 0;
}

.case-study-table tbody .case-study-table__name:last-child {
    border-right: 1px solid #e1e8f2;
}

.case-study-table thead th {
    padding: 16px 18px;
    background: #132b4f;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 400;
    letter-spacing: 0;
    text-align: center;
}

.case-study-table thead th:first-child {
    border-top-left-radius: 10px;
}

.case-study-table thead th:last-child {
    border-top-right-radius: 10px;
}

.case-study-table tbody tr:last-child th,
.case-study-table tbody tr:last-child td {
    border-bottom: 0;
}

.case-study-table tbody tr:not(.case-study-table__group-start) .case-study-table__name {
    border-left: 1px solid #e1e8f2;
}

.case-study-table__group-start th,
.case-study-table__group-start td {
    border-top: 2px solid #b9cbe0;
}

.case-study-table tbody tr:first-child th,
.case-study-table tbody tr:first-child td {
    border-top: 0;
}

.case-study-table__type {
    background: #12305a;
    color: #ffffff !important;
    font-weight: 400;
    text-align: center !important;
    letter-spacing: 0;
}

.case-study-table__name {
    background: #f7f9fc;
    color: #172842;
    font-weight: 400;
}

.case-study-table__work {
    background: #ffffff;
    color: #3f4f64;
}

.case-study-table__work-list {
    display: grid;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.case-study-table__work-list li {
    position: relative;
    padding-left: 13px;
}

.case-study-table__work-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.75em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #1a5fd1;
}

.case-study-table__split-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
}

.service-detail-table__name-col {
    width: 28%;
}

.service-detail-table__content-col {
    width: 72%;
}

.service-detail-table__name {
    word-break: keep-all;
}

.service-detail-table__content p {
    margin: 0;
}

.service-detail-table__content p + p,
.service-detail-table__content p + .case-study-table__work-list,
.service-detail-table__content .case-study-table__work-list + p {
    margin-top: 10px;
}

.service-detail-table__subhead {
    color: #172842;
}

.case-study-mobile-list {
    display: none;
}

@media (max-width: 760px) {
    .case-study-table-wrap {
        display: none;
    }

    .case-study-mobile-list {
        display: grid;
        gap: 14px;
    }

    .case-study-card {
        overflow: hidden;
        border: 1px solid #dce5f0;
        border-radius: 10px;
        background: #ffffff;
        box-shadow: 0 10px 28px rgba(19, 35, 58, 0.07);
    }

    .case-study-card__type {
        margin: 0;
        padding: 13px 16px;
        background: #132b4f;
        color: #ffffff;
        font-size: 19px;
        line-height: 1.35;
        font-weight: 400;
        letter-spacing: 0;
    }

    .case-study-card__items {
        display: grid;
    }

    .case-study-card__item {
        display: grid;
        gap: 11px;
        padding: 15px 16px 16px;
        border-top: 1px solid #e5ebf3;
    }

    .case-study-card__item:first-child {
        border-top: 0;
    }

    .case-study-card__companies {
        display: flex;
        flex-wrap: wrap;
        gap: 7px;
    }

    .case-study-card__companies span {
        display: inline-flex;
        align-items: center;
        min-height: 30px;
        padding: 5px 10px;
        border: 1px solid #d8e3f0;
        border-radius: 999px;
        background: #f5f8fc;
        color: #172842;
        font-size: 15px;
        line-height: 1.35;
        font-weight: 400;
    }

    .case-study-card__works {
        display: grid;
        gap: 7px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .case-study-card__works li {
        position: relative;
        padding-left: 13px;
        color: #40516a;
        font-size: 17px;
        line-height: 1.55;
        word-break: keep-all;
    }

    .case-study-card__works li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0.78em;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: #1a5fd1;
    }

    .service-detail-card__body {
        display: grid;
        gap: 10px;
        padding: 15px 16px 16px;
        color: #40516a;
        font-size: 17px;
        line-height: 1.58;
        word-break: keep-all;
    }

    .service-detail-card__body p {
        margin: 0;
    }

    .service-detail-card__subhead {
        color: #172842;
    }
}

.ceo-message {
    display: grid;
    gap: 0;
}

.ceo-page {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
}

.ceo-stack {
    display: grid;
    gap: 48px;
}

.ceo-hero {
    position: relative;
    overflow: visible;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 408px;
    gap: clamp(36px, 4vw, 47px);
    align-items: stretch;
    padding: 0 0 48px;
    border-bottom: 1px solid var(--line-strong);
    border-radius: 0;
    color: var(--text-main);
    background: none;
    box-shadow: none;
    isolation: auto;
}

.ceo-hero:before {
    display: none;
}

.ceo-hero:after {
    display: none;
}

.ceo-hero-heading {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 0;
    overflow: visible;
    padding: 17px 0 0 6px;
}

.ceo-hero-copy {
    position: relative;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 30px;
    min-height: 100%;
}

.ceo-slogan-meta {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 20px;
    padding-left: 18px;
    color: var(--text-main);
    font-size: 14px;
    line-height: 1.4;
    font-weight: 850;
    letter-spacing: 0.12em;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.ceo-slogan-meta-dot {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    position: absolute;
    left: 2px;
    top: 50%;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(15, 95, 182, 0.12);
    transform: translateY(-50%);
}

.ceo-slogan-meta-text {
    white-space: nowrap;
}

.ceo-slogan-meta-line {
    flex: 1 1 auto;
    height: 1px;
    background: linear-gradient(to right, rgba(10, 16, 32, 0.16), transparent);
}

.ceo-slogan-main {
    margin: 0;
    max-width: 11.4em;
    color: var(--text-main);
    font-size: clamp(48px, 5.4vw, 64px);
    line-height: 1.32;
    letter-spacing: -0.04em;
    font-weight: 700;
    word-break: keep-all;
    text-wrap: balance;
}

.ceo-slogan-chunk {
    display: inline-block;
    margin-right: 0.18em;
    white-space: nowrap;
    transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.ceo-slogan-chunk:last-child {
    margin-right: 0;
}

.ceo-slogan-em {
    color: var(--accent);
}

.ceo-slogan-sub {
    margin: auto 0 0;
    max-width: 560px;
    color: rgba(15, 27, 44, 0.58);
    font-size: 15px;
    line-height: 1.8;
    font-weight: 500;
    letter-spacing: -0.02em;
    word-break: keep-all;
    text-wrap: pretty;
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.ceo-hero-copy.is-animating .ceo-slogan-meta {
    opacity: 0;
    transform: translateY(12px);
}

.ceo-hero-copy.is-animating .ceo-slogan-chunk {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(6px);
}

.ceo-hero-copy.is-animating .ceo-slogan-sub {
    opacity: 0;
    transform: translateY(10px);
}

.ceo-hero-copy.is-visible .ceo-slogan-meta,
.ceo-hero-copy.is-visible .ceo-slogan-sub {
    opacity: 1;
    transform: translateY(0);
}

.ceo-hero-copy.is-visible .ceo-slogan-chunk {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.ceo-hero-copy .ceo-slogan-chunk:nth-child(1) {
    transition-delay: 0.12s;
}

.ceo-hero-copy .ceo-slogan-chunk:nth-child(2) {
    transition-delay: 0.26s;
}

.ceo-hero-copy .ceo-slogan-chunk:nth-child(3) {
    transition-delay: 0.4s;
}

.ceo-hero-copy .ceo-slogan-chunk:nth-child(4) {
    transition-delay: 0.54s;
}

.ceo-hero-copy .ceo-slogan-chunk:nth-child(5) {
    transition-delay: 0.68s;
}

.ceo-hero-copy.is-visible .ceo-slogan-meta {
    transition-delay: 0.04s;
}

.ceo-hero-copy.is-visible .ceo-slogan-sub {
    transition-delay: 0.92s;
}

.ceo-profile-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100%;
    padding: 17px 16px 0 33px;
    border: 0;
    border-radius: 0;
    background: none;
    backdrop-filter: none;
    box-shadow: none;
}

.ceo-profile-panel:before {
    display: none;
}

.ceo-profile-kicker {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 22px;
    color: var(--text-main);
    font-size: 14px;
    line-height: 1.4;
    font-weight: 850;
    letter-spacing: 0.12em;
}

.ceo-profile-kicker:after {
    content: "";
    flex: 1 1 auto;
    height: 1px;
    background: linear-gradient(to right, rgba(10, 16, 32, 0.16), transparent);
}

.ceo-profile-group + .ceo-profile-group {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.ceo-profile-subtitle {
    margin: 0 0 12px;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.ceo-profile-list {
    display: grid;
    gap: 0;
    margin: 0;
}

.ceo-profile-row {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
}

.ceo-profile-row:first-child {
    padding-top: 0;
}

.ceo-profile-row:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.ceo-profile-row dt,
.ceo-profile-row dd {
    margin: 0;
}

.ceo-profile-row dt {
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.45;
    font-weight: 500;
}

.ceo-profile-row dd {
    color: var(--text-main);
    font-size: 15px;
    line-height: 1.55;
    font-weight: 500;
    word-break: keep-all;
}

.ceo-branch {
    display: grid;
    gap: 8px;
}

.ceo-branch span {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 8px;
}

.ceo-branch b {
    color: var(--text-soft);
    font-size: 15px;
    font-weight: 500;
}

.ceo-business-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ceo-business-list li {
    position: relative;
    display: inline-block;
    padding: 0;
    color: var(--text-main);
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
}

.ceo-business-list li:before {
    content: "•";
    margin-right: 6px;
    color: var(--accent);
}

.ceo-message-panel {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
}

.ceo-message-body {
    display: block;
    padding: 0;
}

.ceo-message-copy {
    max-width: 850px;
}

.ceo-message-copy p {
    margin: 0;
    color: var(--text-main);
    font-size: clamp(17px, 1.5vw, 19px);
    line-height: 1.92;
    word-break: keep-all;
}

.ceo-message-quote {
    position: relative;
    margin: 0;
    padding: 0 36px 0 44px;
}

.ceo-message-quote:before,
.ceo-message-quote:after {
    position: absolute;
    color: rgba(15, 95, 182, 0.24);
    font-size: clamp(42px, 4vw, 64px);
    line-height: 1;
    font-weight: 700;
}

.ceo-message-quote:before {
    content: "“";
    left: 0;
    top: -4px;
}

.ceo-message-quote:after {
    content: "”";
    right: 0;
    bottom: -10px;
}

.ceo-message-copy .ceo-message-lead {
    max-width: none;
    color: var(--text-main);
    font-size: clamp(21px, 2.2vw, 30px);
    line-height: 1.66;
    letter-spacing: -0.03em;
    font-weight: 720;
}

.ceo-message-copy p + p {
    margin-top: 24px;
}

.ceo-message-copy .ceo-message-quote + p {
    position: relative;
    margin-top: 28px;
    padding-top: 24px;
}

.ceo-message-copy .ceo-message-quote + p:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 72px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), rgba(15, 95, 182, 0.18));
}

.ceo-signature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--line-strong);
}

.ceo-signature-label {
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.4;
    font-weight: 750;
}

.ceo-signature-name {
    margin-top: 4px;
    color: var(--text-main);
    font-size: 22px;
    line-height: 1.25;
    font-weight: 850;
    letter-spacing: 0.08em;
}

.ceo-signature-hand {
    display: block;
    width: min(220px, 42%);
    height: auto;
    margin-left: auto;
    color: var(--accent);
}

@media (max-width: 980px) {
    .subpage-shell {
        border-radius: 28px;
    }

    .subpage-layout {
        grid-template-columns: 1fr;
    }

    .subpage-shell .side-nav {
        display: none;
    }

    .side-nav__head {
        display: none;
    }

    .subpage-shell .subpage-content {
        padding: 26px 22px 28px;
        border-top: 0;
        border-left: 0;
    }

    .subpage-divider {
        margin: 16px 0 24px;
    }

    .ceo-message {
        gap: 44px;
    }

    .ceo-hero {
        grid-template-columns: 1fr;
        gap: 24px;
        align-items: start;
        padding: 0 0 44px;
    }

    .ceo-hero-heading {
        padding: 40px 0 28px 4px;
    }

    .ceo-hero-copy {
        gap: 24px;
        min-height: 0;
    }

    .ceo-slogan-meta {
        gap: 12px;
        padding-left: 18px;
        font-size: 13px;
        line-height: 1.4;
        letter-spacing: 0.1em;
    }

    .ceo-slogan-main {
        max-width: 12.2em;
        font-size: clamp(40px, 6.2vw, 52px);
    }

    .ceo-slogan-sub {
        max-width: 100%;
    }

    .ceo-profile-panel {
        padding: 24px 0 0;
        border-left: 0;
        border-top: 1px solid var(--line-strong);
        min-height: 0;
    }

}

@media (max-width: 640px) {
    .subpage-shell {
        border-radius: 22px;
    }

    .subpage-shell .subpage-content {
        padding: 22px 18px 24px;
    }

    .subpage-head {
        display: block;
    }

    .subpage-head__crumb {
        margin-top: 10px;
        justify-content: flex-start;
    }

    .subpage-head__crumb-list {
        justify-content: flex-start;
    }

    .subpage-divider {
        gap: 12px;
        margin: 16px 0 22px;
    }

    .case-study-table th,
    .case-study-table td {
        font-size: 15px;
    }

    .subpage-divider__accent {
        width: 36px;
        height: 6px;
    }

    .ceo-message {
        gap: 36px;
    }

    .ceo-hero {
        gap: 20px;
        padding: 0 0 32px;
    }

    .ceo-hero-heading {
        padding: 26px 0 22px 0;
    }

    .ceo-hero-copy {
        gap: 18px;
    }

    .ceo-slogan-meta {
        gap: 12px;
        padding-left: 14px;
        min-height: 16px;
        font-size: 12px;
        line-height: 1.35;
        letter-spacing: 0.08em;
    }

    .ceo-slogan-meta-dot {
        width: 6px;
        height: 6px;
        flex-basis: 6px;
        left: 1px;
        box-shadow: 0 0 0 3px rgba(15, 95, 182, 0.12);
    }

    .ceo-slogan-main {
        max-width: none;
        font-size: clamp(28px, 9vw, 36px);
        line-height: 1.42;
    }

    .ceo-slogan-sub {
        max-width: none;
        font-size: 14px;
        line-height: 1.75;
    }

    .ceo-slogan-chunk {
        display: inline;
        white-space: normal;
    }

    .ceo-profile-panel {
        padding: 18px 0 0;
    }

    .ceo-profile-kicker {
        margin-bottom: 18px;
        padding-left: 16px;
        font-size: 13px;
    }

    .ceo-profile-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .ceo-profile-row dd,
    .ceo-business-list li {
        font-size: 15px;
    }

    .ceo-message-quote {
        padding: 0 18px 0 24px;
    }

    .ceo-message-copy p {
        font-size: 16px;
    }

    .ceo-message-copy .ceo-message-lead {
        font-size: 22px;
        line-height: 1.58;
    }

    .ceo-message-copy .ceo-message-quote + p {
        margin-top: 22px;
        padding-top: 18px;
    }

    .ceo-signature {
        flex-direction: column;
        align-items: flex-start;
    }

    .ceo-signature-name {
        font-size: 20px;
    }

    .ceo-signature-hand {
        width: min(200px, 70%);
        margin-left: 0;
    }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1100;
    padding: 0;
    border-bottom: 1px solid rgba(19, 35, 58, 0.08);
    background: rgba(248, 251, 255, 0.92);
    backdrop-filter: blur(18px);
}

.site-header__shell,
.mega-panel__inner,
.site-footer__inner {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
}

.site-header__inner {
    width: 100%;
    margin: 0;
    padding: 0;
}

.mega-panel__sublist,
.mobile-nav__sublist,
.site-footer__sublist {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-header__shell {
    display: grid;
    grid-template-columns: var(--sidebar-width) minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    min-height: 84px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.brand-block {
    width: var(--sidebar-width);
    align-self: stretch;
    display: flex;
    align-items: flex-start;
    padding-top: 18px;
}

.brand-block__logo {
    display: flex;
    align-items: center;
    width: 100%;
}

.brand-block__mark {
    width: 40px;
}

.main-nav__list {
    justify-content: flex-start;
    gap: 2px;
}

.main-nav__link {
    height: 84px;
    padding: 0 14px;
    font-size: 20px;
    font-weight: 600;
    white-space: nowrap;
}

.main-nav__link:after {
    left: 14px;
    right: 14px;
    bottom: 20px;
}

.site-header__cta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    background: #0f5fb6;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 14px 32px rgba(15, 95, 182, 0.22);
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.header-cta:hover {
    transform: translateY(-1px);
    background: #0a4f97;
    box-shadow: 0 16px 34px rgba(15, 95, 182, 0.28);
}

.header-cta--secondary {
    border: 1px solid rgba(15, 95, 182, 0.18);
    background: #ffffff;
    color: #0f5fb6;
    box-shadow: 0 10px 24px rgba(15, 95, 182, 0.1);
}

.header-cta--secondary:hover {
    background: #f4f8fe;
    box-shadow: 0 13px 28px rgba(15, 95, 182, 0.16);
}

.site-header__mobile-actions {
    display: none;
}

.mega-panel {
    max-height: 0;
    overflow: hidden;
    border-top: 1px solid rgba(19, 35, 58, 0.08);
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.34s ease, opacity 0.22s ease, visibility 0.22s ease;
}

.site-header[data-mega-root]:hover .mega-panel,
.site-header[data-mega-root]:focus-within .mega-panel {
    max-height: 520px;
    opacity: 1;
    visibility: visible;
    box-shadow: 0 26px 42px rgba(18, 35, 58, 0.08);
}

.mega-panel__inner {
    display: grid;
    grid-template-columns: var(--sidebar-width) repeat(4, minmax(0, 1fr));
    gap: 28px;
    padding-top: 26px;
    padding-bottom: 34px;
}

.mega-panel__intro {
    padding-right: 20px;
    border-right: 1px solid rgba(19, 35, 58, 0.08);
}

.mega-panel__title {
    color: #16263d;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.04em;
}

.mega-panel__meta {
    margin-top: 14px;
    color: #667587;
    font-size: 15px;
    line-height: 1.62;
    letter-spacing: -0.02em;
    word-break: keep-all;
}

.mega-panel__col-title,
.site-footer__col-title {
    display: inline-block;
    color: #16263d;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

.mega-panel__col-title {
    display: block;
    padding-bottom: 12px;
    border-bottom: 1px solid #16263d;
}

.mega-panel__sublist,
.site-footer__sublist {
    margin-top: 14px;
}

.mega-panel__sublist li + li,
.site-footer__sublist li + li {
    margin-top: 10px;
}

.mega-panel__sublist a {
    color: #667587;
    font-size: 17px;
    line-height: 1.45;
    transition: color 0.18s ease;
}

.mega-panel__sublist a:hover {
    color: #0f5fb6;
}

.site-main {
    padding-top: 36px;
}

.side-nav {
    top: 132px;
}

.site-footer {
    margin-top: auto;
    padding: 0;
    border-top: 0;
    background: #0d1524;
    color: rgba(235, 242, 252, 0.76);
}

.site-footer__inner {
    padding-top: 44px;
    padding-bottom: 28px;
}

.site-footer__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
    gap: 36px;
    align-items: start;
    padding: 0 0 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__identity {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 36px;
    align-items: start;
    min-width: 0;
}

.site-footer__brand {
    display: grid;
    gap: 12px;
    padding-top: 4px;
}

.site-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.site-footer__logo-mark {
    display: block;
    width: 44px;
    height: auto;
    flex: 0 0 auto;
}

.site-footer__logo-title,
.site-footer__logo-domain {
    display: block;
    line-height: 1.1;
}

.site-footer__logo-title {
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.site-footer__logo-domain {
    color: rgba(235, 242, 252, 0.6);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.site-footer__contact {
    display: grid;
    gap: 6px;
    margin: 0;
    min-width: 0;
}

.site-footer__contact-line {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.86);
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: keep-all;
}

.site-footer__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-self: start;
}

.site-footer__action-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    min-height: 104px;
    padding: 20px 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.03) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    color: #ffffff;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.site-footer__action-card:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.site-footer__action-card--secondary {
    background: linear-gradient(180deg, rgba(15, 95, 182, 0.26) 0%, rgba(15, 95, 182, 0.12) 100%);
    border-color: rgba(72, 146, 235, 0.28);
}

.site-footer__action-label {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.2;
}

.site-footer__action-arrow {
    font-size: 22px;
    line-height: 1;
}

.site-footer__base {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 0 0;
    border-top: 0;
}

.site-footer__copy {
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    font-weight: 600;
}

.site-footer__utility {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
}

.site-footer__utility-link {
    color: rgba(235, 242, 252, 0.64);
    font-size: 17px;
}

.site-footer__utility-link:hover {
    color: #ffffff;
}

body.is-inquiry-modal-open {
    overflow: hidden;
}

.inquiry-modal {
    --inquiry-modal-gap: 24px;
    --inquiry-modal-block-gap: 48px;
    position: fixed;
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100dvh;
    padding:
        calc(var(--inquiry-modal-gap) + env(safe-area-inset-top, 0px))
        var(--inquiry-modal-gap)
        calc(var(--inquiry-modal-gap) + env(safe-area-inset-bottom, 0px));
    overflow: hidden;
}

.inquiry-modal[aria-hidden="false"] {
    display: flex;
}

.inquiry-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 14, 27, 0.62);
}

.inquiry-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(640px, 100%);
    max-height: calc(100dvh - var(--inquiry-modal-block-gap) - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 28px 80px rgba(7, 14, 27, 0.34);
}

.inquiry-modal__head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 28px 30px 20px;
    border-bottom: 1px solid #e1e8f1;
}

.inquiry-modal__eyebrow {
    margin: 0 0 8px;
    color: #0f5fb6;
    font-size: 14px;
    font-weight: 700;
}

.inquiry-modal__title {
    margin: 0;
    color: #16263d;
    font-size: 27px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.inquiry-modal__support-guide {
    margin: 10px 0 0;
    color: #52657c;
    font-size: 15px;
    line-height: 1.5;
    word-break: keep-all;
}

.inquiry-modal__support-guide a {
    color: #0f5fb6;
    font-weight: 700;
}

.inquiry-modal__close {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border: 1px solid #dbe4ef;
    border-radius: 50%;
    background: #ffffff;
    color: #263a56;
    font-family: inherit;
    font-size: 25px;
    line-height: 1;
    cursor: pointer;
}

.inquiry-modal__form {
    display: grid;
    gap: 18px;
    padding: 24px 30px 30px;
}

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

.inquiry-modal__field {
    display: grid;
    gap: 8px;
    color: #22344d;
    font-size: 15px;
    font-weight: 600;
}

.inquiry-modal__field--wide {
    grid-column: 1 / -1;
}

.inquiry-modal__field input,
.inquiry-modal__field textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid #cfd9e6;
    border-radius: 7px;
    background: #ffffff;
    color: #16263d;
    font-family: inherit;
    font-size: 16px;
    line-height: 1.45;
}

.inquiry-modal__field input {
    height: 46px;
    padding: 0 13px;
}

.inquiry-modal__field textarea {
    resize: vertical;
    min-height: 132px;
    padding: 12px 13px;
}

.inquiry-modal__field input:focus,
.inquiry-modal__field textarea:focus {
    outline: 2px solid rgba(15, 95, 182, 0.22);
    border-color: #0f5fb6;
}

.inquiry-modal__agree {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #506174;
    font-size: 14px;
    line-height: 1.45;
}

.inquiry-modal__abuse-note,
.inquiry-modal__privacy-note {
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.62;
    word-break: keep-all;
}

.inquiry-modal__abuse-note {
    border: 1px solid #f0c7c2;
    background: #fff7f6;
    color: #8f2c24;
    font-weight: 600;
}

.inquiry-modal__privacy-note {
    border: 1px solid #dce5f0;
    background: #f7f9fc;
    color: #40536a;
}

.inquiry-modal__agree input {
    margin-top: 3px;
}

.inquiry-modal__turnstile {
    min-height: 65px;
}

.inquiry-modal__message {
    min-height: 20px;
    margin: 0;
    color: #506174;
    font-size: 14px;
    line-height: 1.45;
}

.inquiry-modal__message.is-success {
    padding: 13px 15px;
    border: 1px solid #b7e1c8;
    border-radius: 8px;
    background: #f0fbf4;
    color: #0f6f3c;
    font-weight: 700;
}

.inquiry-modal__message.is-error {
    padding: 13px 15px;
    border: 1px solid #f0c7c2;
    border-radius: 8px;
    background: #fff7f6;
    color: #b42318;
    font-weight: 700;
}

.inquiry-modal__message.is-pending {
    padding: 13px 15px;
    border: 1px solid #b9d4f4;
    border-radius: 8px;
    background: #f3f8ff;
    color: #0f5fb6;
    font-weight: 700;
}

.inquiry-modal__actions {
    display: flex;
    justify-content: flex-end;
}

.inquiry-modal__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    min-height: 46px;
    border: 1px solid #12305a;
    border-radius: 7px;
    background: #12305a;
    color: #ffffff;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.inquiry-modal__submit:disabled {
    cursor: wait;
    opacity: 0.62;
}

.inquiry-modal__trap {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

@media (max-width: 1200px) {
    .site-header__shell,
    .mega-panel__inner {
        width: min(1280px, calc(100% - 32px));
    }

    .site-header__shell {
        gap: 18px;
        min-height: 80px;
    }

    .brand-block__mark {
        width: 38px;
    }

    .brand-block {
        padding-top: 16px;
    }

    .main-nav__list {
        gap: 0;
    }

    .main-nav__link {
        height: 80px;
        padding: 0 10px;
        font-size: 18px;
    }

    .main-nav__link:after {
        left: 10px;
        right: 10px;
        bottom: 18px;
    }

    .header-cta {
        min-height: 40px;
        padding: 0 14px;
        font-size: 16px;
    }

    .mega-panel__inner {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 20px;
    }

    .mega-panel__intro {
        display: none;
    }

    .mega-panel__col-title {
        font-size: 17px;
    }

    .mega-panel__sublist a {
        font-size: 16px;
    }

    .site-footer__top {
        grid-template-columns: 1fr;
    }

    .site-footer__identity {
        grid-template-columns: 220px minmax(0, 1fr);
    }

    .site-footer__actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .site-header {
        position: sticky;
        top: 0;
    }

    .site-header__shell,
    .mega-panel__inner,
    .site-footer__inner {
        width: min(1280px, calc(100% - 32px));
    }

    .site-header__shell {
        display: block;
        min-height: 0;
        padding: 16px 0 14px;
    }

    .site-header__cta,
    .mega-panel {
        display: none;
    }

    .brand-block {
        width: auto;
        padding-bottom: 10px;
    }

    .main-nav__list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-content: stretch;
        gap: 0 18px;
    }

    .main-nav__item {
        border-top: 1px solid rgba(19, 35, 58, 0.08);
    }

    .main-nav__link {
        display: flex;
        justify-content: flex-start;
        height: auto;
        padding: 14px 0;
    }

    .main-nav__link:after {
        display: none;
    }

    .site-main {
        width: min(1200px, calc(100% - 24px));
    }

    .side-nav {
        top: auto;
    }

    .site-footer__inner {
        padding-top: 36px;
    }

    .site-footer__top {
        gap: 24px;
        padding-bottom: 24px;
    }

    .site-footer__identity {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .site-footer__contact {
        gap: 6px;
    }

    .site-footer__actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-footer__utility {
        margin-top: 12px;
    }
}

@media (max-width: 640px) {
    .site-header__shell,
    .site-footer__inner {
        width: min(1280px, calc(100% - 24px));
    }

    .main-nav__list {
        grid-template-columns: 1fr;
    }

    .site-footer__contact {
        gap: 4px;
    }

    .site-footer__actions {
        grid-template-columns: 1fr;
    }
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.site-header__menu-toggle,
.site-header__mobile-actions,
.mobile-nav,
.mobile-nav-backdrop {
    display: none;
}

.site-header__menu-toggle {
    position: relative;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(19, 35, 58, 0.1);
    border-radius: 14px;
    background: #ffffff;
    cursor: pointer;
}

.site-header__menu-line {
    position: absolute;
    left: 11px;
    right: 11px;
    height: 2px;
    border-radius: 999px;
    background: #16263d;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.site-header__menu-line:nth-child(1) {
    top: 14px;
}

.site-header__menu-line:nth-child(2) {
    top: 21px;
}

.site-header__menu-line:nth-child(3) {
    top: 28px;
}

.mobile-nav__sublist {
    margin: 0;
    padding: 0;
    list-style: none;
}

body.is-mobile-nav-open {
    overflow: hidden;
}

@media (max-width: 980px) {
    .main-nav,
    .site-header__cta,
    .mega-panel {
        display: none;
    }

    .site-header {
        position: sticky;
        top: 0;
    }

    .site-header__shell {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 12px;
        min-height: 0;
        padding: 14px 0;
    }

    .brand-block {
        padding-bottom: 0;
        padding-top: 0;
        align-self: center;
        align-items: center;
    }

    .brand-block__mark {
        width: clamp(34px, 8vw, 38px);
    }

    .site-header__mobile-actions {
        display: flex;
        align-items: center;
        gap: 8px;
        justify-self: end;
    }

    .mobile-inquiry-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 80px;
        min-height: 40px;
        padding: 0 13px;
        border: 1px solid rgba(15, 95, 182, 0.18);
        border-radius: 13px;
        background: #0f5fb6;
        color: #ffffff;
        font-size: 14px;
        font-weight: 800;
        line-height: 1;
        white-space: nowrap;
        cursor: pointer;
        box-shadow: 0 10px 22px rgba(15, 95, 182, 0.18);
    }

    .site-header__menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .site-header.is-mobile-nav-open .site-header__menu-line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .site-header.is-mobile-nav-open .site-header__menu-line:nth-child(2) {
        opacity: 0;
    }

    .site-header.is-mobile-nav-open .site-header__menu-line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-nav-backdrop {
        position: fixed;
        inset: 0;
        z-index: 1190;
        background: rgba(8, 16, 29, 0.46);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s ease, visibility 0.2s ease;
    }

    .mobile-nav {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 1200;
        display: none;
        flex-direction: column;
        width: min(400px, 100vw);
        height: 100vh;
        height: 100dvh;
        padding: 18px 20px 24px;
        background: #ffffff;
        box-shadow: -18px 0 48px rgba(18, 35, 58, 0.18);
        transform: none;
        transition: transform 0.22s ease;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .site-header.is-mobile-nav-open .mobile-nav-backdrop {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    .site-header.is-mobile-nav-open .mobile-nav {
        display: flex;
        transform: none;
    }

    .mobile-nav__head {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 16px;
        padding-bottom: 18px;
    }

    .mobile-nav__brand {
        display: flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
    }

    .mobile-nav__brand-mark {
        display: block;
        flex: 0 0 auto;
        width: 36px;
        height: auto;
    }

    .mobile-nav__brand-text {
        display: grid;
        gap: 2px;
        min-width: 0;
    }

    .mobile-nav__brand-name {
        color: #000000;
        font-size: 24px;
        font-weight: 500;
        letter-spacing: -0.05em;
        line-height: 1.1;
    }

    .mobile-nav__brand-domain {
        color: #667587;
        font-size: 13px;
        line-height: 1.2;
    }

    .mobile-nav__close {
        width: 40px;
        height: 40px;
        padding: 0;
        border: 0;
        border-radius: 12px;
        background: rgba(19, 35, 58, 0.06);
        color: #16263d;
        font-size: 28px;
        line-height: 1;
        cursor: pointer;
    }

    .mobile-nav__sections {
        padding-top: 8px;
    }

    .mobile-nav__section {
        border-top: 1px solid rgba(19, 35, 58, 0.08);
    }

    .mobile-nav__section-head {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 40px;
        gap: 12px;
        align-items: center;
        min-height: 56px;
    }

    .mobile-nav__section-link {
        color: #16263d;
        font-size: 17px;
        font-weight: 700;
        letter-spacing: -0.03em;
    }

    .mobile-nav__section.is-active .mobile-nav__section-link {
        color: #0f5fb6;
    }

    .mobile-nav__section-toggle {
        position: relative;
        width: 40px;
        height: 40px;
        padding: 0;
        border: 0;
        border-radius: 12px;
        background: rgba(19, 35, 58, 0.05);
        cursor: pointer;
    }

    .mobile-nav__section-toggle:before,
    .mobile-nav__section-toggle:after {
        content: "";
        position: absolute;
        top: 19px;
        left: 12px;
        right: 12px;
        height: 2px;
        border-radius: 999px;
        background: #16263d;
        transition: transform 0.18s ease;
    }

    .mobile-nav__section-toggle:after {
        transform: rotate(90deg);
    }

    .mobile-nav__section.is-open .mobile-nav__section-toggle:after {
        transform: rotate(0deg);
    }

    .mobile-nav__sublist {
        display: none;
        padding: 0 0 12px;
    }

    .mobile-nav__section.is-open .mobile-nav__sublist {
        display: block;
    }

    .mobile-nav__sublist li + li {
        margin-top: 8px;
    }

    .mobile-nav__sublist a {
        display: block;
        padding: 8px 0 8px 2px;
        color: #5b6c7f;
        font-size: 15px;
        line-height: 1.45;
    }

    .site-main {
        width: min(1200px, calc(100% - 24px));
        padding-top: 26px;
    }

    .side-nav {
        display: none;
    }

    .site-footer {
        margin-top: auto;
    }

    .site-footer__inner {
        width: min(1280px, calc(100% - 32px));
        padding-top: 32px;
        padding-bottom: 24px;
    }

    .site-footer__top {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-bottom: 24px;
    }

    .site-footer__identity {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .site-footer__contact {
        gap: 6px;
    }

    .site-footer__base {
        display: grid;
        justify-content: stretch;
        gap: 12px;
    }
}

@media (max-width: 640px) {
    .site-header__inner {
        padding: 0;
    }

    .site-header__shell,
    .site-footer__inner {
        width: min(1280px, calc(100% - 24px));
    }

    .mobile-nav {
        width: 100vw;
        padding-left: 16px;
        padding-right: 16px;
    }

    .brand-block__logo {
        gap: 8px;
    }

    .brand-block__name {
        font-size: 20px;
    }

    .brand-block__domain {
        font-size: 12px;
    }

    .mobile-inquiry-cta {
        min-width: 72px;
        min-height: 38px;
        padding: 0 10px;
        font-size: 13px;
    }

    .site-header__menu-toggle {
        width: 40px;
        height: 40px;
        border-radius: 13px;
    }

    .mobile-nav__section-link {
        font-size: 16px;
    }

    .site-main {
        width: min(1200px, calc(100% - 20px));
        padding-top: 22px;
    }

    .site-footer__inner {
        padding-top: 28px;
    }

    .site-footer__logo-mark {
        width: 40px;
    }

    .site-footer__contact {
        gap: 4px;
    }

    .site-footer__actions {
        grid-template-columns: 1fr;
    }
}

body.page-home {
    --home-header-offset: 84px;
    background: #eef3f8;
}

.page-home .site-main {
    width: 100%;
    margin: 0;
    padding: 0;
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}

.page-home .home-apple {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}

.page-home .site-footer {
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #0d1524;
}

.page-home .site-footer__inner {
    padding-top: 24px;
    padding-bottom: 18px;
}

.page-home .site-footer__top {
    padding-bottom: 18px;
}

.page-home .site-footer__action-card {
    min-height: 78px;
    padding: 16px 18px;
    border-radius: 18px;
}

.page-home .site-footer__base {
    padding-top: 16px;
}

.page-home .site-footer__contact-line {
    font-size: 13px;
    line-height: 1.62;
}

@media (min-width: 981px) {
    body.page-home {
        height: 100vh;
        overflow-x: hidden;
        overflow-y: auto;
        scroll-snap-type: y proximity;
    }
}

.home-apple {
    width: 100%;
}



/* ========== Hero Main · 아이티메인(주) ========== */
.hero-main{
  --hm-navy:#12305a; --hm-navy-2:#1a3a68;
  --hm-accent:#1a5fd1; --hm-accent-lt:#4d8ff0;
  --hm-off:#f7f9fc; --hm-off-2:#eef2f8;
  --hm-ink:#10284b; --hm-muted:#536478; --hm-line:#d8e0ec;
  --hm-gold:#c89a3a;

  position:relative;
  flex:1 0 auto;
  min-height:auto;
  background:linear-gradient(to right, var(--hm-navy) 0 50%, var(--hm-off) 50% 100%);
  font-family:'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  color:var(--hm-ink);
  overflow:hidden;
}
.hero-main::before{
  content:''; position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(900px 500px at 18% 30%, rgba(77,143,240,.10), transparent 60%),
    radial-gradient(600px 400px at 8% 90%, rgba(26,95,209,.08), transparent 70%);
}
.hero-main__inner{
  position:relative; max-width:1760px; margin:0 auto;
  padding:clamp(48px, 6vh, 68px) clamp(40px, 4vw, 64px) clamp(40px, 5vh, 54px);
  display:grid; grid-template-columns:minmax(0, 1fr) minmax(0, 1fr); gap:72px;
}

/* ── 좌측 카피 ── */
.hero-main__copy{
  color:#eaf1fb;
  display:grid;
  align-content:start;
  row-gap:clamp(24px, 3vh, 34px);
  min-width:0;
}
.hero-main__eyebrow{
  display:inline-flex; align-items:center; gap:13px;
  font-size:17px; font-weight:600; letter-spacing:.08em;
  color:var(--hm-accent-lt); padding:9px 18px;
  border:1px solid rgba(77,143,240,.4); border-radius:999px;
  align-self:flex-start; background:rgba(77,143,240,.06);
}
.hero-main__eyebrow::before{
  content:''; width:8px; height:8px; border-radius:50%;
  background:var(--hm-accent-lt); box-shadow:0 0 0 4px rgba(77,143,240,.18);
}
.hero-main__title{
  margin:40px 0 0; font-size:70px; line-height:1.12; font-weight:700;
  letter-spacing:-.02em; color:#fff; text-wrap:pretty; word-break:keep-all;
}
.hero-main__title em{
  font-style:normal; font-weight:800;
  background:linear-gradient(180deg, transparent 62%, rgba(77,143,240,.55) 62% 92%, transparent 92%);
  padding:0 2px;
}
.hero-main__lede{
  margin:30px 0 0; font-size:22px; line-height:1.68;
  color:#c5d2e6; max-width:900px;
  word-break:keep-all;
  overflow-wrap:normal;
}
.hero-main__ledePoint{
  color:#ffffff;
  font-weight:700;
  box-shadow:inset 0 -0.36em 0 rgba(77,143,240,.36);
}
.hero-main__nowrap{ white-space:nowrap; }
.hero-main__catalog{
  align-self:end;
  width:100%;
  min-height:0;
  display:flex;
  align-items:flex-end;
  justify-content:flex-start;
  padding-top:65px;
}
.hero-main__catalogStack{
  position:relative;
  width:100%;
  aspect-ratio:2.05 / 1;
  transform-origin:left bottom;
  transition:transform .28s ease;
}
.hero-main__catalogStack:hover,
.hero-main__catalogStack:focus-within{
  transform:scale(1.045);
}
.hero-main__catalogPage{
  position:absolute;
  display:block;
  width:66%;
  height:auto;
  border-radius:10px;
  background:#ffffff;
  box-shadow:0 22px 54px rgba(0,0,0,.24);
}
.hero-main__catalogPage--front{
  left:10%;
  bottom:0;
  z-index:4;
  transform:rotate(-1.5deg);
  box-shadow:0 28px 70px rgba(0,0,0,.32);
}
.hero-main__catalogPage--back1{
  left:0;
  bottom:18px;
  z-index:3;
  opacity:.94;
  transform:rotate(-8deg);
}
.hero-main__catalogPage--back2{
  right:7%;
  bottom:22px;
  z-index:2;
  opacity:.82;
  transform:rotate(8deg);
}
.hero-main__catalogPage--back3{
  left:22%;
  bottom:42px;
  z-index:1;
  opacity:.58;
  transform:rotate(2deg);
}
.hero-main__catalogBadge{
  position:absolute;
  right:0;
  bottom:24px;
  z-index:5;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:138px;
  min-height:48px;
  padding:0 16px;
  border:1px solid rgba(255,255,255,.22);
  border-radius:14px;
  background:rgba(12,36,75,.86);
  color:#ffffff;
  font-size:17px;
  line-height:1;
  font-weight:700;
  letter-spacing:-.03em;
  box-shadow:0 18px 38px rgba(0,0,0,.24);
  backdrop-filter:blur(12px);
  transition:background-color .2s ease, transform .2s ease;
}
.hero-main__catalogBadge:hover,
.hero-main__catalogBadge:focus-visible{
  background:#0f5fb6;
  transform:translateY(-2px);
  outline:none;
}
/* ── 우측 ── */
.hero-main__right{
  display:grid;
  grid-template-rows:minmax(0, 1fr) auto;
  min-width:0;
  padding-left:clamp(32px, 3.4vw, 64px);
}
.hero-main__sectionLabel{
  display:inline-flex; align-items:center; gap:10px;
  font-size:16px; font-weight:600; letter-spacing:.12em;
  color:var(--hm-muted); text-transform:uppercase;
}
.hero-main__sectionLabel::before{ content:''; width:31px; height:1px; background:var(--hm-muted); }

.hero-main__progs{
  list-style:none; padding:0; margin:23px 0 0; position:relative;
}
.hero-main__progs::before{
  content:''; position:absolute; left:31px; top:42px; bottom:42px; width:3px;
  background:linear-gradient(to bottom, var(--hm-accent), var(--hm-accent-lt) 50%, rgba(26,95,209,.3));
  border-radius:2px;
}
.hero-main__prog{
  position:relative; display:grid; grid-template-columns:80px 1fr; gap:24px;
  padding:24px 0;
}
.hero-main__prog + .hero-main__prog{ border-top:1px solid var(--hm-line); }
.hero-main__progNum{
  position:relative; z-index:1;
  width:64px; height:64px; border-radius:50%;
  background:#fff; border:2px solid var(--hm-accent);
  display:flex; align-items:center; justify-content:center;
  font-size:20px; font-weight:700; color:var(--hm-accent);
  box-shadow:0 0 0 5px var(--hm-off);
}
.hero-main__prog:first-child .hero-main__progNum{ background:var(--hm-accent); color:#fff; }
.hero-main__prog h3{
  margin:0; font-size:29px; font-weight:700; color:var(--hm-ink); letter-spacing:-.01em;
}
.hero-main__prog p{
  margin:8px 0 0; font-size:18px; line-height:1.55; color:var(--hm-muted);
  word-break:keep-all;
}

.hero-main__supports{
  margin:0;
  padding:0;
  display:grid; grid-template-columns:repeat(2, minmax(270px, 1fr)); gap:28px;
}
.hero-main__supportZone{
  --hm-bottom-zone-height:178px;
  min-height:var(--hm-bottom-zone-height);
  padding-top:30px;
  border-top:2px solid rgba(16, 40, 75, .92);
}
.hero-main__support{ display:flex; gap:18px; align-items:flex-start; }
.hero-main__support > div:not(.hero-main__supportIcon){
  flex:1 1 auto;
  min-width:0;
}
.hero-main__supportIcon{
  flex:0 0 47px; width:47px; min-width:47px; max-width:47px; height:47px; border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  background:var(--hm-off-2); color:var(--hm-accent);
}
.hero-main__support--gold .hero-main__supportIcon{
  background:rgba(200,154,58,.10); color:var(--hm-gold);
}
.hero-main__supportTitle{
  margin:2px 0 0; font-size:18px; font-weight:700; color:var(--hm-ink);
  display:flex; align-items:center; gap:10px;
}
.hero-main__supportDesc{
  margin:8px 0 0; font-size:16px; line-height:1.52; color:var(--hm-muted);
  word-break:keep-all;
}
.hero-main__tag{
  font-size:14px; font-weight:700; letter-spacing:.04em;
  padding:3px 9px; border-radius:5px;
  background:var(--hm-gold); color:#fff;
}
.hero-main__tag--blue{ background:var(--hm-accent); }

/* ── 태블릿 (768~1023px): 2단 → 상하 ── */
@media (max-width: 1480px){
  .hero-main{
    background:linear-gradient(to right, var(--hm-navy) 0 50%, var(--hm-off) 50% 100%);
  }
  .hero-main__inner{
    grid-template-columns:minmax(0, 1fr) minmax(0, 1fr);
    max-width:1440px;
    padding-left:40px;
    padding-right:40px;
    gap:48px;
  }
  .hero-main__right{ padding-left:32px; }
  .hero-main__title{ font-size:62px; }
  .hero-main__lede{ max-width:820px; }
  .hero-main__supports{ grid-template-columns:repeat(2, minmax(0, 1fr)); gap:18px; }
}

@media (max-width: 1023px){
  .hero-main{
    background:var(--hm-off);
  }
  .hero-main__inner{
    grid-template-columns:1fr; gap:0; padding:0;
  }
  .hero-main__copy{
    padding:64px 40px 56px;
    background:var(--hm-navy);
    row-gap:30px;
  }
  .hero-main__right{
    padding:56px 40px;
    background:var(--hm-off);
  }
  .hero-main__title{ font-size:40px; }
  .hero-main__eyebrow{ font-size:13px; padding:7px 14px; gap:10px; }
  .hero-main__lede{ font-size:17px; max-width:520px; }
  .hero-main__catalog{ width:100%; min-height:0; padding:0; }
  .hero-main__supportZone{ min-height:0; }
  .hero-main__supportZone{ padding-top:28px; }
  .hero-main__sectionLabel{ font-size:12px; }
  .hero-main__progs::before{ left:24px; top:34px; bottom:34px; width:2px; }
  .hero-main__prog{ grid-template-columns:64px 1fr; gap:20px; padding:20px 0; }
  .hero-main__progNum{ width:50px; height:50px; font-size:15px; box-shadow:0 0 0 4px var(--hm-off); }
  .hero-main__prog h3{ font-size:22px; }
  .hero-main__prog p{ font-size:14px; }
  .hero-main__supportIcon{ flex-basis:36px; width:36px; min-width:36px; max-width:36px; height:36px; border-radius:8px; }
  .hero-main__supportTitle{ font-size:14px; }
  .hero-main__supportDesc{ font-size:13px; }
  .hero-main__tag{ font-size:11px; padding:2px 7px; }
}

/* ── 모바일 (~767px) ── */
@media (max-width: 767px){
  .hero-main{
    background:var(--hm-off);
  }
  .hero-main__inner{ padding:0; gap:0; }
  .hero-main__copy{ padding:48px 24px 40px; }
  .hero-main__right{ padding:40px 24px; }
  .hero-main__title{ font-size:30px; line-height:1.25; }
  .hero-main__lede{ font-size:14px; }
  .hero-main__catalog{ width:100%; min-height:0; padding:0; }
  .hero-main__catalogBadge{ min-width:118px; min-height:42px; padding:0 12px; border-radius:12px; font-size:14px; }
  .hero-main__supports{ grid-template-columns:1fr; gap:18px; }
  .hero-main__support{ gap:14px; }
  .hero-main__prog h3{ font-size:18px; }
}

@media (max-width: 640px) {
    .inquiry-modal {
        --inquiry-modal-gap: 12px;
        --inquiry-modal-block-gap: 24px;
        align-items: flex-end;
    }

    .inquiry-modal__dialog {
        border-radius: 12px;
    }

    .inquiry-modal__head,
    .inquiry-modal__form {
        padding-left: 20px;
        padding-right: 20px;
    }

    .inquiry-modal__title {
        font-size: 22px;
    }

    .inquiry-modal__grid {
        grid-template-columns: 1fr;
    }

    .inquiry-modal__actions {
        display: grid;
    }

    .inquiry-modal__submit {
        width: 100%;
    }
}

.error-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(105, 162, 223, 0.2), transparent 30%),
        linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}

.error-page__shell {
    width: min(760px, calc(100% - 32px));
    min-height: 100vh;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 48px 0;
}

.error-page__brand {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 12px;
    color: #16263d;
    font-size: 22px;
    font-weight: 700;
}

.error-page__logo {
    display: block;
    width: 42px;
    height: auto;
}

.error-page__panel {
    padding: clamp(32px, 6vw, 52px);
    border: 1px solid rgba(19, 35, 58, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 24px 70px rgba(18, 35, 58, 0.1);
}

.error-page__code {
    margin: 0 0 12px;
    color: #0f5fb6;
    font-size: 15px;
    font-weight: 850;
    letter-spacing: 0.18em;
}

.error-page__title {
    margin: 0;
    color: #16263d;
    font-size: clamp(30px, 5vw, 48px);
    line-height: 1.16;
    letter-spacing: -0.04em;
}

.error-page__message {
    margin: 18px 0 0;
    color: #5d6d80;
    font-size: 18px;
    line-height: 1.65;
    word-break: keep-all;
}

.error-page__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 34px;
}

.error-page__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    background: #0f5fb6;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    box-shadow: 0 14px 32px rgba(15, 95, 182, 0.2);
}

.error-page__button--secondary {
    border: 1px solid rgba(15, 95, 182, 0.16);
    background: #ffffff;
    color: #0f5fb6;
    box-shadow: none;
}

@media (max-width: 640px) {
    .error-page__shell {
        justify-content: flex-start;
        padding-top: 34px;
    }

    .error-page__panel {
        border-radius: 14px;
    }

    .error-page__button {
        width: 100%;
    }
}
