/* =========================================
   1. Reset & Global Styles (Base only)
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Pretendard", sans-serif;
    font-size: 20px; /* PC 기본 */
    font-weight: 400;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
    word-break: keep-all;
}

/* [모바일] 기본 폰트 사이즈 조정 (16px) */
@media (max-width: 767px) {
    body {
        font-size: 16px;
    }
}

ul, ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

/* =========================================
   4. Header & Navigation Styles
========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 90px;
    background-color: transparent;
    transition: background-color 0.3s, box-shadow 0.3s, height 0.4s ease-out;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 1024px) {
    .header {
        height: 70px;
    }
}

.header.scrolled,
.header.menu-open {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    background-color: #ffffff;
    border-bottom: 1px solid #eeeeee;
}

.header.menu-open {
    height: 420px;
}

.header .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1600px;
    height: 90px;
    margin: 0 auto;
    padding: 0 40px;
}
@media (max-width: 1200px) {
    .header .wrap {
        padding: 0 20px;
    }
}
@media (max-width: 1024px) {
    .header .wrap {
        height: 70px;
    }
}

.header .logo {
    width: 200px;
}
@media (max-width: 1024px) {
    .header .logo {
        width: 150px;
    }
}

.header .logo img {
    width: 100%;
    height: auto;
}

.header .logo-dark {
    display: none;
}
.header .logo-white {
    display: block;
}

.header.scrolled .logo-dark,
.header.menu-open .logo-dark {
    display: block;
}

.header.scrolled .logo-white,
.header.menu-open .logo-white {
    display: none;
}

/* Desktop Nav */
.nav-desktop .gnb {
    display: flex;
}
@media (max-width: 1024px) {
    .nav-desktop {
        display: none;
    }
}

.nav-desktop .gnb > li > a {
    display: flex;
    align-items: center;
    position: relative;
    height: 90px;
    padding: 0 20px;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}
@media (max-width: 1200px) {
    .nav-desktop .gnb > li > a {
        padding: 0 15px;
        font-size: 16px;
    }
}

.header.scrolled .nav-desktop .gnb > li > a,
.header.menu-open .nav-desktop .gnb > li > a {
    color: #343a40;
}

.nav-desktop .gnb > li > a:hover {
    color: #00a1e9;
}

.nav-desktop .gnb > li > a::after {
    position: absolute;
    bottom: 20px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #00a1e9;
    transition: width 0.3s;
    content: "";
    transform: translateX(-50%);
}

.header:not(.scrolled):not(.menu-open) .nav-desktop .gnb > li > a::after {
    background-color: #ffffff;
}

.nav-desktop .gnb > li:hover > a::after {
    width: calc(100% - 40px);
}

/* Header Contact */
.header-contact a {
    display: flex;
    gap: 5px;
    align-items: center;
    padding: 8px 20px;
    border-radius: 100px;
    background: #08348b;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}
@media (max-width: 1200px) {
    .header-contact {
        display: none;
    }
}

.header.scrolled .header-contact a,
.header:hover .header-contact a,
.header.menu-open .header-contact a {
    color: #ffffff;
}

/* Mega Menu */
.mega-menu-panel {
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    visibility: hidden;
    padding: 40px 0;
    background-color: #ffffff;
    transition: all 0.4s ease-out;
    opacity: 0;
    border-top: 1px solid #eeeeee;
    transform: translateY(-10px);
}
@media (max-width: 1024px) {
    .mega-menu-panel {
        display: none;
    }
}

.header.menu-open .mega-menu-panel {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.mega-menu-panel .wrap {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
}

.submenu-column {
    width: 180px;
}

.submenu-column h4 a {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0px;
    padding-bottom: 10px;
}

.submenu-column ul li a {
    display: block;
    padding: 8px 0;
    font-size: 15px;
    color: #666666;
    transition: 0.3s;
}

.submenu-column ul li a:hover {
    color: #00a1e9;
    transform: translateX(5px);
}

/* Mobile Toggle */
#menu-toggle {
    display: none;
    z-index: 10;
    border: none;
    background: none;
    font-size: 32px;
    color: #ffffff;
    cursor: pointer;
}
@media (max-width: 1024px) {
    #menu-toggle {
        display: block;
    }
}

.header.scrolled #menu-toggle {
    color: #333333;
}

/* Sidebar & Dimmed */
#layoutDimmed {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

