/* =========================================
   1. Variables & Base Reset
========================================= */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");

:root {
    --primary: #009FE3;
    --primary-hover: #0085bd;
    --text-main: #222222;
    --text-sub: #555555;
    --text-desc: #888888;
    --bg-body: #ffffff;
    --bg-gray: #f4f6f8;
    --bg-green-light: #f6faf3;
    --border-light: #eaeaea;
    --footer-bg: #333333;

    --primary-green: #00c768;
    --primary-orange: #ff8a48;
    --text-dark: #111111;
    --text-gray: #666666;
    --text-light-gray: #999999;
    --border-color: #eee;
    --white: #ffffff;
    --transition-speed: 0.5s;


    --footer-text: #a0a0a0;
    --font-family: 'Pretendard', system-ui, -apple-system, BlinkMacSystemFont, 'SegoeUI', Roboto, 'HelveticaNeue', Arial, sans-serif;
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-main);
    background-color: var(--bg-body);
    line-height: 1.6;
    word-break: keep-all;
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.03rem;
}

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

img,
fieldset,
iframe,
button,
ul,
ol {
    list-style: none;
}

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

button {
    border: none;
    background: none;
    font-family: inherit;
    cursor: pointer;
}

/* =========================================
   2. Common Layout & Utilities
========================================= */
.inner-container {
    width: 100%;
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    margin-bottom: 24px;
}

.section-title {
    font-size: 64px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 16px;
    letter-spacing: 0;
}

.section-desc {
    font-size: 18px;
    color: var(--text-sub);
    line-height: 1.5;
    font-weight: 400;
}

.section-desc-center {
    text-align: center;
}

.text-blue {
    color: #00a0e9;
    font-size: unset !important;
    display: contents;
    font-weight: unset !important;
}

.bg-gray {
    background: #fafafa;
}

.bg-green {
    background: rgba(47, 195, 124, 0.7);
}

.bg-red {
    background: rgba(235, 82, 84, 0.7);
}

.bg-blue {
    background: rgba(80, 144, 223, 0.7);
}

.bg-purple {
    background: rgba(166, 80, 233, 0.7);
}

/* Common Buttons */
.btn-primary {
    background-color: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}

.btn-rounded {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 10px 10px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    width: 360px;
    justify-content: space-between;
}

.btn-rounded .circle-icon {
    background-color: #fff;
    border: #379fe3 solid 1px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 0;
    position: relative;
}

.btn-rounded .circle-icon::before,
.btn-rounded .circle-icon::after {
    content: '';
    position: absolute;
    background-color: var(--primary);
    border-radius: 1px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.btn-rounded .circle-icon::before {
    width: 15px;
    height: 2px;
}

.btn-rounded .circle-icon::after {
    width: 2px;
    height: 15px;
}

.btn-wrap-center {
    display: flex;
    justify-content: center;
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 600;
    bottom: 40px;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.scroll-indicator.hidden {
    opacity: 0;
    visibility: hidden;
}

.mouse-icon {
    width: 24px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    position: relative;
}

.mouse-icon::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: rgba(89, 192, 255, 1);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 16px;
        opacity: 0;
    }
}

/* =========================================
   3. Header & Navigation (GNB)
========================================= */
.header-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 999;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.header-wrap.is-scrolled,
.header-wrap:hover {
    background-color: #fff;
    color: var(--text-main);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

.logo-box {
    display: flex;
    align-items: center;
}

.logo-box img {
    height: 70px;
}

.logo-white {
    display: block;
}

.logo-color {
    display: none;
}

.header-wrap.is-scrolled .logo-white,
.header-wrap:hover .logo-white {
    display: none;
}

.header-wrap.is-scrolled .logo-color,
.header-wrap:hover .logo-color {
    display: block;
}

.gnb-list {
    display: flex;
    gap: 50px;
    height: 100%;
    align-items: center;
}

.gnb-item {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.gnb-link {
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    padding: 10px 20px;
}

.gnb-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.gnb-item:hover .gnb-link {
    color: var(--primary);
}

.gnb-item:hover .gnb-link::after {
    width: 100%;
}

/* Header Utilities & Search */
.header-utils {
    display: flex;
    align-items: center;
}

.search-box {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 8px 20px;
    width: 240px;
    transition: all 0.3s ease;
}

.header-wrap.is-scrolled .search-box,
.header-wrap:hover .search-box {
    background-color: #f1f3f5;
    border: 1px solid var(--border-light);
}

.search-box input {
    border: none;
    background: none;
    outline: none;
    color: inherit;
    width: 100%;
    font-size: 14px;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.header-wrap.is-scrolled .search-box input::placeholder,
.header-wrap:hover .search-box input::placeholder {
    color: #999;
}

.search-btn {
    background: url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"%3E%3Ccircle cx="11" cy="11" r="8"%3E%3C/circle%3E%3Cline x1="21" y1="21" x2="16.65" y2="16.65"%3E%3C/line%3E%3C/svg%3E') center no-repeat;
    width: 20px;
    height: 20px;
    border: none;
    cursor: pointer;
}

.header-wrap.is-scrolled .search-btn,
.header-wrap:hover .search-btn {
    background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23333333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"%3E%3Ccircle cx="11" cy="11" r="8"%3E%3C/circle%3E%3Cline x1="21" y1="21" x2="16.65" y2="16.65"%3E%3C/line%3E%3C/svg%3E');
}

/* Dropdown Menu */
.dropdown-box {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: #fff;
    border-radius: 12px;
    border: #E6E6E6 solid 1px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 20px 40px 20px 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s var(--ease-out-expo);
    z-index: 1000;
    display: flex;
    white-space: nowrap;
}

.gnb-item:hover .dropdown-box {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu-list {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.dropdown-box.has-detail .dropdown-menu-list {
    /* width: 180px; */
    border-right: 1px solid var(--border-light);
    padding-right: 20px;
    margin-right: 20px;
}

.dropdown-item {
    padding: 12px 30px 12px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease;
    margin-bottom: 4px;
    position: relative;
}

.dropdown-item .arrow {
    font-size: 14px;
    color: transparent;
}

.dropdown-item:hover,
.dropdown-item.active {
    color: var(--primary);
}

.dropdown-item:hover .arrow,
.dropdown-item.active .arrow {
    color: var(--primary);
    transform: translateX(3px);
    display: block;
    position: absolute;
    font-size: 0;
    width: .4rem;
    height: .4rem;
    right: 1rem;
    margin-top: 7px;
    border: 1px solid #009FE3;
    border-top: 0;
    border-left: 0;
    content: "";
    transform: translateY(-50%) rotate(-45deg);
}

.dropdown-detail-wrap {
    flex-grow: 1;
    position: relative;
    min-height: 100%;
}

.dropdown-detail-list {
    display: none;
    flex-direction: column;
    gap: 6px;
    animation: fadeInDetail 0.3s ease forwards;
    width: 100%;
    margin-top: 9px;
}

.dropdown-detail-list.active {
    display: flex;
}

@keyframes fadeInDetail {
    from {
        opacity: 0;
        transform: translateX(-5px);
    }

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

.dropdown-detail-list a {
    font-size: 15px;
    color: var(--text-sub);
    transition: color 0.2s;
    display: block;
    padding: 4px 0 4px 15px;
    height: 30px;
    position: relative;
}

.dropdown-detail-list a:hover {
    color: var(--primary);
    font-weight: 600;
}

.dropdown-detail-list a:before {
    position: absolute;
    top: 50%;
    left: 0;
    width: .2rem;
    height: .2rem;
    border-radius: 100%;
    background-color: #9f9f9f;
    content: '';
    transform: translateY(-50%);
    transition: all ease .3s;
}

.dropdown-detail-list a:hover:before,
.dropdown-detail-list.on a:before {
    background-color: #17afb5;
}

.simple-list a {
    display: block;
    padding: 12px 16px;
    border-radius: 8px;
    color: var(--text-main);
    transition: all 0.2s;
}

.simple-list a:hover {
    color: var(--primary);
    font-weight: 600;
}

.aside,
.btn_side,
.nav_bg {
    display: none;
}

/* =========================================
   4. Main/Home (Hero Section & Sliders)
========================================= */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    background-color: #1d3587;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity 1s ease-out;
}

.hero-section.show {
    opacity: 1;
}

.hero-slider-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out, transform 5s ease;
    transform: scale(1.05);
}

.hero-slide-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 0%);
}

.hero-slide-item.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-section .inner-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 40px;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: -30px;
    text-align: left;
}

.hero-content .hero-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.hero-content .hero-desc {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.9;
    margin: unset;
    margin-bottom: 50px;
}

.hero-badge {
    display: flex;
    width: 72px;
    height: 72px;
    background-color: #5CC581;
    color: #fff;
    border-radius: 50%;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    z-index: 1;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.9;
    z-index: 1;
}

.hero-desc {
    font-size: 20px;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
    word-break: keep-all;
    z-index: 1;
}

.hero-section .hero-badge,
.hero-section .hero-title,
.hero-section .hero-subtitle,
.hero-section .hero-desc {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hero-section.show .hero-badge {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.hero-section.show .hero-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
}

.hero-section.show .hero-subtitle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
}

.hero-section.show .hero-desc {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.4);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 80px;
    left: 20px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 24px;
}

.slider-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
}

.slider-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #fff;
}

.slider-btn svg {
    width: 20px;
    height: 20px;
}

.btn-pause.paused .icon-pause {
    display: none;
}

.btn-pause.paused .icon-play {
    display: block !important;
}

.slider-pagination {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.slider-pagination .current {
    font-weight: 700;
}

.slider-pagination .divider {
    opacity: 0.5;
    font-size: 14px;
}

/* =========================================
   5. Main Sections (Business, Stats, Partners, Media, Support)
========================================= */
/* Business Section */
.business-section {
    padding: 140px 0;
}

.biz-accordion-wrap {
    display: flex;
    gap: 24px;
    position: relative;
    height: 80vh;
    max-height: 840px;
}

.biz-card {
    position: relative;
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: flex 0.6s var(--ease-out-expo);
    cursor: pointer;
}

.biz-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 0.8s ease;
}

.biz-bg-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.6) 100%);
    transition: background 0.4s ease;
}

.biz-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0 60px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.9s var(--ease-out-expo);
}

.biz-label-small {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

.biz-title {
    font-size: 32px;
    font-weight: 800;
    transition: all 0.4s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.biz-desc {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 16px;
    transition: opacity 0 ease;
    opacity: 1;
}

.biz-services-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 60px;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.4s var(--ease-out-expo);
    text-align: left;
}

.service-list-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-tags span {
    display: inline-block;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    transition: all 0.4s;
    cursor: pointer;
    white-space: nowrap;
}

.service-tags span:hover {
    background: #fff;
    color: var(--text-main);
}

.biz-card:hover {
    flex: 2.2;
}

.biz-card:hover .biz-bg-img {
    transform: scale(1.05);
}

.biz-card:hover .biz-bg-img::after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.8) 100%);
}

.biz-card:hover .biz-content {
    top: 40%;
    left: 0;
    transform: translate(0, 0);
    align-items: flex-start;
    text-align: left;
}

.biz-card:hover .biz-title {
    font-size: 42px;
}

.biz-card:hover .biz-label-small {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.biz-card:hover .biz-desc {
    opacity: 0;
    pointer-events: none;
}

.biz-card:hover .biz-services-wrap {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: 0.6s;
}

/* Stats & Partners */
.stats-section-main {
    padding: 120px 0;
    background-color: var(--bg-body);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 30px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    height: 80px;
    justify-content: center;
    line-height: 1.4;
}

.stat-number-wrap {
    font-size: 114px;
    font-weight: 700;
    line-height: 1;
    color: var(--text-main);
    margin-bottom: 18px;
    letter-spacing: -2px;
}

.stat-unit {
    font-size: 20px;
    text-transform: uppercase;
}

.partners-section {
    padding: 100px 0;
    background-color: #F0F4F7;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.partner-box {
    background-color: #fff;
    border-radius: 12px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: all 0.3s;
    border: 1px solid var(--border-light);
}

.partner-box img {
    height: 30%;
    width: 100%;
    object-fit: contain;
    filter: grayscale(0%) opacity(0.8);
    transition: all 0.3s;
    object-fit: cover;
}

.partner-box:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: #ddd;
}

.partner-box:hover img {
    filter: grayscale(0%) opacity(1);
}

/* Pagination */
.pagination-dots {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 50px auto 0;
}

.pagination-dots .dot {
    width: 16px;
    height: 16px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
}

.pagination-dots .dot.active {
    background: var(--primary);
}

.pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 16px;
}

.page {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #777;
}

.page.is-on {
    background: #307860;
    border-color: #307860;
    color: #fff;
}

/* Media Section */
.media-section {
    padding: 140px 0;
}

.media-layout {
    display: flex;
    justify-content: space-between;
}

.media-left {
    width: 360px;
    flex-shrink: 0;
}

.media-filter-list {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.filter-btn {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-desc);
    position: relative;
    padding-bottom: 6px;
}

