@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap');

@font-face {
    font-family: 'Yeongwol';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2507-2@1.0/YeongwolTTF-Regular.woff2') format('woff2');
    font-weight: normal;
    font-display: swap;
}

/* --- 0. Reset & Base Styles --- */
/* --- 1. Typography --- */
/* --- 2. Common Components --- */
/* --- 3. Header & Navigation --- */
/* --- 4. Main --- */
/* --- 서브페이지 공통 --- */
/* --- 회사소개 --- */
/* --- 9. Scroll Animation --- */
/* --- contact us --- */
/* --- Footer --- */


:root {
    /* Colors */
    --navy-dark: #1A2B4C;
    --navy-light: #183048;
    --orange: #FF7800;
    --white: #ffffff;
    --gray-bg: #f8f9fa;
    --text-main: #333;
    --text-light: #666666;
    --text-muted: #64748b;
    --border-default: #eee;
    --border-strong: #222;
    --border-accent: #ffe5d0;

    /* Typography */
    /* --font-main: 'Pretendard Variable', sans-serif; */
    --font-main: 'Noto Sans KR', sans-serif;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Typography Scale*/
    --font-size-xs: 0.75rem;
    /* 12px */
    --font-size-sm: 0.875rem;
    /* 14px */
    --font-size-base: 1rem;
    /* 16px */
    --font-size-lg: 1.125rem;
    /* 18px */
    --font-size-xl: 1.25rem;
    /* 20px */
    --font-size-2xl: 1.5rem;
    /* 24px */
    --font-size-3xl: 1.875rem;
    /* 30px */
    --font-size-4xl: 2.25rem;
    /* 36px */
    --font-size-5xl: 3rem;
    /* 48px */
    --font-size-6xl: 4rem;
    /* 64px */

    /* Line Heights */
    --line-height-none: 1;
    --line-height-tight: 1.2;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.6;
    --line-height-loose: 1.8;
    --line-height-extra: 2;

    /* Spacing Scale*/
    --space-1: 0.25rem;
    /* 4px */
    --space-2: 0.5rem;
    /* 8px */
    --space-3: 0.75rem;
    /* 12px */
    --space-4: 1rem;
    /* 16px */
    --space-5: 1.25rem;
    /* 20px */
    --space-6: 1.5rem;
    /* 24px */
    --space-8: 2rem;
    /* 32px */
    --space-10: 2.5rem;
    /* 40px */
    --space-12: 3rem;
    /* 48px */
    --space-16: 4rem;
    /* 64px */
    --space-20: 5rem;
    /* 80px */
    --space-24: 6rem;
    /* 96px */

    /* Layout */
    --container-max-width: 1200px;
    --border-radius-sm: 4px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 24px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-header: 0 4px 20px rgba(0, 0, 0, 0.08);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.4s ease-in-out;
}

