:root {
    --main-primary: #1f4f8b;
    --main-primary-dark: #15365f;
    --main-text: #1b2533;
    --main-muted: #6b7280;
    --main-line: rgba(15, 23, 42, 0.1);
    --main-white: #fff;
    --main-max: 1200px;
    --ticker-height: 45px;
}

* {
    box-sizing: border-box;
}

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

body {
    font-family: "Pretendard", "Noto Sans KR", "Malgun Gothic", Arial, sans-serif;
    color: var(--main-text);
    background: #f6f8fb;
}

html.menu-open,
body.menu-open {
    overflow: hidden;
    overscroll-behavior: none;
}

body.menu-open {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
}

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

ul,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-wrap {
    position: relative;
    min-width: 320px;
    padding-top: var(--ticker-height);
    overflow-x: hidden;
}

.site-header {
    position: absolute;
    top: var(--ticker-height);
    left: 0;
    right: 0;
    z-index: 60;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    background: transparent;
    color: #fff;
    transition: all 0.3s ease;
}

.site-header:hover,
.site-header:focus-within {
    border-bottom-color: rgba(15, 23, 42, 0.1);
    background: #dde0e0;
    color: #000000;
}

.site-header__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100% - 96px, 1440px);
    height: 92px;
    margin: 0 auto;
}

.site-logo {
    position: absolute;
    left: 0;
    top: 50%;
    display: inline-flex;
    align-items: center;
    height: 42px;
    transform: translateY(-50%);
}

.site-logo__image {
    display: block;
    width: auto;
    max-width: 164px;
    height: 42px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.site-header:hover .site-logo__image,
.site-header:focus-within .site-logo__image {
    filter: none;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 190px;
}

.site-nav__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.site-nav__item {
    position: relative;
}

.site-nav__item+.site-nav__item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 13px;
    background: rgba(255, 255, 255, 0.52);
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.site-header:hover .site-nav__item+.site-nav__item::before,
.site-header:focus-within .site-nav__item+.site-nav__item::before {
    background: rgba(0, 0, 0, 0.24);
}

.site-nav__link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 92px;
    padding: 0 15px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
    text-shadow: 0 1px 14px rgba(0, 0, 0, 0.35);
    transition: all 0.3s ease;
}

.site-header:hover .site-nav__link,
.site-header:focus-within .site-nav__link {
    color: #000000;
    text-shadow: none;
}

.site-nav__link::after {
    content: "";
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 24px;
    height: 2px;
    background: #fff;
    transform: scaleX(0);
    transform-origin: center;
    transition: all 0.3s ease;
}

.site-header:hover .site-nav__link::after,
.site-header:focus-within .site-nav__link::after {
    background: #000000;
}

.site-nav__item:hover .site-nav__link,
.site-nav__item:focus-within .site-nav__link {
    background: rgba(255, 255, 255, 0.08);
}

.site-header:hover .site-nav__item:hover .site-nav__link,
.site-header:focus-within .site-nav__item:focus-within .site-nav__link {
    background: rgba(255, 255, 255, 0.34);
}

.site-nav__item:hover .site-nav__link::after,
.site-nav__item:focus-within .site-nav__link::after {
    transform: scaleX(1);
}

.site-nav__sub {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 190px;
    padding: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 2px;
    background: #dde0e0;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 18px);
    transition: all 0.3s ease;
}

.site-nav__item:hover .site-nav__sub,
.site-nav__item:focus-within .site-nav__sub {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.site-nav__sub a {
    display: block;
    padding: 11px 12px;
    border-radius: 2px;
    color: #000000;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    transition: all 0.3s ease;
}

.site-nav__sub a:hover,
.site-nav__sub a:focus {
    color: #000000;
    background: rgba(255, 255, 255, 0.48);
}

.mobile-menu-button {
    position: absolute;
    top: 50%;
    right: 0;
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.44);
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.mobile-menu-button span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: #fff;
    transition: all 0.3s ease;
}

.mobile-header-buttons {
    display: none;
}

.mobile-nav-actions {
    display: none;
}

.site-header:hover .mobile-menu-button,
.site-header:focus-within .mobile-menu-button {
    border-color: rgba(24, 29, 38, 0.22);
    background: #ffffff;
}

.site-header:hover .mobile-menu-button span,
.site-header:focus-within .mobile-menu-button span {
    background: #181d26;
}

.ticker-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid #dddddd;
    color: #fff;
    background: #181d26;
}

.ticker-banner::before,
.ticker-banner::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 72px;
    pointer-events: none;
}

.ticker-banner::before {
    left: 0;
    background: linear-gradient(90deg, #181d26, rgba(24, 29, 38, 0));
}

.ticker-banner::after {
    right: 0;
    background: linear-gradient(270deg, #181d26, rgba(24, 29, 38, 0));
}

.ticker-banner__track {
    display: flex;
    width: max-content;
    animation: tickerFlow 42s linear infinite;
    will-change: transform;
}

.ticker-banner:hover .ticker-banner__track {
    animation-play-state: paused;
}

.ticker-banner__group {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    min-width: max-content;
    height: var(--ticker-height);
}

.ticker-banner__text {
    flex: 0 0 auto;
    padding-right: 40px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 0.16px;
    white-space: nowrap;
}

@keyframes tickerFlow {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.hero-slider {
    position: relative;
    width: 100%;
    height: calc(100vh - var(--ticker-height));
    min-height: 620px;
    overflow: hidden;
    background: #111827;
}

.hero-slider .swiper {
    width: 100%;
    height: 100%;
}

.hero-slider .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 620px;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}

.hero-slider .swiper-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 16, 31, 0.78) 0%, rgba(15, 35, 61, 0.54) 48%, rgba(15, 23, 42, 0.16) 100%);
    z-index: 1;
}

.hero-slider .swiper-slide::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 38%;
    background: linear-gradient(0deg, rgba(5, 11, 20, 0.48), rgba(5, 11, 20, 0));
    z-index: 1;
}

.hero-slide__content {
    position: relative;
    z-index: 2;
    width: min(100% - 40px, var(--main-max));
    margin: 0 auto;
    padding-top: 92px;
    color: var(--main-white);
}

.hero-slide__eyebrow,
.hero-slide__title,
.hero-slide__desc,
.hero-slide__link {
    opacity: 0;
    transform: translateX(-44px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.hero-slide__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: #a7d3ff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0;
}

.hero-slide__eyebrow::before {
    content: "";
    width: 38px;
    height: 2px;
    background: currentColor;
}

.hero-slide__title {
    max-width: 760px;
    margin: 0;
    font-size: 58px;
    line-height: 1.14;
    font-weight: 850;
    letter-spacing: 0;
    word-break: keep-all;
}

.hero-slide__desc {
    max-width: 620px;
    margin: 24px 0 34px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 19px;
    line-height: 1.75;
    font-weight: 500;
    word-break: keep-all;
}

.hero-slide__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 154px;
    height: 50px;
    padding: 0 24px;
    border-radius: 8px;
    color: var(--main-white);
    background: var(--main-primary);
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 16px 38px rgba(31, 79, 139, 0.32);
    transition: opacity 0.75s ease, transform 0.75s ease, background 0.2s ease;
}

.hero-slide__link:hover,
.hero-slide__link:focus {
    background: #2f8ccf;
}

.hero-slider .swiper-slide-active .hero-slide__eyebrow,
.hero-slider .swiper-slide-active .hero-slide__title,
.hero-slider .swiper-slide-active .hero-slide__desc,
.hero-slider .swiper-slide-active .hero-slide__link {
    opacity: 1;
    transform: translateX(0);
}

.hero-slider .swiper-slide-active .hero-slide__eyebrow {
    transition-delay: 0.18s;
}

.hero-slider .swiper-slide-active .hero-slide__title {
    transition-delay: 0.32s;
}

.hero-slider .swiper-slide-active .hero-slide__desc {
    transition-delay: 0.46s;
}

.hero-slider .swiper-slide-active .hero-slide__link {
    transition-delay: 0.6s;
}

.hero-slider__controls {
    position: absolute;
    left: 50%;
    bottom: 38px;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(100% - 40px, var(--main-max));
    transform: translateX(-50%);
    pointer-events: none;
}

.hero-pagination {
    position: static;
    display: flex;
    align-items: center;
    gap: 10px;
    width: auto;
    pointer-events: auto;
}

.hero-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0;
    border: 2px solid rgba(255, 255, 255, 0.88);
    background: transparent;
    opacity: 1;
    transition: width 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.hero-pagination .swiper-pagination-bullet-active {
    width: 34px;
    border-radius: 999px;
    border-color: #a7d3ff;
    background: #a7d3ff;
}