#aside {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    z-index: 1001;
    width: 80%;
    max-width: 320px;
    visibility: hidden;
    background: #ffffff;
    transition: all 0.4s;
    overflow-y: auto;
}

body.expand #layoutDimmed {
    display: block;
}
body.expand #aside {
    right: 0;
    visibility: visible;
}

#aside .btnClose {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    color: #333333;
}

#aside .intro {
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid #eeeeee;
}

#aside .intro img {
    width: 140px;

}

/* Accordion Menu */
#lnb {
    flex: 1;
    padding: 0;
}
#lnb > ul > li {
    border-bottom: 1px solid #f0f0f0;
}

#lnb > ul > li > a {
    display: flex;
    justify-content: space-between;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
}

#lnb > ul > li > a:not(.no-sub)::after {
    font-family: "Material Icons";
    font-size: 20px;
    transition: 0.3s;
    content: "expand_more";
}

#lnb > ul > li.on > a::after {
    transform: rotate(180deg);
}

#lnb ul ul {
    display: none;
    padding: 10px 0;
    background: #f8f9fa;
}

#lnb ul ul li a {
    display: block;
    padding: 10px 30px;
    font-size: 14px;
    color: #555555;
}

/* Sidebar Contact */
#aside .scustom {
    padding: 30px 20px;
    background: #fff;
}

#aside .scustom h2 {
    font-size: 16px;
    color: #333333;
    margin-bottom:0px;
}

#aside .scustom h3 a {
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 26px;
    font-weight: 700;
    color: #00a1e9;
    margin-bottom: 15px;
}

.mobile-tel a {
    font-size: 16px !important;
    color: #555555 !important;
}

#aside .social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

#aside .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    font-size: 28px;
    color: #ffffff;
}

.kakao-link {
    background: #fee500;
    color: #191919 !important;

}
.naver-link {
    background: #03c75a;
}


/* =========================================
   5. Hero Section (#home)
========================================= */
#home.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background-color: #222222;
}
@media (max-width: 1024px) {
    #home.hero {
        min-height: 100%;
    }
}

#home .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}
#home .slide.active {
    opacity: 1;
}

#home .hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 8s ease-out;
}
#home .slide.active .hero-bg {
    transform: scale(1);
}

#home .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 87, 168, 0.4), rgba(0, 0, 0, 0.5));
}

#home .hero-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1480px;
    color: #ffffff;
    text-align: left;
    z-index: 2;
}
@media (max-width: 1024px) {
    #home .hero-container {
        text-align: center;
    }
}

/* Hero Text Animations */
#home .slide-subtitle,
#home .titles,
#home .subtitle,
#home .buttons {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}
#home .slide.active .slide-subtitle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}
#home .slide.active .titles {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
}
#home .slide.active .subtitle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}
#home .slide.active .buttons {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

#home .slide-subtitle {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 5px;
}

#home .titles {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
    color: #fff;
    text-align: left;
}

#home .subtitle {
    font-size: 22px;
    font-weight: 400;
    max-width: 700px;
    margin-bottom: 40px;
}

@media (max-width: 1024px) {
    #home .titles {
        font-size: 52px;
        text-align: center;
    }
}
@media (max-width: 767px) {
    #home .slide-subtitle {
        font-size: 18px; /* [모바일] 18px */
    }
    #home .titles {
        font-size: 30px; /* [모바일] 타이틀 적당히 조절 */
        text-align: center;
    }
    #home .subtitle {
        font-size: 16px; /* [모바일] 16px */
        margin-bottom: 30px;
    }
}

/* Hero Buttons */
#home .buttons {
    display: flex;
}
@media (max-width: 1024px) {
    #home .buttons {
        justify-content: center;
    }
}


#home .buttons .btn {
    padding: 10px 32px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    border: 2px solid transparent;
    margin-right: 12px;
    transition: all 0.3s;
}

@media (max-width: 1024px) {
    #home .buttons .btn {
        font-size: 16px; /* [모바일] 버튼 16px */
        padding: 10px 24px;
    }
}

#home .main-mark {
    width: 350px;
    height: auto;
    margin-top: 30px;
}
#home .main-mark img {
    width: 100%;
    height: auto;
}

@media (max-width: 1024px) {
    #home .main-mark {
    width: 250px;
    height: auto;
    margin:0 auto;
    margin-top: 30px;
}
}


