@charset "utf-8";

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Thin.woff2') format('woff2');
    font-weight: 100;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Light.woff2') format('woff2');
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Medium.woff2') format('woff2');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Bold.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Black.woff2') format('woff2');
    font-weight: 900;
    font-display: swap;
}


/* 물류존 메인 히어로 */
.mlz-hero {
    position: relative;
    margin-top: 0;
    height: 100vh;
    min-height: 720px;
    overflow: hidden;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont,
        'Apple SD Gothic Neo', 'Malgun Gothic', '돋움', sans-serif;
}

.mlz-hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* 가로 트랙 → 겹쳐놓는 스테이지 */
.mlz-hero-track {
    position: relative;
    width: 100%;
    height: 100%;
}

/* 개별 슬라이드 – 겹쳐 놓고 페이드 + 오른쪽에서 스윽 들어오는 느낌 */
.mlz-hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    opacity: 0;
    pointer-events: none;
    transform: translate3d(40px, 0, 0);
    transition:
        opacity 900ms cubic-bezier(0.33, 1, 0.68, 1),
        transform 900ms cubic-bezier(0.33, 1, 0.68, 1);
}

.mlz-hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    z-index: 1;
}


.mlz-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 1;
}

/* 텍스트 영역 */
.mlz-hero-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 10%;
    box-sizing: border-box;
}

.mlz-hero-text {
    max-width: 540px;
    color: #ffffff;
}

.mlz-hero-title {
    font-weight: 800;
    font-size: 48px;
    line-height: 1.25;
    margin-bottom: 18px;
}

.mlz-hero-sub {
    font-weight: 600;
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 14px;
}

.mlz-hero-desc {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.9;
}



.mlz-hero-title,
.mlz-hero-sub,
.mlz-hero-desc {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
}

/* 슬라이드 활성화될 때 텍스트 모션 */
.mlz-hero-slide.is-active .mlz-hero-title {
    animation: mlz-hero-title-in 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.mlz-hero-slide.is-active .mlz-hero-sub {
    animation: mlz-hero-sub-in 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) 0.08s forwards;
}

.mlz-hero-slide.is-active .mlz-hero-desc {
    animation: mlz-hero-desc-in 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) 0.16s forwards;
}

/* 텍스트 애니메이션 키프레임 */
@keyframes mlz-hero-title-in {
    0% {
        opacity: 0;
        transform: translate3d(24px, 18px, 0);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes mlz-hero-sub-in {
    0% {
        opacity: 0;
        transform: translate3d(18px, 16px, 0);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes mlz-hero-desc-in {
    0% {
        opacity: 0;
        transform: translate3d(12px, 14px, 0);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}







/* 네비게이션 – 미니멀 화살표만 남기기 */
.mlz-hero-nav {
    position: absolute;
    left: 50%;
    bottom: 72px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 0;
    background: none;
    z-index: 3;
}

.mlz-hero-btn {
    border: none;
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mlz-hero-btn-icon {
    display: inline-block;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    opacity: 0.9;
    text-shadow:
        0 0 8px rgba(0, 0, 0, 0.85),
        0 10px 24px rgba(0, 0, 0, 0.95);
    transform: translateY(0);
    transition:
        transform 0.25s ease,
        text-shadow 0.25s ease,
        opacity 0.25s ease;
}

/* 좌우 화살표 살짝 다른 느낌 */
.mlz-hero-prev .mlz-hero-btn-icon {
    letter-spacing: -6px;
}

.mlz-hero-next .mlz-hero-btn-icon {
    letter-spacing: -6px;
}

.mlz-hero-btn:hover .mlz-hero-btn-icon {
    opacity: 1;
    transform: translateY(-1px) scale(1.05);
    text-shadow:
        0 0 10px rgba(0, 0, 0, 0.9),
        0 18px 36px rgba(0, 0, 0, 0.98);
}


/* 스크롤 힌트 */
.mlz-hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 3;
    color: #ffffff;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    opacity: 0.9;
}


.mlz-hero-scroll-icon {
    animation: mlz-hero-scroll-bounce 1.6s infinite ease-in-out;
}

.mlz-hero-scroll-icon i {
    font-size: 18px;
}

@keyframes mlz-hero-scroll-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* 반응형 */
@media (max-width: 1024px) {
    .mlz-hero {
        min-height: 560px;
    }

    .mlz-hero-title {
        font-size: 38px;
    }

    .mlz-hero-sub {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .mlz-hero {
        min-height: 420px;
    }

    .mlz-hero-inner {
        padding: 0 24px;
    }

    .mlz-hero-title {
        font-size: 30px;
    }

    .mlz-hero-sub {
        font-size: 16px;
    }

    .mlz-hero-desc {
        font-size: 14px;
    }

    .mlz-hero-nav {
        bottom: 64px;
    }

    .mlz-hero-scroll {
        right: 24px;
        bottom: 24px;
    }
}










/* ==============================
   Chaos to Order – Problem Section
   ============================== */

.mlz-problem {
    position: relative;
    padding: 120px 0 120px;
    background: radial-gradient(circle at top left, #1a2a4a 0%, #050812 55%, #02030a 100%);
    color: #f9fafb;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont,
        'Apple SD Gothic Neo', 'Malgun Gothic', '돋움', sans-serif;
}

.mlz-problem-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
    box-sizing: border-box;
}

/* 헤더 영역 */
.mlz-problem-header {
    text-align: center;
    margin-bottom: 64px;
}

.mlz-problem-kicker {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #38bdf8;
    margin-bottom: 16px;
}

.mlz-problem-title {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.mlz-problem-subtitle {
    font-size: 15px;
    font-weight: 400;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.8;
    color: rgba(241, 245, 249, 0.85);
}

/* 카드 그리드 */
.mlz-problem-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 72px;
}

.mlz-problem-card {
    position: relative;
    padding: 26px 24px 28px;
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.14), rgba(15, 23, 42, 0.96));
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
        0 24px 60px rgba(15, 23, 42, 0.85),
        0 0 0 1px rgba(148, 163, 184, 0.08);
    transform: translate3d(0, 0, 0);
    transition:
        transform 260ms ease,
        box-shadow 260ms ease,
        background 260ms ease;
}

.mlz-problem-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.6), rgba(129, 140, 248, 0.25), rgba(248, 113, 113, 0.35));
    opacity: 0;
    transition: opacity 260ms ease;
    z-index: 0;
}

.mlz-problem-card-index {
    position: relative;
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: rgba(148, 163, 184, 0.9);
    margin-bottom: 16px;
    z-index: 1;
}

.mlz-problem-card-title {
    position: relative;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    z-index: 1;
}

.mlz-problem-card-text {
    position: relative;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(226, 232, 240, 0.92);
    z-index: 1;
}

/* 카드 호버 효과 */
.mlz-problem-card:hover {
    transform: translate3d(0, -6px, 0);
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.24), rgba(15, 23, 42, 0.98));
    box-shadow:
        0 32px 80px rgba(15, 23, 42, 0.95),
        0 0 0 1px rgba(148, 163, 184, 0.2);
}