.filter-btn.active {
    color: var(--text-main);
    font-weight: 700;
}

.filter-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
}

.media-grid {
    width: 900px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
}

.media-card {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.media-thumb {
    width: 100%;
    height: 240px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
}

.media-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.media-card:hover .media-thumb img {
    transform: scale(1.05);
}

.media-info {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--text-desc);
    margin-bottom: 12px;
}

.media-tag {
    font-weight: 600;
    color: var(--primary);
}

.media-info span.divider {
    color: #ddd;
}

.media-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Support Section */
.support-section {
    padding: 100px 0;
    background-color: var(--bg-green-light);
    position: relative;
    overflow: hidden;
}

.support-layout {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    z-index: 2;
    min-height: 560px;
}

.earth-graphic {
    position: absolute;
    left: 0%;
    top: 0%;
    width: 949px;
    height: 996px;
    background: url('../images/common/img_earth.png') 50% 0%/contain no-repeat;
    z-index: -1;
}

.support-content-box {
    width: 45%;
    min-width: 720px;
}

.support-content-box .section-title,
.support-content-box .section-desc {
    text-align: right;
}

.support-btn-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 40px;
}

.btn-outline-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 12px 12px 30px;
    border-radius: 50px;
    border: 1px solid var(--border-light);
    background-color: #fff;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main);
    transition: all 0.3s;
}

.btn-outline-pill.btn_down {
    max-width: 420px;
    font-size: 20px;
    border: 1px solid #B5B5B5;
}

.btn-outline-pill:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 159, 227, 0.1);
}

.btn-outline-pill .icon-plus {
    border: #E7E7E7 solid 1px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0;
}

.btn-outline-pill:hover .icon-plus {
    border-color: #CDDEF0;
}

.btn-outline-pill .icon-plus::before,
.btn-outline-pill .icon-plus::after {
    content: '';
    position: absolute;
    background-color: #777;
    border-radius: 1px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.btn-outline-pill .icon-plus::before {
    width: 16px;
    height: 2px;
}

.btn-outline-pill .icon-plus::after {
    width: 2px;
    height: 16px;
}

.btn-outline-pill:hover .icon-plus::before,
.btn-outline-pill:hover .icon-plus::after {
    background-color: var(--primary);
}

.btn-outline-pill .icon-down {
    background-color: #01a7e9;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0;
}

.btn-outline-pill:hover .icon-down {
    border-color: #ffffff;
    background-color: #39a7e9;
}

.btn-outline-pill .icon-down::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    -webkit-mask: url('http://ewc.co.kr/design/images/icon/down.svg') no-repeat center / contain;
    mask: url('http://ewc.co.kr/design/images/icon/down.svg') no-repeat center / contain;
    transition: all 0.3s ease;
}

.btn-outline-pill:hover .icon-down::before {
    background-color: #fff;
}

/* =========================================
   6. Sub-pages (General & Common Styles)
========================================= */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 20px;
    /* opacity: 0; transform: translateY(40px);
    transition: opacity 1s ease-out, transform 1s ease-out; */
}

.note-modal-footer {
    box-sizing: content-box;
}

.container.show {
    /* opacity: 1;
    transform: translateY(0); */
}

.sec-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 60px;
    color: #111;
}

.sub_title {
    font-family: 'Montserrat', sans-serif;
    position: relative;
    width: 100%;
    padding: 100px 0 0;
    margin: 0 auto;
    text-align: center;
}

.sub_title span {
    display: block;
    color: #666;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: .025rem;
}

.sub_title span b {
    color: #333;
}

.sub_title span i {
    color: #b1b1b1;
    font-size: 16px;
    padding: 0 15px;
}

.sub_title h3 {
    color: #2c2c2c;
    font-size: 64px;
    letter-spacing: -.01rem;
    font-weight: 800;
}

.sub_title h3 span {
    font-size: 1.6rem;
    color: #666;
    font-weight: 400;
    margin: 4rem 0 0 0;
}

.sub_title p {
    margin-top: 5rem;
    color: #4c4c4c;
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: -.05rem;
}

h3.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 90px;
    color: #222;
}

.sub-visual {
    width: 100%;
    height: 600px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.sub-visual.h400 {
    height: 400px;
}

.sub-visual .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.sub-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.sub-visual .inner {
    position: relative;
    z-index: 2;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
}

.sub-visual h2 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 20px;
    margin-top: 60px;
}

.sub-visual p {
    font-size: 18px;
    opacity: 0.9;
}

.sub-visual-title {
    font-size: 16px !important;
    font-weight: 700;
    margin-bottom: 16px !important;
    margin-top: 60px;
    letter-spacing: 0.6rem;
    text-transform: uppercase;
}

/* Sub-page Specific Banners */
.sub-visual.banner_history {
    height: 400px;
    background-image: url('../images/sub/banner_history.jpg');
    background-position: center;
    background-size: cover;
}

.sub-visual.banner_history .inner {
    width: 100%;
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 20px;
}

.sub-visual.banner_history h2 {
    font-size: 32px;
    letter-spacing: 1rem;
    text-align: left;
    text-transform: uppercase;
    margin-top: 80px;
}

.sub-visual.banner_history p {
    font-size: 16px;
    text-align: left;
}

.sub-visual.banner_business {
    height: 600px;
    background: url('../images/sub/banner_Business_00.jpg') no-repeat center center/cover;
}

.sub-visual.banner_business::before {
    background: linear-gradient(180deg, rgb(0 96 191 / 50%) 0%, rgb(0 96 191 / 0%) 50%);
}

.sub-visual.banner_business .inner {
    width: 100%;
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 20px;
}

.sub-visual.banner_business h2 {
    text-align: right;
    text-transform: uppercase;
    margin-top: 80px;
}

.sub-visual.banner_business p {
    letter-spacing: 3px;
    text-align: right;
    font-family: 'Montserrat';
}

.sub-visual.banner_business.banner_business_sub01 {
    height: 500px;
    background-image: url(../images/sub/banner_Business_01.jpg);
}

.sub-visual.banner_business.banner_business_sub01::before {
    background: linear-gradient(180deg, rgb(0 0 0 / 50%) 0%, rgb(0 0 0 / 0%) 50%);
}

.banner_business_sub01_1 {
    background-image: url(../images/sub/banner_Business_01_1.jpg);
    background-position: center;
    background-size: cover;
}

.banner_business_sub01_1::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.sub-visual.banner_reports {
    height: 340px;
    background-image: url('../images/sub/banner_Reports_01.jpg');
    background-position: center;
    background-size: cover;
}

.sub-visual.banner_reports::before {
    background: linear-gradient(180deg, rgb(0 0 0 / 0%) 0%, rgb(0 0 0 / 0%) 50%);
}

.sub-visual.banner_reports .inner {
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 20px;
    text-shadow: none;
}

.sub-visual.banner_reports h2 {
    font-family: 'Montserrat';
    font-size: 24px;
    margin-top: 80px;
    text-align: left;
    letter-spacing: 44px;
    text-transform: uppercase;
    color: #111;
}

.sub-visual.banner_reports p {
    font-family: 'Montserrat';
    font-size: 14px;
    text-align: left;
    letter-spacing: 0.03rem;
}

.sub-visual.banner_recruit {
    height: 600px;
    background-image: url('../images/sub/banner_recruit_01_1.jpg');
    background-position: center;
    background-size: cover;
}

.sub-visual.banner_recruit .inner {
    width: 1540px;
    margin: 0 auto;
    padding: 0 20px;
}

.sub-visual.banner_recruit h2 {
    letter-spacing: 1rem;
    text-align: left;
    text-transform: uppercase;
    margin-top: 0px;
}

.sub-visual.banner_recruit p {
    font-size: 16px;
    text-align: left;
    max-width: 600px;
    margin-bottom: 48px;
}

/* Breadcrumb */
.breadcrumb-wrap {
    border-bottom: 1px solid #eee;
    background-color: #fff;
}

.breadcrumb {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 20px;
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    font-family: 'Montserrat';
}

.breadcrumb::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    background-color: var(--primary);
    margin-right: 6px;
    vertical-align: middle;
}

.breadcrumb span {
    color: var(--primary);
    transform: translateX(3px);
    display: block;
    position: relative;
    font-size: 0;
    width: 7px;
    height: 7px;
    right: 0rem;
    margin-top: 7px;
    border: 1px solid #a7a7a7;
    border-top: 0;
    border-left: 0;
    content: "";
    transform: translateY(-50%) rotate(-45deg);
}

.breadcrumb .current {
    color: #222;
    font-weight: 600;
}

/* Intro / Tag Sections */
.intro-section {
    text-align: center;
    padding: 90px 0;
    border-bottom: 1px solid #eaeaea;
}

.intro-title {
    font-size: 48px;
    font-weight: 800;
    color: #222;
    margin-bottom: 10px;
}

.intro-subtitle {
    font-size: 20px;
    color: #888;
    font-weight: 400;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.intro-desc {
    font-size: 20px;
    color: #555;
    line-height: 1.8;
    max-width: 1200px;
    margin: 0 auto;
    word-break: keep-all;
}

.intro-desc strong {
    color: #1c9e5e;
    font-weight: 600;
}

.tag-section {
    padding: 90px 0;
    text-align: center;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 12px;
    max-width: 1000px;
    margin: 0 auto;
}

.tag-item {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #444;
}

.tag-num {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 24px;
    padding: 0 4px;
    height: 24px;
    background-color: #6cd193;
    color: #fff;
    border-radius: 12px;
    font-size: 14px;
    font-weight: bold;
    margin-right: 8px;
}

.tag-divider {
    color: #e2e2e2;
    margin-left: 12px;
}

.tag-item:last-child .tag-divider {
    display: none;
}

/* =========================================
   7. Sub-pages (Specific Features)
========================================= */
/* Company Overview & Greeting */
.overview-wrap {
    display: flex;
    justify-content: space-between;
    gap: 180px;
}

.overview-left {
    flex: 1;
}

.overview-left p {
    font-size: 24px;
    color: #555;
    margin-bottom: 40px;
    letter-spacing: -0.06rem;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-download i {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: #00a0e9;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    margin-left: 15px;
    font-style: normal;
}

.btn-download:hover {
    background: #f8f9fa;
    border-color: #00a0e9;
}

.overview-right {
    flex: 1;
}

.info-list li {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    font-size: 24px;
}

.info-list li span:first-child {
    font-weight: 600;
    color: #333;
}

.info-list li span:last-child {
    font-size: 32px;
    font-weight: 700;
}

.greeting-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.greeting-text {
    flex: 1;
}

.greeting-text p {
    margin-bottom: 60px;
    color: #555;
    font-size: 20px;
    text-align: justify;
}

.greeting-text .sign {
    font-size: 32px;
    font-weight: 700;
    color: #111;
}

.greeting-img {
    flex: 1;
    margin-top: -120px;
}

.greeting-img img {
    width: 100%;
    max-width: 520px;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
}

/* Mission & Vision & Values */
.mission-wrap {
    display: flex;
    align-items: flex-start;
    gap: 90px;
}

.mission-img {
    flex: 1;
    overflow: hidden;
    aspect-ratio: 4 / 2.4;
    background: #f5f5f5;
}

.mission-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.mission-list {
    flex: 1;
}

.mission-list li {
    margin-bottom: 30px;
}

.mission-list h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #222;
}

.mission-list p {
    color: #666;
    font-size: 16px;
}

.vision-wrap {
    text-align: center;
    margin-top: 200px;
    display: flex;
    justify-content: space-between;
}

.vision-wrap .sec-title {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 50px;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.vision-wrap .sec-title span {
    font-size: 20px;
    font-weight: normal;
}

.circle-wrap {
    display: flex;
    justify-content: center;
    gap: 0;
}

.circle {
    position: relative;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 30px;
    margin-right: -45px;
}

.circle h4 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Montserrat';
}

.circle p {
    font-size: 20px;
}

.circle-1 {
    background: #3ab2e6;
}

.circle-2 {
    background: rgba(255, 255, 255, 0.8);
    color: #3ab2e6 !important;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
}

.circle-3 {
    background: rgba(1, 167, 233, 0.8);
}

.core-values-wrap {
    display: flex;
    margin-top: 200px;
    gap: 60px;
    justify-content: space-between;
}

.core-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.core-item {
    display: flex;
    align-items: center;
    gap: 60px;
}

.core-badge {
    width: 300px;
    padding: 15px 0;
    text-align: center;
    border: 1px solid #00a0e9;
    border-radius: 30px;
    color: #555;
    font-weight: 600;
    font-size: 18px;
}

.core-desc {
    flex: 1;
    color: #555;
    font-size: 18px;
}

/* History & Timelines */
.history-summary {
    display: flex;
    gap: 180px;
    align-items: flex-start;
    padding-top: 120px;
}

.history-intro {
    flex: 1;
}

.history-intro h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #111;
}

.history-intro p {
    font-size: 24px;
    color: #555;
    margin-bottom: 40px;
    letter-spacing: -0.09rem;
}

.history-intro p span {
    display: block;
    margin-top: 24px;
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.7;
}