#home .buttons .btn-primary {
    background-color: #0057a8;
    border-color: #0057a8;
    color: #ffffff;
}
#home .buttons .btn-primary:hover {
    background-color: #003a70;
    transform: translateY(-3px);
}
#home .buttons .btn-secondary {
    border-color: #ffffff;
    color: #ffffff;
}
#home .buttons .btn-secondary:hover {
    background-color: #ffffff;
    color: #333333;
    transform: translateY(-3px);
}

/* Hero Controls */
#home .hero-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}
#home .hero-controls .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
}
#home .hero-controls .dot.active {
    background: #ffffff;
}

/* =========================================
   6. Company Section (#company)
========================================= */
#company {
    padding: 120px 0;
    background-color: #ffffff;
}
@media (max-width: 767px) {
    #company {
        padding: 80px 0;
    }
}

#company .company-container {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header (Scoped) */
#company .section-tag {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #0057a8;
    margin-bottom: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
#company .section-title {
    font-size: 44px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    color: #222222;
    text-align: left;
}
@media (max-width: 1024px) {
    #company .section-title {
        font-size: 36px;
    }
}
@media (max-width: 767px) {
    #company .section-tag { font-size: 14px; }
    #company .section-title {
        font-size: 24px; /* [모바일] 24px (타이틀) */
    }
}
#company .section-title span {
    color: #0057a8;
}

/* Content Layout */
#company .company-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}
@media (max-width: 1024px) {
    #company .company-wrapper {
        flex-direction: column;
        gap: 50px;
    }
}

#company .company-text {
    flex: 1;
    text-align: left;
}
@media (max-width: 1024px) {
    #company .company-text {
        text-align: center;
    }
}

#company .company-img-placeholder {
    width: 100%;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#company .company-grid-wrap {
    flex: 1;
    width: 100%;
}

#company .strengths-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
@media (max-width: 767px) {
    #company .strengths-grid {
        grid-template-columns: 1fr;
    }
}

#company .strength-card {
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}
#company .strength-card:hover {
    border-color: #0057a8;
    box-shadow: 0 15px 30px rgba(0, 87, 168, 0.1);
    transform: translateY(-8px);
}

#company .strength-icon {
    width: 70px;
    height: 70px;
    background-color: #eef6ff;
    color: #0057a8;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 15px;
}
#company .strength-icon span {
    font-size: 36px;
}

#company .strength-card h3 {
    font-size: 28px;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222222;
}
@media (max-width: 1024px) {
    #company .strength-card h3 {
        font-size: 22px;
    }
}
@media (max-width: 767px) {
    #company .strength-card h3 {
        font-size: 20px; /* [모바일] 카드 제목 20px */
    }
}

#company .strength-card p {
    font-size: 16px; /* 기본 16px */
    color: #888888;
    line-height: 1.6;
}

/* =========================================
   7. Process Section (#process)
========================================= */
#process {
    padding: 120px 0;
    background-color: #f8f9fa;
}
@media (max-width: 767px) {
    #process {
        padding: 80px 0;
    }
}

#process .process-container {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header (Scoped) */
#process .section-header {
    text-align: center;
    margin-bottom: 60px;
}
#process .section-tag {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #0057a8;
    margin-bottom: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
#process .section-title {
    font-size: 44px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    color: #222222;
}
@media (max-width: 1024px) {
    #process .section-title {
        font-size: 36px;
    }
}
@media (max-width: 767px) {
    #process .section-title {
        font-size: 24px; /* [모바일] 24px */
    }
    #process .section-tag { font-size: 14px; }
}
#process .section-title span {
    color: #0057a8;
}
#process .section-desc {
    max-width: 800px;
    margin: 0 auto;
    font-size: 22px;
    line-height: 1.6;
    color: #666666;
}
@media (max-width: 767px) {
    #process .section-desc {
        font-size: 16px; /* [모바일] 16px */
    }
}

/* Process Grid & Cards */
#process .process-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

#process .process-card {
    display: flex;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #eeeeee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}
@media (max-width: 1024px) {
    #process .process-card {
        flex-direction: column;
    }
}
#process .process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 87, 168, 0.1);
    border-color: #0057a8;
}

#process .process-img-side {
    width: 45%;
    min-height: 400px;
    position: relative;
}
@media (max-width: 1024px) {
    #process .process-img-side {
        width: 100%;
        height: 300px;
        min-height: auto;
    }
}