.mlz-problem-card:hover::before {
    opacity: 1;
}

/* CTA 바 */
.mlz-problem-cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 26px 28px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.16), rgba(129, 140, 248, 0.32));
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.4);
}

.mlz-problem-cta-text {
    flex: 1 1 auto;
}

.mlz-problem-cta-kicker {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.9);
    margin-bottom: 8px;
}

.mlz-problem-cta-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.mlz-problem-cta-subtitle {
    font-size: 14px;
    color: rgba(226, 232, 240, 0.92);
    line-height: 1.7;
}

.mlz-problem-cta-button {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    padding: 12px 22px;
    border-radius: 999px;
    background: radial-gradient(circle at top left, #38bdf8, #0ea5e9);
    color: #0b1120;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow:
        0 16px 40px rgba(8, 47, 73, 0.9),
        0 0 0 1px rgba(125, 211, 252, 0.8);
    transition:
        transform 220ms ease,
        box-shadow 220ms ease,
        background 220ms ease;
}

.mlz-problem-cta-button:hover {
    transform: translate3d(0, -2px, 0);
    background: radial-gradient(circle at top left, #7dd3fc, #38bdf8);
    box-shadow:
        0 20px 56px rgba(8, 47, 73, 0.98),
        0 0 0 1px rgba(191, 219, 254, 0.9);
}

/* 반응형 */
@media (max-width: 1024px) {
    .mlz-problem {
        padding: 96px 0 100px;
    }

    .mlz-problem-inner {
        padding: 0 24px;
    }

    .mlz-problem-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .mlz-problem {
        padding: 80px 0 88px;
    }

    .mlz-problem-inner {
        padding: 0 20px;
    }

    .mlz-problem-header {
        margin-bottom: 40px;
    }

    .mlz-problem-title {
        font-size: 26px;
    }

    .mlz-problem-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 40px;
    }

    .mlz-problem-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .mlz-problem-cta-button {
        width: 100%;
        justify-content: center;
        margin-top: 15px;
        /* Spacing for stacked layout */
        box-sizing: border-box;
    }
}



/* ===========================
   물류존 포커스 배너 (패럴럭스)
   =========================== */
.mlz-focus-section {
    position: relative;
    width: 100%;
    min-height: 360px;
    padding: 110px 20px;
    box-sizing: border-box;

    color: #ffffff;
    text-align: center;

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    /* 데스크톱에서 기본 고정 느낌 */

    overflow: hidden;
}

/* 어두운 오버레이 */
.mlz-focus-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0,
            rgba(0, 0, 0, 0.25) 0,
            rgba(0, 0, 0, 0.75) 60%);
    pointer-events: none;
}

.mlz-focus-inner {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    z-index: 1;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

/* 상단 작은 텍스트 */
.mlz-focus-kicker {
    display: inline-block;
    margin-bottom: 14px;
    padding: 4px 14px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.4);
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

/* 메인 타이틀 */
.mlz-focus-title {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
    line-height: 1.3;
}

/* 서브 타이틀 */
.mlz-focus-sub {
    font-size: 18px;
    font-weight: 500;
    opacity: 0.88;
    margin-bottom: 10px;
}

/* 설명 텍스트 */
.mlz-focus-desc {
    font-size: 15px;
    font-weight: 400;
    opacity: 0.85;
    line-height: 1.7;
    max-width: 720px;
    margin: 0 auto 26px;
}

/* CTA 버튼 */
.mlz-focus-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 30px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(0, 205, 255, 0.35), rgba(41, 255, 177, 0.35));
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.mlz-focus-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    background:
        linear-gradient(135deg, rgba(0, 205, 255, 0.55), rgba(41, 255, 177, 0.6));
    border-color: rgba(255, 255, 255, 0.9);
}

/* 반응형 */
@media (max-width: 1024px) {
    .mlz-focus-section {
        padding: 90px 16px;
    }

    .mlz-focus-title {
        font-size: 30px;
    }

    .mlz-focus-sub {
        font-size: 16px;
    }

    .mlz-focus-desc {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .mlz-focus-section {
        padding: 70px 14px;
        background-attachment: scroll;
        /* 모바일은 fixed가 거의 안 먹어서 강제 해제 */
    }

    .mlz-focus-title {
        font-size: 24px;
    }
}