
   /* 1. ±âº» ½ºÅ¸ÀÏ ÃÖÀûÈ­ */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Pretendard', sans-serif;
        -webkit-tap-highlight-color: transparent;
    }

    body { background-color: #fff; color: #111; line-height: 1.4; }
    ul { list-style: none; }
    a { text-decoration: none; color: inherit; display: block; }

/* 2. Çì´õ ¼öÁ¤ (¹ÝÅõ¸í À¯¸® È¿°ú Àû¿ë) */
.header {
    /*position: fixed;*/
    top: 0;
    width: 100%;
    height: 60px;
    
    /* 30~40% Á¤µµÀÇ ÇÏ¾á»ö ¹ÝÅõ¸í ¹è°æ */
    background: rgba(255, 255, 255, 0.35); 
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    z-index: 1000;
    
    /* ÇÏ´Ü °æ°è¼±µµ »ìÂ¦ Åõ¸íÇÏ°Ô */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05); 
}

/* (Ãß°¡ ÆÁ) ¹è³Ê ÀÌ¹ÌÁö À§¿¡¼­ ·Î°í¿Í ¾ÆÀÌÄÜÀÌ Àß º¸ÀÌµµ·Ï 
   Çì´õ ¿ä¼Òµé¿¡ ¾à°£ÀÇ ´ëºñ¸¦ ÁÝ´Ï´Ù. */
.header .logo, .btn-icon {
    color: #111;
}

/* ½ºÅ©·Ñ ½Ã ºÙ´Â »óÅÂ */
.header.fixed {
    position: fixed;
    top: 0;
    left: 0;
}