/* 1. 하단 컨트롤러 박스에서 화살표 공간 제거 및 정렬 조율 */
.hero-slider__controls {
    position: absolute;
    left: 50%;
    bottom: 38px;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* 오른쪽 끝으로 페이징만 정렬 */
    width: min(100% - 40px, var(--main-max));
    transform: translateX(-50%);
    pointer-events: none;
}

/* 2. 좌우 화살표를 양쪽 벽면에 풀하이트(100%)로 배치 */
.hero-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: 0;
    width: 120px;
    /* 마우스가 쉽게 닿을 수 있는 넉넉한 작동 영역 */
    height: 100%;
    background: transparent;
    cursor: pointer;
    z-index: 10;
    pointer-events: auto;
    opacity: 0;
    /* 평상시에는 투명하게 숨김 */
    transition: opacity 0.4s ease, background-color 0.4s ease;
}

/* 3. 메인 배너 영역에 마우스가 올라가면 화살표 작동 영역 스르륵 노출 */
.hero-slider:hover .hero-arrow {
    opacity: 1;
}

/* 왼쪽 화살표는 좌측 벽에 밀착 */
.hero-arrow.swiper-button-prev {
    left: 0;
}

/* 오른쪽 화살표는 우측 벽에 밀착 */
.hero-arrow.swiper-button-next {
    right: 0;
}

/* 마우스가 화살표 영역에 완전히 올라갔을 때 은은한 배경 그라데이션 힌트 (선택사항, 지워도 무방) */
.hero-arrow.swiper-button-prev:hover {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
}

.hero-arrow.swiper-button-next:hover {
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
}

/* 4. Swiper 기본 화살표 텍스트(아이콘) 제거 */
.hero-arrow::after {
    display: none;
}

/* 5. 포토샵 시안 완벽 반영: 왜곡 없이 정갈하고 예쁘게 꺾이는 대형 화살표 */
.hero-arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    /* 가로세로 비율이 똑같아야 찌그러지지 않은 예쁜 화살표 각도가 나옵니다 */
    width: 60px;
    /* 꺾쇠의 크기 (위아래 높이와 직결됩니다) */
    height: 60px;
    /* width와 무조건 똑같은 숫자로 맞춰주세요 */
    border-top: 4px solid rgba(255, 255, 255, 0.45);
    /* 화살표 선 두께 */
    border-right: 4px solid rgba(255, 255, 255, 0.45);
    transition: border-color 0.4s ease, transform 0.4s ease, left 0.4s ease, right 0.4s ease;
}

/* ========================================================
   [왼쪽 꺾쇠 < ] 225도 정확하게 회전하여 정중앙 배치
   ======================================================== */
.hero-arrow.swiper-button-prev::before {
    left: 60px;
    transform: translateY(-50%) rotate(225deg);
}

/* ========================================================
   [오른쪽 꺾쇠 > ] 45도 정확하게 회전하여 정중앙 배치
   ======================================================== */
.hero-arrow.swiper-button-next::before {
    right: 60px;
    transform: translateY(-50%) rotate(45deg);
}

/* ========================================================
   6. 마우스 오버 시 모션 디테일 (선명해지며 좌우로 살짝 무빙)
   ======================================================== */
.hero-arrow:hover::before {
    border-color: rgba(255, 255, 255, 0.95);
    /* 마우스 대면 선명하게 */
}

/* 왼쪽 화살표 호버 액션 */
.hero-arrow.swiper-button-prev:hover::before {
    left: 45px;
    transform: translateY(-50%) rotate(225deg);
}

/* 오른쪽 화살표 호버 액션 */
.hero-arrow.swiper-button-next:hover::before {
    right: 45px;
    transform: translateY(-50%) rotate(45deg);
}

/* 화면 너비가 1440px 이하로 줄어들면 초대형 꺾쇠를 화면에서 완전히 숨깁니다 */
@media (max-width: 1440px) {
    .hero-arrow {
        display: none;
        /* 화살표 작동 영역 자체를 증발시킴 */
    }

    /* 꺾쇠가 사라지는 대신 글자가 양쪽 벽에 너무 붙지 않도록 메인 컨텐츠 영역의 여백을 확보해 줍니다 */
    .hero-slide__content {
        width: min(100% - 60px, var(--main-max));
    }
}

.main-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 40px 20px;
    color: rgba(15, 23, 42, 0.7);
    font-size: 22px;
    font-weight: 800;
    text-align: center;
}

.company-wrap {
    position: relative;
    overflow: hidden;
    padding: 96px 0 104px;
    background: #ffffff;
}

.company-wrap>header {
    width: min(100% - 96px, 1280px);
    margin: 0 auto 52px;
    color: #181d26;
    text-align: center;
}

.company-title {
    position: relative;
    margin: 0;
    padding-bottom: 30px;
    color: #000000;
    font-size: 58px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
}

.company-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 8px;
    width: 11px;
    height: 11px;
    background: #2f74b5;
    transform: translateX(-50%) rotate(45deg);
}

.company-services {
    display: block;
    max-width: 1040px;
    margin: 0 auto;
    color: #000000;
    font-size: 25px;
    font-weight: 800;
    line-height: 1.45;
    letter-spacing: -0.01em;
    text-align: center;
    word-break: keep-all;
}

.company-description {
    max-width: 760px;
    margin: 12px auto 0;
    color: #666666;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    word-break: keep-all;
}

.swiper-positioning {
    width: min(100% - 96px, 1280px);
    margin: 0 auto;
}

.company-swiper {
    overflow: visible;
    padding: 6px 0 18px;
}

.company-swiper .swiper-slide {
    height: auto;
}

.company-swiper .wrap {
    display: flex;
    flex-direction: column;
    min-height: 342px;
    overflow: hidden;
    border: 3px solid transparent;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
    transition: all 0.3s ease;
}

.company-swiper .wrap:hover,
.company-swiper .wrap:focus-within {
    border-color: #189b58;
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.14);
    transform: translateY(-10px);
}

.company-swiper .wrap header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    min-height: 116px;
    padding: 24px 22px 20px;
}

.company-swiper .wrap header b {
    display: block;
    color: #181d26;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0;
}

.company-swiper .wrap header b span {
    display: block;
    margin-top: 8px;
    color: #41454d;
    font-size: 14px;
    font-weight: 500;
}

.company-swiper .wrap header a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: 66px;
    height: 34px;
    padding: 0 12px;
    border: 1px solid #dddddd;
    border-radius: 999px;
    color: #181d26;
    background: #fff;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.company-swiper .wrap header a:hover,
.company-swiper .wrap header a:focus {
    color: #fff;
    border-color: #181d26;
    background: #181d26;
}

.company-swiper figure {
    position: relative;
    flex: 1;
    min-height: 226px;
    margin: 0;
    overflow: hidden;
    background: #e0e2e6;
}

.company-swiper figure img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 226px;
    object-fit: cover;
    filter: saturate(0.9) contrast(0.96);
    transform: scale(1);
    transition: transform 0.45s ease, filter 0.45s ease;
}

.company-swiper .wrap:hover figure img,
.company-swiper .wrap:focus-within figure img {
    filter: saturate(1) contrast(1);
    transform: scale(1.06);
}

.content-section {
    padding: 96px 0;
    background: #fff;
}

.content-section__inner {
    width: min(100% - 96px, 1280px);
    margin: 0 auto;
}

.content-section__head {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.48fr);
    gap: 48px;
    align-items: end;
    margin-bottom: 48px;
}

.content-section__eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    color: #41454d;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
}

.content-section__title {
    max-width: 720px;
    margin: 0;
    color: #181d26;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0;
    word-break: keep-all;
}

.content-section__desc {
    margin: 0;
    color: #333840;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    word-break: keep-all;
}

.solution-panel {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 24px;
    min-height: 438px;
    padding: 32px;
    border-radius: 12px;
    background: #f8fafc;
}

.solution-tabs {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.solution-tab {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 54px;
    padding: 14px 16px;
    border: 1px solid #dddddd;
    border-radius: 10px;
    color: #181d26;
    background: #fff;
    font: inherit;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    text-align: left;
    cursor: pointer;
}

.solution-tab::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    opacity: 0.4;
}

.solution-tab.is-active {
    color: #fff;
    border-color: #181d26;
    background: #181d26;
}

.solution-tab.is-active::after {
    opacity: 1;
}

.solution-display {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    color: #fff;
    background: #aa2d00;
}