/* --- 0. Reset & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    color: var(--text-main);
    background-color: var(--white);
    overflow-x: hidden;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

div,
p,
span,
strong {
    word-break: keep-all;
}

/* --- 1. Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    color: var(--text-main);
    margin: 0;
}

h1 {
    margin-bottom: var(--space-8);
    font-size: var(--font-size-6xl);
    line-height: var(--line-height-tight);
    font-weight: var(--font-weight-bold);
}

h2 {
    margin-bottom: var(--space-6);
    font-size: var(--font-size-4xl);
    line-height: var(--line-height-tight);
    font-weight: var(--font-weight-bold);
}

h3 {
    margin-bottom: var(--space-5);
    font-size: var(--font-size-2xl);
    line-height: var(--line-height-normal);
    font-weight: var(--font-weight-semibold);
}

h4 {
    font-size: var(--font-size-xl);
    line-height: var(--line-height-normal);
    font-weight: var(--font-weight-semibold);
}

h5 {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-normal);
    font-weight: var(--font-weight-medium);
}

p {
    font-size: var(--font-size-base);
    line-height: var(--line-height-loose);
    margin: 0;
}

/* --- 2. Common Components --- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.highlight {
    color: var(--orange);
    font-weight: var(--font-weight-semibold);
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--space-5);
}

.card {
    background: var(--white);
    border: 1px solid var(--border-default);
    padding: 20px;
    text-align: center;
    border-radius: var(--border-radius-md);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
    gap: var(--space-6);
    margin-bottom: 50px;
}

.grid-col2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-col3 {
    grid-template-columns: repeat(3, 1fr);
}

.gird-col4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid-col5 {
    grid-template-columns: repeat(5, 1fr);
}

.card {
    display: flex;
    background: var(--white);
    border: 1px solid #eee;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base);
    min-height: 250px;
}

.table-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.table {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-2) 0 var(--space-6);
    border-top: 2px solid var(--border-strong);
    min-width: 800px;
    border-collapse: collapse;
    table-layout: fixed;
}

.table table th,
.table table td {
    padding: var(--space-6) var(--space-5);
    border-left: none;
    border-right: none;
    text-align: center;
    border-bottom: 1px solid var(--border-default);
}

.table table thead th {
    background-color: var(--gray-bg);
    font-weight: var(--font-weight-semibold);
}

.table table td {
    background-color: var(--white);
}

.table-wrapper table th:first-child,
.table-wrapper table td:first-child {
    width: 135px;
    position: sticky;
    left: 0;
    z-index: 2;
}

.table table td.highlight,
.table table th.highlight {
    background-color: rgba(255, 120, 0, 0.03);
    border-left: 1px solid var(--border-accent);
    border-right: 1px solid var(--border-accent);
}

.scroll-hint {
    display: none;
    text-align: right;
    font-size: var(--font-size-sm);
    color: var(--text-light);
    padding-right: 5px;
}

.title-content {
    padding: var(--space-24) 0;
    margin-top: 70px;
    background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url(/static/images/title-bg.png) center center no-repeat;
    background-size: cover;
    text-align: center;
}

.title-content h1 {
    color: var(--white);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-4xl);
}

/* --- 9. Scroll Animation --- */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}



/* --- 3. Header & Navigation --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;

    color: var(--text-main);
}

.main .header:not(.is-active):not(.is-scrolled) {
    background-color: transparent;
    border-bottom: 1px solid transparent;
    color: var(--white);
}


.main .header:not(.is-active):not(.is-scrolled) .logo {
    background-image: url('/static/images/logo_white.png');
}

.main .header:not(.is-active):not(.is-scrolled) .nav-btn {
    border-color: var(--white);
}

.header .logo {
    width: 150px;
    height: 50px;
    background: url('/static/images/logo_color.png') center center no-repeat;
    background-size: cover;
    background-size: 100%;
}

.header .logo a {
    display: block;
    width: 100%;
    height: 100%;
}

.header.is-active,
.header.is-scrolled {
    background-color: var(--white);
    border-bottom: 1px solid #eaeaea;
}

.header.is-active .gnb-item>a,
.header.is-scrolled .gnb-item>a {
    color: inherit;
}

.header.is-active {
    height: 320px;
}

.header .container {
    position: relative;
    margin: 0 auto;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.gnb {
    height: 100%;
}

.gnb-list {
    display: flex;
    height: 100%;
}

.gnb-item {
    padding: 0 var(--space-10);
    height: 100%;
}

.gnb-item>a {
    display: flex;
    align-items: center;
    height: 100%;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
}

.sub-menu {
    position: absolute;
    top: 80px;
    padding-top: var(--space-5);
    padding-bottom: var(--space-5);
    opacity: 0;
    visibility: hidden;
}

.header.is-active .sub-menu {
    opacity: 1;
    visibility: visible;
}

.sub-menu-item {
    margin-bottom: 12px;
}

.sub-menu-item a {
    font-size: 15px;
    color: var(--text-light);
    display: block;
    white-space: nowrap;
}

.sub-menu-item a:hover {
    color: var(--orange);
}

.menu-toggle {
    display: none;
}

.nav-btn {
    border: 1px solid var(--text-main);
    padding: var(--space-2) var(--space-5);
    border-radius: var(--border-radius-xl);
    transition: var(--transition-base);
    font-size: var(--font-size-sm);
    color: inherit;
}

.nav-btn:hover {
    background: var(--navy-dark);
    color: var(--white);
}


/* mobile */
body.no-scroll {
    overflow: hidden;
}