.history-intro img {
    width: 100%;
    border-radius: 10px;
}

.history-list-wrap {
    flex: 1.5;
}

.history-list-wrap h3 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    margin-top: 120px;
    padding-bottom: 15px;
    color: #555;
    line-height: 1.4;
}

.history-list-wrap h3 span {
    display: block;
    font-size: 20px;
    color: #999;
}

.basic-timeline li {
    display: flex;
    margin-bottom: 36px;
}

.basic-timeline .year {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    width: 140px;
    flex-shrink: 0;
}

.basic-timeline .month-list {
    flex: 1;
}

.basic-timeline .month-item {
    display: flex;
    font-size: 18px;
    align-items: center;
}

.basic-timeline .month {
    display: none;
    width: 40px;
    color: #999;
    font-weight: 600;
    font-size: 24px;
    margin-right: 24px;
    text-align: center;
}

.scroll-timeline-wrap {
    background-color: #f8f9fa;
    padding: 100px 0;
}

.timeline-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    position: relative;
}

.timeline-nav {
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.timeline-nav::-webkit-scrollbar {
    display: none;
}

.timeline-nav a {
    font-size: 114px;
    font-weight: 800;
    color: #eaeaea;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform-origin: left center;
    cursor: pointer;
}

.timeline-nav a.active {
    color: #00a0e9;
    transform: scale(1);
}

.timeline-nav a:hover:not(.active) {
    color: #aaa;
}

.timeline-content {
    flex: 1.5;
}

.year-section {
    min-height: 60vh;
    padding-bottom: 100px;
}

.year-section:last-child {
    min-height: auto;
}

.year-box {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s, box-shadow 0.3s;
}

.year-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    border-color: #00a0e9;
}

.year-box:hover .month {
    color: #333;
}

.year-box .month {
    font-size: 40px;
    font-weight: 600;
    color: #bbb;
    width: 80px;
    margin-right: 30px;
    line-height: 1;
    text-align: center;
}

.year-box .month span {
    font-size: 16px;
    font-weight: 400;
    display: none;
}

.year-box .desc {
    flex: 1;
    font-size: 18px;
    color: #333;
    font-weight: 500;
}

.year-box .desc p {
    font-size: 14px;
    color: #999;
    font-weight: 400;
}

.year-box .icon {
    color: #ddd;
    font-size: 20px;
}

/* Business specific items */
.business-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 20px;
    border-bottom: 1px solid #eee;
}

.business-summary .text {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 700px;
}

.business-summary h2,
.business-summary h3 {
    font-size: 48px;
    font-weight: 800;
}

.business-summary p {
    font-size: 20px;
    color: #666;
}

.business-summary p span {
    font-size: 16px;
    padding: 8px 25px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #d7d7d7;
    color: #555;
    text-decoration: none;
    letter-spacing: -0.01em;
}

.business-summary .number {
    font-size: 180px;
    font-weight: 800;
    color: #40a8a8;
    background: linear-gradient(180deg, #46DC87 0%, #3A9DE3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.business-summary .number span {
    font-size: 96px;
    color: #333;
    font-weight: 700;
    -webkit-text-fill-color: initial;
    text-fill-color: initial;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
    padding-bottom: 100px;
}

.card {
    display: block;
    background: #fff;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-img-box {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    background-color: #f8f8f8;
    position: relative;
    aspect-ratio: 16 / 9;
}

.card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card:hover .card-img-box img {
    transform: scale(1.05);
}

.card-icon {
    position: absolute;
    bottom: 5px;
    right: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 32px;
    font-weight: 100;
    line-height: 1;
}

.card-title {
    text-align: center;
    font-size: 21px;
    font-weight: 600;
    color: #222;
    margin-top: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.2;
}

/* Sub-page Specific: Stats, Reference, Process, Info */
.stats-section {
    background: url('../images/sub/stats_bg.jpg') no-repeat center center/cover;
    position: relative;
    text-align: center;
    padding: 100px 20px;
    color: #fff;
    background-attachment: fixed;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.stats-section .inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.stats-section h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 10px;
}

.stats-section p {
    font-size: 18px;
    margin-bottom: 60px;
    opacity: 0.8;
}

.stat-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-circle h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
    opacity: 0.9;
    text-align: center;
}

.stat-circle strong {
    font-size: 96px;
    font-weight: 800;
    line-height: 1;
}

.reference-section {
    text-align: center;
}

.ref-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-top: 60px;
}

.ref-item {
    background: #f8f9fa;
    border: 1px solid #f1f1f1;
    border-radius: 8px;
    padding: 20px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    color: #777;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.ref-item:hover {
    background: #fff;
    border-color: #00a0e9;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    color: #00a0e9;
}

.process-section {
    padding: 100px 0;
    background-color: #fafafa;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.process-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-circle {
    width: 256px;
    height: 256px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 5px;
    border: 16px solid;
    position: relative;
    justify-content: center;
    align-items: center;
}

.step-1 .process-circle {
    border-color: #6cd193;
}

.step-2 .process-circle {
    border-color: #4fc1e9;
}

.step-3 .process-circle {
    border-color: #4a89dc;
}

.process-icon {
    font-size: 40px;
    height: 114px;
}

.process-icon img {
    height: 100%;
}

.step-1 .process-icon {
    color: #6cd193;
}

.step-2 .process-icon {
    color: #4fc1e9;
}

.step-3 .process-icon {
    color: #4a89dc;
}

.process-name {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    line-height: 1.2;
    height: 60px;
    display: flex;
    align-items: center;
}

.process-arrow {
    font-size: 24px;
    color: #ddd;
    margin-bottom: 25px;
}

.process-box {
    background: #fff;
    padding: 25px 40px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 320px;
    text-align: left;
    border: #e3e3e3 solid 1px;
}

.process-box ul {
    list-style: none;
}

.process-box li {
    font-size: 16px;
    color: #555;
    padding-left: 12px;
    margin-bottom: 8px;
    position: relative;
    word-break: keep-all;
    line-height: 1.2;
}

.process-box li::before {
    content: "·";
    position: absolute;
    left: 0;
    top: 0;
    color: #999;
    font-weight: bold;
}

.info-section {
    padding: 30px 0;
    background-color: #fff;
    max-width: 1200px;
    margin: auto;
}

.info-row {
    display: flex;
    border-bottom: 1px solid #eaeaea;
    padding: 90px 0;
}

.info-row:last-child {
    border-bottom: none;
}


.pt-section {
    border-bottom: 1px solid var(--border-color);
}

.info-title {
    width: 300px;
    font-size: 36px;
    font-weight: 700;
    color: #222;
    flex-shrink: 0;
}

.info-content {
    flex: 1;
    display: flex;
    align-items: center;
}



.process-grid-4 {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 0 20px;
}

.process-grid-3 {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 0 20px;
}

.step-item-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-ring {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    border: 14px solid;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    position: relative;
    padding: 20px;
    box-sizing: border-box;
    margin-bottom: 0;
    transition: transform 0.2s;
}



.step-ring:hover {
    transform: translateY(5px);
    border-color: #e5dbff;
}

.step-ring .num {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 12px;
    border-bottom: #666 solid 1px;
    padding-bottom: 12px;
}

.step-ring .num span {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 3px;
    text-transform: uppercase;
}

.step-ring .step-title-v2 {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    line-height: 1.2;
    word-break: keep-all;
    text-align: center;
}

.step-line {
    width: 1px;
    height: 40px;
    background-color: #d1d1d1;
    margin: 0 auto;
}

.step-box {
    background: #fff;
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eaeaea;
    width: 100%;
    max-width: 280px;
    text-align: left;
    flex-grow: 1;
    /* 박스들 높이 균형 */
    box-sizing: border-box;
    transition: transform 0.2s;
}


.step-box:hover {
    transform: translateY(-5px);
    border-color: #e5dbff;
}

.step-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-box li {
    font-size: 15px;
    color: #555;
    padding-left: 12px;
    margin-bottom: 8px;
    position: relative;
    word-break: keep-all;
    line-height: 1.4;
}

.step-box li::before {
    content: "·";
    position: absolute;
    left: 0;
    top: 0;
    color: #999;
    font-weight: bold;
}

.step-box.arrow {
    width: 80%;
    padding-bottom: 0px;
}

.step-box.arrow li {
    text-align: center;
    margin-bottom: 24px;
    padding-left: 0;
}

.step-box.arrow li:not(:last-child)::before {
    content: "↓ ";
    /* 또는 "▼ ", "⇩ " 등 텍스트 기호 사용 */
    position: absolute;
    left: calc(50% - 5px);
    top: 100%;
    color: #999;
    font-weight: bold;
}

.step-box.arrow li:last-child::before {
    content: "";

    color: #fff;

}

.step-col-1 .step-ring {
    border-color: #50c8b5;
}

.step-col-1 .step-ring .num {
    color: #50c8b5;
}

.step-col-2 .step-ring {
    border-color: #45c4e8;
}

.step-col-2 .step-ring .num {
    color: #45c4e8;
}

.step-col-3 .step-ring {
    border-color: #3a8aeb;
}

.step-col-3 .step-ring .num {
    color: #3a8aeb;
}

.step-col-4 .step-ring {
    border-color: #836eea;
}

.step-col-4 .step-ring .num {
    color: #836eea;
}

.step-col-5 .step-ring {
    border-color: #d37ce2;
}

.step-col-5 .step-ring .num {
    color: #d37ce2;
}

.step-col-6 .step-ring {
    border-color: #e07389;
}

.step-col-6 .step-ring .num {
    color: #e07389;
}

/* =========================================
   8 Step Process Colors (04_4_2.jpg 참조 톤)
========================================= */

/* Step 1 : 민트 (Mint) */
.step-col-1 .step-ring {
    border-color: #8CCFC4;
}

.step-col-1 .step-ring .num {
    color: #8CCFC4;
}

/* Step 2 : 스카이 블루 (Sky Blue) */
.step-col-2 .step-ring {
    border-color: #92CBD8;
}

.step-col-2 .step-ring .num {
    color: #92CBD8;
}

/* Step 3 : 라이트 블루 (Light Blue) */
.step-col-3 .step-ring {
    border-color: #8DC3E9;
}

.step-col-3 .step-ring .num {
    color: #8DC3E9;
}

/* Step 4 : 라벤더 (Lavender) */
.step-col-4 .step-ring {
    border-color: #9AA1D8;
}

.step-col-4 .step-ring .num {
    color: #9AA1D8;
}

/* Step 5 : 핑크 퍼플 (Pink Purple) */
.step-col-5 .step-ring {
    border-color: #BF97CF;
}

.step-col-5 .step-ring .num {
    color: #BF97CF;
}

/* Step 6 : 인디 핑크 (Indie Pink) */
.step-col-6 .step-ring {
    border-color: #D99797;
}

.step-col-6 .step-ring .num {
    color: #D99797;
}

/* Step 7 : 피치 코랄 (Peach Coral) */
.step-col-7 .step-ring {
    border-color: #E6A492;
}

.step-col-7 .step-ring .num {
    color: #E6A492;
}

/* Step 8 : 올리브 그린 (Olive Green) */
.step-col-8 .step-ring {
    border-color: #C0BD96;
}

.step-col-8 .step-ring .num {
    color: #C0BD96;
}

@media (max-width: 1200px) {
    .step-ring {
        width: 210px;
        height: 210px;
        border-width: 12px;
    }

    .step-ring .num {
        font-size: 40px;
        margin-bottom: 8px;
    }

    .step-ring .step-title-v2 {
        font-size: 16px;
    }

    .process-grid-4 {
        gap: 15px;
    }
}

@media (max-width: 992px) {
    .process-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }

    .step-box {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .process-grid-4 {
        grid-template-columns: 1fr;
        max-width: 360px;
    }

    .step-ring {
        width: 220px;
        height: 220px;
    }
}


/* 규제 대상 배너 섹션 */
.regulation-banner {
    background-color: var(--primary);
    /* 첨부된 이미지와 유사한 파란색 배경 */
    width: 100%;
    padding: 50px 0;
    /* 위아래 여백 */
    box-sizing: border-box;
    font-family: 'Noto Sans KR', 'Malgun Gothic', sans-serif;
}

.regulation-container {
    max-width: 1200px;
    /* 사이트 중앙 정렬 기준 넓이 (필요에 따라 수정) */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 200px;
    /* 타이틀과 설명 사이의 간격 */
    padding: 0 20px;
}

.regulation-title-box {
    flex: 0 0 auto;
}

.regulation-title {
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    /* 메인 타이틀과 서브 타이틀 사이의 간격 */
    letter-spacing: -0.5px;
}

.regulation-subtitle {
    font-size: 18px;
    font-weight: 400;
}

.regulation-desc-box {
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -0.3px;
    border-left: rgba(255, 255, 255, 0.3) solid 1px;
    padding-left: 50px;
}

.regulation-desc-box b {
    font-weight: 700;
}