.solution-display__item {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
    gap: 24px;
    align-items: stretch;
    padding: 48px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(24px);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.solution-display__item.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.solution-display__item[data-tone="forest"] {
    background: #0a2e0e;
}

.solution-display__item[data-tone="dark"] {
    background: #181d26;
}

.solution-display__item[data-tone="coral"] {
    background: #aa2d00;
}

.solution-copy {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 304px;
}

.solution-copy__label {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
}

.solution-copy__title {
    margin: 0;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0;
    word-break: keep-all;
}

.solution-copy__text {
    max-width: 390px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    word-break: keep-all;
}

.solution-copy__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 48px;
    margin-top: 32px;
    padding: 13px 24px;
    border-radius: 12px;
    color: #181d26;
    background: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}

.solution-demo {
    display: grid;
    grid-template-columns: 1fr 0.78fr;
    grid-auto-rows: minmax(94px, auto);
    gap: 14px;
    align-content: center;
}

.demo-card {
    min-height: 118px;
    padding: 16px;
    border-radius: 10px;
    color: #181d26;
    background: #fff;
}

.demo-card--peach {
    background: #fcab79;
}

.demo-card--mint {
    background: #a8d8c4;
}

.demo-card--cream {
    background: #f5e9d4;
}

.demo-card--yellow {
    background: #f4d35e;
}

.demo-card--wide {
    grid-column: span 2;
}

.demo-card__label {
    display: block;
    margin-bottom: 18px;
    color: rgba(24, 29, 38, 0.72);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
}

.demo-card__value {
    display: block;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.25;
}

.demo-bars {
    display: grid;
    gap: 8px;
    margin-top: 18px;
}

.demo-bars span {
    display: block;
    height: 8px;
    border-radius: 999px;
    background: rgba(24, 29, 38, 0.22);
}

.demo-bars span:nth-child(1) {
    width: 92%;
}

.demo-bars span:nth-child(2) {
    width: 68%;
}

.demo-bars span:nth-child(3) {
    width: 78%;
}

.content-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.metric-card {
    min-height: 184px;
    padding: 24px;
    border-radius: 10px;
    color: #181d26;
    background: #f5e9d4;
}

.metric-card:nth-child(2) {
    background: #e0e2e6;
}

.metric-card:nth-child(3) {
    color: #fff;
    background: #181d26;
}

.metric-card__num {
    display: block;
    margin-bottom: 36px;
    font-size: 44px;
    font-weight: 400;
    line-height: 1.1;
}

.metric-card__text {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
    word-break: keep-all;
}

.footer-placeholder {
    min-height: 220px;
    color: rgba(255, 255, 255, 0.72);
    background: #1f2937;
}

@media (max-width: 1180px) {
    .site-header__inner {
        width: min(100% - 48px, 1440px);
    }

    .site-nav {
        padding: 0 122px;
    }

    .site-nav__link {
        padding: 0 10px;
        font-size: 14px;
    }

    .site-nav__link::after {
        left: 10px;
        right: 10px;
    }
}