/* ½ºÅ©·Ñ ½Ã Çì´õ ¹è°æ»öÀ» ÀÔÈ÷°í ½ÍÀ» ¶§ »ç¿ëÇÒ Å¬·¡½º (¼±ÅÃ »çÇ×) */
.header.scrolled {
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

    .header .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        font-size: 1.2rem;
        font-weight: 800;
        text-transform: uppercase;
    }

    .btn-icon {
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        color: #111;
        display: flex;
        align-items: center;
    }

    /* 3. »çÀÌµå ¸Þ´º & ¾ÆÄÚµð¾ð (ÅëÇÕ ¹× µðÀÚÀÎ °­È­) */
    .menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(2px); /* ¹è°æ ºí·¯ È¿°ú */
        display: none;
        z-index: 2000;
    }

    .side-menu {
        position: fixed;
        top: 0;
        left: -280px;
        width: 280px;
        height: 100%;
        background: #fff;
        z-index: 2001;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        box-shadow: 10px 0 20px rgba(0,0,0,0.05);
    }

    .side-menu.active { left: 0; }

    .main-link {
        padding: 16px 24px;
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: -0.5px;
        border-bottom: 1px solid #f9f9f9;
    }

    .menu-link-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 24px;
        cursor: pointer;
        transition: background 0.2s;
        width: 100%;
    }

    .menu-link-wrapper:active { background: #f5f5f5; }

    .menu-text {
        flex: 1;
        font-size: 1rem;
        color: #111;
    }

    /* --- ¼­ºê¸Þ´º µðÀÚÀÎ --- */
    .sub-menu { 
        display: none; 
        background: #fafafa; /* 2Â÷ ¸Þ´º ¹è°æ */
        padding: 5px 0;
        animation: fadeInMenu 0.3s ease-out;
    }

    .sub-menu a, 
    .sub-menu .menu-link-wrapper {
        padding: 12px 24px 12px 35px; /* µé¿©¾²±â Á¶Á¤ */
        font-size: 0.9rem;
        color: #666;
        font-weight: 500;
    }

    /* 3Â÷ ¸Þ´º (±íÀº ´Ü°è) */
    .depth-3 { 
        background: #f1f1f1; /* 3Â÷ ¸Þ´º ¹è°æ Â÷º°È­ */
    }

    .depth-3 a {
        padding: 10px 24px 10px 50px;
        font-size: 0.85rem;
        color: #888;
    }

    /* È°¼ºÈ­ ½ºÅ¸ÀÏ */
    .menu-item.active > .menu-link-wrapper .menu-text {
        font-weight: 700;
        color: #ff5a5f; /* Æ÷ÀÎÆ® ÄÃ·¯ */
    }

    .menu-item.active > .sub-menu { display: block; }

    /* È­»ìÇ¥ µðÀÚÀÎ */
    .arrow {
        width: 6px;
        height: 6px;
        border-top: 1.5px solid #bbb;
        border-right: 1.5px solid #bbb;
        transform: rotate(135deg);
        transition: 0.3s ease;
        flex-shrink: 0;
        margin-left: 10px;
    }

    .menu-item.active > .menu-link-wrapper .arrow {
        transform: rotate(-45deg);
        border-color: #333;
    }

    /* ¾Ö´Ï¸ÞÀÌ¼Ç ¹× ±âÅ¸ */
    @keyframes fadeInMenu {
        from { opacity: 0; transform: translateY(-5px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .close-btn { 
        position: absolute; 
        top: 15px; 
        right: 15px; 
        font-size: 1.5rem; 
        color: #ddd;
        border: none; 
        background: none; 
        cursor: pointer;
    }



    /* 4. °Ë»ö ·¹ÀÌ¾î */
    .search-overlay {
        position: fixed;
        inset: 0;
        background: #fff;
        z-index: 3000;
        display: none;
        flex-direction: column;
    }

    .search-header { display: flex; align-items: center; padding: 10px 16px; gap: 12px; border-bottom: 1px solid #f0f0f0; }
    .search-input-wrapper { flex: 1; background: #f5f5f5; border-radius: 8px; display: flex; padding: 0 12px; align-items: center; }
    
    #searchInput { width: 100%; height: 44px; border: none; background: none; outline: none; font-size: 1rem; }
    .search-close { background: none; border: none; color: #333; white-space: nowrap; font-size: 0.95rem; }

    .search-body { padding: 30px 20px; }
    .tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 15px; }
    .tag { padding: 7px 15px; background: #f2f2f2; border-radius: 20px; font-size: 0.85rem; color: #444; }

    .content { padding: 40px 20px; text-align: center; color: #ccc; height: 1000px; }
	

/* »çÀÌµå ¸Þ´º ³» ·Î±×ÀÎ/ÇÁ·ÎÇÊ ¿µ¿ª */
.menu-auth-area {
    padding: 20px 20px;
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

/* ·Î±×ÀÎ Àü »óÅÂ */
.auth-before { display: flex; flex-direction: column; gap: 12px; }
.auth-before .msg { font-size: 18px; font-weight: 700; color: #111; line-height: 1.3; }
.auth-before .msg span { color: #e61e28; } /* Æ÷ÀÎÆ® ÄÃ·¯ */
.btn-login-go {
    display: inline-block;
    width: fit-content;
    padding: 8px 16px;
    background: #111;
    color: #fff;
    font-size: 13px;
    border-radius: 8px;
    font-weight: 500;
}

/* 1. ·Î±×ÀÎ ÈÄ »ó´Ü ÇÁ·ÎÇÊ ¿µ¿ª Á¤·Ä º¸Á¤ */
.auth-after { 
    display: none; 
    align-items: center; 
    justify-content: space-between; /* ·Î±×¾Æ¿ô ¹öÆ°À» ¿À¸¥ÂÊ ³¡À¸·Î */
    width: 100%;
}

.user-info .user-name { font-size: 16px; font-weight: 700; color: #111; margin-bottom: 2px; }
.btn-logout {
    margin-left: auto;
    font-size: 14px;
    color: #aaa;
    text-decoration: underline;
    cursor: pointer;
}

/* ·Î±×ÀÎ ÈÄ ³ªÅ¸³ª´Â Äü ¸Þ´º ½ºÅ¸ÀÏ */
.auth-quick-menu {
    display: none; /* ÃÊ±â »óÅÂ ¼û±è */
    padding: 5px 5px 5px;
}
/* 1Çà: 3¿­ ±×¸®µå (¸¶ÀÌÆäÀÌÁö, ÁÖ¹®¹è¼Û, Àå¹Ù±¸´Ï) */
.quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    margin-bottom: 6px;
}

/* 2. Äü ¸Þ´º ¾ÆÀÌÅÛ Å¬¸¯ ÇÇµå¹é °­È­ */
.quick-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px 0; /* ÆÐµù ¾à°£ È®´ë */
    background: #fff;
    border: 1px solid #eee;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
}
/* Å¬¸¯(ÅÍÄ¡) ½Ã »ìÂ¦ ÀÛ¾ÆÁö´Â È¿°ú·Î ¾Û °°Àº ´À³¦ Àü´Þ */
.quick-item:active { 
    background: #f8f8f8; 
    transform: scale(0.96); 
}

.quick-icon { font-size: 20px; margin-bottom: 6px; }
.quick-text { font-size: 12px; font-weight: 600; color: #444; }

/* 3. Ã¤ÆÃ¹®ÀÇ ¹öÆ° hover È¿°ú */
.btn-chat-inquiry {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 15px;
    background: #111;
    color: #fff;
    border-radius: 5px;
    font-size: 14px; /* °¡µ¶¼ºÀ» À§ÇØ »ìÂ¦ È®´ë */
    font-weight: 700;
    transition: background 0.2s;
}
.btn-chat-inquiry:active {
    background: #333;
}

.btn-chat-inquiry span { font-size: 16px; }
	/* 5. ¸ÞÀÎ ¹è³Ê ¿µ¿ª Ãß°¡ */
.main-banner {
    position: relative;
    width: 100%;
    height: 80vh; /* È­¸é ³ôÀÌÀÇ 80% Â÷Áö (Á¶Àý °¡´É) */
    background-color: #222; /* ÀÌ¹ÌÁö ·Îµù Àü ¹è°æ»ö */
    overflow: hidden;
}

.main-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ÀÌ¹ÌÁö°¡ ¿µ¿ªÀ» ²Ë Ã¤¿ìµµ·Ï ¼³Á¤ */
}

/* ¹è³Ê À§ ÅØ½ºÆ® ¿À¹ö·¹ÀÌ (¿É¼Ç) */
.banner-content {
    position: absolute;
    bottom: 50px;
    left: 20px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.banner-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
}

.banner-content p {
    font-size: 0.95rem;
    opacity: 0.9;
}
	
	/* [4. Àü¹®°¡ ¼½¼Ç ½ºÅ¸ÀÏ] - ¼¼·Î 1¿­ ¹èÄ¡ ¹öÀü */
.expert-section { padding: 80px 0; background: #fff; text-align: center; }
.expert-section .section-title { font-size: 32px; font-weight: 900; color: #000; margin-bottom: 15px; text-transform: uppercase; }
.expert-section .section-desc { font-size: 15px; color: #888; margin-bottom: 50px; }

.expert-grid { 
    max-width: 800px; /* ¼¼·Î ¹èÄ¡¸¦ À§ÇØ ÆøÀ» Á¼°Ô Á¶Á¤ */
    margin: 0 auto; 
    display: flex; 
    flex-direction: column; /* ¼¼·Î Á¤·Ä */
    gap: 20px; 
    padding: 0 20px; 
}

.expert-card { 
    display: flex; /* ÀÌ¹ÌÁö¿Í ÅØ½ºÆ® °¡·Î ¹èÄ¡ */
    align-items: center;
    background: #f8f9fb; 
    border-radius: 20px; 
    overflow: hidden; 
    text-align: left; 
    transition: 0.3s; 
    border: 1px solid #eee;
}

.expert-card:hover { transform: translateX(10px); background: #fff; border-color: #000; }

.expert-card .img-box { 
    width: 150px; /* ÀÌ¹ÌÁö °íÁ¤ Æø */
    height: 150px; 
    background: #eef1f5; 
    flex-shrink: 0; /* ÀÌ¹ÌÁö Å©±â À¯Áö */
}

.expert-card .img-box img { width: 100%; height: 100%; object-fit: cover; }

.expert-card .info-box { padding: 30px; }
.expert-card .info-box h4 { font-size: 20px; font-weight: 800; margin-bottom: 8px; color: #111; }
.expert-card .info-box p { font-size: 14px; color: #777; }

/* ¸ð¹ÙÀÏ ´ëÀÀ */
@media (max-width: 600px) {
    .expert-card { flex-direction: column; text-align: center; }
    .expert-card .img-box { width: 100%; height: 200px; }
    .expert-card .info-box { padding: 20px; }
}
/* [5. ³³Ç° »ç·Ê(Portfolio) ¼½¼Ç ½ºÅ¸ÀÏ] */
.portfolio-section {
    padding: 60px 0 100px;
    background: #fdfdfd;
}

.portfolio-section .section-header {
    max-width: 1280px;
    margin: 0 auto 30px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.portfolio-section .section-title {
    font-size: 24px;
    font-weight: 900;
    text-align: left;
}

/* 1Çà 2¿­ ±×¸®µå ¼³Á¤ */
.portfolio-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 1Çà 2°³ ¹èÄ¡ */
    gap: 15px; /* ¸ð¹ÙÀÏ ´ëÀÀ Á¼Àº °£°Ý */
    padding: 0 20px;
}

.portfolio-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.portfolio-card .img-box {
    width: 100%;
    aspect-ratio: 1 / 1; /* Á¤Á¤»ç°¢Çü ºñÀ² À¯Áö */
    background: #eee;
    overflow: hidden;
}

.portfolio-card .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .img-box img {
    transform: scale(1.05);
}

.portfolio-card .info-box {
    padding: 12px 5px;
}

.portfolio-card .info-box .client {
    font-size: 12px;
    color: #ff5a5f;
    font-weight: 700;
    margin-bottom: 4px;
}

.portfolio-card .info-box .title {
    font-size: 15px;
    font-weight: 700;
    color: #222;
    line-height: 1.4;
    /* µÎ ÁÙ ÀÌ»ó ³Ñ¾î°¥ ½Ã ¸»ÁÙÀÓ Ã³¸® */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}	
/* ½Å±Ô ´õº¸±â ¹öÆ° ½ºÅ¸ÀÏ - Áß¾Ó ¹èÄ¡ °­È­ */
.btn-more-view {
    display: flex; /* inline-flex¿¡¼­ flex·Î º¯°æ */
    align-items: center;
    justify-content: center;
    
    /* »ó´Ü ¿©¹é 40px, ÁÂ¿ì ¿©¹é auto·Î ¼³Á¤ÇÏ¿© Áß¾Ó Á¤·Ä */
    margin: 40px auto 0; 
    
    /* ¹öÆ° ³Êºñ¸¦ ¸ð¹ÙÀÏ¿¡¼­µµ ÀûÀýÇÏ°Ô À¯Áö (¾ç¿· 20px¾¿ ¿©¹é) */
    width: calc(100% - 40px); 
    max-width: 320px; /* ³Ê¹« ³Ð¾îÁöÁö ¾Ê°Ô ÃÖ´ëÆø Á¦ÇÑ */
    
    height: 54px;
    background-color: #fff;
    color: #222;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    outline: none;
}

.btn-more-view:hover {
    background-color: #222;
    color: #fff;
    border-color: #222;
}

/* È­»ìÇ¥ ¾Ö´Ï¸ÞÀÌ¼Ç µ¿ÀÏ */
.btn-more-view svg {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-more-view:hover svg {
    transform: translateX(4px);
}

/* [6. FAQ ¼½¼Ç ½ºÅ¸ÀÏ] */
.faq-section {
    padding: 60px 20px 80px;
    background: #fff;
}

.faq-header {
    margin-bottom: 40px;
    text-align: left;
}

.faq-header h2 {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -1px;
}

.faq-container {
    max-width: 1280px;
    margin: 0 auto;
    border-top: 2px solid #111; /* »ó´Ü °­Á¶¼± */
}

.faq-item {
    border-bottom: 1px solid #eee;
    background: #fff;
}

.faq-question {
    width: 100%;
    padding: 22px 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    color: #222;
    transition: 0.3s;
}

.faq-question:hover {
    color: #ff5a5f;
}

.faq-toggle-icon {
    font-size: 20px;
    font-weight: 300;
    color: #bbb;
    transition: transform 0.3s ease;
}

/* ´äº¯ ¿µ¿ª ¾Ö´Ï¸ÞÀÌ¼Ç */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f9f9f9;
}

.faq-item.active .faq-answer {
    max-height: 100%; /* ´äº¯ ³»¿ë¿¡ µû¶ó ³Ë³ËÈ÷ Á¶Àý */
}

.faq-item.active .faq-question {
    color: #ff5a5f;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg); /* +°¡ x·Î º¯ÇÏ´Â È¿°ú */
    color: #ff5a5f;
}

.faq-answer-inner {
    padding: 20px 15px 25px;
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    word-break: keep-all;
}



/* [7. Footer ¼½¼Ç ½ºÅ¸ÀÏ] */
.footer {
    background-color: #1a1a1a; /* ¸ÅÆ® ºí·¢ ¹è°æ */
    color: #fff;
    padding: 60px 20px 80px;
    font-size: 13px;
    line-height: 1.8;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 25px;
    display: block;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
}

.footer-info {
    color: #999;
    margin-bottom: 30px;
}

.footer-info b {
    color: #ddd;
    font-weight: 500;
}

.footer-contact {
    margin-bottom: 35px;
}

.footer-contact .tel {
    font-size: 24px;
    font-weight: 800;
    color: #ff5a5f; /* Æ÷ÀÎÆ® ÄÃ·¯ */
    display: block;
    margin-bottom: 5px;
}

.footer-contact .hours {
    color: #888;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.copyright {
    color: #666;
    font-size: 12px;
}

.footer-links {
/*
    display: flex;*/
	    display: block;
    gap: 15px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-weight: 600;
}

.footer-links a.bold {
    color: #ddd;
}


/*
Á¦ÀÛ ÇÁ·Î¼¼½º CSS START
*/
:root {
	--primary-blue: #0055ff;
	--text-dark: #111;
	--text-gray: #444;
	--text-light: #888;
	--bg-gray: #f9f9fb;
	--border-color: #eee;
}


/* ¸ð¹ÙÀÏ Çì´õ */
.m-header {
	padding: 100px 20px;
	background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
					  url('https://cdn.imweb.me/thumbnail/20221216/1886d2623d0e2.jpg');
	background-size: cover;
	background-position: center;
	text-align: center;
	color: #fff;
}
.m-header h1 { font-size: 0.9rem; letter-spacing: 3px; margin-bottom: 15px; opacity: 0.8; }
.m-header h2 { font-size: 1.6rem; font-weight: 800; line-height: 1.4; word-break: keep-all; }

/* ÇÁ·Î¼¼½º ÄÁÅ×ÀÌ³Ê */
.m-process-container {
    padding: 20px 15px;
    display: flex;
    flex-wrap: wrap; /* ÁÙ¹Ù²Þ Çã¿ë */
    justify-content: center; /* Ç×¸ñµéÀ» °¡·Î Áß¾Ó Á¤·Ä */
    gap: 8px; /* ¹Ú½º »çÀÌ °£°Ý */
    background-color: #fff;
}

.m-step-box {
    /* 3¿­ ¹èÄ¡¸¦ À§ÇØ ³Êºñ¸¦ (100% / 3)¿¡¼­ °£°ÝÀ» »« °ªÀ¸·Î ¼³Á¤ */
    flex: 0 0 calc(33.333% - 8px); 
    background: var(--bg-gray);
    border-radius: 12px;
    padding: 15px 5px;
    text-align: center;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.m-step-box .step-num {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 4px;
    text-transform: uppercase;
    display: block;
}

.m-step-box h3 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    word-break: keep-all;
    line-height: 1.2;
}

/* 2Çà(4, 5´Ü°è) µðÀÚÀÎ °­Á¶ (¼±ÅÃ»çÇ×) */
.m-step-box:nth-child(n+4) {
    /* ÀÌ¹Ì justify-content: center¿¡ ÀÇÇØ Áß¾ÓÀ¸·Î ¸ðÀÔ´Ï´Ù */
    border-color: #e0e0e0;
}

/* ´Ü°è »çÀÌ È­»ìÇ¥ ´ë½Å Á¡¼± ¿¬°á È¿°ú (¼±ÅÃ»çÇ×) */
.m-process-container {
    position: relative;
}

        .m-step-card {
            flex: 0 0 140px;
            background: var(--bg-gray);
            padding: 20px 15px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--border-color);
        }
        .m-step-card .num { color: var(--primary-blue); font-weight: 800; font-size: 0.8rem; display: block; margin-bottom: 5px; }
        .m-step-card h3 { font-size: 0.95rem; font-weight: 700; }

        /* »ó¼¼ ¾È³» - Å¸ÀÓ¶óÀÎ ½ºÅ¸ÀÏ */
        .m-detail-section { padding: 40px 20px; }
        .m-timeline-item {
            position: relative;
            padding-left: 30px;
            border-left: 2px solid var(--border-color);
            margin-bottom: 50px;
        }
        .m-timeline-item::before {
            content: '';
            position: absolute;
            left: -7px;
            top: 0;
            width: 12px;
            height: 12px;
            background: var(--primary-blue);
            border-radius: 50%;
        }
        .m-timeline-item .label { color: var(--primary-blue); font-weight: 800; font-size: 0.85rem; }
        .m-timeline-item h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: 10px; }
        .m-timeline-item .desc { font-size: 0.95rem; color: var(--text-light); margin-bottom: 20px; word-break: keep-all; }

        /* Á¤º¸ Ä«µå */
        .m-info-box {
            background: var(--bg-gray);
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 10px;
        }
        .m-info-box h4 { font-size: 1rem; margin-bottom: 8px; font-weight: 700; }
        .m-info-box p { font-size: 0.9rem; color: var(--text-gray); }

        /* ¸®½ºÆ® ½ºÅ¸ÀÏ */
        .m-list { list-style: none; margin-top: 15px; }
        .m-list li {
            position: relative;
            padding-left: 20px;
            font-size: 0.9rem;
            color: var(--text-gray);
            margin-bottom: 8px;
        }
        .m-list li::before {
            content: '';
            position: absolute;
            left: 0;
            color: var(--primary-blue);
            font-weight: bold;
        }

        /* ÇÏ´Ü CTA */
        .m-cta {
            background: #111;
            margin: 20px;
            padding: 40px 20px;
            border-radius: 20px;
            text-align: center;
            color: #fff;
        }
        .m-cta h3 { font-size: 1.3rem; margin-bottom: 15px; }
        .btn-m-consult {
            display: block;
            background: var(--primary-blue);
            color: #fff;
            padding: 15px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 700;
            margin-top: 20px;
        }

        /* FAQ ¾ÆÄÚµð¾ð (¸ð¹ÙÀÏ ½ºÅ¸ÀÏ) */
        .m-faq { padding: 40px 20px; background: #fcfcfc; }
        .m-faq h2 { text-align: center; margin-bottom: 30px; font-size: 1.4rem; }
        .faq-item { border-bottom: 1px solid #eee; background: #fff; margin-bottom: 10px; border-radius: 10px; overflow: hidden; }
        .faq-q { width: 100%; padding: 20px; text-align: left; border: none; background: none; font-weight: 700; font-size: 0.95rem; display: flex; justify-content: space-between; }
        .faq-a { max-height: 0; overflow: hidden; transition: 0.3s ease; background: var(--bg-gray); }
        .faq-a-inner { padding: 20px; font-size: 0.9rem; color: var(--text-gray); line-height: 1.6; }
        .faq-item.active .faq-a { max-height: 100%; }
/*
Á¦ÀÛ ÇÁ·Î¼¼½º CSS END
*/

/*
½ºÅä¾î CSS START
*/


        .m-main-banner {
            width: 100%;
            height: 240px;
            position: relative;
            background-color: #222;
            overflow: hidden;
        }

        .m-main-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.7;
        }

        .m-banner-text {
            position: absolute;
            top: 50%;
            left: 20px;
            transform: translateY(-50%);
            color: #fff;
            z-index: 2;
        }

        .m-banner-text h2 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 5px;
            letter-spacing: -0.5px;
        }

        .m-banner-text p {
            font-size: 13px;
            opacity: 0.9;
            font-weight: 300;
        }

        .m-container {
            width: 100%;
            padding: 25px 15px;
        }

        /* Çì´õ ¿µ¿ª */
        .m-content-header {
            margin-bottom: 20px;
            text-align: left;
        }
        .m-category-name {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 10px;
            color: #111;
        }
        .m-header-line {
            width: 100%;
            height: 1px;
            background-color: #eee;
        }

        /* »óÇ° ±×¸®µå (1Çà 2¿­) */
        .m-product-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px 12px;
        }

        .m-product-card {
            display: flex;
            flex-direction: column;
        }

        .m-img-wrap {
            position: relative;
            width: 100%;
            aspect-ratio: 1/1;
            background-color: #f9f9f9;
            border-radius: 2px;
            overflow: hidden;
            margin-bottom: 12px;
        }
        .m-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .m-info-wrap {
            padding: 0 4px;
        }

        .m-tag-wrap {
            display: block;
            gap: 4px;
            margin-bottom: 6px;
        }
        .m-tag {
            font-size: 9px;
            font-weight: 700;
            padding: 2px 5px;
            border-radius: 2px;
            text-transform: uppercase;
        }
        .m-tag.best { background-color: #000; color: #fff; }
        .m-tag.new { background-color: #fff; border: 1px solid #ddd; color: #333; }

        .m-brand {
            font-size: 10px;
            color: #aaa;
            font-weight: 700;
            margin-bottom: 4px;
            letter-spacing: 0.5px;
        }

        .m-name {
            font-size: 14px;
            font-weight: 500;
            color: #222;
            margin-bottom: 4px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            line-height: 1.3;
        }

        /* °¡°Ý ¹× MOQ ¿µ¿ª */
        .m-price-wrap {
            display: flex;
            align-items: baseline; /* ÅØ½ºÆ® ÇÏ´Ü Á¤·Ä ±âÁØ */
        }

        .m-price {
            font-size: 15px;
            font-weight: 700;
            color: #111;
        }

        .m-moq {
            font-size: 11px;
            color: #aaa; /* ¿äÃ»ÇÏ½Å ÄÃ·¯ #aaa Àû¿ë */
            font-weight: 500;
            margin-left: 6px; /* °¡°Ý°úÀÇ °£°Ý */
        }

        .m-product-card:active {
            opacity: 0.7;
        }
/*
½ºÅä¾î CSS END
*/

.m-main-banner {
            width: 100%;
            height: 240px;
            position: relative;
            background-color: #222;
            overflow: hidden;
        }

        .m-main-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.7;
        }

        .m-banner-text {
            position: absolute;
            top: 50%;
            left: 20px;
            transform: translateY(-50%);
            color: #fff;
            z-index: 2;
        }

        .m-banner-text h2 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 5px;
            letter-spacing: -0.5px;
        }

        .m-banner-text p {
            font-size: 13px;
            opacity: 0.9;
            font-weight: 300;
        }

        .m-container {
            width: 100%;
            padding: 25px 15px;
        }

        /* Çì´õ ¿µ¿ª */
        .m-content-header {
            margin-bottom: 20px;
            text-align: left;
        }
        .m-category-name {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 10px;
            color: #111;
        }
        .m-header-line {
            width: 100%;
            height: 1px;
            background-color: #eee;
        }

        /* »óÇ° ±×¸®µå (1Çà 2¿­) */
        .m-product-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px 12px;
        }

        /* »óÇ° Ä«µå */
        .m-product-card {
            display: flex;
            flex-direction: column;
        }

        /* ÀÌ¹ÌÁö ¿µ¿ª */
        .m-img-wrap {
            position: relative;
            width: 100%;
            aspect-ratio: 1/1;
            background-color: #f9f9f9;
            border-radius: 2px;
            overflow: hidden;
            margin-bottom: 12px;
        }
        .m-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Á¤º¸ ¿µ¿ª */
        .m-info-wrap {
            padding: 0 4px;
        }

        /* ÅÂ±× */
        .m-tag-wrap {
            display: block;
            gap: 4px;
            margin-bottom: 6px;
        }
        .m-tag {
            font-size: 9px;
            font-weight: 700;
            padding: 2px 5px;
            border-radius: 2px;
            text-transform: uppercase;
        }
        .m-tag.best { background-color: #000; color: #fff; }
        .m-tag.new { background-color: #fff; border: 1px solid #ddd; color: #333; }

        .m-brand {
            font-size: 10px;
            color: #aaa;
            font-weight: 700;
            margin-bottom: 4px;
            letter-spacing: 0.5px;
        }

        /* »óÇ°¸í */
        .m-name {
            font-size: 14px;
            font-weight: 500;
            color: #222;
            margin-bottom: 4px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            line-height: 1.3;
        }

        /* °¡°Ý ¹× ÃÖ¼Ò¼ö·® Á¤·Ä */
        .m-price-wrap {
            display: flex;
            align-items: baseline; /* ÅØ½ºÆ® ÇÏ´Ü Á¤·Ä */
        }

        .m-price {
            font-size: 15px;
            font-weight: 700;
            color: #111;
        }

        .m-moq {
            font-size: 11px;
            color: #aaa; /* ¿äÃ»ÇÏ½Å #aaa ÄÃ·¯ */
            font-weight: 500;
            margin-left: 6px;
        }

        /* ÅÍÄ¡ ÇÇµå¹é */
        .m-product-card:active {
            opacity: 0.7;
        }
		
		
		
        /* 2. ¸ð¹ÙÀÏ 2¿­ ±×¸®µå */
        .portfolio-grid { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 16px; 
        }

        .portfolio-card { 
            background: #fff; 
            border-radius: 8px; 
            overflow: hidden; 
            border: 1px solid #f0f0f0;
            display: flex;
            flex-direction: column;
        }

        .image-wrapper { 
            width: 100%; 
            aspect-ratio: 1 / 1; 
            overflow: hidden; 
            background-color: #f7f7f7; 
        }
        .image-wrapper img { width: 100%; height: 100%; object-fit: cover; }

        .text-wrapper { padding: 12px 10px; flex: 1; }
        .client-name { font-size: 13px; font-weight: 700; color: #222; margin-bottom: 4px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
        .project-category { font-size: 11px; color: #999; font-weight: 400; }

        /* 3. ¸ð¹ÙÀÏ ¸ð´Þ(ÆË¾÷) ½ºÅ¸ÀÏ */
        .modal-overlay {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.5); backdrop-filter: blur(3px);
            display: none; align-items: center; justify-content: center;
            z-index: 2000; padding: 20px; opacity: 0; transition: opacity 0.3s;
        }
        .modal-overlay.active { display: flex; opacity: 1; }

        .modal-content {
            background: #fff; width: 100%; max-height: 85vh; border-radius: 16px;
            overflow-y: auto; position: relative;
            transform: translateY(20px); transition: transform 0.3s;
        }
        .modal-overlay.active .modal-content { transform: translateY(0); }

        .modal-close {
            position: absolute; top: 12px; right: 12px; width: 32px; height: 32px;
            background: rgba(255,255,255,0.9); border-radius: 50%; border: none;
            font-size: 20px; font-weight: bold; color: #333; z-index: 10;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .modal-img-area { width: 100%; background: #f0f0f0; }
        .modal-img-area img { width: 100%; height: auto; display: block; }

        .modal-info-area { padding: 20px; }
        .modal-client { font-size: 18px; font-weight: 800; color: #111; margin-bottom: 6px; }
        .modal-category { font-size: 13px; color: #3498db;/*#e61e28;*/ font-weight: 600; margin-bottom: 15px; }
        .modal-description { font-size: 14px; color: #666; line-height: 1.7; word-break: keep-all; }
        .modal-description p { margin-bottom: 10px; }

        /* ¹öÆ° ½ºÅ¸ÀÏ */
        .modal-action { margin-top: 20px; display: flex; gap: 8px; }
        .btn-inquiry { flex: 1; background: #111; color: #fff; text-align: center; padding: 12px; border-radius: 6px; font-size: 14px; font-weight: bold; text-decoration: none; }
		
		

        /* 4. »óÇ° »ó¼¼ ÄÁÅ×ÀÌ³Ê */
        .prd_container { max-width: 500px; margin: 0 auto 0; background: #fff; min-height: 100vh; padding-bottom: 80px; }
        .prd_img_area img { width: 100%; display: block; }
        .prd_info_wrap { padding: 20px; }
        .prd_title { font-size: 20px; font-weight: 700; margin-bottom: 5px; color: #000; }
        
        /* 5. ´Ü°¡Ç¥ ½ºÅ¸ÀÏ */
        .price_table_section { margin-bottom: 25px; }
        .option_section_title { font-size: 14px; font-weight: bold; margin-bottom: 10px; display: block; }
        .price_row_container { display: flex; flex-direction: column; border: 1px solid #eee; border-radius: 4px; overflow: hidden; }
        .qty_row, .price_row_data { display: flex; text-align: center; }
        .qty_row { background: #f9f9f9; border-bottom: 1px solid #eee; font-size: 10px; font-weight: bold; color: #666; }
        .price_row_data { background: #fff; font-size: 11px; font-weight: bold; }
        .price_cell { flex: 1; padding: 10px 2px; border-right: 1px solid #eee; transition: 0.2s; }
        .price_cell:last-child { border-right: none; }
        .price_cell.highlight { background: #e61e28 !important; color: #fff !important; }

        /* 6. ¿É¼Ç ¼½¼Ç */
        .option_row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; gap: 10px; }
        .input_box { width: 90px; height: 38px; text-align: center; border: 1px solid #ddd; border-radius: 4px; font-size: 15px; font-weight: bold; }
        .mobile_select { flex: 1; height: 38px; border: 1px solid #ddd; padding: 0 8px; border-radius: 4px; font-size: 13px; background: #fff; }

        .total_price_box { background: #f4f4f4; padding: 20px; border-radius: 8px; margin-top: 20px; }
        .price_line { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 14px; color: #555; }
        .price_line.total { margin-top: 15px; padding-top: 15px; border-top: 1px dashed #ccc; font-weight: bold; color: #111; }
        .price_line.total .val { color: #e61e28; font-size: 22px; }
        .price_val { font-weight: 600; color: #333; }

        /* 8. ÇÏ´Ü ¹öÆ° */
        .action_buttons { display: flex; gap: 8px; position: fixed; bottom: 0; left: 0; width: 100%; background: #fff; padding: 10px 16px; border-top: 1px solid #eee; z-index: 100; }
        .prd_view_btn { padding-top:0px;flex: 1; height: 54px; border: none; font-size: 16px; font-weight: bold; color: #fff; cursor: pointer; border-radius: 4px; }

        /* Ãß°¡ ¿É¼Ç ½ºÅ¸ÀÏ */
        .addon_item { cursor: pointer; }

		.addon_container {
    border-top: 1px solid #f0f0f0;
    max-height: 300px;
    overflow-y: auto;
    padding-right: 5px;
}

			/* ±¸¼ºÇ° ¼½¼Ç ½ºÅ¸ÀÏ Ãß°¡ */
    .component_section { padding: 20px; background: #fff; }
    .sub_section_title { font-size: 16px; font-weight: bold; margin-bottom: 15px; color: #333; }
    .component_grid { 
        display: grid; 
        grid-template-columns: repeat(3, 1fr); 
        gap: 10px; 
    }
    .comp_item { text-align: center; }
    .comp_img { 
        width: 100%; 
        aspect-ratio: 1; 
        background: #f9f9f9; 
        border-radius: 6px; 
        margin-bottom: 6px; 
        border: 1px solid #eee; 
        overflow: hidden; 
    }
    .comp_img img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .comp_name { 
        font-size: 11px; 
        color: #666; 
        word-break: keep-all; 
        line-height: 1.3; 
        height: 2.6em; /* µÎ ÁÙ ³ôÀÌ È®º¸ */
        overflow: hidden;
    }
		