/* 모바일/태블릿 반응형 처리 */
@media (max-width: 768px) {
    .regulation-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .regulation-title {
        justify-content: center;
        font-size: 28px;
    }


    .regulation-desc-box {
        font-size: 14px;
    }

    .regulation-desc-box br {
        display: none;
        /* 모바일에서는 자연스럽게 줄바꿈 되도록 br 태그 숨김 */
    }
}




.feature-list li {
    font-size: 20px;
    color: #444;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.feature-list li::before {
    content: "✓";
    color: #2ba765;
    margin-right: 18px;
    font-size: 36px;
}

.history-list li {
    display: flex;
    margin-bottom: 15px;
    font-size: 20px;
    color: #444;
}

.history-list li:last-child {
    margin-bottom: 0;
}

.history-list .history-text {
    padding-left: 25px;
    position: relative
}

.history-list .history-text::before {
    content: "•";
    color: #585858;
    font-size: 18px;
    position: absolute;
    left: 0;
}

.history-year {
    font-weight: 700;
    color: #222;
    width: 180px;
    flex-shrink: 0;
    font-size: 24px;
}


/* step - 세로형 */
.step-list-column {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.step-list-column .c-card {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 30px 70px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s;
}

.step-list-column .c-card:hover {
    transform: translateY(-5px);
    border-color: #e5dbff;
}

.step-list-column .c-card .num {
    font-size: 40px;
    font-weight: 600;
    color: #3F87CF;
    font-family: 'Montserrat';
    border-top: #999 solid 1px;
    /* border-bottom: #999 solid 1px; */
    margin-right: 60px;
    text-align: center;
    line-height: 1.2;
}

.step-list-column .c-card .num span {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-top: 10px;
    text-transform: uppercase;
}

.step-list-column .c-card h4 {
    font-size: 28px;
    width: 40%;
    line-height: 1.2;
}

.step-list-column .c-card h4 span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #999;
    margin-top: 10px;
}

.step-list-column .c-card ul {
    flex: 1;
    /* border-left: 1px solid #eee; */
    padding-left: 30px;
}

.step-list-column .c-card ul li {
    position: relative;
    padding-left: 15px;
    line-height: 1.4;
    color: #555;
    font-size: 18px;
}

.step-list-column .c-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 4px;
    height: 4px;
    background: #666;
    border-radius: 50%;
}

.step-list-column .c-card .icon {
    width: 80px;
    text-align: right;
}

.step-list-column .c-card .icon img {
    width: 100%;
    display: inline-block;
}


/* Location Map & Contacts */
.sec-location {
    padding: 160px 0;
    text-align: left;
    background-color: #fff;
}

.sec-location .sec-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 80px;
    text-align: center;
}

.contact_map {
    height: 480px;
    margin-bottom: 40px;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}

.contact_map iframe {
    width: 100%;
    height: 100%;
}

.contact_info {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: flex-start;
    padding: 0;
    color: #4b5563;
}

.contact_rows {
    flex: 1 1 auto;
}

.contact_row {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    margin-bottom: 28px;
}

.contact_label {
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 240px;
}

.contact_label h3 {
    font-size: 20px;
    font-weight: 600;
    color: #4b5563;
    margin: 0;
}

.contact_icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.icon-way {
    background-image: url("../images/icon/icon_way.png");
}

.icon-subway {
    background-image: url("../images/icon/icon_subway.png");
}

.icon-contact {
    background-image: url("../images/icon/icon_contact.png");
}

.contact_content {
    line-height: 1.5;
    text-align: left;
}

.addr_main {
    margin: 0 0 5px;
    color: #374151;
    font-size: 16px;
    font-weight: 500;
}

.addr_sub {
    margin: 0;
    color: #9ca3af;
    font-size: 14px;
}

.subway_content {
    display: flex;
    align-items: center;
    gap: 18px;
}

.subway_text p {
    margin: 0 0 8px;
    color: #4b5563;
    font-size: 16px;
}

.subway_text p:last-child {
    margin-bottom: 0;
}

.line_badge {
    display: inline-block;
    width: 72px;
    padding: 0;
    margin-right: 10px;
    border-radius: 4px;
    background: #F08847;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
}

.line_badge2 {
    display: inline-block;
    width: 72px;
    padding: 0;
    margin-right: 10px;
    border-radius: 4px;
    background: #006DC7;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
}

.contact_content p strong {
    color: #111827;
    font-weight: 600;
}

.number_content {
    display: flex;
    align-items: center;
    gap: 36px;
    letter-spacing: 0;
}

.btn_map_area {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.btn_map_area .btn.middle {
    min-width: 200px;
    height: 40px;
    font-size: 15px;
    border-radius: 30px;
}

.btn.naver {
    background-color: #00c73c;
    color: #fff;
    border: 0;
}

.btn.google {
    border: 1px solid #ccc;
    background-color: #fff;
    color: #1a1a1a;
}

.btn.naver:before,
.btn.google:before {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    vertical-align: text-bottom;
    content: '';
}

.btn.naver:before {
    background-image: url(../images/icon/ico_naver.png);
}

.btn.google:before {
    background-image: url(../images/icon/ico_google.png);
}

@media (hover: hover) and (pointer:fine) {
    .btn.naver:hover {
        background-color: #17b75e;
    }

    .btn.google:hover {
        border-color: #999;
        background-color: #f9f9f9;
    }
}

.btn-read {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 10px 80px 12px;
    border: 1px solid #ddd;
    background-color: #fff;
    border-radius: 30px;
    color: #666;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-read::after {
    content: "";
    position: absolute;
    right: 30px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-top: 1px solid #666;
    border-right: 1px solid #666;
    transform: translateY(-50%) rotate(45deg);
    transition: right 0.3s, border-color 0.3s;
}

.btn-read:hover {
    border-color: #333;
    color: #333;
}

.btn-read:hover::after {
    border-top-color: #333;
    border-right-color: #333;
    right: 25px;
}

/* =========================================
   8. Recruitment & Career Info
========================================= */
.welfare-section,
.ideal-section,
.job-section,
.recruit-process-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 30px;
}

.welfare-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.welfare-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.welfare-text {
    flex: 1;
    padding-right: 40px;
}

.welfare-text .sub-category {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 0;
    display: block;
}

.welfare-text .welfare-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 18px;
}

.welfare-text .welfare-desc {
    list-style: none;
}

.welfare-text .welfare-desc li {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    position: relative;
    padding-left: 12px;
}

.welfare-text .welfare-desc li::before {
    content: '-';
    position: absolute;
    left: 0;
    top: 0;
    color: #999;
}

.welfare-image-wrap {
    flex: 1;
    max-width: 560px;
}

.welfare-image-wrap .image-box {
    width: 100%;
    height: auto;
    background-color: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
}

.welfare-image-wrap .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-caption {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    text-align: left;
}

.ideal-list {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.ideal-item {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ideal-image-wrap {
    order: -1;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background-color: #f7f9fc;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 35px;
}

.ideal-image-wrap .image-box img {
    width: 150px;
    height: auto;
    display: block;
}

.ideal-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ideal-title {
    order: 1;
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin: 0 0 10px 0;
}

.sub-category {
    order: 2;
    font-size: 16px;
    font-weight: 700;
    color: #00a5e6;
    margin-bottom: 25px;
}

.ideal-desc {
    order: 3;
    list-style: none;
    padding: 0;
    margin: 0;
}

.ideal-desc li {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    word-break: keep-all;
}

.job-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
    margin-bottom: 80px;
}

.job-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.job-icon {
    flex-shrink: 0;
    width: 80px;
}

.job-icon img {
    width: 100%;
    height: auto;
    display: block;
}

.job-text .job-title {
    font-size: 24px;
    font-weight: 800;
    color: #111;
    margin: 0 0 15px 0;
}

.job-text .job-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    word-break: keep-all;
    margin: 0;
}

.job-btn-wrap {
    text-align: center;
}

.btn-recruit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 320px;
    height: 60px;
    border: 1px solid #00a5e6;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    background-color: #fff;
    transition: all 0.3s ease;
}

.btn-recruit:hover {
    background-color: #f7fcff;
}

.btn-recruit .point-text {
    color: #00a5e6;
    margin-right: 5px;
}

.btn-recruit .arrow {
    font-weight: 300;
    color: #999;
    margin-left: 15px;
}

.process-wrap {
    display: flex;
    margin-bottom: 100px;
}

.process-wrap:last-child {
    margin-bottom: 0;
}

.title-area {
    width: 250px;
    flex-shrink: 0;
    padding-top: 10px;
}

.sub-title {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.main-title {
    font-size: 48px;
    font-weight: 700;
    color: #111;
    margin: 0;
    line-height: 1.1;
}

.content-area {
    flex-grow: 1;
    border-top: 2px solid #111;
    padding-top: 40px;
}

.step-list {
    list-style: none;
    padding: 0;
    margin: 0 0 60px 0;
}

.step-item {
    display: flex;
    position: relative;
    padding-bottom: 36px;
    align-items: flex-start;
}

.step-item:last-child {
    padding-bottom: 0;
}

.step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin-right: 30px;
    position: relative;
    z-index: 2;
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 48px;
    left: 25px;
    transform: translateX(-50%);
    width: 0;
    height: 100%;
    border-left: 2px dotted #ccc;
    z-index: 0;
}

.step-text {
    padding-top: 5px;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin: 0 0 15px 0;
}

.step-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0;
    word-break: keep-all;
    max-width: 480px;
}

.qualification-box {
    display: flex;
    border-top: 1px solid #eee;
    padding-top: 40px;
}

.qual-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin-right: 30px;
    color: #999;
}

.qual-text {
    padding-top: 6px;
}

.qual-title {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin: 0 0 20px 0;
}

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

.qual-list li {
    position: relative;
    padding-left: 12px;
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 8px;
}

.qual-list li::before {
    content: '·';
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

.qual-list li.notice-text {
    padding-left: 0;
    margin-top: 15px;
    color: #666;
    font-size: 14px;
}

.qual-list li.notice-text::before {
    display: none;
}

.qual-list .sub-text {
    display: inline-block;
    padding-left: 10px;
    color: #666;
}

.type-new .step-item:not(:last-child) .step-num::after {
    border-color: #a4bde0;
}

.bg-new-1 {
    background-color: #7b94c8;
}

.bg-new-2 {
    background-color: #4562a2;
}

.bg-new-3 {
    background-color: #2e4a8b;
}

.bg-new-4 {
    background-color: #0b1f41;
}

.type-exp .step-item:not(:last-child) .step-num::after {
    border-color: #aae0bb;
}

.bg-exp-1 {
    background-color: #76c98c;
}

.bg-exp-2 {
    background-color: #2db256;
}

.bg-exp-3 {
    background-color: #179b36;
}

.bg-exp-4 {
    background-color: #0d6e24;
}

/* =========================================
   9. Footer
========================================= */
.site-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 0;
    font-size: 13px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

.footer-utils {
    display: flex;
    gap: 12px;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 2px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    transition: border-color 0.3s;
}

.footer-btn img {
    height: 16px;
}

.footer-btn:hover {
    border-color: #fff;
}

.social-group {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
    padding: 24px 0;
}

.sns-item {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s ease;
    cursor: pointer;
}

.sns-item svg {
    width: 40px;
    height: 40px;
    fill: #fff;
    opacity: 0.9;
    transition: 0.25s ease;
}

.sns-item img {
    width: 24px;
    height: 24px;
    opacity: 0.9;
    transition: 0.25s ease;
}

.sns-item:hover {
    border-color: #fff;
}

.sns-item:hover svg {
    opacity: 1;
    transform: scale(1.08);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
}

.cs-info {
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
}

.cs-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.cs-number {
    font-size: 36px;
    color: #fff;
    line-height: 1;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: 0.03rem;
}

.cs-time {
    font-size: 13px;
}

.company-info {
    color: #888;
    line-height: 1.8;
    text-align: right;
}

.footer-policy {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
    margin-bottom: 24px;
    font-weight: bold;
}

.footer-policy a {
    color: #ccc;
}

.copyright {
    margin: 20px 0;
    font-size: 12px;
    text-align: right;
}

.btn-top {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #666;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    z-index: 99;
    transition: all 0.3s;
}

.btn-top:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* =========================================
   10. Media Queries (Mobile/Responsive)
========================================= */
@media screen and (max-width: 1440px) {
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        gap: 30px 0px;
    }

    .gnb-list {
        gap: 30px;
    }
}