#process .process-content-side {
    width: 55%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
@media (max-width: 1024px) {
    #process .process-content-side {
        width: 100%;
        padding: 30px;
    }
}

#process .process-title {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #222222;
}
#process .process-title i {
    color: #0057a8;
    font-size: 36px;
}

#process .process-desc {
    font-size: 22px;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 30px;
}
#process .process-desc strong {
    color: #0057a8;
    font-weight: 700;
}

#process .btn-process-check {
    display: inline-block;
    padding: 15px 40px;
    font-size: 20px;
    font-weight: 700;
    color: #0057a8;
    background-color: transparent;
    border: 2px solid #0057a8;
    border-radius: 50px;
    transition: all 0.3s;
}
#process .btn-process-check:hover {
    background-color: #0057a8;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 87, 168, 0.3);
}
#process .btn-process-check i {
    margin-left: 5px;
    font-size: 18px;
    vertical-align: middle;
}

@media (max-width: 767px) {
    #process .process-title {
        font-size: 22px; /* [모바일] 22px */
    }
    #process .process-title i {
        font-size: 26px;
    }
    #process .process-desc {
        font-size: 16px; /* [모바일] 16px */
    }
    #process .btn-process-check {
        padding: 10px 30px;
        font-size: 16px; /* [모바일] 16px */
    }
}


/* =========================================
   8. Info Section (#info)
========================================= */
#info {
    padding: 120px 0;
    background-color: #ffffff;
}
@media (max-width: 767px) {
    #info {
        padding: 80px 0;
    }
}

#info .info-container {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 20px;
}




/* Section Header (Scoped) */
#info .section-header {
    text-align: center;
    margin-bottom: 60px;
}
#info .section-tag {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #0057a8;
    margin-bottom: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
#info .section-title {
    font-size: 44px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    color: #222222;
}
@media (max-width: 1024px) {
    #info .section-title {
        font-size: 36px;
    }
}
@media (max-width: 767px) {
#info .info-container .info-grid{
padding:0 20px;
}
    #info .info-container {padding:0;}
    #info .section-title {
        font-size: 24px; /* [모바일] 24px */
    }
    #info .section-tag { font-size: 14px; }
}
#info .section-title span {
    color: #0057a8;
}
#info .section-desc {
    max-width: 800px;
    margin: 0 auto;
    font-size: 22px;
    line-height: 1.6;
    color: #666666;
}
@media (max-width: 767px) {
    #info .section-desc {
        font-size: 16px; /* [모바일] 16px */
    }
}

/* Info Grid */
#info .info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}
@media (max-width: 1024px) {
    #info .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    #info .info-grid {
        grid-template-columns: 1fr;
    }
}

#info .info-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}
#info .info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: #0057a8;
}

#info .info-img {
    height: 240px;
}

#info .info-content {
    padding: 30px;
    flex: 1;
}

#info .info-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    background: #e3f2fd;
    color: #0057a8;
}

#info .info-title {
    font-size: 28px;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 10px;
}

#info .info-desc {
    font-size: 20px;
    line-height: 1.6;
    font-weight: 400;
    color: #888888;
}

@media (max-width: 1024px) {
    #info .info-title {
        font-size: 20px;
    }
    #info .info-desc {
        font-size: 16px;
    }
}
@media (max-width: 767px) {
    #info .info-badge { font-size: 14px; }
    #info .info-title { font-size: 18px; /* [모바일] 18px */ }
    #info .info-desc { font-size: 16px; /* [모바일] 16px */ }
}


/* =========================================
   9. Solutions Section (#solutions)
========================================= */
#solutions {
    padding: 120px 0;
    background-color: #f8f9fa;
}
@media (max-width: 767px) {
    #solutions {
        padding: 80px 0;
    }
}

#solutions .solutions-container {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header (Scoped) */
#solutions .section-header {
    text-align: center;
    margin-bottom: 60px;
}
#solutions .section-tag {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #0057a8;
    margin-bottom: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