.m-menu-btn {
    display: none;
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 1100;
    flex-direction: column;
    justify-content: space-between;
}

.m-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    transition: all 0.3s ease;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100%;
    background-color: var(--white);
    z-index: 200;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 100px 0 40px;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mobile-nav.is-open {
    right: 0;
}

.m-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.m-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.m-gnb {
    width: 100%;
}

.m-gnb-item {
    border-bottom: 1px solid #f5f5f5;
}

.m-gnb .title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.m-gnb .has-sub .title::after {
    content: '+';
    font-size: 22px;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.m-gnb-item.is-open.has-sub .title::after {
    content: '-';
    transform: rotate(180deg);
}

.m-sub-list {
    background-color: #f9f9f9;
    padding: 0 30px;
    display: none;
}

.m-sub-item {
    padding: 12px 0;
}

.m-sub-item a {
    font-size: 15px;
    color: var(--text-light);
    display: block;
}

.m-sub-item a:hover {
    color: var(--orange);
}

/* --- Media Query --- */
@media screen and (max-width: 1024px) {

    .gnb,
    .nav-btn {
        display: none;
    }

    .m-menu-btn {
        display: flex;
    }

    .main-header.is-active {
        height: 80px;
    }

    .main-header.is-active::before {
        display: none;
    }
}











/* --- 4. Main --- */
.main .section {
    padding: var(--space-24) 0;
}

.main .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-10);
}

.main .section-title .subtitle {
    color: var(--orange);
}

.slide-section {
    height: 80vh;
    min-height: 400px;
    background: url(/static/images/slide_main1.png) center center no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
}

.slide-section .container {
    width: 100%;
}

.slide-section h1 {
    font-size: var(--font-size-5xl);
    color: var(--white);
    margin-bottom: var(--space-5);
    line-height: var(--line-height-tight);
}

.slide-section p {
    color: var(--white);
    font-size: var(--font-size-lg);
    line-height: var(--line-height-relaxed);
}

.section-title .subtitle {
    color: var(--orange);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title .title {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--space-5);
    font-weight: var(--font-weight-bold);
}

.section-header .description {
    color: var(--text-light);
    max-width: 600px;
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
}

.main .card {
    padding: 0;
    text-align: left;
}

.main .card .card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.main .card .card-body {
    flex: 1;
    padding: var(--space-8);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main .card .card-body .label {
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-xs);
    color: var(--text-light);
}

.main .card .card-body .title {
    color: var(--navy-light);
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-4);
    font-weight: var(--font-weight-semibold);
}

.main .card .card-body .desc {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    margin-bottom: var(--space-8);
    line-height: var(--line-height-relaxed);
}

.main .card .card-image {
    position: relative;
    width: 40%;
}

.main .card .card-image img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-link {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    color: var(--text-main);
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-base);
    overflow: visible;
}

.card-link svg {
    transform-origin: left center;
    transition: transform var(--transition-fast);
}

.card-link:hover svg {
    fill: var(--orange);
    transform: translateX(8px);
}

.card-link:hover {
    color: var(--orange);
    stroke: var(--orange);
    fill: var(--orange);
}

.partners {
    background-color: var(--white);
}

.partners .logo-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-6);
}

.logo-box {
    flex: 0 0 20%;
    padding: var(--space-5) var(--space-10);
    color: #999;
    border-radius: var(--border-radius-sm);
    font-weight: var(--font-weight-bold);
}

.logo-box img {
    object-fit: contain;
}

.contact-section {
    background-color: #f9f9f9;
}

.contact-card {
    background: var(--white);
    display: flex;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact-card .image {
    width: 40%;
    background-image: url(/static/images/main/contactus.png);
    background-size: cover;
}

.contact-card .info {
    padding: var(--space-10);
    flex: 1;
}

.contact-details {
    display: flex;
    gap: var(--space-10);
    margin-top: var(--space-8);
}

.detail-item {
    display: flex;
    gap: var(--space-4);
    align-items: center;
}

.detail-item small {
    color: var(--text-light);
    font-size: var(--font-size-sm);
}




.check-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: var(--space-6);
    gap: var(--space-6);
}