@media screen and (max-width: 992px) {

    .overview-wrap,
    .greeting-wrap,
    .mission-wrap,
    .core-values-wrap {
        flex-direction: column;
        gap: 90px;
    }

    .sec-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .vision-wrap .sec-title {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .circle-wrap {
        flex-direction: column;
        align-items: center;
    }

    .core-title,
    .core-item {
        flex-direction: column;
        text-align: center;
    }

    .history-summary,
    .timeline-container {
        flex-direction: column;
        gap: 40px;
    }

    .timeline-nav {
        flex-direction: row;
        overflow-x: auto;
        width: calc(100% + 40px);
        margin-left: -20px;
        padding: 10px 20px;
        white-space: nowrap;
        flex: none;
        position: sticky;
        top: 60px;
        max-height: calc(100vh - 150px);
        overflow-y: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
        background-color: rgb(255 255 255 / 98%);
        align-items: center;
        border-bottom: #f0f0f0 solid 1px;
    }

    .timeline-nav::-webkit-scrollbar {
        display: none;
    }

    .timeline-nav a {
        font-size: 24px;
    }

    .timeline-nav a.active {
        font-size: 32px;
    }

    .year-section {
        min-height: auto;
        padding-bottom: 50px;
    }

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

    .process-grid {
        flex-direction: column;
        align-items: center;
    }

    .process-item {
        width: 100%;
        max-width: 400px;
        margin-bottom: 40px;
    }

    .process-arrow {
        transform: rotate(0deg);
    }

    .info-row {
        flex-direction: column;
    }

    .info-title {
        width: 100%;
        margin-bottom: 20px;
    }

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

    .ideal-list {
        gap: 50px 20px;
    }

    .ideal-item {
        min-width: 45%;
    }

    .job-list {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}


/* PC(마우스가 있는 기기)에서만 호버 효과 작동 */
@media (hover: hover) and (pointer: fine) {
    .header-wrap:hover {
        background-color: #fff;
        color: var(--text-main);
        border-bottom: 1px solid var(--border-light);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    }

    .header-wrap:hover .logo-white {
        display: none;
    }

    .header-wrap:hover .logo-color {
        display: block;
    }
}


@media screen and (max-width: 960px) {

    #gnbList,
    .header-utils,
    .fld_form {
        display: none !important;
    }

    #header {}

    .header-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 100%;
        padding: 0 20px !important;
        width: 100%;
    }

    .logo-box {
        display: flex;
        align-items: center;
        height: 100%;
    }

    .logo-box img {
        height: 48px;
        width: auto;
    }

    .logo-white {
        display: block;
    }

    .logo-color {
        display: none;
    }

    .header-wrap {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 60px;
        background: transparent;
        z-index: 1000;
        padding: 0;
    }

    /* 1. hover 선택자 제거: 모바일에서는 스크롤 시에만 작동하도록 변경 */
    .header-wrap.is-scrolled {
        background-color: #fff;
        color: var(--text-main);
        border-bottom: 1px solid var(--border-light);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    }

    .header-wrap.is-scrolled .logo-white {
        display: none;
    }

    .header-wrap.is-scrolled .logo-color {
        display: block;
    }


    /* 2. 메뉴(aside)가 열렸을 때 헤더 상태 강제 지정 (선택 사항)
       메뉴가 열릴 때 헤더 배경도 하얗게 변해야 한다면 아래 코드를 유지하세요. */
    .aside_open .header-wrap {
        background-color: #fff;
        color: var(--text-main);
        border-bottom: 1px solid var(--border-light);
    }

    .aside_open .header-wrap .logo-white {
        display: none;
    }

    .aside_open .header-wrap .logo-color {
        display: block;
    }

    /* Mobile Aside Menu */
    .btn_side {
        display: block;
        position: relative;
        width: 24px;
        height: 20px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1002;
    }

    .btn_side .ico {
        display: block;
        width: 100%;
        height: 100%;
        position: relative;
    }

    .btn_side .line {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #333;
        transition: all 0.3s ease;
    }


    /* 모바일 헤더 Hover 고착 현상 원천 차단 */
    /* 스크롤되지 않은 상태에서 터치(hover) 시 PC용 하얀색 호버 스타일을 강제로 투명하게 되돌림 */
    .header-wrap:not(.is-scrolled):hover {
        background-color: transparent !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
        box-shadow: none !important;
        color: #fff !important;
    }

    .header-wrap:not(.is-scrolled):hover .logo-white {
        display: block !important;
    }

    .header-wrap:not(.is-scrolled):hover .logo-color {
        display: none !important;
    }

    /*
    .header-wrap:not(.is-scrolled):hover .btn_side .line {
        background-color: #fff !important;
    }
*/


    /* 햄버거 메뉴 라인 색상 기본값 (투명 헤더) */
    .header-wrap .btn_side .line {
        background-color: #fff;
    }

    /* 메뉴가 열렸을 때 라인 색상 변경 */
    .header-wrap.is-scrolled .btn_side .line,
    .header-wrap .aside_open .btn_side .line1,
    .header-wrap .aside_open .btn_side .line2,
    .header-wrap .aside_open .btn_side .line3 {
        background-color: #333 !important;
    }


    .btn_side .line1 {
        top: 0;
    }

    .btn_side .line2 {
        top: 50%;
        transform: translateY(-50%);
    }

    .btn_side .line3 {
        bottom: 0;
    }

    .aside_open .btn_side .line1 {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
        background-color: #333 !important;
    }

    .aside_open .btn_side .line2 {
        opacity: 0;
    }

    .aside_open .btn_side .line3 {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
        background-color: #333 !important;
    }

    .aside {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 1001;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .aside_wrap {
        position: absolute;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 360px;
        height: 100%;
        background-color: #fff;
        transition: right 0.3s ease;
        display: flex;
        flex-direction: column;
    }

    .aside_open .aside {
        opacity: 1;
        visibility: visible;
    }

    .aside_open .aside_wrap {
        right: 0;
    }

    .aside_wrap .scroll {
        overflow-y: auto;
        height: 100%;
        padding-top: 60px;
    }

    .aside_wrap .side_menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .aside_wrap .side_menu>ul>li {
        border-bottom: 1px solid #eee;
    }

    .aside_wrap .side_menu>ul>li>a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 20px 16px 24px;
        font-size: 18px;
        font-weight: 700;
        color: #333;
        text-decoration: none;
    }

    .aside_wrap .depth2,
    .aside_wrap .depth3 {
        display: none;
    }

    .aside_wrap .depth2 {
        background-color: #f9f9f9;
        border-top: 1px solid #eee;
        padding: 10px 0;
    }

    .aside_wrap .depth2>ul>li>a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px 10px 30px;
        font-size: 16px;
        font-weight: 600;
        color: #444;
        text-decoration: none;
        position: relative;
    }

    .aside_wrap .depth3 {
        padding: 0 30px 10px;
        border-bottom: 1px solid #eaeaea;
        margin-bottom: 5px;
    }

    .aside_wrap .depth3>ul>li>a {
        display: block;
        padding: 5px 10px;
        font-size: 15px;
        color: #666;
        text-decoration: none;
    }

    .aside_wrap .depth3>ul>li>a:before {
        content: '- ';
        color: #999;
    }

    .arrow {
        position: absolute;
        font-size: 0;
        color: #999;
        transition: transform 0.3s;
        display: inline-block;
        width: 60px;
        height: 60px;
        right: 15px;
    }

    .arrow:after {
        display: block;
        position: absolute;
        top: 50%;
        right: 10px;
        width: 10px;
        height: 10px;
        border: 1px solid #a1a1a1;
        border-top: 0;
        border-left: 0;
        content: "";
        transform: translateY(-50%) rotate(45deg);
        transition: transform 0.3s;
    }

    .menu-toggle.open .arrow:after {
        transform: rotate(225deg);
        transition: transform 0.3s;
        border-color: #727272;
    }

    body.aside_open {
        overflow: hidden;
    }
}

