@font-face {
    font-family: 'Pretendard';
    src: url('../../resources/font/Pretendard-Medium.woff2') format('woff2');
    font-style: normal;
}


* {
    margin: 0;
    padding: 0;
    list-style: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-decoration: none;
    font-style: normal;
    font-family: "Pretendard Variable", 'Pretendard', Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    vertical-align: top;
    font-size: var(--font-lg);
    vertical-align: top;
    color: var(--title-light);
    font-weight: 400;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    word-break: keep-all;
    -webkit-transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
    -o-transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
    transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

p,
span {
    font-size: inherit;
    color: inherit;
    line-height: inherit;
    font-weight: inherit;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: inline-block;
}

button {
    outline: none;
    border: none;
    background: none;
    cursor: pointer;
}

html {
    background: var(--bg-light);
}

html.dark {
    background: var(--bg-dark);
}

.dark * {
    color: var(--title-dark);
}

.wrap {
    width: 100%;
    min-width: auto;
    min-height: calc(var(--vh, 1vh) * 100);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow-y: visible;
    position: relative;
}

img {
    max-width: 100%;
    display: inline-block;
    -o-object-fit: cover;
    object-fit: cover;
}

a {
    color: inherit;
    text-decoration: none;
    display: inline-block;
}

:root {
    --orange: #ff7a1a;
    --orange2: #ffb01a;
    --bg-dark: #000;
    --bg-dark2: #111;
    --bg-dark3: #222;
    --bg-light: #fff;
    --bg-light2: #F2F4FA;
    --section-max: 1000px;
    --nav-height: 60px;
    --text-dark: #B3B8BC;
    --title-dark: #FFFFFF;
    --text-light: #52555d;
    --title-light: #05141F;
    --font-xs: 12px;
    --font-sm: 14px;
    --font-md: 16px;
    --font-lg: 20px;
    --font-xl: 24px;
    --font-xxl: 32px;
    --font-xxxl: 46px;
    --font-xxxxl: 80px;
    --font-banner: 100px;
}

/* 공통 레이아웃 */
.section {
    padding: 100px 20px 120px 20px;
    position: relative;
    z-index: 2;
    background: var(--bg-light);
}

.dark .section {
    background: var(--bg-dark);
}

.sectionInner {
    max-width: var(--section-max);
    margin: 0 auto;
    position: relative;
    z-index: 0;
}

.sectionTitle {
    font-size: var(--font-xl);
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 40px;
}

/* ===================== 상단 HERO ===================== */
.heroSection {
    color: var(--title-dark);
    overflow: hidden;
    padding: 20px;
    position: absolute;
    /* position: fixed; */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.heroSection.parallaxFixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200;
    padding: 10px 20px;
    background: var(--bg-light);
}

.dark .heroSection.parallaxFixed {
    background: var(--bg-dark);

}

.mainVisual {
    position: relative;
    height: calc(var(--vh, 1vh) * 100);
    max-height: 90dvh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 0 20px;
}

.heroBg {
    position: absolute;
    inset: 0;
    background: url("../../img/bg_visual.jpg") center center / cover no-repeat;
    z-index: 0;
    height: 100%;
    width: 100%;
}

.heroVideo {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.heroOverlay {
    width: 100%;
    height: calc(var(--vh, 1vh) * 100);
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.width {
    margin: 0 auto;
    max-width: var(--section-max);
    width: 100%;
    display: inline-block;
    text-align: left;
}

.heroTopBar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.heroLogo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    font-size: var(--font-lg);
    font-weight: 600;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.heroLogoImg {
    width: 100%;
    max-width: 180px;
    /* 로고 아이콘 자리 */
    height: 40px;
    background: url("../../img/dark/logo_dark.svg") left/contain no-repeat;
}

.heroSection.parallaxFixed .heroLogoImg {
    background: url("../../img/light/logo_light.svg") left/contain no-repeat;

}

.dark .heroLogoImg {
    background: url("../../img/dark/logo_dark.svg") left/contain no-repeat;
}

.dark .heroSection.parallaxFixed .heroLogoImg {
    background: url("../../img/dark/logo_dark.svg") left/contain no-repeat;

}

.heroSection.parallaxFixed .heroLogoImg {
    height: 32px;
    width: 160px;
}

.btnMode {
    border-radius: 900px;
}

.btnMode:hover {
    background: rgba(0, 0, 0, 0.2);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

.heroSection.parallaxFixed .btnMode:hover {
    background: #DDE0E7;
}

.dark .heroSection.parallaxFixed .btnMode:hover {
    background: var(--bg-dark3);
}

.heroIcon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: url("../../img/dark/icon_mode_dark.svg") center/24px no-repeat;
}

.heroSection.parallaxFixed .heroIcon {
    background: url("../../img/light/icon_mode_dark.svg") center/24px no-repeat;
}

.dark .heroIcon {
    background: url("../../img/dark/icon_mode_light.svg") center/24px no-repeat;
}

.dark .heroSection.parallaxFixed .heroIcon {
    background: url("../../img/dark/icon_mode_light.svg") center/24px no-repeat;
}

.heroCenter {
    top: 50%;
    left: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    text-align: left;
}

.heroKicker {
    font-size: inherit;
    font-weight: 900;
    color: transparent;
    line-height: 1;
    -webkit-text-stroke: 2px #ffffff;
}

.heroMainLine {
    font-size: inherit;
    font-weight: 900;
    line-height: 1;
    color: var(--title-dark);
}

.heroTop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 26px;
    font-size: var(--font-banner);
}

.heroAccent {
    font-size: var(--font-banner);
    font-weight: 900;
    line-height: 1;
    background: -webkit-gradient(linear, left top, right top, from(#ff4a2a), to(#ffb11a));
    background: -o-linear-gradient(left, #ff4a2a, #ffb11a);
    background: linear-gradient(90deg, #ff4a2a, #ffb11a);
    -webkit-background-clip: text;
    color: transparent;
}

.heroSub {
    margin-top: 40px;
    font-size: var(--font-xl);
    font-weight: 500;
    color: var(--title-dark);
}

.heroScrollIndicator {
    bottom: 40px;
    left: 50%;
    text-align: center;
    font-size: var(--font-md);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    position: absolute;
    bottom: 40px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);

}

.heroScrollIndicator.fadeUp.show {
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.heroScrollLine {
    width: 2px;
    height: 36px;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 auto 8px;
    -webkit-animation: scroll .7s linear infinite alternate;
    animation: scroll .7s linear infinite alternate;
}

@-webkit-keyframes scroll {
    0% {
        margin-bottom: 20px;
    }

    100% {
        margin-bottom: 10px;
    }
}

@keyframes scroll {
    0% {
        margin-bottom: 20px;
    }

    100% {
        margin-bottom: 10px;
    }
}

.scrollTopBtn {
    position: fixed;
    right: 40px;
    bottom: 40px;
    border-radius: 999px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    z-index: 999;
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    -o-transition: opacity 0.3s ease, transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
    opacity: 0;
    pointer-events: none;
    padding: 10px;
    -webkit-box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.15);
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.15);

}

.scrollTopBtn.visible {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.scrollTopBtnIcon {
    margin: 0;
    border: solid #fff;
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url(../../img/icon_top.svg) center/contain no-repeat;

}

/* ===================== 섹션 NAV (소개/미션/...) ===================== */
.sectionNavWrapper {
    position: sticky;
    top: 56px;
    z-index: 200;
    background: var(--bg-light);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    padding: 0 20px;

}

.dark .sectionNavWrapper {
    background: var(--bg-dark);
}

.sectionNav {
    max-width: var(--section-max);
    margin: 0 auto;
    height: var(--nav-height);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 40px;
    font-size: var(--font-md);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.sectionNavItem {
    position: relative;
    padding-bottom: 4px;
    cursor: pointer;
    -webkit-transition: color 0.25s ease;
    -o-transition: color 0.25s ease;
    transition: color 0.25s ease;
    white-space: nowrap;
    font-size: var(--font-md);
    color: var(--text-light);
    text-align: center;
}

.sectionNavItem.active {
    font-weight: 700;
}

.dark .sectionNavItem {
    color: var(--text-dark);
}

.sectionNavItem::after {
    content: "";
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 0;
    height: 2px;
    width: 0;
    background: var(--bg-dark);
    -webkit-transition: width 0.25s ease;
    -o-transition: width 0.25s ease;
    transition: width 0.25s ease;
    display: inline-block;
}

.dark .sectionNavItem::after {
    background: var(--bg-light);
}

.sectionNavItem.active,
.sectionNavItem:hover {
    color: var(--title-light);
}

.dark .sectionNavItem.active,
.dark .sectionNavItem:hover {
    color: var(--title-dark);
}

.sectionNavItem.active::after {
    width: 100%;
}

/* ===================== 소개 영역 ===================== */
.introSection {
    padding-top: 120px;
}

.dark .introSection {
    background: var(--bg-dark);

}

.introTitleMain {
    text-align: center;
    font-size: var(--font-xxxl);
    margin-bottom: 8px;
    font-weight: 700;
}

.introTitleLogo {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    text-align: center;
    font-size: var(--font-banner);
    font-weight: 900;
    background: -webkit-gradient(linear, left top, right top, from(#ff4a2a), to(#ffb11a));
    background: -o-linear-gradient(left, #ff4a2a, #ffb11a);
    background: linear-gradient(90deg, #ff4a2a, #ffb11a);
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    line-height: 1;
}

.introDesc {
    text-align: center;
    font-size: var(--font-lg);
    margin-bottom: 60px;
    color: var(--text-light);
    width: 100%;
}

.dark .introDesc {
    color: var(--text-dark);
}

.introCardRow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.introCard {
    width: calc(33.333333% - 13.333333px);
    background: #E83921;
    border-radius: 20px;
    padding: 40px 0px 0px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.introCard.fadeUp.show {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.introCardRow .introCard:nth-child(1).show {
    -webkit-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.introCardRow .introCard:nth-child(2).show {
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.introCardRow .introCard:nth-child(3).show {
    -webkit-transition-delay: 0.6s;
    -o-transition-delay: 0.6s;
    transition-delay: 0.6s;
}

.introCard:nth-child(2) {
    background: #F47723;
}

.introCard:nth-child(3) {
    background: #F4AD1D;
}

.introCardTitle {
    font-size: var(--font-xxl);
    text-align: center;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--title-dark);
}

.introCardImg {
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    height: 220px;
}

.imgSystem {
    background: url("../../img/img_system.png") center bottom/contain no-repeat;
}

.imgSolution {
    background: url("../../img/img_solution.png") center bottom/contain no-repeat;
}

.imgBackup {
    background: url("../../img/img_backup.png") center bottom/contain no-repeat;
}

/* ===================== 미션 & 가치 ===================== */
.missionSection {
    text-align: center;
    background: var(--bg-light2);
}

.dark .missionSection {
    background: var(--bg-dark2);
}

.missionKicker {
    font-size: var(--font-xxl);
    font-weight: 700;
    margin-bottom: 60px;
}

.missionMain {
    font-size: var(--font-xxxxl);
    font-weight: 700;
    line-height: 1.3;
}

.missionHighlight {
    font-size: var(--font-xxxxl);
    font-weight: 900;
    background: -webkit-gradient(linear, left top, right top, from(#ff4a2a), to(#ffb11a));
    background: -o-linear-gradient(left, #ff4a2a, #ffb11a);
    background: linear-gradient(90deg, #ff4a2a, #ffb11a);
    -webkit-background-clip: text;
    line-height: 1.3;
    color: transparent;
    display: inline-block;
    margin-bottom: 30px;
}

.missionSub {
    font-size: var(--font-lg);
    color: var(--text-light);
    margin-bottom: 60px;
}

.dark .missionSub {
    color: var(--text-dark);
}

.missionCardRow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: stretch;
}

.missionCard {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    background: var(--bg-light);
    border-radius: 20px;
    padding: 40px 10px;
    text-align: center;
    -webkit-box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.1);
}

.dark .missionCard {
    background: var(--bg-dark3);
}

.missionCard:nth-child(1).show {
    -webkit-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.missionCard:nth-child(2).show {
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.missionCard:nth-child(3).show {
    -webkit-transition-delay: 0.6s;
    -o-transition-delay: 0.6s;
    transition-delay: 0.6s;
}

.missionIcon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
    display: inline-block;
}

.missionCustomer {
    background: url("../../img/light/icon_customer.svg") center/contain no-repeat;
}

.dark .missionCustomer {
    background: url("../../img/dark/icon_customer.svg") center/contain no-repeat;
}

.missionTech {
    background: url("../../img/light/icon_teck.svg") center/contain no-repeat;
}

.dark .missionTech {
    background: url("../../img/dark/icon_teck.svg") center/contain no-repeat;
}

.missionGrowth {
    background: url("../../img/light/icon_growth.svg") center/contain no-repeat;
}

.dark .missionGrowth {
    background: url("../../img/dark/icon_growth.svg") center/contain no-repeat;
}

.missionCardTitle {
    font-size: var(--font-xxl);
    font-weight: 700;
    margin-bottom: 10px;
}

.missionCardDesc {
    font-size: var(--font-md);
    color: var(--text-light);
    word-break: keep-all;
}

.dark .missionCardDesc {
    color: var(--text-dark);
}

/* ===================== 성과 ===================== */
.achievementSection {
    position: relative;
    padding: 140px 20px;
    color: var(--title-dark);
    overflow: hidden;
}

.achievementBg {
    position: absolute;
    inset: 0;
    background: url("../../img/bg_ach.jpg") center/cover no-repeat;
    -webkit-filter: brightness(0.5);
    filter: brightness(0.5);
    z-index: 0;
    will-change: transform;
    top: -40%;
    left: 0;
    width: 100%;
    height: 140%;
}

.achievementOverlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.achievementInner {
    max-width: var(--section-max);
    margin: 0 auto;
}

.achievementTitleEn {
    font-size: var(--font-xxl);
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    color: var(--bg-light);
}

.achievementTitle {
    font-size: var(--font-xxxl);
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--bg-light);
}

.achievementSub {
    font-size: var(--font-lg);
    color: var(--title-dark);
    margin-bottom: 60px;
    font-weight: 400;
}

.achievementCardRow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    width: 100%;
}

.achievementCard {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
    border-radius: 30px;
    padding: 40px 34px;
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    -webkit-box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2);
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2);
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}

.achievementIcon div {
    width: 100%;
    height: 100%;
}

.achievementIcon {
    width: 200px;
    display: inline-block;
    border-radius: 30px;
    aspect-ratio: 1/1;
}

.achFlex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.achNum {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 14px;
}

.iconTogether {
    background: url(../../img/icon_together.png) center/contain no-repeat;
}

.iconTime {
    background: url(../../img/icon_time.png) center/contain no-repeat;
}

.achievementLabel {
    font-size: var(--font-xl);
    color: var(--bg-light);
}

.achievementValue {
    font-size: var(--font-xxl);
    font-weight: 800;
    color: var(--bg-light);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 6px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.achievementValue p {
    font-size: var(--font-xxxxl);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;

}

.achievementFootnote {
    margin-top: 20px;
    font-size: var(--font-sm);
    color: var(--text-dark);
    position: relative;
}

/* ===================== 서비스 ===================== */
.serviceSection {
    background: var(--bg-light);
}

.dark .serviceSection {
    background: var(--bg-dark);
}

.serviceTitle {
    font-size: var(--font-xxl);
    font-weight: 700;
    margin-bottom: 60px;
}

.serviceGrid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 60px;
}

.serveiceCard {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    gap: 40px;
}

.serveiceCard:nth-child(2n) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.serviceImgBox {
    border-radius: 24px;
    overflow: hidden;
    background: var(--bg-light2);
    max-width: 340px;
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
}

.dark .serviceImgBox {
    background: var(--bg-dark3);
}

.serviceImgBox img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: inline-block;
}

.serviceTextBox {
    font-size: var(--font-md);
    color: var(--text-dark);
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.serviceItemTitle {
    font-size: var(--font-xxl);
    font-weight: 800;
    color: var(--title-light);
}

.dark .serviceItemTitle {
    color: var(--title-dark);
}

.serviceBullet {
    font-size: var(--font-sm);
    color: rgba(255, 255, 255, 0.8);
}

.serviceBullet li {
    font-size: var(--font-md);
    font-weight: 400;
    color: var(--text-light);
}

.dark .serviceBullet li {
    color: var(--text-dark);
}

.serviceMoreBtn {
    display: inline-block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 10px 24px;
    font-size: var(--font-md);
    border-radius: 4px;
    background: var(--bg-light2);
    color: var(--title-light);
}

.serviceMoreBtn:hover {
    background: #DDE0E7;
}

.dark .serviceMoreBtn {
    background: var(--bg-dark3);
    color: var(--title-dark);
}

.dark .serviceMoreBtn:hover {
    background: #333333;
}

.serviceBand {
    color: var(--title-dark);
    padding: 140px 20px;
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.serviceBandBg {
    position: fixed;
    inset: 0;
    top: 0;
    left: 0;
    background: url(../../img/bg_band.jpg) center/cover no-repeat;
    z-index: 0;
    width: 100%;
    overflow: hidden;
    height: calc(var(--vh, 1vh) * 100);
    z-index: -20;
    opacity: 0.5;
}

.serviceBg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(var(--vh, 1vh) * 100);
    z-index: -30;
    background: var(--bg-dark);
}

.serviceBandInner {
    max-width: var(--section-max);
    margin: 0 auto;
    text-align: center;
}

.serviceBandTitle {
    font-size: var(--font-xxxl);
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--title-dark);
}

.serviceBandSub {
    font-size: var(--font-lg);
    color: var(--title-dark);
}

/* ===================== CEO 메시지 ===================== */
.ceoSection {
    background: var(--bg-light2);
    padding: 100px 20px 120px 20px;
    text-align: center;
}

.dark .ceoSection {
    background: var(--bg-dark2);
}

.ceoInner {
    max-width: var(--section-max);
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-align: left;
    gap: 40px;
}

.ceoTitle {
    font-size: var(--font-xxl);
    font-weight: 700;
    margin-bottom: 30px;
}

.ceoQuoteMark {
    margin-top: 60px;
    margin-bottom: 20px;
    width: 24px;
    height: 24px;
    background: url(../../img/light/icon_quotes.png) center/contain no-repeat;
}

.dark .ceoQuoteMark {
    background: url(../../img/dark/icon_quotes.png) center/contain no-repeat;
}

.ceoGreeting {
    font-size: var(--font-xxl);
    font-weight: 800;
    margin-bottom: 20px;
}

.ceoText {
    font-size: var(--font-md);
    color: var(--text-light);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 640px;
}

.dark .ceoText {
    color: var(--text-dark);
}

.ceoSign {
    margin-top: 30px;
    font-size: var(--font-lg);
    font-weight: 600;
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.imgSign {
    width: 80px;
    height: 40px;
    background: url("../../img/light/img_sign.png") center/contain no-repeat;
    display: inline-block;
}

.dark .imgSign {
    background: url(../../img/dark/img_sign.png) center/contain no-repeat;
}

.ceoPhotoBox {
    -ms-grid-column-align: center;
    justify-self: center;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    max-width: -webkit-fit-content;
    max-width: fit-content;
    min-width: 320px;
    max-width: 320px;
    text-align: right;
    display: none;
}

.ceoPhotoBox img {
    object-fit: contain;
    width: 100%;
    aspect-ratio: 320 / 467;
    max-height: 420px;
}

.ceoPhoto {
    max-height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: inline-block;
}

/* ===================== 인증 & 특허 ===================== */
.certificateSection {
    background: var(--bg-light);
    text-align: center;
    margin-top: -1px;
}

.dark .certificateSection {
    background: var(--bg-dark);
}


.hiddenCertificates {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: max-height 0.6s ease, opacity 0.4s ease;
    -o-transition: max-height 0.6s ease, opacity 0.4s ease;
    transition: max-height 0.6s ease, opacity 0.4s ease;
}

.hiddenCertificates.open {
    max-height: 1000px;
    /* 충분히 큰 값 */
    opacity: 1;
}

.certificateTitle {
    font-size: var(--font-xxl);
    font-weight: 700;
    margin-bottom: 30px;
    text-align: left;
}

.certificateRow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.certificateCard {
    width: calc(25% - 15px);
    max-width: 100%;
    border-radius: 20px;
    text-align: center;
}

.certificateImgWrap {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    padding: 30px;
    background: var(--bg-light2);
}

.dark .certificateImgWrap {
    background: var(--bg-dark3);
}

.certificateImgWrap img {
    border-radius: 14px;
    width: 100%;
    aspect-ratio: 1 / 1.4142;
    object-fit: contain;
}

.certificateName {
    font-size: var(--font-md);
    margin-top: 20px;
    margin-bottom: 20px;
}

.certificateMore {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    padding: 10px 30px;
    border-radius: 999px;
    background: var(--bg-light2);
    font-size: var(--font-sm);
    margin: 0 auto;
    margin-top: 20px;
}

.certificateMore:hover {
    background: #DDE0E7;
}

.dark .certificateMore:hover {
    background: #444444;
}

.dark .certificateMore {
    background: var(--bg-dark3);
}

.certificateMoreArrow {
    width: 18px;
    height: 6px;
    background: url(../../img/light/icon_down.svg) center/contain no-repeat;
}

.certificateMoreArrow.rotate {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.dark .certificateMoreArrow {
    background: url(../../img/dark/icon_down.svg) center/contain no-repeat;
}

/* ===================== 오시는 길 & FOOTER ===================== */
.section_address {
    display: none;
}

.root_daum_roughmap {
    width: 100% !important;
    font-size: var(--font-xs);
}

.root_daum_roughmap .wrap_controllers .wrap_btn_roadview .txt {
    font-size: var(--font-xs) !important;
}

.mapOverlay {
    position: absolute;
    inset: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: var(--font-lg);
    cursor: pointer;
    z-index: 100;
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    font-weight: 500;
}

.mapOverlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.locationSection {
    background: var(--bg-light2);
}

.dark .section.locationSection {
    background: var(--bg-dark2);
}

.locationTitle {
    font-size: var(--font-xxl);
    font-weight: 700;
    margin-bottom: 30px;
}

.locationMapWrap {
    border-radius: 26px;
    overflow: hidden;
    margin-bottom: 40px;
    background: #222;
    position: relative;
    min-height: 330px;
}

.locationWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 80px;
}

.locationInfoRow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 60px;
}

.locationInfoColTitle {
    font-weight: 800;
    font-size: var(--font-xl);
    line-height: 40px;
}

.locationInfoText {
    font-size: var(--font-lg);
    color: var(--title-light);
    line-height: 40px;
}

.dark .locationInfoText {
    color: var(--title-dark);
}

.locationInfoText p {
    color: var(--text-light);
    display: inline-block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding-right: 20px;
    display: flex;
    justify-content: center;
    align-content: stretch;
    align-items: center;
    min-width: 100px;
}

.dark .locationInfoText p {
    color: var(--text-dark);
}

.locationTextBox {
    display: flex;
    flex-direction: row;
    min-height: 40px;
    line-height: 40px;
}

.bgLeft {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30vw;
    max-width: 360px;
    height: 100%;
    opacity: 0.5;
    z-index: -1;
    background: url(../../img/light/img_location_left.png) left bottom/contain no-repeat;
}

.dark .bgLeft {
    background: url(../../img/dark/img_location_left.png) left bottom/contain no-repeat;
}

.bgRight {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30vw;
    max-width: 360px;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
    background: url(../../img/light/img_location_right.png) left bottom/contain no-repeat;
}

.dark .bgRight {
    background: url(../../img/dark/img_location_right.png) left bottom/contain no-repeat;
}

.locationMapWrap {
    border-radius: 26px;
    overflow: hidden;
    margin-bottom: 40px;
    background: #ddd;
    position: relative;
}


.mapOverlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.darkmap img {
    -webkit-filter: brightness(0.7) contrast(1.2);
    filter: brightness(0.7) contrast(1.2);
}

.footer {
    background: #DDE0E7;
    padding: 40px 20px 40px;
}

.dark .footer {
    background: var(--bg-dark3);
}

.visiter {
    min-width: 210px;
    text-align: left;
    font-size: var(--font-sm);
}
.footerInner .footerLeft{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
}
.footerInner {
    max-width: var(--section-max);
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-grid-columns: 2fr 20px 1fr;
    grid-template-columns: 2fr 1fr;
    -webkit-column-gap: 60px;
    -moz-column-gap: 60px;
    column-gap: 60px;
    gap: 20px;
    font-size: var(--font-xs);
    color: var(--text-light);
    text-align: left;
}

.footerInner.center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
}

.dark .footerInner {
    color: var(--text-dark);
}

.footerLogo {
    font-weight: 800;
    margin-bottom: 10px;
}

.footerRightCard {
    -ms-grid-column-align: end;
    justify-self: end;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    background: var(--bg-light2);
    border-radius: 20px;
    padding: 14px 30px;
    text-align: center;
    width: 100%;
    max-width: 210px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.dark .footerRightCard {
    background: var(--bg-dark2);
}

.footerText {
    font-size: var(--font-xs);
    line-height: 1.8;
    color: var(--text-light);
}

.dark .footerText {
    color: var(--text-dark);
}

.footerRightLabel {
    font-size: var(--font-sm);
    color: var(--title-light);
    margin-bottom: 2px;
}

.dark .footerRightLabel {
    color: var(--title-dark);
}

.footerRightNumber {
    font-size: var(--font-xl);
    font-weight: 800;
    margin-bottom: 8px;
}

.footerRightTime {
    font-size: var(--font-xs);
    color: var(--text-light);
    line-height: 1.6;
}

.dark .footerRightTime {
    color: var(--text-dark);
}

.footerCopy {
    grid-column: 1 / -1;
    font-size: var(--font-xs);
    margin-top: 10px;
}

/* ===================== fadeUp 애니메이션 ===================== */
.fadeUp {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -ms-transform: translateY(40px);
    transform: translateY(40px);
    -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
    transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
    -o-transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
}

.fadeUp.show {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.intro {
    position: fixed;
    inset: 0;
    background: #000;
    /* 또는 브랜드 컬러 */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 9999;
    -webkit-transition: opacity 0.5s ease;
    -o-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
}

/* 등장: 왼쪽에서 스르륵 나타나기 */
.introImg {
    width: 90%;
    max-width: 800px;
    -webkit-animation: slideIn 0.8s ease forwards;
    animation: slideIn 0.8s ease forwards;
}


@-webkit-keyframes slideIn {
    0% {
        opacity: 0;
        -webkit-clip-path: inset(0 100% 0 0);
        clip-path: inset(0 100% 0 0);
        /* 오른쪽 다 가림 → 왼쪽부터 등장 */
    }

    100% {
        opacity: 1;
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
        /* 완전히 표시됨 */
    }
}


@keyframes slideIn {
    0% {
        opacity: 0;
        -webkit-clip-path: inset(0 100% 0 0);
        clip-path: inset(0 100% 0 0);
        /* 오른쪽 다 가림 → 왼쪽부터 등장 */
    }

    100% {
        opacity: 1;
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
        /* 완전히 표시됨 */
    }
}

/* 사라질 때 (왼쪽부터 천천히 사라짐) */
.fadeOut .introImg {
    -webkit-animation: slideOut 1.5s ease-in-out forwards;
    animation: slideOut 1.5s ease-in-out forwards;
}

@-webkit-keyframes slideOut {
    0% {
        opacity: 1;
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
    }

    100% {
        opacity: 0;
        -webkit-clip-path: inset(0 0 0 100%);
        clip-path: inset(0 0 0 100%);
    }
}

@keyframes slideOut {
    0% {
        opacity: 1;
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
    }

    100% {
        opacity: 0;
        -webkit-clip-path: inset(0 0 0 100%);
        clip-path: inset(0 0 0 100%);
    }
}

/* 사라질 때: 왼쪽부터 스르륵 사라짐 */
.fadeOut .introImg {
    -webkit-animation: slideOut 1s ease forwards;
    animation: slideOut 1s ease forwards;
}

/* 메인 감춤/등장 */
.main.hidden {
    display: none;
}

.main {
    -webkit-animation: fadeIn 0.8s ease forwards;
    animation: fadeIn 0.8s ease forwards;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ===================== 반응형 ===================== */
@media (max-width: 1000px) {
    br.pc {
        display: none;
    }

    :root {
        --font-md: 14px;
        --font-lg: 18px;
        --font-xl: 20px;
        --font-xxl: 26px;
        --font-xxxl: 38px;
        --font-xxxxl: 60px;
        --font-banner: 80px;
    }

    .section {
        padding: 60px 20px 60px 20px;
    }

    .heroSub {
        margin-top: 30px;
    }

    .sectionNav {
        height: 45px;
        gap: 20px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }


    .introCardTitle {
        margin-bottom: 10px;
    }

    .introCard {
        padding-top: 30px;
    }

    .missionKicker {
        margin-bottom: 40px;
    }

    .missionCard {
        padding: 30px 20px;
    }

    .locationWrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 10px;
    }

    .locationInfoText p {
        padding-right: 20px;
    }

    .achievementTitle {
        margin-bottom: 10px;
    }

    .achievementSub {
        margin-bottom: 40px;
    }

    .achievementSection {
        padding: 60px 20px;
    }

    .achievementCardRow {
        gap: 20px;
    }

    .serviceTitle {
        margin-bottom: 40px;
    }

    .serviceBand {
        padding: 60px 20px;
    }

    .introDesc {
        margin-bottom: 40px;
    }

    .locationInfoText {
        line-height: 1.6;
    }

    .serveiceCard {
        gap: 20px;
    }

    .ceoSection {
        padding: 60px 20px 60px 20px;
    }

    .heroLogoImg {
        width: 160px;
        height: 32px;
    }

    .heroIcon {
        height: 36px;
        width: 36px;
    }

    .ceoPhotoBox img {
        max-height: 370px;
    }
}

@media (max-width: 719px) {
    :root {
        --font-xs: 12px;
        --font-sm: 14px;
        --font-md: 15px;
        --font-lg: 16px;
        --font-xl: 18px;
        --font-xxl: 20px;
        --font-xxxl: 30px;
        --font-xxxxl: 40px;
        --font-banner: 60px;
    }

    .introCard {
        width: calc(50% - 10px);
    }

    .introCardRow .introCard:nth-child(1) {
        width: 100%;
    }

    .introCardRow .introCard:nth-child(1) .introCardTitle {
        font-size: var(--font-xxxl);
    }

    .certificateCard {
        width: calc(50% - 10px);
    }

    .introCardImg {
        height: 160px;
    }

    .missionCard {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        width: 100%;
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        text-align: left;
        gap: 20px;
        padding: 20px;
    }

    .missionHighlight {
        margin-bottom: 20px;
    }

    .missionSub {
        margin-bottom: 40px;
    }

    .achievementCardRow {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .achievementIcon {
        width: 160px;
    }

    .ceoInner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 0px;
    }

    .ceoPhotoBox {
        max-width: 180px;
        min-width: 180px;
        margin-bottom: -70px;
    }

    .ceoQuoteMark {
        margin-top: 40px;
    }

    .footerInner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .footerRightCard {
        max-width: 100%;
    }

    .serveiceCard,
    .serveiceCard:nth-child(2n) {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .missionIcon {
        width: 40px;
        margin-bottom: 0;
    }

    .serviceImgBox {
        max-width: 100%;
        height: auto;
    }

    .serviceBand {
        padding: 60px 20px;
    }

    .ceoGreeting {
        margin-bottom: 10px;
    }

    .achievementCard {
        padding: 20px;
    }

    .achFlex {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        text-align: left;
    }

    .achNum {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 6px;
    }

    .locationTextBox {
        flex-direction: column;
        min-height: auto;
        line-height: 1.4;
        margin-bottom: 10px;
        gap: 4px;
    }

    .locationInfoText p {
        min-width: fit-content;
    }

    .locationMapWrap {
        margin-bottom: 20px;
    }
}

@media (max-width: 520px) {

    :root {
        --font-xs: 11px;
        --font-sm: 13px;
        --font-md: 14px;
        --font-lg: 14px;
        --font-xl: 16px;
        --font-xxl: 18px;
        --font-xxxl: 24px;
        --font-xxxxl: 30px;
        --font-banner: 50px;
    }

    .certificateImgWrap {
        padding: 20px;
    }

    .sectionNav {
        gap: 10px;
    }


    .introCardImg {
        height: 140px;
    }

    .achievementIcon {
        width: 120px;
    }
}