.check-list li {
    position: relative;
    flex: 0 0 calc(50% - var(--space-6)/2);
    padding-left: var(--space-6);
    line-height: var(--line-height-extra);

}

/* --- 서브페이지 공통 --- */
.mobile-dropdown-btn{
    display:none;
}

.subnav-content {
    border-bottom: 1px solid var(--border-default);
}

.subnav-content ul {
    display: flex;
    justify-content: center;
    gap: var(--space-20);
}

.subnav-content ul li a {
    display: block;
    padding: var(--space-3) var(--space-4);
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
    position: relative;
    color: var(--text-main);
}

.subnav-content ul li.active a {
    color: var(--orange);
    font-weight: var(--font-weight-bold);
}

.page-content {
    padding: var(--space-24) 0;
}

.page-content h2 {
    margin-bottom: var(--space-24);
    padding-bottom: var(--space-2);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-4xl);
    line-height: var(--line-height-loose);
    text-align: center;
}

.check-list li::before {
    content: "\2714";
    position: absolute;
    left: 0;
    top: 0.1em;
    color: var(--orange);
    font-weight: var(--font-weight-semibold);
}

.content-block {
    margin-bottom: var(--space-24);
}

.content-block>p {
    margin-bottom: var(--space-10);
}

.page-nav {
    display: flex;
    justify-content: center;
    border: 1px solid var(--border-default);
    border-radius: var(--border-radius-lg);
    padding: var(--space-3);
    margin-bottom: var(--space-20);
}

.page-nav .page-nav-item {
    flex: 1 auto;
    text-align: center;
    padding: var(--space-2);
}

.page-nav .page-nav-item.active {
    background-color: var(--navy-dark);
    color: var(--white);
    border: 1px solid var(--navy-dark);
    border-radius: var(--border-radius-md);
}





/* --- 회사소개 --- */
.intro-content .page-body {
    background-image: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 100%, rgba(255, 255, 255, 1) 100%), url(/static/images/intro-bg.png);
    background-size: auto;
    background-position: left center;
    background-repeat: no-repeat;
    border-radius: var(--border-radius-lg);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: var(--space-5);
}

.intro-content .intro-text {
    text-align: left;
    max-width: 50%;
}

.intro-content .intro-text p {
    padding-bottom: var(--space-3);
    margin-bottom: var(--space-2);
}

.intro-content .intro-text .last span {
    font-family: 'Yeongwol';
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-semibold);
}

.intro-content .intro-text .last {
    text-align: right;
}

.skill-card {
    flex-direction: column;
}

.skill-card .img {
    width: 100%;
    height: 90%;
}

.skill-card .caption {
    padding-top: var(--space-3);
    font-weight: var(--font-weight-medium);
    text-align: center;
}

.vision-card {
    flex-direction: column;
    justify-content: center;
    padding: var(--space-12) var(--space-10);
    border-top: 5px solid var(--navy-dark);
}

.vision-card .label {
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-sm);
    color: #002d56;
    margin-bottom: var(--space-5);
    letter-spacing: 3px;
    opacity: 0.6;
}

.vision-card .title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-medium)
}

.strategy {
    background: var(--navy-dark);
    padding: 60px 40px;
    border-radius: 20px;
    color: var(--white);
}

.strategy-title {
    font-size: var(--font-size-2xl);
    text-align: center;
    margin-bottom: var(--space-12);
    letter-spacing: 1px;
    color: var(--white);
    font-weight: var(--font-weight-semibold);
}

.strategy-item {
    font-size: var(--font-size-xl);
    margin-bottom: 15px;
    word-break: keep-all;
}

.strategy-item .number {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    color: #4dabf7;
    display: block;
    margin-bottom: var(--space-4);
}

.strategy-item .title {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--space-4);
    color: var(--white);
}

.strategy-item .description {
    font-size: 15px;
    color: #ccc;
    line-height: 1.7;
}


/* --- 사업분야 -=-- */
.notice-box {
    position: relative;
    background-color: #f1f3f5;
    border-radius: 8px;
    padding: 15px 20px;
    display: flex;
    align-items: top;
    gap: 12px;
}