@media screen and (max-width: 768px) {

    /* Common Layout */
    .inner-container {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }

    .container {
        max-width: 100%;
        padding: 60px 30px;
    }

    .section-title {
        font-size: 36px;
        margin-bottom: 16px;
        font-weight: 800;
    }

    .section-desc {
        font-size: 16px;
    }

    .btn-rounded {
        width: 100% !important;
        padding: 6px 6px 6px 30px;
    }

    .scroll-indicator {
        bottom: calc(10px + env(safe-area-inset-bottom));
    }

    /* Hero */
    .hero-section {
        min-height: 100vh;
    }

    .hero-content .hero-title {
        font-size: 48px !important;
    }

    .hero-title {
        font-size: 32px !important;
        margin-bottom: 5px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .hero-content .hero-desc {
        font-size: 16px !important;
    }

    .hero-desc {
        font-size: 15px;
        max-width: calc(100% - 30px);
    }

    .hero-badge {
        width: 48px;
        height: 48px;
        font-size: 24px;
        margin-bottom: 20px;
    }

    .slider-controls,
    .slider-pagination {
        display: none;
    }

    /* Sub Visual */
    .sub-visual {
        height: 600px;
    }

    .sub-visual.h400 {
        height: 300px;
    }

    .sub-visual .inner {
        padding: 0 30px !important;
    }

    .sub-visual h2 {
        font-size: 32px !important;
        margin-top: 60px;
    }

    .sub-visual p {
        font-size: 14px;
        margin: 0;
    }

    .sub-visual p br {
        display: none;
    }

    .sub-visual.banner_history {
        height: 400px;
    }

    .sub-visual.banner_history h2 {
        font-size: 24px;
        margin-top: 80px;
    }

    .sub-visual.banner_history p {
        font-size: 14px;
    }

    .sub-visual.banner_business {
        height: 600px;
        background-position: 80% 50%;
    }

    .sub-visual.banner_reports {
        height: 240px;
        background-position: 70% 50%;
    }

    .sub-visual.banner_reports h2 {
        font-size: 18px !important;
        margin-top: 64px;
        letter-spacing: 2rem;
    }

    /* Main Sections (Business, Media, etc) */
    .business-section {
        padding: 90px 0;
    }

    .biz-accordion-wrap {
        flex-direction: column;
        gap: 12px !important;
        height: 240vh;
        max-height: initial;
    }

    .biz-card {
        border-radius: 6px;
    }

    .biz-bg-img::after {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.3) 100%);
    }

    .biz-content {
        padding: 0;
        top: 60px;
        left: 30px;
        transform: translate(0%, 0%);
        text-align: left;
        align-items: flex-start;
    }

    .biz-title {
        font-size: 30px;
        font-weight: 800;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        white-space: nowrap;
    }

    .biz-desc {
        font-size: 14px;
        margin-top: 8px;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.9);
    }

    .biz-label-small {
        opacity: 1;
        transform: translateY(-10px);
        margin-bottom: 0;
    }

    .biz-services-wrap {
        position: absolute;
        bottom: 0;
        left: 0;
        padding: 30px;
        opacity: 1;
        transform: translateY(0px);
        text-align: left;
    }

    .service-tags span {
        padding: 8px 14px;
        font-size: 12px;
    }

    .stats-section-main {
        padding: 60px 0;
    }

    .stats-section-main .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-item {
        margin-bottom: 20px;
    }

    .stat-number-wrap {
        font-size: 64px !important;
        margin-bottom: 5px;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partner-box {
        height: auto;
        padding: 20px 30px;
    }

    .media-section {
        padding: 90px 0;
    }

    .media-layout {
        flex-direction: column;
        gap: 24px;
    }

    .media-left {
        width: 100%;
    }

    .media-grid {
        width: 100%;
        gap: 40px 20px;
    }

    .media-thumb {
        margin-bottom: 10px;
        aspect-ratio: 1 / 1;
        height: auto
    }

    .media-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        margin-bottom: 6px;
    }

    .media-tag {
        display: block !important;
    }

    .media-info span.divider {
        display: none;
    }

    .media-title {
        font-size: 16px;
    }

    .support-section {
        padding: 60px 0;
        background-color: #ced9c5;
    }

    .support-layout {
        justify-content: center;
    }

    .earth-graphic {
        left: 3%;
        width: 200%;
    }

    .support-content-box {
        width: 100%;
        min-width: 100%;
    }

    .support-content-box .section-title,
    .support-content-box .section-desc {
        text-align: center;
        color: #fff;
        text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
    }

    .support-btn-grid {
        grid-template-columns: 1fr;
        width: 320px;
        margin: 40px auto 0;
    }

    .btn-outline-pill {
        padding: 6px 6px 6px 30px;
        border: 0;
    }

    .btn-outline-pill.btn_down {
        font-size: 16px;
    }

    /* Sub Features */
    .stat-circle {
        width: 240px;
        height: 240px;
    }

    .year-box {
        gap: 15px;
        border-radius: 6px;
        padding: 24px 30px;
        margin-bottom: 10px;
    }

    .year-box .month {
        font-size: 32px;
        width: 40px;
        margin-right: 10px;
    }

    .year-box .desc {
        font-size: 16px;
        line-height: 1.4;
    }

    .year-box .desc p {
        font-size: 12px;
        margin-top: 6px;
    }

    .ref-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .business-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 10px;
        padding-bottom: 100px;
    }

    .intro-section {
        padding: 60px 30px;
    }

    .intro-title {
        font-size: 32px;
    }

    .intro-subtitle {
        font-size: 14px;
        color: #c0c0c0;
        margin-bottom: 40px;
    }

    .intro-desc {
        font-size: 16px;
        max-width: 100%;
        letter-spacing: -0.06rem;
        line-height: 1.4;
    }

    .intro-desc br {
        display: none;
    }

    .tag-section {
        padding: 60px 30px;
    }

    .tag-list {
        flex-direction: column;
        gap: 10px 15px;
        justify-content: flex-start;
    }

    .tag-item {
        font-size: 16px;
    }

    .tag-divider {
        display: none;
    }

    .card-img-box {
        aspect-ratio: 9 / 9;
    }

    .card-icon {
        bottom: 0px;
        right: 5px;
    }

    .card-title {
        font-size: 15px;
        flex-direction: column;
        gap: 8px;
        line-height: 1.2;
        margin-top: 8px;
    }

    .breadcrumb {
        max-width: 100%;
        padding: 15px 20px;
        font-size: 11px;
        gap: 6px;
    }

    .process-section {
        padding: 60px 0;
    }

    h3.section-title {
        font-size: 32px;
        margin-bottom: 60px;
    }

    .process-grid {
        max-width: calc(100% - 60px);
        grid-template-columns: repeat(1, 1fr);
    }

    .process-circle {
        width: 220px;
        height: 220px;
        border: 12px solid;
    }

    .process-icon {
        height: 96px;
    }

    .process-arrow img {
        height: 72px;
    }

    .process-box {
        padding: 25px;
        border-radius: 20px;
    }

    .info-section {
        max-width: 100%;
    }

    .info-row {
        padding: 30px 30px;
    }

    .info-title {
        width: auto;
        font-size: 24px;
    }

    .feature-list li {
        align-items: flex-start;
        font-size: 16px;
        line-height: 1.4;
    }

    .feature-list li::before {
        font-size: 24px;
    }

    .history-list li {
        font-size: 16px;
        flex-direction: column;
        line-height: 1.4;
    }

    .history-year {
        width: auto;
        font-size: 18px;
    }

    .overview-left p {
        font-size: 18px;
    }

    /* Recruit Area */

    .welfare-section,
    .ideal-section,
    .job-section,
    .recruit-process-section {
        max-width: 100%;
        margin: 0 auto;
        padding: 50px 30px;
    }

    .welfare-list {
        display: flex;
        flex-direction: column;
        gap: 60px;
    }

    .welfare-item {
        display: flex;
        flex-direction: column;
        padding: 0 20px;
        gap: 30px;
        align-items: flex-start;
    }

    .welfare-text {
        padding-right: 0;
    }

    .welfare-image-wrap {
        max-width: 100%;
    }

    .welfare-image-wrap .image-box {
        border-radius: 6px;
        margin-bottom: 6px;
    }

    .image-caption {
        font-size: 20px;
        font-weight: 700;
        color: #111;
        text-align: left;
    }

    .welfare-text .sub-category {
        font-size: 18px;
        font-weight: 700;
        color: #333;
        margin-bottom: 0;
        display: block;
    }

    .welfare-text .welfare-title {
        font-size: 36px;
    }

    .welfare-text .welfare-desc li {
        font-size: 16px;
    }

    .process-wrap {
        flex-direction: column;
        margin-bottom: 50px;
    }

    .title-area {
        width: 100%;
        margin-bottom: 20px;
        border-bottom: 2px solid #111;
        padding-bottom: 15px;
    }

    .sub-title {
        d;
        /* display: block; */
        font-size: 18px;
        /* font-weight: 700; */
        /* color: #111; */
        margin-bottom: 5px;
    }

    .main-title {
        font-size: 36px;
        /* font-weight: 700; */
        /* color: #111; */
        /* margin: 0; */
        /* line-height: 1.1; */
    }


    .content-area {
        border-top: none;
        padding-top: 0;
    }

    .step-list {
        list-style: none;
        padding: 0;
        margin: 0 0 40px 0;
    }

    .step-item {
        /* display: flex; */
        /* position: relative; */
        padding-bottom: 24px;
        /* align-items: flex-start; */
    }

    .step-num {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-right: 20px;
    }

    .step-item:not(:last-child) .step-num::after {
        top: 40px;
        height: calc(100% + 50px - 40px);
    }

    .qual-icon {
        width: 40px;
        height: 40px;
        margin-right: 20px;
    }


    .step-item:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 36px;
        left: 20px;
        transform: translateX(-50%);
        width: 0;
        height: 100%;
        border-left: 1px dashed #ccc;
        z-index: 0;
    }

    .step-text {
        padding-top: 5px;
    }

    .step-title {
        font-size: 20px;
        font-weight: 700;
        color: #111;
        margin: 0 0 15px 0;
    }

    .step-desc {
        font-size: 15px;
        color: #555;
        line-height: 1.6;
        margin: 0;
        word-break: keep-all;
        max-width: 480px;
    }

    .qualification-box {
        display: flex;
        border-top: 1px solid #eee;
        padding-top: 40px;
    }

    .qual-icon {
        width: 36px;
        height: 36px;
        /* border-radius: 50%; */
        /* border: 1px solid #ddd; */
        /* display: flex; */
        /* justify-content: center; */
        /* align-items: center; */
        /* flex-shrink: 0; */
        margin-right: 20px;
        /* color: #999; */
    }

    .qual-text {
        padding-top: 3px;
    }

    .qual-title {
        /* font-size: 20px; */
        /* font-weight: 700; */
        /* color: #111; */
        margin: 0 0 10px 0;
    }

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

    .qual-list li {
        /* position: relative; */
        padding-left: 12px;
        /* font-size: 15px; */
        /* color: #444; */
        /* line-height: 1.6; */
        margin-bottom: 2px;
    }

    .qual-list li::before {
        content: '·';
        position: absolute;
        left: 0;
        top: 0;
        font-weight: bold;
    }

    .qual-list li.notice-text {
        padding-left: 0;
        margin-top: 15px;
        color: #666;
        font-size: 14px;
    }

    .qual-list li.notice-text::before {
        display: none;
    }

    .qual-list .sub-text {
        display: inline-block;
        padding-left: 10px;
        color: #666;
    }

    .type-new .step-item:not(:last-child) .step-num::after {
        border-color: #a4bde0;
    }

    .bg-new-1 {
        background-color: #7b94c8;
    }

    .bg-new-2 {
        background-color: #4562a2;
    }

    .bg-new-3 {
        background-color: #2e4a8b;
    }

    .bg-new-4 {
        background-color: #0b1f41;
    }

    .type-exp .step-item:not(:last-child) .step-num::after {
        border-color: #aae0bb;
    }

    .bg-exp-1 {
        background-color: #76c98c;
    }

    .bg-exp-2 {
        background-color: #2db256;
    }

    .bg-exp-3 {
        background-color: #179b36;
    }

    .bg-exp-4 {
        background-color: #0d6e24;
    }


    /* Footer & Top Button */
    .footer-top {
        flex-direction: column;
        padding-top: 30px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .company-info {
        text-align: left;
    }

    .footer-policy {
        justify-content: flex-start;
    }

    .copyright {
        text-align: left;
    }

    .btn-top {
        bottom: 20px;
        right: 20px;
    }
}

@media screen and (max-width: 576px) {

    /* Sub-pages Information Resets */
    .info-list li {
        padding: 14px 0;
        font-size: 18px;
        align-items: center;
    }

    .info-list li span:first-child {
        font-weight: 600;
        color: #333;
    }

    .info-list li span:last-child {
        font-size: 20px;
    }

    .greeting-wrap {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 60px;
    }

    .greeting-text {
        flex: 1;
    }

    .greeting-text p {
        margin-bottom: 30px;
        font-size: 16px;
    }

    .greeting-text .sign {
        font-size: 20px;
    }

    .greeting-img {
        flex: 1;
        margin-top: 0;
    }

    .greeting-img img {
        width: 100%;
        max-width: 520px;
        border-radius: 10px;
        display: block;
        margin: 0 auto;
    }

    .mission-wrap {
        gap: 30px;
    }

    .mission-img {
        flex: 1;
        overflow: hidden;
        aspect-ratio: 4 / 2.4;
        background: #f5f5f5;
    }

    .mission-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

    .mission-list {
        flex: 1;
    }

    .mission-list li {
        margin-bottom: 30px;
    }

    .mission-list h4 {
        font-size: 18px;
    }

    .mission-list p {
        font-size: 16px;
    }

    .vision-wrap {
        text-align: center;
        margin-top: 100px;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }

    .vision-wrap .sec-title {
        display: flex;
        justify-content: flex-start;
        gap: 20px;
        margin-bottom: 50px;
        flex-direction: column;
        text-align: center;
    }

    .vision-wrap .sec-title span {
        font-size: 16px;
        font-weight: normal;
    }

    .circle-wrap {
        display: flex;
        justify-content: center;
        gap: 0;
    }

    .circle {
        position: relative;
        width: 240px;
        height: 240px;
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: #fff;
        padding: 30px;
        margin-right: unset;
        margin-bottom: -30px;
    }

    .circle h4 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 15px;
        font-family: 'Montserrat';
    }

    .circle p {
        font-size: 16px;
    }

    .core-values-wrap {
        margin-top: 140px;
        gap: 20px;
    }

    .core-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .core-item {
        display: flex;
        align-items: center;
        gap: 20px;
        flex-direction: row;
    }

    .core-badge {
        align-content: center;
        width: 120px;
        height: 60px;
        padding: 0 15px;
        border-radius: 15px;
        font-size: 15px;
        line-height: 1.3;
    }

    .core-desc {
        flex: 1;
        color: #555;
        font-size: 16px;
        text-align: left;
        line-height: 1.4;
    }

    .history-intro h2 {
        font-size: 40px;
        font-weight: 800;
        margin-bottom: 20px;
        color: #111;
    }

    .history-intro p {
        font-size: 20px;
    }

    .history-intro p span {
        margin-top: 14px;
        font-size: 14px;
    }

    .history-list-wrap h3 {
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 30px;
        margin-top: 60px;
        padding-bottom: 15px;
        color: #555;
        line-height: 1.4;
    }

    .history-list-wrap h3 span {
        display: block;
        font-size: 20px;
        color: #999;
    }

    .basic-timeline li {
        display: flex;
        margin-bottom: 36px;
        flex-direction: column;
    }

    .basic-timeline .year {
        font-size: 24px;
        font-weight: 700;
        color: #111;
        width: 100px;
        flex-shrink: 0;
    }

    .basic-timeline .month-list {
        flex: 1;
    }

    .basic-timeline .month-item {
        font-size: 18px;
    }

    .basic-timeline .month {
        width: 36px;
        font-size: 18px;
        margin-right: 12px;
        text-align: center;
    }

    /* Statistics & Partners */
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        gap: 30px 0px;
    }

    .stat-item {
        text-align: center;
        flex: 1;
    }

    .stat-name {
        font-size: 18px;
        font-weight: 700;
        color: var(--text-main);
        display: flex;
        flex-direction: column;
        height: 80px;
        justify-content: center;
        line-height: 1.4;
    }

    .stat-number-wrap {
        font-size: 114px;
        font-weight: 800;
        line-height: 1;
        color: var(--text-main);
        margin-bottom: 18px;
        letter-spacing: -2px;
    }

    .stat-unit {
        font-size: 20px;
        text-transform: uppercase;
    }

    .partners-section {
        padding: 40px 0;
        background-color: #F0F4F7;
    }

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

    .partner-box {
        background-color: #fff;
        border-radius: 6px;
        height: 90px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
        transition: all 0.3s;
        border: 1px solid var(--border-light);
    }

    .pagination-dots {
        display: flex;
        justify-content: center;
        gap: 16px;
        margin: 36px auto 0;
    }

    .pagination-dots .dot {
        width: 12px;
        height: 12px;
        background: #ddd;
        border-radius: 50%;
        cursor: pointer;
    }

    .pagination-dots .dot.active {
        background: var(--primary);
    }

    .pagination {
        margin-top: 40px;
        display: flex;
        justify-content: center;
        gap: 16px;
    }

    .stats-section h2 {
        font-size: 40px;
        font-weight: 800;
        margin-bottom: 10px;
    }

    .stats-section p {
        font-size: 18px;
        margin-bottom: 60px;
        opacity: 0.8;
    }

    .stat-circle {
        width: 160px;
        height: 160px;
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .stat-circle h4 {
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 10px;
        opacity: 0.9;
        text-align: center;
        line-height: 1.2;
    }

    .stat-circle strong {
        font-size: 64px;
    }

    /* Map & Locations */
    .sec-location {
        padding: 160px 0;
        text-align: left;
        background-color: #fff;
    }

    .sec-location .sec-title {
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 80px;
        text-align: center;
    }

    .contact_map {
        height: 360px;
        margin-bottom: 40px;
        border: 1px solid #eee;
        border-radius: 10px;
        overflow: hidden;
    }

    .contact_map iframe {
        width: 100%;
        height: 100%;
    }

    .contact_info {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: flex-start;
        padding: 0;
        color: #4b5563;
        flex-direction: column;
    }

    .contact_rows {
        display: flex;
        flex: 1 1 auto;
        gap: 10px;
        flex-direction: column;
    }

    .contact_row {
        display: flex;
        gap: 14px;
        align-items: flex-start;
        flex-direction: column;
    }

    .contact_label {
        display: flex;
        align-items: center;
        gap: 10px;
        min-width: 100%;
    }

    .contact_label h3 {
        font-size: 16px;
        font-weight: 600;
        color: #4b5563;
        margin: 0;
    }

    .contact_icon {
        width: 24px;
        height: 24px;
        display: inline-block;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }

    .icon-way {
        background-image: url("../images/icon/icon_way.png");
    }

    .icon-subway {
        background-image: url("../images/icon/icon_subway.png");
    }

    .icon-contact {
        background-image: url("../images/icon/icon_contact.png");
    }

    .contact_content {
        line-height: 1.5;
        text-align: left;
    }

    .addr_main {
        margin: 0 0 8px;
        color: #374151;
        font-size: 14px;
        font-weight: 500;
    }

    .addr_sub {
        font-size: 12px;
    }

    .subway_content {
        display: flex;
        align-items: center;
        gap: 18px;
    }

    .subway_text p {
        margin: 0 0 16px;
        font-size: 14px;
    }

    .subway_text p:last-child {
        margin-bottom: 0;
    }

    .line_badge,
    .line_badge2 {
        width: 64px;
        font-size: 12px;
        text-align: center;
    }

    .contact_content p strong {
        color: #111827;
        font-weight: 600;
    }

    .number_content {
        display: flex;
        align-items: flex-start;
        gap: 0px;
        flex-direction: column;
        font-size: 14px;
    }

    .btn_map_area {
        display: flex;
        flex-direction: row;
        gap: 10px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        gap: 10px;
        width: -webkit-fill-available;
    }

    .btn_map_area .btn.middle {
        min-width: 100%;
        height: 40px;
        font-size: 14px;
        border-radius: 30px;
        padding: 0 10px;
    }

    /* Business Text Specific */
    .business-summary {
        display: flex;
        flex-direction: column;
        padding-bottom: 40px;
    }

    .business-summary .text {
        display: flex;
        flex-direction: column;
        gap: 30px;
        max-width: 700px;
        padding: 60px 0 30px !important;
        align-items: center;
        text-align: center;
        line-height: 1.4;
    }

    .business-summary h2,
    .business-summary h3 {
        font-size: 32px;
    }

    .business-summary p {
        font-size: 15px;
        display: flex;
        flex-direction: row;
        gap: 6px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .business-summary p span {
        font-size: 14px;
        padding: 4px 20px;
    }

    .business-summary .number {
        font-size: 80px;
        text-fill-color: transparent;
    }

    .business-summary .number span {
        font-size: 36px;
    }

    /* Footer adjustments */
    .cs-info {
        margin-bottom: 30px;
        font-family: 'Montserrat', sans-serif;
    }

    .cs-title {
        font-size: 14px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 8px;
    }

    .cs-number {
        font-size: 30px;
        margin-bottom: 12px;
        font-weight: 700;
    }

    .cs-time {
        font-size: 12px;
        letter-spacing: 0;
    }

    .company-info {
        font-size: 12px;
    }

    .footer-policy a {
        color: #ccc;
    }

    .copyright {
        font-size: 10px;
        letter-spacing: 0;
        margin-bottom: 40px;
    }

    /* Recruits / Banners Updates */
    .ideal-item {
        min-width: 100%;
    }

    .ideal-image-wrap {
        width: 180px;
        height: 180px;
    }

    .image-box img {
        width: 60px;
    }

    .job-section .intro-title {
        font-size: 32px;
    }

    .job-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .btn-recruit {
        width: 100%;
    }

    .sub_title {
        padding: 120px 0 0;
    }

    .sub_title span {
        font-size: 14px;
    }

    .sub_title span b {
        color: #333;
    }

    .sub_title span i {
        color: #b1b1b1;
        font-size: 16px;
        padding: 0 15px;
    }

    .sub_title h3 {
        font-size: 32px;
    }

    .sub_title h3 span {
        font-size: 1.6rem;
        color: #666;
        font-weight: 400;
        margin: 4rem 0 0 0;
    }

    .sub_title p {
        margin-top: 5rem;
        color: #4c4c4c;
        font-size: 1.6rem;
        line-height: 1.5;
        letter-spacing: -.05rem;
    }

    .sub-visual.banner_business h2 {
        letter-spacing: 5px;
        margin-bottom: 0;
        margin-top: 60px;
        text-align: left;
    }

    .sub-visual.banner_business p {
        font-size: 14px;
        text-align: left;
    }

    .sub-visual.banner_recruit {
        background-position: 30% 50%;
    }

    .sub-visual.banner_recruit p {
        font-size: 14px !important;
        max-width: 100%;
        margin-bottom: 36px;
    }
}


/* 프로세스 그리드 컨테이너 */
.feature-flow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.flow-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* 상단 헤더 박스 */
.flow-header {
    background-color: #666666;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    padding: 5px 0;
    width: 100%;
    border-radius: 30px;
    margin-bottom: 25px;
}

/* 텍스트 설명 */
.flow-desc {
    font-size: 18px;
    color: var(--text-main);
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 20px;
    min-height: 90px;
}

/* 화살표 */
.flow-arrow {
    width: 30px;
    height: 30px;
    color: #cccccc;
    margin-bottom: 20px;
}

.flow-arrow svg {
    width: 100%;
    height: 100%;
}

/* 결과 카드 */
.flow-result-card {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 20px 10px;
    width: 100%;
    font-size: 18px;
    color: var(--text-sub);
    line-height: 1.2;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

/* 반응형 처리 */
@media screen and (max-width: 992px) {
    .feature-flow-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
        max-width: 400px;
        margin: 0 auto;
    }

    .flow-desc {
        min-height: auto;
    }
}



/* =========================================
   Certification Grid (인증내역 이미지 영역)
========================================= */
.cert-grid-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 100px;
}