#solutions .section-title {
    font-size: 44px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    color: #222222;
}
@media (max-width: 1024px) {
    #solutions .section-title {
        font-size: 36px;
    }
}
@media (max-width: 767px) {
    #solutions .section-title {
        font-size: 24px; /* [모바일] 24px */
    }
    #solutions .section-tag { font-size: 14px; }
}
#solutions .section-title span {
    color: #0057a8;
}
#solutions .section-desc {
    max-width: 800px;
    margin: 0 auto;
    font-size: 22px;
    line-height: 1.6;
    color: #666666;
}
@media (max-width: 767px) {
    #solutions .section-desc {
        font-size: 16px; /* [모바일] 16px */
    }
}

#solutions .solutions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

#solutions .solution-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
    display: flex;
    align-items: stretch;
}
@media (max-width: 1024px) {
    #solutions .solution-card {
        flex-direction: column;
    }
}
#solutions .solution-card:hover {
    transform: translateY(-5px);
}

#solutions .solution-img-side {
    width: 40%;
    position: relative;
}
@media (max-width: 1024px) {
    #solutions .solution-img-side {
        width: 100%;
        height: 250px;
    }
}

#solutions .solution-body {
    width: 60%;
    padding: 50px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (max-width: 1024px) {
    #solutions .solution-body {
        width: 100%;
        padding: 30px;
    }
}

#solutions .solution-icon-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
#solutions .solution-icon {
    width: 70px;
    height: 70px;
    background: #eef6ff;
    color: #0057a8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex-shrink: 0;
}
#solutions .solution-icon span {
    font-size: 35px;
}

#solutions .solution-body h3 {
    font-size: 36px;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 20px;
}
@media (max-width: 1024px) {
    #solutions .solution-body h3 {
        font-size: 30px;
    }
}
@media (max-width: 767px) {
    #solutions .solution-body h3 {
        font-size: 20px; /* [모바일] 20px */
    }
}

#solutions .solution-body p {
    font-size: 20px;
    line-height: 1.6;
    font-weight: 400;
    color: #888888;
}
@media (max-width: 767px) {
    #solutions .solution-body p {
        font-size: 16px; /* [모바일] 16px */
    }
}

/* =========================================
   10. Gallery Section (#gallery)
========================================= */
#gallery {
    padding: 120px 0;
    background-color: #ffffff;
}
@media (max-width: 767px) {
    #gallery {
        padding: 80px 0;
    }
}

#gallery .gallery-container {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header (Scoped) */
#gallery .section-header {
    text-align: center;
    margin-bottom: 60px;
}
#gallery .section-tag {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #0057a8;
    margin-bottom: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
#gallery .section-title {
    font-size: 44px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    color: #222222;
}
@media (max-width: 1024px) {
    #gallery .section-title {
        font-size: 36px;
    }
}
@media (max-width: 767px) {
    #gallery .section-title {
        font-size: 24px; /* [모바일] 24px */
    }
    #gallery .section-tag { font-size: 14px; }
}
#gallery .section-title span {
    color: #0057a8;
}

#gallery .gallery-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: none;
}
#gallery .gallery-track::-webkit-scrollbar {
    display: none;
}

#gallery .gallery-item {
    flex: 0 0 32%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eeeeee;
}
@media (max-width: 1024px) {
    #gallery .gallery-item {
        flex: 0 0 45%;
    }
}
@media (max-width: 767px) {
    #gallery .gallery-item {
        flex: 0 0 85%;
    }
}

#gallery .gallery-item img {
    height: 300px;
    transition: transform 0.5s;
}
#gallery .gallery-item:hover img {
    transform: scale(1.05);
}

#gallery .gallery-caption {
    padding: 20px;
    text-align: center;
    font-weight: 600;
    font-size: 20px;
    background: #ffffff;
    border-top: 1px solid #eeeeee;
}
@media (max-width: 767px) {
    #gallery .gallery-caption {
        font-size: 16px; /* [모바일] 16px */
    }
}

/* =========================================
   11. FAQ Section (#faq)
========================================= */
#faq {
    padding: 120px 0;
    background-color: #f8f9fa;
}
@media (max-width: 767px) {
    #faq {
        padding: 80px 0;
    }
}

#faq .faq-container {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header (Scoped) */
#faq .section-header {
    text-align: center;
    margin-bottom: 60px;
}
#faq .section-tag {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #0057a8;
    margin-bottom: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