.notice-box::before {
    content: 'i';
    background-color: #1D3557;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: var(--font-weight-bold);
    text-align: center;
}

.notice-box p {
    font-size: 14px;
}

.highlight-block {
    margin-bottom: var(--space-20);
    background-color: #f1f3f5;
    border-radius: 12px;
    padding: var(--space-16) var(--space-12);
    position: relative;
    text-align: center;
    overflow: hidden;
    border-top: 4px solid var(--orange);
}

.highlight-block:before,
.highlight-block:after {
    content: '“';
    position: absolute;
    font-size: 120px;
    color: var(--orange);
    opacity: 0.1;
}

.highlight-block:before {
    top: -10px;
    left: 30px;
}

.highlight-block:after {
    content: '”';
    bottom: -60px;
    right: 30px;
}

.highlight-text {
    color: var(--navy-dark);
    font-size: var(--font-size-xl);
    font-weight: 600;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.info-list {
    margin-top: var(--space-10);
}

.info-list .info-item {
    position: relative;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: var(--space-8) var(--space-4);
    border-radius: var(--border-radius-md);
    background-color: var(--white);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);

}

.info-list .info-item .num {
    position: absolute;
    top: 0px;
    left: 5px;
    font-size: var(--font-size-6xl);
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px #eeeeee;
    letter-spacing: -4px;
    z-index: 0;
    line-height: 1;

}

.info-list .info-item .img {
    width: 65px;
    height: 65px;
    z-index: 1;
}

.info-list .info-item .title {
    margin-top:var(--space-5);
    margin-bottom:var(--space-3);
    font-weight: var(--font-weight-semibold);
}

.info-list .info-item .txt {
    line-height: var(--line-height-normal);
}

.example-list {
    display: flex;
    justify-content: space-between;
    background-color: var(--gray-bg);
    padding: var(--space-8);
    gap: var(--space-8)
}

.process-list {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.process-list::before {
    content: '';
    position: absolute;
    top: 70px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border-default);
    z-index: 0;
}

.process-item {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    position: relative;
}

.process__stepnode {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-8);
}

.process__icon {
    width: 120px;
    height: 120px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
    border: 1px solid var(--border-default);
    border-radius: var(--border-radius-md);
}

.process__icon img {
    width: 70%;
    height: auto;
    filter: grayscale(1) opacity(0.7);
}

.process__title {
    font-weight: var(--font-weight-semibold);
    text-align: center;
    word-break: keep-all;
    letter-spacing: -0.5px;
}

.step-1 .process__stepnode {
    background-color: #1A2B4C;
}

.step-2 .process__stepnode {
    background-color: #2D4B7A;
}

.step-3 .process__stepnode {
    background-color: #4A89A4;
}

.step-4 .process__stepnode {
    background-color: #E69138;
}

.step-5 .process__stepnode {
    background-color: #FF7800;
}

.gene-box{
position:relative;
}

.genome-bar {
    height: 30px;
    border: 1px solid var(--navy-dark);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    background: var(--white);
}

.genome-bar .seg {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
}

.genome-bar .seg+.seg {
    border-left: 1px solid var(--navy-dark);
}

.genome-bar .seg::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(135deg,
            rgba(0, 0, 0, .06) 0 2px,
            rgba(0, 0, 0, 0) 2px 10px);
    opacity: .75;
    pointer-events: none;
}

.genome-bar .seg span {
    position: relative;
    z-index: 1;
}

.s1 {
    flex: 2;
}

.sits {
    flex: 1;
}

.s3 {
    flex: 1.5;
}

.s2 {
    flex: 2;
}

.sv {
    flex: 1.7;
}

.segline{
    position: absolute;
    left: 50%;
    bottom: -35px;
    padding:0 var(--space-8);
    border-top:2px solid var(--navy-dark);
    transform: translateX(-50%);
}

.gene-item {
    margin-bottom: var(--space-4);
}

.gene__title {
    text-align: left;
    padding-bottom: var(--space-2);
}