.cert-grid-row {
    display: grid;
    margin-bottom: 50px;
}

.cert-grid-row:last-child {
    margin-bottom: 0;
}

/* 상단 4개 배치 */
.cert-col-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* 하단 6개 배치 */
.cert-col-6 {
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cert-img-box {
    width: 100%;
    background-color: #fff;
    border: 0;
    /* 참조 이미지와 유사한 얇은 회색 테두리 */
    padding: 15px;
    box-sizing: border-box;
    margin-bottom: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 마우스 오버 시 부드러운 호버 효과 */
.cert-item:hover .cert-img-box {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    border-color: #d0d0d0;
}

.cert-img-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.cert-name {
    font-size: 15px;
    color: #555;
    text-align: center;
    line-height: 1.4;
    word-break: keep-all;
    letter-spacing: -0.02rem;
}

.cert-name strong {
    font-family: 'Montserrat', sans-serif;
    /* 기존 사용중인 영문/숫자 폰트 적용 */
    font-weight: 700;
    color: #111;
    margin-right: 4px;
}

/* =========================================
   Responsive (반응형 대응)
========================================= */
@media screen and (max-width: 1200px) {
    .cert-col-4 {
        gap: 20px;
    }

    .cert-col-6 {
        gap: 15px;
    }
}

@media screen and (max-width: 992px) {

    /* 태블릿 환경에서는 상/하단 모두 3열 또는 2열로 조정 */
    .cert-grid-container {
        margin: 0 auto 80px;
    }

    .cert-col-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }

    .cert-col-6 {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 20px;
    }
}

@media screen and (max-width: 768px) {
    .cert-img-box {
        padding: 10px;
    }

    .cert-name {
        font-size: 14px;
    }

    .sub-visual.banner_history h2 {
        letter-spacing: 0.3rem;
    }


    /* step - 세로형 */
    .step-list-column {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 40px;
    }

    .step-list-column .c-card {
        display: flex;
        align-items: center;
        text-align: center;
        padding: 30px 20px;
        background: #fff;
        border: 1px solid #eee;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
        transition: transform 0.2s;
        flex-direction: column;
        gap: 15px;
        margin: 0 20px;
    }

    .step-list-column .c-card:hover {
        transform: translateY(-5px);
        border-color: #e5dbff;
    }

    .step-list-column .c-card .num {
        font-size: 36px;
        font-weight: 600;
        color: #3F87CF;
        font-family: 'Montserrat';
        border-top: #999 solid 1px;
        /* border-bottom: #999 solid 1px; */
        margin-right: 0;
        text-align: center;
        line-height: 1.2;
    }

    .step-list-column .c-card .num span {
        display: block;
        font-size: 16px;
        font-weight: 600;
        color: #333;
        margin-top: 10px;
        text-transform: uppercase;
    }

    .step-list-column .c-card h4 {
        font-size: 20px;
        width: unset;
        line-height: 1.2;
    }

    .step-list-column .c-card h4 span {
        display: block;
        font-size: 14px;
        font-weight: 400;
        color: #999;
        margin-top: 10px;
    }

    .step-list-column .c-card ul {
        flex: 1;
        /* border-left: 1px solid #b8b8b8; */
        padding-left: unset;
    }

    .step-list-column .c-card ul li {
        position: relative;
        padding-left: 15px;
        line-height: 1.4;
        color: #555;
        font-size: 14px;
        text-align: left;
    }

    .step-list-column .c-card ul li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 10px;
        width: 4px;
        height: 4px;
        background: #666;
        border-radius: 50%;
    }

}








@media screen and (max-width: 576px) {

    /* 모바일 환경에서는 2열로 통일 */
    .cert-col-4,
    .cert-col-6 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 0px;
        margin-bottom: 20px;
        margin: 0 15px;
    }

    .cert-name {
        font-size: 13px;
    }
}



/* =========================================
   공개항목 (Disclosure Items)
========================================= */
.disclosure-list {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.disclosure-item {
    flex: 1;
    position: relative;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.disclosure-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 8px;
    height: 28px;
    width: 1px;
    background-color: #ddd;
}

.disclosure-item .icon-box {
    width: 110px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.disclosure-item .icon-box img {
    max-width: 100%;
}

.disclosure-item p {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    line-height: 1.2;
    word-break: keep-all;
    text-align: center;
    height: 46px;
    display: flex;
    align-items: center;
}

/* =========================================
   분야별 공개 항목현황 (Status Table)
========================================= */
.status-table-wrap {
    max-width: 1000px;
    margin: 0 auto 80px;
}

.status-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr repeat(5, 1fr);
    gap: 8px 10px;
}

.st-cell {
    background-color: #e4e6ea;
    /* 기본 알약 배경색 */
    color: #666;
    border-radius: 30px;
    padding: 12px 10px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}

.st-cell.st-head {
    background-color: #7b8599;
    /* 헤더 진한 색상 */
    color: #fff;
}

.st-cell.st-row-title {
    background-color: #9aa4b8;
    /* 좌측 행 타이틀 색상 */
    color: #fff;
}

/* =========================================
   업무절차 (Work Process)
========================================= */
.work-process-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 72px;
    margin: 0 auto 60px;
    max-width: 1200px;
}

.wp-step {
    flex: 1;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 30px;
    padding: 24px 24px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    position: relative;
    text-align: center;
    min-height: 220px;
    max-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* 스텝 사이 화살표 */
.wp-step:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -17%;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 30px;
    height: 30px;
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
}

.wp-num {
    font-size: 40px;
    font-weight: 600;
    color: #3F87CF;
    /* 지정된 파란색 포인트 */
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 15px;
    border-bottom: 1px solid #999;
    width: 100px;
}

.wp-step h4 {
    font-size: 21px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.2;
}

.wp-step p {
    font-size: 16px;
    color: #999;
    word-break: keep-all;
}

/* 따옴표 문구 */
.process-quote {
    display: flex;
    position: relative;
    font-size: 24px;
    font-weight: 700;
    color: #666;
    padding: 30px;
    margin: auto;
    justify-content: center;
    align-items: flex-start;
}

.quote-mark {
    font-size: 32px;
    color: #000000;
    position: relative;
    top: -5px;
    content: "“";
    font-size: 72px;
    opacity: 0.10;
    line-height: 1;
    font-family: emoji;
}

.quote-mark.left {
    left: -20px;
}

.quote-mark.right {
    right: -20px;
}

/* 7개 아이콘 영역 */
.process-icons-wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.icon-row {
    display: flex;
    justify-content: center;
    gap: 90px;
}

.pi-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 160px;
}

.pi-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-color: #9DC5DB;
    /* 아이콘 배경 파란색 */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.pi-circle img {
    max-width: 50%;
    max-height: 50%;
}

.pi-item h5 {
    font-size: 21px;
    font-weight: 600;
    color: #333;
}

.pi-item p {
    font-size: 16px;
    color: #999;
    line-height: 1.4;
}