#faq .section-title {
    font-size: 44px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    color: #222222;
}
@media (max-width: 1024px) {
    #faq .section-title {
        font-size: 36px;
    }
}
@media (max-width: 767px) {
    #faq .section-title {
        font-size: 24px; /* [모바일] 24px */
    }
    #faq .section-tag { font-size: 14px; }
}
#faq .section-desc {
    max-width: 800px;
    margin: 0 auto;
    font-size: 22px;
    line-height: 1.6;
    color: #666666;
}
@media (max-width: 767px) {
    #faq .section-desc {
        font-size: 16px; /* [모바일] 16px */
    }
}

#faq .faq-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

#faq .faq-item {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    overflow: hidden;
}

#faq .faq-item details {
    width: 100%;
}

#faq .faq-item summary {
    padding: 24px 30px;
    font-size: 22px;
    font-weight: 700;
    color: #222222;
    cursor: pointer;
    list-style: none;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#faq .faq-item summary::-webkit-details-marker {
    display: none;
}
#faq .faq-item summary::after {
    content: "\e313"; /* XEIcon arrow down */
    font-family: "Material Symbols Outlined";
    font-size: 24px;
    color: #0057a8;
    transition: transform 0.3s;
}
#faq .faq-item details[open] summary::after {
    transform: rotate(180deg);
}

@media (max-width: 767px) {
    #faq .faq-item summary {
        padding: 15px 20px;
        font-size: 18px; /* [모바일] 18px */
    }
}

#faq .faq-answer {
    padding: 30px 30px;
    font-size: 20px;
    color: #555555;
    line-height: 1.7;
    background-color: #fcfcfc;
    border-top: 1px solid #f0f0f0;
}
#faq .faq-answer strong {
    color: #0057a8;
}
@media (max-width: 767px) {
    #faq .faq-answer {
        padding: 20px;
        font-size: 16px; /* [모바일] 16px */
    }
}

/* =========================================
   12. Contact Section (#contact)
========================================= */
#contact {
    position: relative;
    background: linear-gradient(to right, rgba(0, 87, 168, 0.9), rgba(0, 50, 100, 0.95));
    background-size: cover;
    width: 100%;
    padding: 100px 0;
    z-index: 0;
    color: #ffffff;
}
#contact::before {
    content: "";
    background: url("https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&q=80&w=1000") no-repeat center;
    background-size: cover;
    opacity: 0.15;
    filter: blur(0px);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#contact .contact-container {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
}
@media (max-width: 1024px) {
    #contact .contact-container {
        flex-direction: column;
    }
}

#contact .contact-left {
    flex: 1;
}
#contact .contact-tag {
    color: #00a0e8;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 16px;
    font-size: 20px;
}
#contact .contact-title {
    font-size: 44px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}
@media (max-width: 1024px) {
    #contact .contact-title {
        font-size: 36px;
    }
}
@media (max-width: 767px) {
    #contact .contact-tag { font-size: 16px; }
    #contact .contact-title {
        font-size: 24px; /* [모바일] 24px */
    }
}

#contact .contact-desc {
    font-size: 22px;
    line-height: 1.6;
    font-weight: 400;
    color: #dddddd;
    margin-bottom: 40px;
}
@media (max-width: 767px) {
    #contact .contact-desc {
        font-size: 16px; /* [모바일] 16px */
    }
}

#contact .contact-info-box {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}
#contact .contact-info-title {
    font-size: 28px;
    line-height: 1.5;
    font-weight: 600;
}
@media (max-width: 1024px) {
    #contact .contact-info-title {
        font-size: 24px;
    }
}
@media (max-width: 767px) {
    #contact .contact-info-title {
        font-size: 20px; /* [모바일] 20px */
    }
}
#contact .contact-phone {
    font-size: 60px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}
@media (max-width: 767px) {
    #contact .contact-phone {
        font-size: 36px; /* [모바일] 적절히 축소 */
    }
}
#contact .contact-sub {
    font-size: 28px;
    color: #fff;
    margin-top: 10px;
}
@media (max-width: 767px) {
    #contact .contact-sub {
        font-size: 20px;
      font-weight:700;
    }
}
#contact .contact-detail {
    font-size: 20px;
    color: #cccccc;
    margin-top: 10px;
}
@media (max-width: 767px) {
    #contact .contact-detail {
        font-size: 16px;
    }
}

#contact .contact-right {
    flex: 1;
    background: rgba(0, 0, 0, 0.2);
    padding: 30px 30px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.3);
}

#contact .form-title {
    font-size: 28px;
    line-height: 1.5;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}
