@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-about-hero {
    position: relative;
    width: 100%;
    min-height: 400px;
    padding: 110px 20px 80px;
    box-sizing: border-box;

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    z-index: 20;
}

.mlz-about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
                    to bottom,
                    rgba(15, 23, 42, 0.35),
                    rgba(15, 23, 42, 0.85)
                );

}

.mlz-about-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    width: 100%;
    text-align: center;
}

.mlz-about-hero-title {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 10px;
}

.mlz-about-hero-sub {
    font-size: 15px;
    font-weight: 400;
    opacity: 0.9;
}

/* 하단 네비 바 (HOME + 메뉴 한 개) */
.mlz-about-hero-nav {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;

    padding: 0 28px;
    height: 56px;

    border-radius: 999px;
    background: rgba(10, 15, 25, 0.92);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.7);

    color: #e5e7eb;
    font-size: 13px;
}

.mlz-about-nav-home {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(31, 41, 55, 0.9);
    margin-right: 16px;
    text-decoration: none;
}

.mlz-about-nav-home-icon {
    width: 14px;
    height: 12px;
    position: relative;
    display: block;
}

/* 단순한 집 모양 아이콘 */
.mlz-about-nav-home-icon::before,
.mlz-about-nav-home-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: #f9fafb;
}

.mlz-about-nav-home-icon::before {
    width: 14px;
    height: 8px;
    bottom: 0;
    border-radius: 2px;
}

.mlz-about-nav-home-icon::after {
    width: 10px;
    height: 10px;
    bottom: 6px;
    transform: translateX(-50%) rotate(45deg);
    border-radius: 2px;
}

.mlz-about-nav-divider {
    width: 1px;
    height: 26px;
    background: rgba(75, 85, 99, 0.7);
    margin-right: 16px;
}

.mlz-about-nav-menu {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.mlz-about-nav-menu-toggle {
    border: none;
    background: transparent;
    color: #e5e7eb;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

/* 드롭다운 리스트 */
.mlz-about-nav-menu-list {
    position: absolute;
    right: -8px;   /* 오른쪽으로 살짝 이동 */
    top: 115%;     /* 버튼 바로 아래에 더 가깝게 */
    min-width: 180px;
    padding: 8px 0;
    margin: 0;
    list-style: none;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.96);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.7);
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity .18s ease, transform .18s ease;
    z-index: 1005;
}


.mlz-about-nav-menu-list a {
    display: block;
    padding: 8px 14px;
    font-size: 13px;
    color: #e5e7eb;
    text-decoration: none;
    white-space: nowrap;
}

.mlz-about-nav-menu-list a:hover {
    background: rgba(55, 65, 81, 0.85);
}

/* 토글 클래스 */
.mlz-about-nav-menu.is-open .mlz-about-nav-menu-list {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}


/* ===========================
   회사소개 > 인사말 본문
   =========================== */
.mlz-about-section {
    position: relative;
    padding: 100px 20px 120px;
    background: #f9fafb;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    z-index: 1;
}

.mlz-about-inner {
    max-width: 1240px;
    margin: 0 auto;
}

.mlz-about-header {
    text-align: left;
    margin-bottom: 60px;
}

.mlz-about-title {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
    color: #0f172a;
}

.mlz-about-subtitle {
    font-size: 14px;
    color: #6b7280;
    max-width: 520px;
    line-height: 1.7;
}

/* 좌우 2단 레이아웃 */
.mlz-about-body {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
    gap: 40px;
    align-items: flex-start;
}

/* 왼쪽 인사말 */
.mlz-about-left {
    color: #111827;
}

.mlz-about-highlight {
    font-size: 18px;
    font-weight: 700;
    color: #1d4ed8;
    margin-bottom: 14px;
}

.mlz-about-text {
    font-size: 14px;
    line-height: 1.9;
    color: #374151;
}

/* 오른쪽 페인 포인트 카드 (밝은 사이버펑크) */
/* 오른쪽 비주얼 박스 */
.mlz-about-right {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.mlz-about-visual {
    max-width: 460px;
    width: 100%;
}

.mlz-about-visual-inner {
    position: relative;
    border-radius: 28px;
    padding: 8px;
    background: radial-gradient(circle at top left,
                                rgba(59, 130, 246, 0.18),
                                rgba(15, 23, 42, 0.96));
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.45);
    overflow: hidden;
}

.mlz-about-visual-img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 360px;
    object-fit: cover;
    border-radius: 22px;
}

.mlz-about-pain-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.mlz-about-pain-card {
    position: relative;
    padding: 16px 18px 18px;
    border-radius: 16px;
    background: radial-gradient(circle at top left,
                                rgba(56, 189, 248, 0.24),
                                rgba(249, 250, 251, 0.95));
    box-shadow:
        0 18px 45px rgba(15, 23, 42, 0.12),
        0 0 0 1px rgba(191, 219, 254, 0.7);
    overflow: hidden;
    transform: translate3d(0,0,0);
}