/* =========================================
   Mobile / Responsive
========================================= */
@media screen and (max-width: 992px) {
    .disclosure-list {
        flex-wrap: wrap;
        gap: 20px 0;
    }

    .disclosure-item {
        flex: 0 0 33.333%;
    }

    .disclosure-item:not(:last-child)::after {
        display: none;
    }

    .status-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* 테이블 모바일 스크롤 처리 */
    .status-table-wrap {
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .status-grid {
        min-width: 800px;
    }

    .work-process-wrap {
        flex-wrap: wrap;
        gap: 20px;
    }

    .wp-step {
        flex: 0 0 calc(50% - 10px);
    }

    .wp-step:nth-child(2)::after {
        display: none;
        /* 2번째 아이템 우측 화살표 숨김 */
    }

    .icon-row {
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media screen and (max-width: 576px) {
    .disclosure-item {
        flex: 0 0 50%;
    }

    .wp-step {
        flex: 0 0 100%;
    }

    .wp-step::after {
        display: none;
        /* 모바일에서는 화살표 모두 숨김 */
    }

    .pi-item {
        width: 140px;
    }

    .pi-circle {
        width: 100px;
        height: 100px;
    }
}



/* =========================================
   3단 정보 배너 (Regulation 3-Column Banner)
========================================= */
.regulation-banner.text-center {
    padding: 50px 0;
    /* 위아래 여백 */
    color: #ffffff;
}

.regulation-3col-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0 20px;
}

.reg-col {
    flex: 1;
    position: relative;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 각 열 사이의 하얀색 세로 구분선 (마지막 열 제외) */
.reg-col::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 100%;
    /* 구분선 높이 */
    background-color: rgba(255, 255, 255, 0.6);
}

.reg-col-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.reg-col-desc {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    word-break: keep-all;
    margin: 0;
}

.reg-col:last-child {
    flex: 0.6;
}

/* =========================================
   Responsive (반응형)
========================================= */
@media screen and (max-width: 1024px) {
    .reg-col {
        padding: 0 20px;
    }

    .reg-col-title {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .reg-col-desc {
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    .regulation-banner.text-center {
        padding: 50px 0;
    }

    .regulation-3col-container {
        flex-direction: column;
        gap: 20px;
    }

    .reg-col {
        padding: 0;
    }

    /* 모바일에서는 세로 구분선을 숨기고 하단 가로 구분선으로 대체 */
    .reg-col::after {
        top: auto;
        bottom: -20px;
        right: 0%;
        transform: translateX(50%);
        width: 100%;
        height: 0;
    }

    .reg-col:last-child {
        flex: 1;
    }

}


/* =========================================
   LCA 전과정평가 (상단 흐름도)
========================================= */
.lca-section {
    max-width: 1200px;
    margin: 0 auto;
}

.lca-flow-wrapper {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lca-flow-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 20px;
}

.lca-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    max-width: 260px;
    text-align: center;
}

.lca-icon {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.lca-icon img {
    max-width: 100%;
    max-height: 100%;
}

.lca-pill {
    background-color: #51ba9e;
    /* 에메랄드 그린 */
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 12px;
    width: 100%;
    box-sizing: border-box;
    white-space: nowrap;
}

.lca-desc {
    font-size: 16px;
    color: #555;
    word-break: keep-all;
    line-height: 1.4;
}

.lca-arrow-right {
    width: 30px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
}

.lca-arrow-right::after {
    content: '';
    width: 12px;
    height: 12px;
    border-top: 2px solid #ccc;
    border-right: 2px solid #ccc;
    transform: rotate(45deg);
}

/* 하단 연결선 (ㄷ자 모양 및 중앙 드롭선) */
.lca-connector-box {
    width: 80%;
    max-width: 900px;
    position: relative;
    height: 40px;
    margin: 10px auto 30px;
}

.lca-connector-line {
    border-bottom: 1px solid #777;
    border-left: 1px solid #777;
    border-right: 1px solid #777;
    height: 20px;
    width: 100%;
}

.lca-connector-drop {
    width: 1px;
    height: 30px;
    background-color: #777;
    margin: 0 auto;
}

.lca-quote-box {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    color: #666;
    position: relative;
    padding: 0 40px;
    margin: 20px auto 30px;
    text-align: center;
}

.lca-quote-box .quote-mark {
    font-size: 32px;
    color: #dbdbdb;
    position: absolute;
    top: -5px;
    font-family: 'Montserrat', sans-serif;
}

.lca-quote-box .quote-mark.left {
    left: 0;
}

.lca-quote-box .quote-mark.right {
    right: 0;
}


/* =========================================
   LCA 업무절차 (다이어그램)
========================================= */
.lca-diagram-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 0 auto 80px;
    /* max-width: 900px; */
}

.lca-boxes {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 680px;
}

.lca-box {
    width: 100%;
    padding: 12px 0;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #222;
    background: #fff;
    border: 2px solid;
    box-sizing: border-box;
}

.box-blue {
    border-color: #7aa8de;
}

.box-red {
    border-color: #f4a0a0;
}

.box-green {
    border-color: #79c594;
}

/* 박스 사이 위아래 화살표 */
.lca-box-arrows {
    width: 40px;
    height: 40px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ccc"><path d="M12 2l-5 5h3v4h4V7h3z"/><path d="M12 22l5-5h-3v-4h-4v4H7z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 5px 0;
}

.lca-center-arrows {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.arrow-right-gradient {
    width: 70px;
    height: 70px;
    background: linear-gradient(to right, rgba(243, 182, 182, 0), rgba(243, 182, 182, 1));
    clip-path: polygon(0 25%, 45% 25%, 45% 0, 100% 50%, 45% 100%, 45% 75%, 0 75%);
}

.arrow-left-gradient {
    width: 70px;
    height: 70px;
    background: linear-gradient(to left, rgba(182, 211, 243, 0), rgba(182, 211, 243, 1));
    clip-path: polygon(100% 25%, 60% 25%, 60% 0, 0 50%, 60% 100%, 60% 75%, 100% 75%);
}

.lca-circle {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e4a1b4, #deb5c1);
    box-shadow: inset -5px -5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* =========================================
   LCA 업무절차 (텍스트 리스트)
========================================= */
.lca-text-wrap {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.lca-text-item {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
    margin: auto;
}

.lca-text-title {
    width: 220px;
    flex-shrink: 0;
    font-size: 22px;
    font-weight: 600;
    color: #222;
    padding-top: 2px;
}

.lca-text-content {
    flex-grow: 1;
    margin-top: 5px;
    line-height: 1.2;
}

.lca-text-content p {
    font-size: 20px;
    color: #444;
    /* font-weight: 600; */
    margin-bottom: 8px;
    word-break: keep-all;
}

.lca-sub-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lca-sub-list li {
    font-size: 16px;
    color: #666;
    padding-left: 12px;
    position: relative;
    margin-bottom: 6px;
    line-height: 1.5;
}

.lca-sub-list li::before {
    content: "·";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    color: #666;
}

/* =========================================
   Responsive (모바일 반응형)
========================================= */
@media screen and (max-width: 992px) {

    /* 1. 상단 흐름도: 가로 스크롤 ❌ -> 세로형 카드 리스트 ⭕ */
    .lca-flow-wrapper {
        width: 100%;
        overflow-x: hidden;
        padding-bottom: 0;
        align-items: center;
    }

    .lca-flow-container {
        flex-direction: column;
        min-width: 100%;
        align-items: center;
    }

    /* 2. 각 단계: 좌측 아이콘, 우측 텍스트의 카드 디자인으로 변경 */
    .lca-step {
        width: 100%;
        max-width: 400px;
        display: grid;
        grid-template-columns: 80px 1fr;
        grid-template-rows: auto auto;
        gap: 5px 20px;
        align-items: center;
        text-align: left;
        background: #fff;
        border: 1px solid #eaeaea;
        border-radius: 15px;
        padding: 20px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    }

    .lca-icon {
        grid-row: 1 / 3;
        width: 80px;
        height: 80px;
        margin: 0;
    }

    .lca-pill {
        justify-self: start;
        margin: 0;
        font-size: 15px;
        padding: 2px 0px;
        letter-spacing: -0.06rem;
    }

    .lca-desc {
        margin: 0;
        /* font-size: 14px; */
    }

    /* 3. 화살표: 우측 방향 ❌ -> 아래 방향 ⭕ */
    .lca-arrow-right {
        height: 30px;
        width: 100%;
        margin: 5px 0;
    }

    .lca-arrow-right::after {
        transform: rotate(135deg);
        /* 45deg(우측)에서 135deg(아래)로 회전 */
    }

    /* 4. 연결선: 가로 'ㄷ'자 ❌ -> 수직 연결선 ⭕ */
    .lca-connector-box {
        min-width: auto;
        width: 100%;
        height: 40px;
        margin: 0;
        display: flex;
        justify-content: center;
    }

    .lca-connector-line {
        display: none;
        /* 가로선 숨김 */
    }

    .lca-connector-drop {
        height: 100%;
        width: 2px;
        background-color: #ccc;
        position: relative;
    }

    .lca-connector-drop::after {
        /* 마지막을 알리는 화살표 팁 추가 */
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%) rotate(135deg);
        width: 10px;
        height: 10px;
        border-top: 2px solid #ccc;
        border-right: 2px solid #ccc;
    }

    /* 5. 환경부하 텍스트 박스: 결과를 보여주는 박스 형태로 강조 */
    .lca-quote-box {
        font-size: 16px;
        padding: 20px 40px;
        background: #f8f9fa;
        border-radius: 12px;
        margin-top: 0;
        width: 100%;
        max-width: 400px;
        box-sizing: border-box;
        line-height: 1.4;
    }

    .lca-quote-box .quote-mark {
        font-size: 24px;
        top: 15px;
    }

    .lca-quote-box .quote-mark.left {
        left: 15px;
    }

    .lca-quote-box .quote-mark.right {
        right: 15px;
    }

    /* --- 이하 기존 992px 업무절차 관련 CSS 유지 --- */
    .lca-diagram-wrap {
        flex-direction: column;
        gap: 0px;
    }

    .lca-center-arrows {
        /* flex-direction: row; */
        transform: rotate(90deg);
        margin: 0;
    }

    .lca-text-item {
        flex-direction: column;
        gap: 10px;
        background: #f8f9fa;
        padding: 30px;
        border-radius: 12px;
    }

    .lca-text-title {
        width: 100%;
        font-size: 20px;
    }
}

/* 아주 작은 모바일 화면(576px 이하) 대응 */
@media screen and (max-width: 576px) {
    .lca-step {
        grid-template-columns: 60px 1fr;
        /* 아이콘 크기 축소 */
        gap: 5px 15px;
        padding: 15px;
    }

    .lca-icon {
        width: 60px;
        height: 60px;
    }

    .lca-pill {
        /* font-size: 12px; */
        text-align: center;
    }

    .lca-desc {
        /* font-size: 13px; */
        text-align: center;
    }

    /* --- 이하 기존 576px 업무절차 관련 CSS 유지 --- */
    .lca-boxes {
        width: 100%;
        max-width: 320px;
    }

    .lca-box {
        width: 100%;
        padding: 6px 0;
        font-size: 18px;
    }


    .lca-circle {
        width: 240px;
        height: 240px;
        font-size: 22px;
    }

    .lca-text-content p {
        font-size: 15px;
    }

    .lca-sub-list li {
        font-size: 14px;
    }
}

.pd0 {
    padding: 0 !important;
}





/* 탭 링크 기본 */

.sub_title h3 a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #DFDFDF;
    font-size: 32px;
}

.sub_title h3 a:hover {
    color: #333
}


/* 두 번째 a부터 적용 */

.sub_title h3 a+a::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 36px;
    background: #ddd;
    margin: 0 60px;
}

.sub_title h3 a.on {
    color: #333;
}








.privacy {
    display: block;
    max-width: 1000px;
    margin: auto;
    text-align: left;
    padding: 20px 40px;
}

.privacy .title {}

.privacy .title h2 {
    font-size: 24px;
    margin: 30px 0;
}

.privacy .title h2 .ver {
    font-size: 14px;
    color: #333;
    letter-spacing: 0;
    padding-left: 10px;
}

.privacy .section h3 {
    margin: 10px 0 10px;
    color: #333;
    letter-spacing: -0.03em;
    font-size: 16px;
}

.privacy .section h4 {
    margin: 20px 0 16px;
    color: #333;
    letter-spacing: -0.03em;
    font-size: 14px;
}

.privacy .title p {
    font-size: 13px;
    color: #808080;
    letter-spacing: -0.03em;
}

.privacy .title .link {
    position: absolute;
    right: 0;
    bottom: 33px;
    font-size: 12px;
}

.privacy .section {
    padding: 20px 0 30px;
    border-top: 1px solid #e5e5e5;
    line-height: 18px;
    font-size: 13px;
    color: #666;
}




/* 탭 메뉴 컨테이너 */
.partners-tabs {
    text-align: center;
    margin-bottom: 50px;
}

/* 탭 버튼 기본 스타일 */
.partners-tabs .tab-btn {
    cursor: pointer;
    border: none;
    background: none;
    font-size: 30px;
    color: #999;
    /* 비활성화 상태 색상 */
    font-weight: normal;
    padding: 0;
}

/* 탭 버튼 활성화(active) 상태 스타일 */
.partners-tabs .tab-btn.active {
    font-weight: bold;
    color: #333;
}

/* 탭 메뉴 구분선 스타일 */
.partners-tabs .tab-divider {
    margin: 0 15px;
    color: #ccc;
}

@media screen and (max-width: 576px) {
    .partners-tabs {

        margin-bottom: 40px;
    }

    .partners-tabs .tab-btn {

        font-size: 18px;

    }

}