@media (max-width: 1024px) {
    #contact .form-title {
        font-size: 24px;
    }
}
@media (max-width: 767px) {
    #contact .form-title {
        font-size: 22px; /* [모바일] 22px */
    }
}

#contact .form-input {
    width: 100%;
    padding: 18px;
    background: #ffffff;
    border: 1px solid #555555;
    border-radius: 8px;
    color: #333333;
    margin-bottom: 12px;
    font-size: 18px;
}
@media (max-width: 767px) {
    #contact .form-input {
        padding: 14px;
        font-size: 16px; /* [모바일] 16px */
    }
}

#contact .btn-submit {
    width: 100%;
    padding: 20px;
    background: #00a0e8;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 700;
    font-size: 20px;
}
@media (max-width: 767px) {
    #contact .btn-submit {
        padding: 16px;
        font-size: 18px; /* [모바일] 18px */
    }
}

/* =========================================
   13. Footer Area
========================================= */
.footer-wrap {
    background: #1a1a1a;
    color: #888888;
    padding: 60px 0 100px;
    font-size: 18px;
}

@media (max-width: 767px) {
    .footer-wrap {
        font-size: 16px; /* [모바일] 16px */
        padding: 40px 0 80px;
    }
}

.footer-wrap .footer-container {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-wrap .logo-text {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}
@media (max-width: 767px) {
    .footer-wrap .logo-text {
        font-size: 24px;
    }
}

.footer-wrap .footer-info {
 width:800px;
display:flex;
  flex-wrap: wrap;
    gap: 20px;
}

.footer-wrap .footer-info span {line-height:1.0;}

.footer-wrap .copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333333;
    font-size: 16px;
}
@media (max-width: 767px) {
  .footer-wrap .footer-info {width:100%; line-height:1.0; gap:10px; font-size:14px;}
    .footer-wrap .copyright {
        font-size: 12px;
    }
}

/* =========================================
   14. Mobile Bottom Bar
========================================= */
.mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45px;
    z-index: 99;
    background: #ffffff;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
    .mobile-bar {
        display: flex;
    }
}

.mobile-bar .bar-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    gap: 8px;
    font-size: 16px;
}

.mobile-bar .bar-btn.call {
    background: #0057a8;
}

.mobile-bar .bar-btn.sms {
    background: #00a0e8;
}

.quick-menu-wrap {
    position: fixed;
    top:50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-menu-wrap .pc_br {gap:12px; display:grid;}

.quick-menu-wrap .qm-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 1px solid #eeeeee;
    transition: all 0.3s;
    text-align: center;
}

.quick-menu-wrap .qm-btn:hover {
    transform: scale(1.1);
    border-color: #0057a8;
}

.quick-menu-wrap .qm-btn i {
    font-size: 32px;
    color: #555555;
}

.quick-menu-wrap .qm-btn span {
    margin-top: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #333333;
    line-height: 1.2;
}

/* QM Colors & Overrides */
.quick-menu-wrap .qm-btn.highlight {
    background-color: #0057a8;
    border-color: #0057a8;
}

.quick-menu-wrap .qm-btn.highlight i,
.quick-menu-wrap .qm-btn.highlight span {
    color: #ffffff;
}

.quick-menu-wrap .qm-btn.q_green {
    background-color: #00a0e8;
    border-color: #00a0e8;
}

.quick-menu-wrap .qm-btn.q_green i,
.quick-menu-wrap .qm-btn.q_green span {
    color: #ffffff;
}

.quick-menu-wrap .qm-btn.kakao {
    background-color: #f5de00;
    border-color: #f5de00;
}

.quick-menu-wrap .qm-btn.kakao i,
.quick-menu-wrap .qm-btn.kakao span {
    color: #000000;
}

.quick-menu-wrap .qm-btn.blog {
    background: #03c75a;
    border-color: #03c75a;
}

.quick-menu-wrap .qm-btn.blog i,
.quick-menu-wrap .qm-btn.blog span {
    color: #ffffff;
}

@media (max-width: 767px) {
  .quick-menu-wrap .pc_br {display:none;}
  .quick-menu-wrap {
     right:5px; top:70%; }
  .quick-menu-wrap .qm-btn {width:45px; height:45px; border-radius:10px; }
  .quick-menu-wrap .qm-btn i {font-size:25px; }
  .quick-menu-wrap .qm-btn span {display:none;}
}