.genome-bar .s1::before {
    background: repeating-linear-gradient(135deg,
            rgba(29, 53, 87, 0.14) 0 2px,
            transparent 2px 12px);
}

.genome-bar .s1::before {
    background: repeating-linear-gradient(135deg, rgba(53, 46, 117, 0.3) 0 2px, rgba(0, 0, 0, 0) 2px 10px);
}

.genome-bar .s2::before {
    background: repeating-linear-gradient(135deg, rgba(255, 129, 27, 0.3) 0 2px, transparent 2px 12px);
}

.genome-bar .s3::before {
    background: repeating-linear-gradient(135deg,
            rgba(97, 244, 134, 0.3) 0 2px,
            transparent 2px 12px);
}



/* --- contact us --- */
.map-info .card {
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.map-info .icon {
    width: 60px;
    height: 60px;
    padding: var(--space-2);
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #032331 0%, #4A7591 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(3, 35, 49, 0.3);
}

.map-info .label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-5);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.map-info .txt {
    line-height: var(--line-height-relaxed);
    font-weight: var(--font-weight-medium);
}


.customoverlay {position:relative;width:130px;height:43px;bottom:55px;border-radius:6px;border: 1px solid #ccc;border-bottom:2px solid #ddd;float:left;}
.customoverlay img {display:block;width:90%;height:auto;margin:0 auto;background:#fff;}
.customoverlay:after {content:'';position:absolute;margin-left:-12px;left:50%;bottom:-12px;width:22px;height:12px;background:url('https://t1.daumcdn.net/localimg/localimages/07/mapapidoc/vertex_white.png')}


/* --- notice --- */

  .notice-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-bottom:12px;
  }
  .notice-top .count{
    font-size:14px;
    color: var(--muted);
  }
  .notice-top .count strong{ color: var(--orange); }
  .search{
    display:flex;
    align-items:center;
    gap:8px;
  }

  .search-box form{
display: flex;
    align-items: center;
    max-width: 500px;
    height: 50px;
    margin: 0px auto;
    box-sizing: border-box;
    border: 1px solid var(--border-default);
    background-color: #fff;
    border-radius: var(--border-radius-lg);
  }

  .select{
    height:40px;
    padding:0 12px;
    border:1px solid var(--line);
    border-radius:10px;
    background: var(--bg);
    color: var(--text);
    outline:none;
  }
  .input{
    display:flex;
    align-items:stretch;
    border:1px solid var(--line);
    border-radius:10px;
    overflow:hidden;
    background: var(--bg);
  }
  .input input{
    width: 220px;
    border:0;
    outline:none;
    padding:0 12px;
    font-size:14px;
    color: var(--text);
    background: transparent;
  }



.search .btn{
  width:40px;
  height:40px;
  border:1px solid var(--navy-dark);
  border-radius:50%;
  background:
    var(--navy-dark)
    url("/static/images/search.svg")
    no-repeat
    center;
  background-size:18px 18px;
  cursor:pointer;
}


.pagination{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:10px 0;
  }

  .pagination a{
    width:36px;
    height:36px;
    display:inline-flex;
    align-items:center;
    justify-content:center;

    border:1px solid #d9d9d9;
    border-radius:4px;
    background-color: var(--white);
    text-decoration:none;
    font-size:14px;
    line-height:1;
    user-select:none;
  }

    .pagination a:hover{
    background:#f5f5f5;
    border-color:#cfcfcf;
  }


    .pagination a.active{
    background-color:var(--navy-dark);
    border-color:var(--navy-dark);
    color:var(--white);
    font-weight:var(--font-weight-semibold);
    cursor:default;
    pointer-events:none;
  }

  .page-arrow{
    background:#fafafa;
  }

  .page-arrow.disabled{
    opacity:.45;
    pointer-events:none;
    background:#fafafa;
  }




/* --- Footer --- */
footer {
    background: #111;
    color: #666;
    padding: var(--space-10) 0;
    font-size: var(--font-size-xs);
}

.footer-content {
    display: flex;
    justify-content: space-between;
}

.footer-logo {
    width: 200px;
    height: 58px;
}

footer p {
    line-height: var(--line-height-normal);
}