@media (max-width: 900px) {
    .site-header__inner {
        width: min(100% - 28px, 1440px);
        height: 68px;
    }

    .site-logo {
        height: 38px;
    }

    .site-logo__image {
        max-width: 150px;
        height: 38px;
    }

    .mobile-menu-button {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: 68px;
        left: 0;
        width: 100%;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        border-bottom: 1px solid transparent;
        background: var(--main-white);
        transition: max-height 0.28s ease, border-color 0.2s ease;
    }

    .site-nav__item+.site-nav__item::before {
        display: none;
    }

    .site-header.is-open .site-nav {
        max-height: 560px;
        border-color: var(--main-line);
    }

    .site-nav__list {
        display: block;
        width: min(100% - 28px, var(--main-max));
        margin: 0 auto;
        padding: 12px 0 18px;
    }

    .site-nav__link {
        height: auto;
        padding: 15px 0;
        border-bottom: 1px solid #eef2f7;
        color: #181d26;
        font-size: 15px;
        text-shadow: none;
    }

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

    .site-nav__sub {
        position: static;
        width: 100%;
        padding: 0 0 8px 12px;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
    }

    .site-nav__sub a {
        padding: 9px 10px;
        font-size: 13px;
    }

    .site-header.is-open .mobile-menu-button span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .site-header.is-open .mobile-menu-button span:nth-child(2) {
        opacity: 0;
    }

    .site-header.is-open .mobile-menu-button span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .hero-slider {
        height: 560px;
        min-height: 500px;
    }

    .hero-slider .swiper-slide {
        min-height: 500px;
    }

    .hero-slide__content,
    .hero-slider__controls {
        width: min(100% - 28px, var(--main-max));
    }

    .hero-slide__title {
        max-width: 640px;
        font-size: 42px;
    }

    .hero-slide__desc {
        max-width: 540px;
        font-size: 16px;
    }

    .hero-slider__controls {
        bottom: 24px;
    }

    .hero-arrow {
        width: 42px;
        height: 42px;
    }

    .company-wrap {
        padding: 72px 0 82px;
    }

    .company-wrap>header,
    .swiper-positioning {
        width: min(100% - 28px, 1280px);
    }

    .company-wrap>header {
        margin-bottom: 32px;
    }

    .company-title {
        font-size: 48px;
    }

    .company-services {
        font-size: 22px;
    }

    .company-description {
        font-size: 18px;
    }

    .content-section {
        padding: 72px 0;
    }

    .content-section__inner {
        width: min(100% - 28px, 1280px);
    }

    .content-section__head {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 32px;
    }

    .content-section__title {
        font-size: 34px;
    }

    .solution-panel {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .solution-tabs {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .solution-tab {
        min-height: 48px;
        padding: 12px;
        font-size: 14px;
    }

    .solution-display__item {
        grid-template-columns: 1fr;
        padding: 32px;
    }

    .solution-copy {
        min-height: auto;
    }

    .solution-copy__title {
        font-size: 28px;
    }

    .content-metrics {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .hero-slider {
        height: 520px;
        min-height: 480px;
    }

    .ticker-banner::before,
    .ticker-banner::after {
        width: 36px;
    }

    .ticker-banner__track {
        animation-duration: 34s;
    }

    .ticker-banner__group {
        padding: 11px 0;
    }

    .ticker-banner__text {
        padding-right: 28px;
        font-size: 13px;
    }

    .hero-slider .swiper-slide {
        min-height: 480px;
    }

    .hero-slide__eyebrow {
        margin-bottom: 14px;
        font-size: 13px;
    }

    .hero-slide__eyebrow::before {
        width: 28px;
    }

    .hero-slide__title {
        font-size: 34px;
    }

    .hero-slide__desc {
        margin: 18px 0 26px;
        font-size: 15px;
        line-height: 1.65;
    }

    .hero-slide__link {
        min-width: 138px;
        height: 46px;
        padding: 0 20px;
        font-size: 14px;
    }

    .hero-slider__controls {
        align-items: flex-end;
    }

    .hero-pagination .swiper-pagination-bullet-active {
        width: 28px;
    }

    .company-wrap {
        padding: 56px 0 64px;
    }

    .company-title {
        padding-bottom: 24px;
        font-size: 36px;
    }

    .company-title::after {
        bottom: 7px;
        width: 9px;
        height: 9px;
    }

    .company-services {
        font-size: 20px;
        line-height: 1.45;
    }

    .company-description {
        margin-top: 10px;
        font-size: 15px;
    }

    .company-swiper .wrap {
        min-height: 318px;
    }

    .company-swiper .wrap header {
        min-height: 104px;
        padding: 20px 18px 18px;
    }

    .company-swiper figure,
    .company-swiper figure img {
        min-height: 214px;
    }

    .content-section {
        padding: 56px 0;
    }

    .content-section__title {
        font-size: 29px;
    }

    .solution-tabs {
        grid-template-columns: 1fr;
    }

    .solution-display__item {
        padding: 24px;
    }

    .solution-demo {
        grid-template-columns: 1fr;
    }

    .demo-card--wide {
        grid-column: auto;
    }

    .metric-card__num {
        margin-bottom: 28px;
        font-size: 36px;
    }
}

/* ========================================================
   [모바일 오른쪽 슬라이드 메뉴] 768px 이하에서 PC nav 구조 재사용
   ======================================================== */
@media (max-width: 768px) {
    .site-header {
        position: relative;
        top: auto;
        z-index: 80;
        border-bottom: 1px solid #e5e7eb;
        background: #ffffff;
        color: #181d26;
    }

    .site-header::after {
        content: "";
        position: fixed;
        inset: 0;
        z-index: 70;
        background: rgba(0, 0, 0, 0.48);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .site-header.is-open::after {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .site-header__inner {
        position: relative;
        z-index: 92;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: min(100% - 32px, 1440px);
        height: 68px;
        margin: 0 auto;
    }

    .site-logo {
        position: static;
        height: 38px;
        transform: none;
    }

    .site-logo__image {
        max-width: 150px;
        height: 38px;
        filter: none;
    }

    .mobile-header-buttons {
        position: relative;
        z-index: 92;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .m-call-button {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        padding: 8px 12px;
        border-radius: 6px;
        color: #ffffff;
        background: #a30000;
        font-size: 13px;
        font-weight: 700;
        line-height: 1;
    }

    .mobile-menu-button {
        position: static;
        display: block;
        flex: 0 0 auto;
        width: 42px;
        height: 42px;
        border: 1px solid rgba(24, 29, 38, 0.18);
        background: #ffffff;
        transform: none;
    }

    .mobile-menu-button span {
        background: #181d26;
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: -100%;
        bottom: 0;
        left: auto;
        z-index: 90;
        display: block;
        width: min(82vw, 340px);
        max-height: none;
        padding: 86px 24px 32px;
        overflow-y: auto;
        border-bottom: 0;
        background: #ffffff;
        box-shadow: -18px 0 42px rgba(0, 0, 0, 0.2);
        transition: right 0.3s ease;
    }

    .site-header.is-open .site-nav {
        right: 0;
        border-color: transparent;
    }

    .site-nav__list {
        display: block;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .site-nav__item+.site-nav__item::before {
        display: none;
    }

    .site-nav__link {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        height: auto;
        padding: 17px 0;
        border-bottom: 1px solid #e5e7eb;
        color: #181d26;
        font-size: 17px;
        font-weight: 700;
        letter-spacing: 0;
        text-shadow: none;
    }

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

    .site-nav__sub {
        position: static;
        width: 100%;
        padding: 10px 0 14px 12px;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .site-nav__sub a {
        padding: 8px 0;
        color: #41454d;
        font-size: 14px;
        background: transparent;
    }

    .site-nav__sub a:hover,
    .site-nav__sub a:focus {
        color: #000000;
        background: transparent;
    }

    .site-header.is-open .mobile-menu-button span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .site-header.is-open .mobile-menu-button span:nth-child(2) {
        opacity: 0;
    }

    .site-header.is-open .mobile-menu-button span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

/* ========================================================
   [패드/모바일 공통 메뉴] 1024px 이하부터 전체 화면 오버레이 메뉴
   ======================================================== */
@media (max-width: 1024px) {
    .site-header {
        position: relative;
        top: auto;
        left: 0;
        right: 0;
        z-index: 90;
        border-bottom: 1px solid #e5e7eb;
        background: #ffffff;
        color: #181d26;
    }

    .site-header:hover,
    .site-header:focus-within {
        background: #ffffff;
    }

    .site-header::after {
        content: "";
        position: fixed;
        inset: 0;
        z-index: 80;
        background: rgba(0, 0, 0, 0.56);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .site-header.is-open::after {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .site-header__inner {
        position: relative;
        z-index: 110;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: min(100% - 32px, 1440px);
        height: 68px;
        margin: 0 auto;
    }

    .site-logo {
        position: static;
        height: 38px;
        transform: none;
    }

    .site-logo__image {
        max-width: 150px;
        height: 38px;
        filter: none;
    }

    .mobile-header-buttons {
        position: relative;
        z-index: 125;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .m-call-button {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        height: 38px;
        padding: 0 13px;
        border-radius: 6px;
        color: #ffffff;
        background: #b40000;
        font-size: 13px;
        font-weight: 700;
        line-height: 1;
    }

    .mobile-menu-button {
        position: static;
        display: block;
        flex: 0 0 auto;
        width: 42px;
        height: 42px;
        border: 1px solid rgba(24, 29, 38, 0.18);
        border-radius: 2px;
        background: #ffffff;
        transform: none;
    }

    .mobile-menu-button span {
        background: #181d26;
    }

    .site-header.is-open .mobile-menu-button {
        position: fixed;
        top: 24px;
        right: 24px;
        z-index: 140;
        border-color: transparent;
        background: transparent;
    }

    .site-header.is-open .mobile-menu-button span {
        background: #ffd900;
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: -100%;
        bottom: 0;
        left: auto;
        z-index: 120;
        display: flex;
        flex-direction: column;
        width: min(72vw, 430px);
        max-height: none;
        padding: 82px 48px 32px;
        overflow-y: auto;
        border: 0;
        background: #46bba7;
        box-shadow: -18px 0 42px rgba(0, 0, 0, 0.22);
        transition: right 0.3s ease;
    }

    .site-nav::before {
        content: "";
        display: block;
        width: 145px;
        height: 58px;
        margin: 0 auto 20px;
        background: url("../img/dh_logo_color.png") center / contain no-repeat;
        filter: brightness(0) saturate(100%) invert(15%) sepia(26%) saturate(1170%) hue-rotate(188deg) brightness(92%) contrast(91%);
    }

    .site-header.is-open .site-nav {
        right: 0;
        border-color: transparent;
    }

    .site-nav__list {
        display: block;
        width: 100%;
        margin: 0;
        padding: 22px 0 0;
        border-top: 2px solid rgba(255, 255, 255, 0.52);
    }

    .site-nav__item+.site-nav__item::before {
        display: none;
    }

    .site-nav__link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: auto;
        padding: 13px 0;
        border: 0;
        color: #ffffff;
        font-size: 18px;
        font-weight: 800;
        letter-spacing: 0;
        text-shadow: none;
    }

    .site-nav__link::after {
        content: "";
        display: block;
        position: static;
        width: 0;
        height: 0;
        margin-left: 14px;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 10px solid rgba(255, 255, 255, 0.92);
        background: transparent;
        transform: none;
    }

    .site-nav__sub {
        display: none;
    }

    .site-nav__sub a {
        color: #ffffff;
    }

    .mobile-nav-actions {
        display: flex;
        justify-content: space-around;
        gap: 20px;
        margin-top: auto;
        padding-top: 24px;
        border-top: 2px solid rgba(255, 255, 255, 0.52);
    }

    .mobile-nav-actions a {
        color: rgba(255, 255, 255, 0.88);
        font-size: 15px;
        font-weight: 700;
    }

    .site-header.is-open .mobile-menu-button span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .site-header.is-open .mobile-menu-button span:nth-child(2) {
        opacity: 0;
    }

    .site-header.is-open .mobile-menu-button span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .hero-slider {
        height: 520px;
        min-height: 520px;
    }

    .hero-slider .swiper-slide {
        min-height: 520px;
    }

    .hero-slide__content {
        padding-top: 0;
    }
}

@media (max-width: 768px) {
    .ticker-banner__group {
        height: 34px;
    }

    .ticker-banner__text {
        font-size: 11px;
    }

    .site-header {
        position: absolute;
        top: 34px;
        left: 0;
        right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.38);
        background: rgba(255, 255, 255, 0.82);
        backdrop-filter: blur(8px);
    }

    .site-header:hover,
    .site-header:focus-within {
        background: rgba(255, 255, 255, 0.82);
    }

    .site-header__inner {
        width: min(100% - 24px, 1440px);
        height: 64px;
    }

    .site-logo__image {
        max-width: 156px;
        height: 38px;
    }

    .m-call-button {
        height: 36px;
        padding: 0 11px;
        border-radius: 7px;
        font-size: 12px;
    }

    .mobile-menu-button {
        width: 40px;
        height: 40px;
    }

    .site-nav {
        left: auto;
        width: 100%;
        min-height: 100vh;
        min-height: 100dvh;
        padding: 72px 48px 32px;
        background: rgba(70, 187, 167, 0.8);
        box-shadow: none;
        backdrop-filter: blur(8px);
    }

    .site-header::after {
        display: none;
    }

    .site-nav::before {
        width: 148px;
        height: 52px;
        margin-bottom: 18px;
    }

    .site-nav__list {
        padding-top: 20px;
    }

    .site-nav__link {
        padding: 12px 0;
        color: #ffffff;
        font-size: 17px;
        font-weight: 800;
    }

    .hero-slider {
        height: 410px;
        min-height: 410px;
    }

    .hero-slider .swiper-slide {
        min-height: 410px;
    }

    .hero-slider .swiper-slide::before {
        background: rgba(15, 23, 42, 0.48);
    }

    .hero-slide__content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: min(100% - 40px, var(--main-max));
        min-height: 410px;
        padding-top: 52px;
        text-align: center;
    }

    .hero-slide__eyebrow {
        justify-content: center;
        margin-bottom: 12px;
        font-size: 12px;
    }

    .hero-slide__eyebrow::before {
        width: 24px;
    }

    .hero-slide__title {
        max-width: 340px;
        font-size: 28px;
        line-height: 1.22;
    }

    .hero-slide__desc {
        max-width: 330px;
        margin: 16px 0 0;
        font-size: 14px;
        line-height: 1.65;
    }

    .hero-slide__link {
        display: none;
    }

    .hero-slider__controls {
        bottom: 18px;
        justify-content: center;
    }
}

@media (max-width: 420px) {
    .site-header__inner {
        width: min(100% - 24px, 1440px);
    }

    .site-logo__image {
        max-width: 148px;
    }

    .m-call-button {
        height: 36px;
        padding: 0 10px;
        font-size: 12px;
    }

    .mobile-menu-button {
        width: 40px;
        height: 40px;
    }

    .site-nav {
        padding: 70px 36px 28px;
    }

    .hero-slider {
        height: 390px;
        min-height: 390px;
    }

    .hero-slider .swiper-slide {
        min-height: 390px;
    }

    .hero-slide__content {
        min-height: 390px;
    }

    .hero-slide__title {
        font-size: 26px;
    }

    .hero-slide__desc {
        font-size: 13px;
    }
}

/* ========================================================
   [최종 모바일 고정값] 실제 모바일 화면 기준 헤더/전체화면 메뉴
   ======================================================== */
@media (max-width: 768px) {
    .site-header {
        position: absolute;
        top: 34px;
        left: 0;
        right: 0;
        z-index: 100;
        border-bottom: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.78);
        backdrop-filter: blur(10px);
    }

    .site-header:hover,
    .site-header:focus-within,
    .site-header.is-open {
        background: rgba(255, 255, 255, 0.78);
    }

    .site-header__inner {
        height: 64px;
    }

    .site-nav {
        position: fixed;
        inset: 0 auto 0 0;
        z-index: 120;
        display: flex;
        flex-direction: column;
        width: 100vw;
        min-height: 100vh;
        min-height: 100dvh;
        padding: 72px 38px 30px;
        overflow-y: auto;
        color: #ffffff;
        background: rgba(70, 187, 167, 0.8);
        box-shadow: none;
        backdrop-filter: blur(10px);
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    .site-header.is-open .site-nav {
        right: auto;
        transform: translateX(0);
    }

    .site-header.is-open .site-nav__link,
    .site-header.is-open .site-nav__sub a,
    .site-header.is-open:hover .site-nav__link,
    .site-header.is-open:focus-within .site-nav__link {
        color: #ffffff;
    }

    .site-nav__link {
        color: #ffffff;
        font-size: 18px;
        font-weight: 800;
    }

    .site-nav__link::after {
        border-top-color: rgba(255, 255, 255, 0.95);
    }

    .site-nav::before {
        margin-bottom: 18px;
    }

    .site-nav__list {
        border-top-color: rgba(255, 255, 255, 0.55);
    }

    .mobile-nav-actions {
        border-top-color: rgba(255, 255, 255, 0.55);
    }

    .mobile-nav-actions a {
        color: rgba(255, 255, 255, 0.92);
    }

    .site-header.is-open {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        border-bottom: 0;
        background: transparent;
        backdrop-filter: none;
    }

    .site-header.is-open .site-header__inner {
        position: static;
        width: 100%;
        height: 0;
        margin: 0;
    }

    .site-header.is-open .site-logo,
    .site-header.is-open .m-call-button {
        display: none;
    }

    .site-header.is-open .mobile-header-buttons {
        position: static;
        z-index: auto;
    }

    .site-header.is-open .mobile-menu-button {
        position: fixed;
        top: 22px;
        right: 22px;
        z-index: 1020;
        border-color: transparent;
        background: transparent;
    }

    .site-header.is-open .mobile-menu-button span {
        background: #ffd900;
    }

    .site-header.is-open .site-nav {
        position: fixed;
        inset: 0;
        z-index: 1010;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        min-height: 100vh;
        min-height: 100dvh;
        padding: 72px 38px 30px;
        background: rgba(70, 187, 167, 0.8);
        transform: translateX(0);
    }

    .site-header.is-open .site-nav__link::after {
        content: "";
        display: block;
        position: static;
        width: 0;
        height: 0;
        margin-left: auto;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 9px solid #ffffff;
        background: transparent;
        box-shadow: none;
        outline: 0;
        filter: none;
        transform: none;
    }
}

/* ========================================================
   [진짜 최종] 모바일 메뉴 닫힘 애니메이션/X 버튼 고정
   ======================================================== */
@media (max-width: 768px) {
    .site-header.is-closing {
        position: fixed;
        top: 34px;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        border-bottom: 0;
        background: transparent;
        backdrop-filter: none;
    }

    .site-header.is-closing .site-header__inner {
        position: static;
        width: 100%;
        height: 0;
        margin: 0;
    }

    .site-header.is-closing .site-logo,
    .site-header.is-closing .m-call-button {
        display: none;
    }

    .site-header.is-closing .mobile-header-buttons {
        position: static;
        z-index: auto;
    }

    .site-header.is-closing .site-nav {
        position: fixed;
        top: 34px;
        right: 0;
        bottom: 0;
        left: 0;
        width: auto;
        height: auto;
        min-height: 0;
        max-height: none;
        pointer-events: none;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    .site-header.is-closing .mobile-menu-button {
        position: fixed;
        top: 56px;
        right: 22px;
        z-index: 1020;
        border-color: rgba(255, 255, 255, 0.76);
        background: rgba(20, 70, 66, 0.28);
        color: #ffffff;
        font-size: 0;
        line-height: 1;
        transform: none;
        transition: background 0.2s ease, border-color 0.2s ease;
    }

    .site-header.is-closing .mobile-menu-button span,
    .site-header.is-closing .mobile-menu-button span:nth-child(1),
    .site-header.is-closing .mobile-menu-button span:nth-child(2),
    .site-header.is-closing .mobile-menu-button span:nth-child(3) {
        display: none;
        background: #ffffff;
        transform: none;
        opacity: 1;
        transition: none;
    }

    .site-header.is-closing .mobile-menu-button::before {
        content: "×";
        display: block;
        color: #ffffff;
        font-family: Arial, sans-serif;
        font-size: 34px;
        font-weight: 300;
        line-height: 38px;
        text-align: center;
    }
}

/* 닫힘 중에도 메뉴 패널 크기를 유지해서 절반만 남는 현상을 방지 */
@media (max-width: 768px) {
    .site-header.is-closing {
        position: fixed;
        top: 34px;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        border-bottom: 0;
        background: transparent;
        backdrop-filter: none;
    }

    .site-header.is-closing .site-header__inner {
        position: static;
        width: 100%;
        height: 0;
        margin: 0;
    }

    .site-header.is-closing .site-logo,
    .site-header.is-closing .m-call-button {
        display: none;
    }

    .site-header.is-closing .mobile-header-buttons {
        position: static;
        z-index: auto;
    }

    .site-header.is-closing .site-nav {
        position: fixed;
        top: 34px;
        right: 0;
        bottom: 0;
        left: 0;
        width: auto;
        height: auto;
        min-height: 0;
        max-height: none;
        pointer-events: none;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    .site-header.is-closing .mobile-menu-button {
        position: fixed;
        top: 56px;
        right: 22px;
        z-index: 1020;
        border-color: rgba(255, 255, 255, 0.76);
        background: rgba(20, 70, 66, 0.28);
        color: #ffffff;
        font-size: 0;
        line-height: 1;
        transform: none;
        transition: background 0.2s ease, border-color 0.2s ease;
    }

    .site-header.is-closing .mobile-menu-button span,
    .site-header.is-closing .mobile-menu-button span:nth-child(1),
    .site-header.is-closing .mobile-menu-button span:nth-child(2),
    .site-header.is-closing .mobile-menu-button span:nth-child(3) {
        display: none;
        background: #ffffff;
        transform: none;
        opacity: 1;
        transition: none;
    }

    .site-header.is-closing .mobile-menu-button::before {
        content: "×";
        display: block;
        color: #ffffff;
        font-family: Arial, sans-serif;
        font-size: 34px;
        font-weight: 300;
        line-height: 38px;
        text-align: center;
    }
}

/* ========================================================
   [모바일 최종 보정] 티커 아래부터 배너/메뉴가 자연스럽게 덮이는 구조
   ======================================================== */
@media (max-width: 768px) {
    .site-header {
        position: absolute;
        top: 34px;
        left: 0;
        right: 0;
        z-index: 100;
        border-bottom: 1px solid rgba(255, 255, 255, 0.24);
        background: rgba(255, 255, 255, 0.18);
        backdrop-filter: blur(4px);
    }

    .site-header:hover,
    .site-header:focus-within {
        background: rgba(255, 255, 255, 0.18);
    }

    .hero-slider {
        margin-top: 0;
    }

    .hero-slide__content {
        padding-top: 64px;
    }

    .site-header.is-open {
        position: fixed;
        top: 34px;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        border-bottom: 0;
        background: transparent;
        backdrop-filter: none;
    }

    .site-header.is-open .site-header__inner {
        position: static;
        width: 100%;
        height: 0;
        margin: 0;
    }

    .site-header.is-open .site-logo,
    .site-header.is-open .m-call-button {
        display: none;
    }

    .site-header.is-open .site-nav {
        position: fixed;
        top: 34px;
        right: 0;
        bottom: 0;
        left: auto;
        z-index: 1010;
        width: 100vw;
        height: calc(100vh - 34px);
        height: calc(100dvh - 34px);
        min-height: 0;
        max-height: none;
        padding: 72px 38px 30px;
        background: rgba(70, 187, 167, 0.8);
        box-shadow: none;
        backdrop-filter: blur(10px);
        transform: translateX(0);
        transition: transform 0.3s ease;
    }

    .site-nav {
        top: 34px;
        height: calc(100vh - 34px);
        height: calc(100dvh - 34px);
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    .site-header.is-open .mobile-menu-button {
        position: fixed;
        top: 58px;
        right: 22px;
        z-index: 1020;
        border-color: rgba(255, 255, 255, 0.7);
        background: rgba(20, 70, 66, 0.28);
    }
}

/* ========================================================
   [모바일 메뉴 최종 확정] 티커 제외, 배너 위 헤더 오버랩 + 전체 메뉴
   ======================================================== */
@media (max-width: 768px) {
    :root {
        --ticker-height: 34px;
    }

    .main-wrap {
        max-width: none;
    }

    .ticker-banner {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1200;
        width: 100%;
    }

    .site-header {
        position: fixed;
        top: 34px;
        left: 0;
        right: 0;
        z-index: 1190;
        border-bottom: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.18);
        backdrop-filter: none;
    }

    .site-header:hover,
    .site-header:focus-within {
        background: rgba(255, 255, 255, 0.18);
        backdrop-filter: none;
    }

    .site-header__inner {
        position: relative;
        height: 64px;
        background: transparent;
    }

    .site-logo__image {
        filter: brightness(0) invert(1);
    }

    .site-header:hover .site-logo__image,
    .site-header:focus-within .site-logo__image {
        filter: brightness(0) invert(1);
    }

    .hero-slider {
        margin-top: 0;
    }

    .hero-slide__content {
        padding-top: 64px;
    }

    .site-header .site-nav {
        position: fixed;
        top: 34px;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1010;
        display: flex;
        width: auto;
        height: auto;
        min-height: 0;
        max-height: none;
        padding: 72px 38px 30px;
        overflow-y: auto;
        background: rgba(70, 187, 167, 0.8);
        box-shadow: none;
        backdrop-filter: blur(10px);
        pointer-events: none;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    .site-header.is-open {
        position: fixed;
        top: 34px;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        border-bottom: 0;
        background: transparent;
        backdrop-filter: none;
    }

    .site-header.is-open .site-header__inner {
        position: static;
        width: 100%;
        height: 0;
        margin: 0;
    }

    .site-header.is-open .site-logo,
    .site-header.is-open .m-call-button {
        display: none;
    }

    .site-header.is-open .mobile-header-buttons {
        position: static;
        z-index: auto;
    }

    .site-header.is-open .site-nav {
        position: fixed;
        top: 34px;
        right: 0;
        bottom: 0;
        left: 0;
        width: auto;
        height: auto;
        min-height: 0;
        max-height: none;
        pointer-events: auto;
        transform: translateX(0);
    }

    .site-header.is-open .mobile-menu-button {
        position: fixed;
        top: 56px;
        right: 22px;
        z-index: 1020;
        border-color: rgba(255, 255, 255, 0.76);
        background: rgba(20, 70, 66, 0.28);
        color: #ffffff;
        font-size: 0;
        line-height: 1;
        transform: none;
        transition: background 0.2s ease, border-color 0.2s ease;
    }

    .site-header.is-open .mobile-menu-button span {
        display: none;
        background: #ffffff;
        transform: none;
        opacity: 1;
        transition: none;
    }

    .site-header.is-open .mobile-menu-button span:nth-child(1),
    .site-header.is-open .mobile-menu-button span:nth-child(2),
    .site-header.is-open .mobile-menu-button span:nth-child(3) {
        transform: none;
        opacity: 1;
    }

    .site-header.is-open .mobile-menu-button::before {
        content: "×";
        display: block;
        color: #ffffff;
        font-family: Arial, sans-serif;
        font-size: 34px;
        font-weight: 300;
        line-height: 38px;
        text-align: center;
    }

    .site-header.is-open .site-nav__link,
    .site-header.is-open .site-nav__sub a,
    .site-header.is-open:hover .site-nav__link,
    .site-header.is-open:focus-within .site-nav__link {
        color: #ffffff;
    }

    .site-header.is-open .site-nav__link::after {
        content: "";
        display: block;
        position: static;
        width: 0;
        height: 0;
        margin-left: auto;
        border-top: 9px solid #ffffff;
        border-right: 6px solid transparent;
        border-left: 6px solid transparent;
        background: transparent;
        box-shadow: none;
        outline: 0;
        filter: none;
        transform: none;
    }
}

/* ========================================================
   [최종 닫힘 상태] 메뉴 패널 전체 슬라이드 아웃 + 흰색 X
   ======================================================== */
@media (max-width: 768px) {
    .site-header.is-closing {
        position: fixed;
        top: 34px;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        border-bottom: 0;
        background: transparent;
        backdrop-filter: none;
    }

    .site-header.is-closing .site-header__inner {
        position: static;
        width: 100%;
        height: 0;
        margin: 0;
    }

    .site-header.is-closing .site-logo,
    .site-header.is-closing .m-call-button {
        display: none;
    }

    .site-header.is-closing .mobile-header-buttons {
        position: static;
        z-index: auto;
    }

    .site-header.is-closing .site-nav {
        position: fixed;
        top: 34px;
        right: 0;
        bottom: 0;
        left: 0;
        width: auto;
        height: auto;
        min-height: 0;
        max-height: none;
        pointer-events: none;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    .site-header.is-closing .mobile-menu-button {
        position: fixed;
        top: 56px;
        right: 22px;
        z-index: 1020;
        border-color: rgba(255, 255, 255, 0.76);
        background: rgba(20, 70, 66, 0.28);
        color: #ffffff;
        font-size: 0;
        line-height: 1;
        transform: none;
        transition: background 0.2s ease, border-color 0.2s ease;
    }

    .site-header.is-closing .mobile-menu-button span,
    .site-header.is-closing .mobile-menu-button span:nth-child(1),
    .site-header.is-closing .mobile-menu-button span:nth-child(2),
    .site-header.is-closing .mobile-menu-button span:nth-child(3) {
        display: none;
        background: #ffffff;
        transform: none;
        opacity: 1;
        transition: none;
    }

    .site-header.is-closing .mobile-menu-button::before {
        content: "×";
        display: block;
        color: #ffffff;
        font-family: Arial, sans-serif;
        font-size: 34px;
        font-weight: 300;
        line-height: 38px;
        text-align: center;
    }
}

/* ========================================================
   [Apple-inspired 콘텐츠 보정] COMPANY + INTEGRATED WORKFLOW
   - 히어로/티커/상단 메뉴/모바일 메뉴는 건드리지 않습니다.
   ======================================================== */
.company-wrap,
.content-section {
    color: #1d1d1f;
    background: #f5f5f7;
}

.company-title {
    color: #1d1d1f;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.company-title::after {
    background: #0066cc;
}

.company-services {
    color: #1d1d1f;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.company-description,
.content-section__desc {
    color: #6e6e73;
    font-size: 17px;
    line-height: 1.47;
    letter-spacing: -0.01em;
}

.company-swiper .wrap {
    border: 1px solid #e0e0e0;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: none;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.company-swiper .wrap:hover,
.company-swiper .wrap:focus-within {
    border-color: #0066cc;
    box-shadow: none;
    transform: translateY(-4px);
}

.company-swiper .wrap header b {
    color: #1d1d1f;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.company-swiper .wrap header b span {
    color: #6e6e73;
    font-weight: 400;
}

.company-swiper .wrap header a,
.solution-copy__button {
    border: 1px solid #0066cc;
    border-radius: 999px;
    color: #ffffff;
    background: #0066cc;
    font-weight: 400;
    box-shadow: none;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.company-swiper .wrap header a:hover,
.company-swiper .wrap header a:focus,
.solution-copy__button:hover,
.solution-copy__button:focus {
    color: #ffffff;
    border-color: #0071e3;
    background: #0071e3;
    transform: scale(0.97);
}

.company-swiper figure {
    background: #f5f5f7;
}

.company-swiper figure img {
    filter: saturate(0.98) contrast(1);
}

.company-swiper .wrap:hover figure img,
.company-swiper .wrap:focus-within figure img {
    filter: saturate(1) contrast(1);
    transform: scale(1.035);
}

.content-section {
    padding-top: 104px;
    padding-bottom: 104px;
}

.content-section__eyebrow {
    color: #0066cc;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.content-section__title {
    color: #1d1d1f;
    font-size: 44px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.solution-panel {
    border-radius: 0;
    background: transparent;
}

.solution-tab {
    min-height: 50px;
    border: 1px solid #e0e0e0;
    border-radius: 999px;
    color: #1d1d1f;
    background: #ffffff;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: -0.01em;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.solution-tab:hover,
.solution-tab:focus {
    border-color: #0066cc;
    color: #0066cc;
}

.solution-tab.is-active {
    color: #ffffff;
    border-color: #0066cc;
    background: #0066cc;
}

.solution-tab.is-active:active,
.solution-copy__button:active,
.company-swiper .wrap header a:active {
    transform: scale(0.95);
}

.solution-display {
    border-radius: 0;
    color: #ffffff;
    background: #272729;
}

.solution-display__item {
    min-height: 440px;
}

.solution-display__item[data-tone="coral"],
.solution-display__item[data-tone="forest"],
.solution-display__item[data-tone="dark"] {
    background: #272729;
}

.solution-copy__label {
    color: #2997ff;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.solution-copy__title {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.solution-copy__text {
    color: #cccccc;
    font-size: 17px;
    line-height: 1.47;
    letter-spacing: -0.01em;
}

.demo-card,
.metric-card {
    border: 1px solid #e0e0e0;
    border-radius: 18px;
    color: #1d1d1f;
    background: #ffffff;
    box-shadow: none;
}

.demo-card--peach,
.demo-card--mint,
.demo-card--cream,
.demo-card--yellow {
    background: #ffffff;
}

.demo-card__label {
    color: #6e6e73;
    font-weight: 400;
}

.demo-card__value,
.metric-card__num {
    color: #1d1d1f;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.demo-bars span {
    background: rgba(0, 102, 204, 0.18);
}

.content-metrics {
    gap: 20px;
}

.metric-card:nth-child(2),
.metric-card:nth-child(3) {
    color: #1d1d1f;
    background: #ffffff;
}

.metric-card__text {
    color: #6e6e73;
    font-size: 17px;
    line-height: 1.47;
    letter-spacing: -0.01em;
}

@media (max-width: 900px) {
    .content-section__title {
        font-size: 38px;
    }

    .solution-copy__title {
        font-size: 34px;
    }
}

@media (max-width: 560px) {
    .company-title {
        font-size: 40px;
    }

    .company-services {
        font-size: 19px;
    }

    .company-description,
    .content-section__desc,
    .solution-copy__text,
    .metric-card__text {
        font-size: 15px;
    }

    .content-section__title,
    .solution-copy__title {
        font-size: 30px;
    }
}

/* ========================================================
   [DH 로고 교체] 헤더 로고 표시 크기 및 컬러 전환
   ======================================================== */
.site-logo {
    width: 240px;
    height: 50px;
    overflow: hidden;
}

.site-logo__image {
    display: block;
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: contain;
    object-position: left center;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.site-header:hover .site-logo__image,
.site-header:focus-within .site-logo__image {
    filter: none;
}

.site-header.is-open .site-logo__image,
.site-header.is-closing .site-logo__image {
    filter: brightness(0) invert(1);
}

.site-nav::before {
    background-image: url("../img/dh_logo_color.png");
    filter: none;
}

@media (max-width: 768px) {
    .site-logo {
        width: 180px;
        height: 31px;
    }

    .site-logo__image,
    .site-header:hover .site-logo__image,
    .site-header:focus-within .site-logo__image,
    .site-header.is-open .site-logo__image,
    .site-header.is-closing .site-logo__image {
        filter: brightness(0) invert(1);
    }

    .site-nav::before {
        width: 180px;
        height: 40px;
        background-size: contain;
    }
}

/* ========================================================
   [DH 상담 프로세스] INTEGRATED WORKFLOW 섹션 보정
   ======================================================== */
.content-section__head {
    align-items: start;
}

.content-section__title {
    max-width: 760px;
}

.solution-panel {
    align-items: start;
    gap: 26px;
    padding: 0;
}

.solution-tabs {
    position: sticky;
    top: calc(var(--ticker-height) + 28px);
    gap: 10px;
    padding-top: 8px;
}

.solution-tab {
    min-height: 54px;
    padding: 0 18px 0 20px;
    border-color: #d8dce3;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.solution-tab::after {
    width: 7px;
    height: 7px;
    border-width: 2px;
    opacity: 0.42;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.solution-tab:hover,
.solution-tab:focus {
    transform: translateX(3px);
}

.solution-tab.is-active {
    box-shadow: 0 12px 26px rgba(0, 102, 204, 0.24);
}

.solution-tab.is-active::after {
    transform: rotate(45deg) translate(2px, -2px);
}

.solution-display {
    min-height: 450px;
    border-radius: 28px;
    overflow: hidden;
    background: #101828;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.16);
}

.solution-display__item {
    position: absolute;
    min-height: 450px;
    grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
    gap: 42px;
    padding: 54px;
    background:
        radial-gradient(circle at 88% 16%, rgba(0, 102, 204, 0.26), rgba(0, 102, 204, 0) 32%),
        linear-gradient(135deg, #101828 0%, #1d2939 100%);
}

.solution-display__item[data-tone="license"],
.solution-display__item[data-tone="transfer"],
.solution-display__item[data-tone="diagnosis"] {
    background:
        radial-gradient(circle at 88% 16%, rgba(0, 102, 204, 0.26), rgba(0, 102, 204, 0) 32%),
        linear-gradient(135deg, #101828 0%, #1d2939 100%);
}

.solution-display__item.is-active .solution-copy,
.solution-display__item.is-active .solution-demo {
    animation: workflowFadeUp 0.46s ease both;
}

.solution-display__item.is-active .solution-demo {
    animation-delay: 0.08s;
}

.solution-copy {
    min-height: 342px;
}

.solution-copy__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #7cc4ff;
    font-size: 14px;
    font-weight: 700;
}

.solution-copy__label::before {
    content: "";
    display: block;
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: #7cc4ff;
}

.solution-copy__title {
    max-width: 500px;
    color: #ffffff;
    font-size: 38px;
    line-height: 1.16;
}

.solution-copy__text {
    max-width: 460px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.72;
}

.solution-copy__button {
    min-height: 50px;
    padding: 0 24px;
    border-color: #ffffff;
    color: #101828;
    background: #ffffff;
}

.solution-copy__button:hover,
.solution-copy__button:focus {
    border-color: #7cc4ff;
    color: #101828;
    background: #7cc4ff;
}

.solution-demo {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-content: center;
}

.demo-card {
    position: relative;
    min-height: 128px;
    padding: 20px;
    border-color: rgba(255, 255, 255, 0.76);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.solution-display__item.is-active .demo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 52px rgba(0, 0, 0, 0.2);
}

.demo-card--wide {
    min-height: 156px;
}

.demo-card__label {
    margin-bottom: 16px;
    color: #0066cc;
    font-size: 13px;
    font-weight: 700;
}

.demo-card__value {
    color: #101828;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    word-break: keep-all;
}

.demo-bars {
    margin-top: 22px;
}

.demo-bars span {
    height: 7px;
    background: rgba(0, 102, 204, 0.18);
}

.content-metrics {
    margin-top: 26px;
}

.metric-card {
    min-height: 190px;
    padding: 28px;
    border-color: #e5e7eb;
    border-radius: 22px;
    background: #ffffff;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.metric-card:hover {
    border-color: rgba(0, 102, 204, 0.42);
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
}

.metric-card__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 34px;
    border-radius: 50%;
    color: #ffffff;
    background: #0066cc;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0;
}

.metric-card__text {
    color: #424245;
    font-size: 16px;
    line-height: 1.65;
}

@keyframes workflowFadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .solution-panel {
        gap: 18px;
    }

    .solution-tabs {
        position: static;
        display: flex;
        flex-direction: row;
        gap: 8px;
        overflow-x: auto;
        padding: 2px 2px 10px;
        scrollbar-width: none;
    }

    .solution-tabs::-webkit-scrollbar {
        display: none;
    }

    .solution-tab {
        flex: 0 0 auto;
        width: auto;
        min-width: 116px;
        min-height: 46px;
        padding: 0 16px;
        justify-content: center;
        font-size: 14px;
    }

    .solution-tab::after {
        display: none;
    }

    .solution-tab:hover,
    .solution-tab:focus {
        transform: translateY(-2px);
    }

    .solution-display {
        min-height: 0;
        border-radius: 24px;
    }

    .solution-display__item {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 36px;
    }

    .solution-copy {
        min-height: auto;
    }

    .solution-copy__title {
        font-size: 32px;
    }
}

@media (max-width: 560px) {
    .content-section__head {
        gap: 16px;
        margin-bottom: 28px;
    }

    .content-section__eyebrow {
        margin-bottom: 12px;
        font-size: 12px;
    }

    .content-section__title {
        font-size: 28px;
        line-height: 1.18;
    }

    .content-section__desc {
        font-size: 15px;
        line-height: 1.68;
    }

    .solution-tab {
        min-width: 104px;
        min-height: 42px;
        font-size: 13px;
    }

    .solution-display {
        border-radius: 20px;
    }

    .solution-display__item {
        padding: 28px 22px;
    }

    .solution-copy__label {
        margin-bottom: 14px;
        font-size: 12px;
    }

    .solution-copy__label::before {
        width: 24px;
    }

    .solution-copy__title {
        font-size: 26px;
    }

    .solution-copy__text {
        margin-top: 16px;
        font-size: 15px;
    }

    .solution-copy__button {
        width: 100%;
        margin-top: 24px;
    }

    .solution-demo {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .demo-card,
    .demo-card--wide {
        min-height: 112px;
        grid-column: auto;
        padding: 18px;
        border-radius: 16px;
    }

    .demo-card__label {
        margin-bottom: 12px;
        font-size: 12px;
    }

    .demo-card__value {
        font-size: 19px;
    }

    .content-metrics {
        gap: 12px;
    }

    .metric-card {
        min-height: 0;
        padding: 22px;
        border-radius: 18px;
    }

    .metric-card__num {
        width: 44px;
        height: 44px;
        margin-bottom: 18px;
        font-size: 16px;
    }

    .metric-card__text {
        font-size: 15px;
    }
}

/* ========================================================
   [DH 전문서비스 섹션] 제목/카드 정렬 보정
   ======================================================== */
.company-wrap>header {
    max-width: 880px;
    margin-bottom: 54px;
}

.company-title {
    max-width: 820px;
    margin: 0 auto;
    padding-bottom: 0;
    color: #1d1d1f;
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: -0.035em;
    word-break: keep-all;
}

.company-title::after {
    display: none;
}

.company-services {
    position: relative;
    max-width: 760px;
    margin-top: 18px;
    padding-top: 22px;
    color: #1d1d1f;
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.025em;
}

.company-services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 56px;
    height: 2px;
    border-radius: 999px;
    background: #0066cc;
    transform: translateX(-50%);
}

.company-description {
    max-width: 720px;
    margin-top: 18px;
    color: #6e6e73;
    font-size: 17px;
    line-height: 1.68;
    letter-spacing: -0.01em;
}

.company-swiper .wrap header {
    min-height: 112px;
    padding: 24px 22px 18px;
}

.company-swiper .wrap header b {
    color: #1d1d1f;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.015em;
    word-break: keep-all;
}

.company-swiper .wrap header b span {
    margin-top: 7px;
    color: #0066cc;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.08em;
}

.company-swiper .wrap header a {
    min-width: 72px;
    height: 34px;
    color: #0066cc;
    border-color: rgba(0, 102, 204, 0.28);
    background: rgba(0, 102, 204, 0.06);
    font-size: 13px;
    font-weight: 700;
}

.company-swiper .wrap header a:hover,
.company-swiper .wrap header a:focus {
    color: #ffffff;
    border-color: #0066cc;
    background: #0066cc;
}

.company-swiper figure::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 58%, rgba(0, 0, 0, 0.08) 100%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .company-wrap>header {
        width: min(100% - 34px, 720px);
        margin-bottom: 34px;
    }

    .company-title {
        font-size: 32px;
        line-height: 1.18;
    }

    .company-services {
        margin-top: 15px;
        padding-top: 18px;
        font-size: 21px;
    }

    .company-description {
        margin-top: 14px;
        font-size: 15px;
        line-height: 1.7;
    }

    .company-swiper .wrap header b {
        font-size: 17px;
    }
}

@media (max-width: 430px) {
    .company-title {
        font-size: 29px;
    }

    .company-services {
        font-size: 19px;
    }

    .company-description br {
        display: none;
    }
}

/* ========================================================
   [DH Footer] 관련기관 슬라이드 + 회사 정보
   ======================================================== */
.partner-strip {
    overflow: hidden;
    padding: 58px 0;
    border-top: 1px solid #e5e7eb;
    background: #ffffff;
}

.partner-strip__inner {
    position: relative;
    width: min(100% - 96px, 1280px);
    margin: 0 auto;
}

.partner-strip__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.partner-strip__eyebrow {
    display: block;
    margin-bottom: 8px;
    color: #0066cc;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.partner-strip__head h2 {
    /* 기존 스타일 밑에 아래 속성들을 추가합니다 */
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.partner-swiper {
    overflow: hidden;
    padding: 4px 2px;
}

.partner-swiper .swiper-slide {
    height: auto;
}

.partner-swiper a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 92px;
    padding: 20px 22px;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: #ffffff;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.partner-swiper a:hover,
.partner-swiper a:focus {
    border-color: rgba(0, 102, 204, 0.35);
    background: #ffffff;
    transform: translateY(-4px);
}

.partner-swiper img {
    display: block;
    max-width: 100%;
    max-height: 44px;
    object-fit: contain;
    filter: saturate(0.94);
}

.partner-strip__control {
    position: absolute;
    top: 50%;
    z-index: 5;
    transform: translateY(20px);
}

.partner-strip__control--prev {
    left: -28px;
}

.partner-strip__control--next {
    right: -28px;
}

.partner-strip__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid #d2d2d7;
    border-radius: 50%;
    color: #1d1d1f;
    background: rgba(255, 255, 255, 0.92);
    font-size: 21px;
    cursor: pointer;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.1);
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.partner-strip__arrow:hover,
.partner-strip__arrow:focus {
    color: #ffffff;
    border-color: #0066cc;
    background: #0066cc;
    transform: scale(0.94);
}

.site-footer {
    color: rgba(255, 255, 255, 0.74);
    background: #101828;
}

.site-footer__inner {
    width: min(100% - 96px, 1280px);
    margin: 0 auto;
    padding: 54px 0 46px;
}

.site-footer__top {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 26px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer__top a {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    transition: color 0.2s ease;
}

.site-footer__top a:hover,
.site-footer__top a:focus {
    color: #7cc4ff;
}

.site-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 28px 0;
}

.site-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    min-height: 54px;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.site-footer__social a:hover,
.site-footer__social a:focus {
    border-color: rgba(124, 196, 255, 0.7);
    background: rgba(124, 196, 255, 0.12);
    transform: translateY(-2px);
}

.site-footer__social img {
    display: block;
    max-width: 154px;
    max-height: 28px;
    object-fit: contain;
}

.site-footer__info {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 0;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.7;
    word-break: keep-all;
}

.site-footer__info p {
    position: relative;
    margin: 0;
    padding-right: 15px;
    margin-right: 14px;
}

.site-footer__info p:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.24);
    transform: translateY(-50%);
}

.site-footer__info b {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 700;
}

.site-footer__copy {
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.46);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

@media (max-width: 900px) {

    .partner-strip__inner,
    .site-footer__inner {
        width: min(100% - 40px, 1280px);
    }

    .partner-strip__head {
        display: block;
    }

    .partner-strip__control {
        display: none;
    }
}

@media (max-width: 560px) {
    .partner-strip {
        padding: 44px 0;
    }

    .partner-strip__head h2 {
        font-size: 23px;
    }

    .partner-swiper a {
        min-height: 82px;
        border-radius: 15px;
    }

    .site-footer__inner {
        width: min(100% - 32px, 1280px);
        padding: 42px 0 38px;
    }

    .site-footer__top {
        gap: 10px 18px;
        padding-bottom: 22px;
    }

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

    .site-footer__social a {
        width: 100%;
        min-width: 0;
        border-radius: 16px;
    }

    .site-footer__info {
        display: grid;
        gap: 8px;
        font-size: 13px;
    }

    .site-footer__info p {
        padding-right: 0;
        margin-right: 0;
    }

    .site-footer__info p::after {
        display: none;
    }

    .site-footer__copy {
        line-height: 1.7;
    }

}