.mlz-about-pain-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at 0 0,
                                rgba(129, 140, 248, 0.3),
                                transparent 55%);
    opacity: 0.0;
    transition: opacity 0.22s ease;
    z-index: 0;
}

.mlz-about-pain-index {
    position: relative;
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: #6b7280;
    margin-bottom: 6px;
    z-index: 1;
}

.mlz-about-pain-title {
    position: relative;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #0f172a;
    z-index: 1;
}

.mlz-about-pain-text {
    position: relative;
    font-size: 13px;
    line-height: 1.8;
    color: #374151;
    z-index: 1;
}

/* 호버 시 네온 강조 */
.mlz-about-pain-card:hover::before {
    opacity: 1;
}

.mlz-about-pain-card:hover {
    box-shadow:
        0 22px 60px rgba(56, 189, 248, 0.35),
        0 0 0 1px rgba(59, 130, 246, 0.9);
}

/* 반응형 */
@media (max-width: 1024px) {
    .mlz-about-hero {
        padding: 90px 16px 72px;
    }

    .mlz-about-hero-title {
        font-size: 30px;
    }

    .mlz-about-section {
        padding: 90px 16px 100px;
    }

    .mlz-about-body {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mlz-about-hero {
        padding: 80px 14px 80px;
    }

    .mlz-about-hero-nav {
        bottom: -26px;
        height: 50px;
        padding: 0 22px;
    }

    .mlz-about-title {
        font-size: 24px;
    }

    .mlz-about-subtitle {
        font-size: 13px;
    }
}



/* ===========================
   Company History (Timeline)
=========================== */

.mlz-history-section {
    position: relative;
    padding: 120px 0 140px;
    background: #f8fafc;
    font-family: 'Pretendard', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.mlz-history-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* 헤더 */
.mlz-history-header {
    text-align: left;
    max-width: 640px;
    margin-bottom: 64px;
}

.mlz-history-eyebrow {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #6366f1;
    margin-bottom: 12px;
}

.mlz-history-title {
    font-size: 36px;
    line-height: 1.25;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 18px;
}

.mlz-history-sub {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
}

/* 타임라인 본문 */
.mlz-history-body {
    position: relative;
    padding-left: 40px;
    border-left: 1px solid transparent; /* 축 위치를 위한 공간 */
}

/* 중앙 축 */
.mlz-history-axis {
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(
        180deg,
        rgba(59,130,246,.15),
        rgba(56,189,248,.4),
        rgba(34,197,94,.4),
        rgba(59,130,246,.15)
    );
    box-shadow: 0 0 0 1px rgba(148,163,184,0.25);
}

/* 연도별 블럭 */
.mlz-history-year-block {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 24px;
    margin-bottom: 40px;
    padding-left: 24px; /* 축에서 카드까지 간격 */
}

/* 연도 배지 */
.mlz-history-year-badge {
    position: relative;
    width: 96px;
    height: 96px;
    border-radius: 32px;
    background: radial-gradient(circle at 20% 0,
        rgba(56,189,248,0.3),
        rgba(37,99,235,0.9)
    );
    box-shadow:
        0 18px 40px rgba(15,23,42,0.45),
        0 0 0 1px rgba(148,163,184,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e5f2ff;
}

.mlz-history-year-text {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

/* 카드 */
.mlz-history-card {
    position: relative;
    padding: 22px 26px 20px;
    border-radius: 22px;
    background:
        radial-gradient(circle at top left,
            rgba(59,130,246,0.12),
            transparent 55%) ,
        #ffffff;
    box-shadow:
        0 18px 45px rgba(15,23,42,0.10),
        0 0 0 1px rgba(226,232,240,0.9);
    overflow: hidden;
}

.mlz-history-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    border: 1px solid transparent;
    border-image: linear-gradient(
        135deg,
        rgba(59,130,246,0.4),
        rgba(56,189,248,0.4),
        rgba(34,197,94,0.4)
    ) 1;
    opacity: 0.55;
    pointer-events: none;
}

.mlz-history-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

/* 리스트 */
.mlz-history-list {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.mlz-history-list li {
    position: relative;
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 4px;
}

.mlz-history-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.9em;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 0,
        #38bdf8,
        #6366f1
    );
    box-shadow: 0 0 0 4px rgba(129,140,248,0.18);
}

/* 연속 느낌을 위한 마지막 margin 조정 */
.mlz-history-year-block:last-of-type {
    margin-bottom: 0;
}

/* 반응형 */
@media (max-width: 1024px) {
    .mlz-history-section {
        padding: 96px 0 120px;
    }

    .mlz-history-title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .mlz-history-body {
        padding-left: 0;
    }

    .mlz-history-axis {
        left: 18px;
    }

    .mlz-history-year-block {
        grid-template-columns: minmax(0, 1fr);
        padding-left: 40px;
    }

    .mlz-history-year-badge {
        width: 76px;
        height: 76px;
        border-radius: 24px;
    }

    .mlz-history-year-text {
        font-size: 18px;
    }

    .mlz-history-card {
        padding: 18px 18px 16px;
    }
}
