@charset "utf-8";
/* 공통 ***********************************************/

:root {
    --common-padding: 150px 20px;
    --common-margin-bt: 40px;
    --common-sec-title-h1-size: 3.1rem;
    --common-sec-title-h1-weight: 400;
    --common-sec-title-p-size: 1.1rem;
}

@media (max-width:768px) {
    :root {
        --common-padding: 150px 16px;
        --common-margin-bt: 40px;
        --common-sec-title-h1-size: 32px;
        --common-sec-title-h1-weight: 400;
        --common-sec-title-h1-size: 1.8rem;
    }
}

.blind {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.spacer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 80px 0;
}

.spacer .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #007BFF;
    opacity: 0.2;
    animation: dotFade 1.6s infinite ease-in-out;
}

.spacer .dot:nth-child(2) {
    animation-delay: 0.2s;
}

.spacer .dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dotFade {
    0% {
        opacity: 0.2;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.2;
    }
}

.sub-container {
    padding: 170px 0 120px;
}

.sub-container .sub-sec-title {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.sub-container .sub-sec-title p {
    font-size: var(--common-sec-title-p-size);
    line-height: 1.5;
    color: #555;
    word-break: keep-all;
}

.sub-container .sub-sec-title h1 {
    font-size: var(--common-sec-title-h1-size);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
}

.sub-container .sub-sec-title .marketing-hub-lead {
    margin-top: 16px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.98rem;
    line-height: 1.65;
    color: #444;
    word-break: keep-all;
}

@media (max-width:768px) {
    .sub-container {
        padding: 150px 0 60px;
    }
    
    .sub-container .sub-sec-title p br {
        display: none;
    }
}

/* main ***********************************************/
/* ✅ 처음엔 투명하게 시작 */
.main_visual_sect {
    opacity: 0;
    transition: opacity 0.6s ease;
}

/* ✅ 로딩 완료되면 자연스럽게 표시 */
.main_visual_sect.is-loaded {
    opacity: 1;
}

.main_visual_sect {
    position: relative;
    height: 100vh;
    overflow: hidden;
    color: white;
}

/* Swiper 컨테이너 */
.main_visual_sect .swiper {
    height: 100%;
}

/* 개별 슬라이드 */
.main_visual_sect .swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #000;
    /* ✅ 회색 flash 방지 */
    transform: scale(1);
    /* ✅ scale 기본값 */
    will-change: transform;
}

/* 블랙 오버레이 */
.main_visual_sect .swiper-slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* 배경 이미지 클래스 */
.main_visual_sect .swiper-slide .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* 기본 jpg 배경 */
.main_visual_sect .swiper-slide .bg.bg1 {
    background-image: url('/images/main-bg01.jpg');
}

.main_visual_sect .swiper-slide .bg.bg2 {
    background-image: url('/images/main-bg02.jpg');
}


/* WebP 지원 브라우저에서는 webp 덮어쓰기 */
.webp .main_visual_sect .swiper-slide .bg.bg1 {
    background-image: url('/images/main-bg01.webp');
}

.webp .main_visual_sect .swiper-slide .bg.bg2 {
    background-image: url('/images/main-bg02.webp');
}

/* 콘텐츠 wrapper */
.main_visual_sect .inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
}

/* 콘텐츠 내부 요소 페이드 초기값 */
.main-visual-swiper .label,
.main-visual-swiper .headline,
.main-visual-swiper .blur-box,
.main-visual-swiper .btns {
    opacity: 0;
    visibility: hidden;
}

/* 라벨 스타일 */
.main_visual_sect .label {
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

/* 헤드라인 */
.main_visual_sect .headline {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 40px;
}

/* 블러 박스 그룹 */
.main_visual_sect .box_group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1280px;
    margin: 0 auto 80px;
}

/* ✅ 글래스모피즘 효과 */
.main_visual_sect .blur-box {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08) inset,
        0 10px 30px rgba(0, 0, 0, 0.3);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    color: white;
    text-align: center;
    isolation: isolate;
    width: 390px;

}

.main_visual_sect .blur-box strong {
    display: block;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.main_visual_sect .blur-box p {
    line-height: 1.5;
    opacity: 0.8;
}

/* CTA 버튼 그룹 */
.main_visual_sect .btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.main_visual_sect .btn {
    width: 220px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    border-radius: 999px;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
}

.main_visual_sect .btn.template {
    border: 1px solid #fff;
    color: #fff;
}

.main_visual_sect .btn.primary {
    background: white;
    color: black;
}


/*
.sec2 {
    background: linear-gradient(to bottom, #f0f0f06b 0%, rgba(240, 240, 240, 0) 100%);
}

.sec2 {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}
*/

/*
.sec1 .shape {
    position: absolute;
    top: 100px;
    right: -180px;
    width: 500px;
    height: 500px;
    z-index: 1;
    background-repeat: no-repeat;
}

.no-webp .sec1 .shape {
    background-image: url('/images/circle-shape.png');
}

.webp .sec1 .shape {
    background-image: url('/images/circle-shape.webp');
}
*/

/* sub ***********************************************/
.process-wrap {
    max-width: 920px;
    margin: 0 auto;
}

/* 타 페이지 summary/default의 word-break가 STEP 본문에 끼치지 않도록 동일 스코프에서 복구 */
.process-wrap p,
.process-wrap a {
    word-break: keep-all;
}

.process-wrap .timeline {
    position: relative;
    padding-left: 64px;
}

.process-wrap .timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20px;
    width: 2px;
    height: 100%;
    background: #e5e7eb;
}

.process-wrap .step,
.process-wrap .step-box {
    position: relative;
    margin-bottom: 96px;
    padding: 32px;
    background: #f9f9f9;
}

.process-wrap .step:last-child {
    margin-bottom: 0;
}

.process-wrap .note {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 10px;
    background: #fff;
    font-size: 14px;
    line-height: 1.6;
    color: #374151;
    display: flex;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.process-wrap .note::before {
    content: "💡";
    flex-shrink: 0;
}

.process-wrap .note-content {
    flex: 1;
    min-width: 0;
}

.process-wrap .dot {
    position: absolute;
    left: -48px;
    top: 0;
    width: 10px;
    height: 10px;
    background: #2563eb;
    border-radius: 50%;
}

.process-wrap .body {
    padding-left: 0;
}

.process-wrap .meta {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 12px;
}

.process-wrap .title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111827;
}

.process-wrap .desc {
    line-height: 1.7;
    color: #4b5563;
}

.process-wrap .step p,
.process-wrap .step-box p {
    margin: 0;
    line-height: 1.6;
}

.process-wrap .body .desc a,
.process-wrap .note a {
    color: #2563eb;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.process-wrap .note a {
    word-break: keep-all;
}

.process-wrap .body .desc a:hover,
.process-wrap .note a:hover {
    color: #1d4ed8;
}

.process-wrap .process-summary {
    margin-top: 56px;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    padding: 36px 28px;
    background: linear-gradient(180deg, #f0f5ff 0%, #f9fafb 100%);
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    text-align: center;
}

.process-wrap .process-summary h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.4;
}

.process-wrap .process-summary p {
    font-size: 0.98rem;
    line-height: 1.75;
    color: #4b5563;
    margin-bottom: 24px;
    word-break: keep-all;
}

.process-wrap .process-summary p a {
    color: #2563eb;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.process-wrap .process-summary p a:hover {
    color: #1d4ed8;
}

.process-wrap .process-summary .process-summary-seo {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 24px;
    margin-top: -8px;
}

.process-wrap .process-summary .btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #2563eb;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.process-wrap .process-summary .btn-primary:hover {
    background: #1d4ed8;
    color: #fff;
}

.process-wrap .process-summary button.btn-primary {
    border: none;
    cursor: pointer;
    font: inherit;
}

@media (max-width:768px) {
    .process-wrap .timeline {
        padding-left: 44px;
    }

    .process-wrap .dot {
        left: -28px;
    }

    .process-wrap .process-summary {
        margin-top: 40px;
        padding: 28px 18px;
    }

    .process-wrap .process-summary h2 {
        font-size: 1.15rem;
    }
}

.pricing-wrap .pricing-summary {
    margin-top: 56px;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    padding: 36px 28px;
    background: linear-gradient(180deg, #f0f5ff 0%, #f9fafb 100%);
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    text-align: center;
}

.pricing-wrap .pricing-summary h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.4;
}

.pricing-wrap .pricing-summary p {
    font-size: 0.98rem;
    line-height: 1.75;
    color: #4b5563;
    margin-bottom: 24px;
    word-break: keep-all;
}

.pricing-wrap .pricing-summary p a {
    color: #2563eb;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.pricing-wrap .pricing-summary p a:hover {
    color: #1d4ed8;
}

.pricing-wrap .pricing-summary .pricing-summary-seo {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 24px;
    margin-top: -8px;
}

.pricing-wrap .pricing-summary .btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #2563eb;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.pricing-wrap .pricing-summary .btn-primary:hover {
    background: #1d4ed8;
    color: #fff;
}

@media (max-width:768px) {
    .pricing-wrap .pricing-summary {
        margin-top: 40px;
        padding: 28px 18px;
    }

    .pricing-wrap .pricing-summary h2 {
        font-size: 1.15rem;
    }
}

.pricing-wrap .top-wrap {
    background: radial-gradient(circle at center,
            rgba(255, 255, 255, 1) 0%,
            rgba(241, 246, 255, 1) 45%,
            rgba(228, 236, 255, 1) 70%,
            rgba(214, 227, 255, 1) 100%);

    padding: 80px 0;
}

.pricing-wrap .top-wrap .inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.pricing-wrap .bot-wrap {
    padding: 80px 0;
}

.pricing-wrap .bot-wrap .inner {
    max-width: 1300px;
    margin: 0 auto;
}

.pricing-wrap .top-wrap .grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;

}

.pricing-wrap .top-wrap .card {
    width: 410px;
    background: #fff;
    border-radius: 20px;
    padding: 40px 36px 50px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.pricing-wrap .top-wrap .label {
    font-size: 15px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.5;
}

.pricing-wrap .top-wrap .label span {
    color: #434b55;
}

.pricing-wrap .top-wrap .label.blue {
    color: #0066ff;
    font-weight: 600;
}

.pricing-wrap .top-wrap .title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
    color: #2c343e;
}

.pricing-wrap .top-wrap .desc {
    font-size: 16px;
    color: #434b55;
    line-height: 1.6;
    margin-bottom: 30px;
}

.pricing-wrap .top-wrap .price {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
    border-top: 2px dashed #ddd;
    padding-top: 16px;
    color: #2c343e;
}

.pricing-wrap .top-wrap .price span {
    color: #0066ff;
}

.pricing-wrap .top-wrap .cta {
    display: block;
    text-align: center;
    padding: 14px 0;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    margin-bottom: 25px;
}

.pricing-wrap .top-wrap .card:nth-child(1) .cta {
    background: #0066ff;
    color: #fff;
}

.pricing-wrap .top-wrap .card:nth-child(2) .cta {
    background: #111;
    color: #fff;
}

.pricing-wrap .top-wrap .list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pricing-wrap .top-wrap .list li {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #333;
    margin-bottom: 10px;
}

.pricing-wrap .top-wrap .list li img {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

.pricing-wrap .top-wrap .note {
    font-size: 13px;
    color: #A1A1A1;
    margin-top: 20px;
}

.pricing-wrap .bot-wrap .sub-tit-wrap {}

.pricing-wrap .bot-wrap .sub-tit-wrap .sub-title {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.pricing-wrap .bot-wrap .sub-tit-wrap .sub-desc {}

.pricing-wrap .bot-wrap .inner > p:not(.pricing-criteria-desc) {
    font-size: 0.98rem;
    line-height: 1.75;
    color: #4b5563;
    margin: 12px 0 20px;
    word-break: keep-all;
}

.pricing-wrap .bot-wrap .inner > p:not(.pricing-criteria-desc) a {
    color: #2563eb;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.pricing-wrap .bot-wrap .inner > p:not(.pricing-criteria-desc) a:hover {
    color: #1d4ed8;
}

.pricing-wrap .bot-wrap .pricing-criteria-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin: 0 0 28px;
    word-break: keep-all;
}

/* -------------------- */
/* 테이블 공통 구조 */
/* -------------------- */
.price-table-wrap {
    position: relative;
    margin-top: 60px;
}

.pricing-wrap .bot-wrap .price-table-wrap {
    margin-top: 0;
}

.price-table-wrap .table-grid {
    display: grid;
    grid-template-columns: 220px 1fr 1fr 1fr;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.price-table-wrap .col {
    padding: 32px 24px;
    border-bottom: 1px solid #f3f3f3;
}

.price-table-wrap .col.feature {
    display: flex;
    align-items: center;
}

.price-table-wrap .feature {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 18px;
    font-weight: 600;
    color: #111;
}

.price-table-wrap .col em {
    color: #0066ff;
    font-weight: 700;
    font-style: normal;
    font-size: 14px;
}

.price-table-wrap .info-btn {
    position: relative;
    width: 18px;
    height: 18px;
    background: url('/images/icon-info.svg') center/contain no-repeat;
    border: none;
    cursor: pointer;
}

.price-table-wrap .tooltip {
    position: absolute;
    top: 50%;
    left: calc(100% + 8px);
    transform: translateY(-50%);
    background: #333;
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    padding: 12px 16px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease;
    z-index: 10;
}

.price-table-wrap .tooltip::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -6px;
    transform: translateY(-50%);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid #333;
}

.price-table-wrap .info-btn:hover .tooltip,
.price-table-wrap .info-btn.active .tooltip {
    opacity: 1;
    visibility: visible;
}

.price-table-wrap .plan {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
}

.price-table-wrap .plan .title {
    font-size: 20px;
    font-weight: 700;
    color: #111;
}

.price-table-wrap .plan .desc {
    margin-top: 4px;
    font-size: 15px;
    color: #777;
}

.price-table-wrap .cell {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 8px;
    line-height: 1.5;
}

.price-table-wrap .cta-btn {
    display: none;
    margin-top: 12px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    color: #fff;
    background: #0066ff;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(5px);
}

.price-table-wrap .table-grid.active .cta-btn {
    display: inline-block;
    opacity: 1;
    transform: translateY(0);
}

.price-table-wrap .table-grid {
    background: #fff;
    transition: box-shadow 0.3s ease;
}

.price-table-wrap .table-grid.active {
    position: sticky;
    top: 62px;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.pricing-wrap .maintenance-section {
    margin-top: 100px;
}

.pricing-wrap .maintenance-section .sub-tit-wrap {
    text-align: left;
    margin-bottom: 30px;
}

.pricing-wrap .maintenance-section .sub-title {
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.pricing-wrap .maintenance-section .sub-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.pricing-wrap .maintenance-table-wrap .table-grid {
    display: grid;
    grid-template-columns: 160px 160px 1fr 120px;
    border-bottom: 1px solid #f3f3f3;
    align-items: center;
}

.pricing-wrap .maintenance-table-wrap .head-grid {
    background: #f8fbff;
}

.pricing-wrap .maintenance-table-wrap .col {
    padding: 20px 16px;
    font-size: 15px;
    color: #333;
}

.maintenance-table-wrap .col.feature {
    font-weight: 600;
    color: #111;
}

@media (max-width:1320px) {
    .pricing-wrap .bot-wrap .inner {
        padding: 0 20px;
    }
}

@media (max-width:1024px) {
    .pricing-wrap .bot-wrap .sub-tit-wrap .sub-title {
        font-size: 26px;
    }
}

@media (min-width:769px) {
    .price-table-wrap .tab-buttons {
        display: none;
    }
}

@media (max-width: 768px) {
    .pricing-wrap .top-wrap .title {
        font-size: 24px;
    }

    .price-table-wrap .tab-buttons {
        position: sticky;
        top: 70px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #f3f3f5;
        border-radius: 10px;
        padding: 4px;
        gap: 4px;
        z-index: 2;
        margin: 0 auto 24px;
        box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
    }

    .price-table-wrap .tab-buttons .tab-btn {
        flex: 1;
        text-align: center;
        font-weight: 600;
        font-size: 15px;
        color: #555;
        background: transparent;
        border: none;
        border-radius: 8px;
        padding: 12px 0;
        cursor: pointer;
        transition: all 0.25s ease;
    }

    .price-table-wrap .tab-buttons .tab-btn .title {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .price-table-wrap .tab-buttons .tab-btn .desc {
        font-size: 12.5px;
        font-weight: 300;
    }

    .price-table-wrap .tab-buttons .tab-btn.active {
        background: #fff;
        color: #111;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    }

    .price-table-wrap .tab-buttons {
        display: flex;
    }

    .price-table-wrap .table-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    /* ✅ 헤더 숨김 (PC용 제목행만) */
    .price-table-wrap .table-grid:first-of-type {
        display: none;
    }

    .price-table-wrap .col.feature {
        padding: 20px 16px;
    }

    /* ✅ 기본은 전부 숨김 */
    .price-table-wrap .col.plan {
        display: none !important;
        text-align: center;
        padding: 20px 16px;
        background: #fff;
    }

    /* ✅ 선택된 플랜만 강제 노출 */
    .price-table-wrap .col.plan.active {
        display: block !important;
    }

    .price-table-wrap .plan .title {
        font-size: 18px;
    }

    .price-table-wrap .plan .desc {
        font-size: 14px;
    }

    .price-table-wrap .col {
        border: none;
    }

    .pricing-wrap .maintenance-table-wrap .table-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        border-bottom: 1px solid #eee;
    }

    .pricing-wrap .maintenance-table-wrap .head-grid {
        display: none;
    }

    .pricing-wrap .maintenance-table-wrap .col {
        padding: 20px 0;
    }

    /* 구분(왼쪽) */
    .pricing-wrap .maintenance-table-wrap .col.feature {
        font-weight: 700;
        font-size: 15px;
        color: #111;
    }

    /* 형식(오른쪽) */
    .pricing-wrap .maintenance-table-wrap .col.plan:nth-of-type(2) {
        text-align: right;
        font-size: 14px;
        color: #444;
    }

    /* 세부내용은 아래 한 줄 전체 */
    .pricing-wrap .maintenance-table-wrap .col.plan:nth-of-type(3) {
        grid-column: 1 / -1;
        margin-top: 6px;
        font-size: 14px;
        color: #555;
        text-align: left;
    }

    /* 금액(마지막 컬럼) 숨김 */
    .pricing-wrap .maintenance-table-wrap .col.plan:nth-of-type(4) {
        display: none;
    }

    .price-table-wrap .cell,
    .price-table-wrap .feature {
        font-size: 15px;
    }

    .maintenance-table-wrap .table-grid:nth-child(2) {
        border-top: 2px solid #888;
    }
}

@media (max-width:460px) {
    .pricing-wrap .bot-wrap .sub-tit-wrap .sub-title {
        font-size: 24px;
    }

    .pricing-wrap .bot-wrap .sub-tit-wrap .sub-desc {
        line-height: 1.4;
    }
}

.benefit-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.benefit-wrap .benefits-section-title {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 8px;
    line-height: 1.35;
    word-break: keep-all;
}

.benefit-wrap .benefit-summary {
    grid-column: 1 / -1;
    margin-top: 24px;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    padding: 36px 28px;
    background: linear-gradient(180deg, #f0f5ff 0%, #f9fafb 100%);
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    text-align: center;
}

.benefit-wrap .benefit-summary h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.4;
}

.benefit-wrap .benefit-summary p {
    font-size: 0.98rem;
    line-height: 1.75;
    color: #4b5563;
    margin-bottom: 24px;
    word-break: keep-all;
}

.benefit-wrap .benefit-summary p a {
    color: #2563eb;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.benefit-wrap .benefit-summary p a:hover {
    color: #1d4ed8;
}

.benefit-wrap .benefit-summary .benefit-summary-seo {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 24px;
    margin-top: -8px;
}

.benefit-wrap .benefit-summary .btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #2563eb;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.benefit-wrap .benefit-summary .btn-primary:hover {
    background: #1d4ed8;
    color: #fff;
}

@media (max-width:768px) {
    .benefit-wrap .benefit-summary {
        margin-top: 16px;
        padding: 28px 18px;
    }

    .benefit-wrap .benefit-summary h2 {
        font-size: 1.15rem;
    }

    .benefit-wrap .benefits-section-title {
        font-size: 1.35rem;
        margin-bottom: 4px;
    }
}

.benefit-wrap .bx {
    position: relative;
    padding: 36px 32px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #eee;
    background: #ffffff;
}

.benefit-wrap .df {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px dashed #eee;
}

.benefit-wrap .df .benefit-num {
    margin: 0;
    font-weight: 600;
    color: #555;
    font-size: 1rem;
    line-height: 1.3;
}

.benefit-wrap .df .benefit-num span {
    display: inline-block;
}

.benefit-wrap .tag span {
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    background: #edf5fd;
    border-radius: 999px;
}

.benefit-wrap .tit {
    display: block;
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 1.4rem;
    font-weight: 700;
    color: #111;
}

.benefit-wrap h3.tit {
    margin-top: 0;
}

.benefit-wrap .txt {
    font-size: .9rem;
    line-height: 1.6;
    color: #555;
    padding: 12px;
    border-radius: 4px;
    background: #f6f7f9;
    word-break: keep-all;
}

@media (max-width: 1024px) {
    .benefit-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .benefit-wrap {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


.maintenance-wrap .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.maintenance-wrap .maintenance-section-title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 48px;
    line-height: 1.35;
    word-break: keep-all;
}

.maintenance-wrap .maintenance-summary {
    margin-top: 56px;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    padding: 36px 28px;
    background: linear-gradient(180deg, #f0f5ff 0%, #f9fafb 100%);
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    text-align: center;
}

.maintenance-wrap .maintenance-summary h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.4;
}

.maintenance-wrap .maintenance-summary p {
    font-size: 0.98rem;
    line-height: 1.75;
    color: #4b5563;
    margin-bottom: 24px;
    word-break: keep-all;
}

.maintenance-wrap .maintenance-summary p a {
    color: #2563eb;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.maintenance-wrap .maintenance-summary p a:hover {
    color: #1d4ed8;
}

.maintenance-wrap .maintenance-summary .maintenance-summary-seo {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 24px;
    margin-top: -8px;
}

.maintenance-wrap .maintenance-summary .btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #2563eb;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.maintenance-wrap .maintenance-summary .btn-primary:hover {
    background: #1d4ed8;
    color: #fff;
}

@media (max-width:768px) {
    .maintenance-wrap .maintenance-summary {
        margin-top: 40px;
        padding: 28px 18px;
    }

    .maintenance-wrap .maintenance-summary h2 {
        font-size: 1.15rem;
    }

    .maintenance-wrap .maintenance-section-title {
        font-size: 1.35rem;
        margin-bottom: 32px;
    }
}

.maintenance-wrap .top-mainten {
    display: flex;
    gap: 40px;
    margin-bottom: 120px;
}

.maintenance-wrap .item {
    flex: 1;
    background: #fff;
    border-radius: 28px;
    padding: 60px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.maintenance-wrap .icon {
    position: relative;
    width: 50px;
    height: 50px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* 기본 펄스 링 */
.maintenance-wrap .icon::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2.4s infinite;
}

/* 1번 카드 */
.maintenance-wrap .item:nth-child(1) .icon {
    background: linear-gradient(135deg, #4f46e5, #3b82f6);
}

.maintenance-wrap .item:nth-child(1) .icon::before {
    background: rgba(79, 70, 229, 0.35);
}

/* 2번 카드 */
.maintenance-wrap .item:nth-child(2) .icon {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.maintenance-wrap .item:nth-child(2) .icon::before {
    background: rgba(16, 185, 129, 0.35);
}

/* 3번 카드 */
.maintenance-wrap .item:nth-child(3) .icon {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.maintenance-wrap .item:nth-child(3) .icon::before {
    background: rgba(245, 158, 11, 0.35);
}

/* 펄스 애니메이션 */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    70% {
        transform: scale(1.8);
        opacity: 0;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.maintenance-wrap h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.maintenance-wrap .box {
    background: #f3f4f6;
    border-radius: 20px;
    padding: 24px 24px;
}

.maintenance-wrap .row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 0.95rem;
}

.maintenance-wrap .row:last-child {
    border-bottom: none;
}

.maintenance-wrap .row span {
    color: #777;
}

.maintenance-wrap .row strong {
    font-weight: 700;
    color: #111;
}

.maintenance-wrap .desc {
    margin: 12px 0 28px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

.maintenance-wrap .tbl-box:not(:last-child) {
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px dashed #ddd;
}

.maintenance-wrap .tit {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.maintenance-wrap .tbl-scroll {
    overflow-x: auto;
}

.maintenance-wrap .tbl {
    width: 100%;
    min-width: 1000px;
    border-collapse: collapse;
    border-top: 2px solid #434b54;
    border-bottom: 1px solid #d9dde2;
    background: #fafbfc;
}

.maintenance-wrap .tbl thead th {
    padding: 20px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    border-bottom: 1px solid #d4d9df;
    background: #eceff3;
    color: #2e343a;
}

.maintenance-wrap .tbl tbody td {
    padding: 22px 20px;
    font-size: 0.95rem;
    border-bottom: 1px solid #e5e9ee;
    vertical-align: middle;
    color: #333;
    background: #ffffff;
}

.maintenance-wrap .tbl tbody tr td + td {
    border-left: 1px solid #edf0f3;
}

.maintenance-wrap .tbl tbody td:nth-child(1) {
    width: 20%;
    font-weight: 500;
    text-align: center;
    background: #f8fafd;
    color: #434b54;
}

.maintenance-wrap .tbl tbody td:nth-child(2) {
    width: 45%;
}

.maintenance-wrap .tbl tbody td:nth-child(3) {
    width: 20%;
    text-align: center;
    font-weight: 600;
    color: #434b54;
}

.maintenance-wrap .tbl tbody td:nth-child(4) {
    width: 10%;
    text-align: center;
}

.maintenance-wrap .tbl .ref td {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #555;
}

@media (max-width:1200px) {
    .maintenance-wrap .top-mainten {
        gap: 24px;
    }
}

@media (max-width:1024px) {
    .maintenance-wrap .top-mainten {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .maintenance-wrap .tbl {
        min-width: 800px;
    }
}

/* solution ***********************************************/
.solution-btn-wrap {
    margin-top: 40px;
}

.solution-wrap {}

.solution-wrap .sec-backcolor1 {
    padding: 100px 0;
    background: linear-gradient(to bottom,
            rgba(225, 237, 252, 0) 0%,
            #E1EDFC 10%,
            transparent 33%,
            #E1EDFC 66%,
            transparent 100%);
}

.solution-wrap .sec-head {
    text-align: center;
    margin-bottom: 60px;
}

.solution-wrap .sec-head .check-wrap {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 28px;
}

.solution-wrap .sec-head .check-wrap svg {
    position: relative;
    width: 60px;
    height: 60px;
    background: linear-gradient(270deg, #00afff 0%, #001ca0 100%);
    border-radius: 50%;
    padding: 18px;
    z-index: 2;
}

.solution-wrap .sec-head .check-wrap .pulse {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(270deg, #00afff 0%, #001ca0 100%);
    opacity: 0.4;
    animation: solutionPulse 1.8s infinite;
    z-index: 1;
}

@keyframes solutionPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    70% {
        transform: scale(1.8);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.solution-wrap .sec-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.solution-wrap .sec-head h2 {
    font-size: 2rem;
    /* 32px */
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 18px;
    color: #434b54;
}

.solution-wrap .sec-head p {
    font-size: 1.125rem;
    /* 18px */
    color: #5f6974;
    line-height: 1.6;
}

.solution-wrap .sec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1280px;
    margin: 0 auto;
}

.solution-wrap .sec-card {
    background: #fff;
    border-radius: 28px;
    padding: 24px;
    text-align: left;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.solution-wrap .sec-card .card-visual {
    background: #f3f6fa;
    border-radius: 24px;
    overflow: hidden;
    height: 240px;
    margin-bottom: 32px;
    text-align: center;
}

.solution-wrap .sec-card .card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.solution-wrap .sec-card h3 {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    background-image: linear-gradient(270deg, rgb(0, 175, 255) 0%, rgb(0, 28, 160) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.solution-wrap .sec-card p {
    font-size: 1rem;
    /* 16px */
    line-height: 1.7;
    color: #667085;
}

.solution-wrap .sec-feature-wrap {
    margin-top: 120px;
}

.solution-wrap .feature-head {
    text-align: center;
    margin-bottom: 80px;
}

.solution-wrap .feature-head h2 {
    font-size: 2.25rem;
    /* 36px */
    font-weight: 700;
    margin-bottom: 20px;
    color: #434b54;
}

.solution-wrap .feature-head p {
    font-size: 1.125rem;
    /* 18px */
    line-height: 1.7;
    color: #667085;
    word-break: keep-all;
}

.solution-wrap .feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
}

.solution-wrap .feature-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: #eef5ff;
    padding: 40px;
    border-radius: 24px;
}

.solution-wrap .feature-text h3 {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    background-image: linear-gradient(270deg, rgb(0, 175, 255) 0%, rgb(0, 28, 160) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.solution-wrap .feature-text p {
    font-size: 0.9375rem;
    word-break: keep-all;
    line-height: 1.8;
    color: #555;
    margin-bottom: 24px;
}

.solution-wrap .feature-image img {
    width: 100%;
    border-radius: 16px;
}

.solution-wrap .feature-text ul {
    padding-left: 0;
    margin: 0;
    list-style: none;
}

.solution-wrap .feature-text ul li {
    position: relative;
    padding-left: 18px;
    font-size: 0.9375rem;
    /* 15px */
    line-height: 1.8;
    color: #444;
    margin-bottom: 4px;
}

.solution-wrap .feature-text ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(270deg, #00afff 0%, #001ca0 100%);
}

/* ===== Sticky Wrapper ===== */

.solution-wrap .feature-grid--sticky {
    display: flex;
    flex-direction: column;
}

/* ===== Sticky Card Base ===== */

.solution-wrap .feature-grid--sticky .feature-card {
    position: sticky;
    left: 0;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    padding: 2.5rem 2.8rem;
    border-radius: 2rem;
    background: #fff;
    box-shadow: 0 20px 40px rgba(73, 126, 164, 0.15);
}

/* ===== Bottom 기준 겹침 설정 (5개 전용) ===== */

.solution-wrap .feature-card--01 {
    bottom: 8rem;
    z-index: 5;
    margin-top: 0;
}

.solution-wrap .feature-card--02 {
    bottom: 6rem;
    z-index: 4;
}

.solution-wrap .feature-card--03 {
    bottom: 4rem;
    z-index: 3;
}

.solution-wrap .feature-card--04 {
    bottom: 2rem;
    z-index: 2;
}

.solution-wrap .feature-card--05 {
    bottom: 0;
    z-index: 1;
}

/* ===== 내부 비율 ===== */

.solution-wrap .feature-text {
    flex: 1.2;
    text-align: left;
}

.solution-wrap .feature-image {
    flex: 0.8;
    background-color: #edf2f8;
    border-radius: 50px;
    width: 100%;
    overflow: hidden;
    height: 320px;
    position: relative;
    border: 20px solid #fff;
}

.solution-wrap .feature-image img {
    width: 100%;
    border-radius: 1rem;
}



.solution-wrap .sec-cost-wrap {
    padding: 120px 0 0;
}

.solution-wrap .sec-cost-wrap .sec-cost-inner {
    margin-bottom: 100px;
}

.solution-wrap .sec-cost-wrap .cost-head {
    text-align: left;
    margin-bottom: 60px;
}

.solution-wrap .sec-cost-wrap .cost-head h2 {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 16px;
    color: #555;
}

.solution-wrap .sec-cost-wrap .cost-head p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

.solution-wrap .sec-cost-wrap .cost-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 50px;
    border-radius: 20px;
    background: #dae9fb;
    margin-bottom: 60px;
}

.solution-wrap .sec-cost-wrap .cost-box .cost-text {
    text-align: left;
}

.solution-wrap .sec-cost-wrap .cost-box .icon {
    width: 200px;
    height: 200px;
}

.solution-wrap .sec-cost-wrap .cost-box .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-wrap .sec-cost-wrap .cost-text .label {
    display: block;
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #333;
}

.solution-wrap .sec-cost-wrap .cost-text .price {
    display: block;
    font-size: 3.6rem;
    font-weight: 700;
    color: #3c64ff;
    margin-bottom: 8px;
}

.solution-wrap .sec-cost-wrap .cost-text .range {
    font-size: 1.5rem;
    color: #444;
}

.solution-wrap .sec-cost-wrap .cost-desc-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.solution-wrap .sec-cost-wrap .cost-desc {
    padding: 30px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.solution-wrap .sec-cost-wrap .cost-desc h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #555;
}

.solution-wrap .sec-cost-wrap .cost-desc p {
    font-size: .9rem;
    line-height: 1.7;
    color: #555;
}

.solution-wrap .sec-template {
    text-align: left;
}

.solution-wrap .sec-template .sec-inner {}

.solution-wrap .sec-template .sec-head {
    text-align: left;
    margin-bottom: 60px;
}

.solution-wrap .sec-template .sec-head h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #555;
}

.solution-wrap .sec-template .sec-head p {
    font-size: 1rem;
    color: #666;
}

.solution-wrap .sec-template .template-list {
    margin-top: 40px;
}

.solution-wrap .sec-template .template-wrap {
    padding: 0;
}

.solution-wrap .sec-template .template-wrap .template-row {
    align-items:center;
    gap: 4px;
}

.solution-wrap .sec-template .template-wrap .template-price strong {
    color: #555;
}

/* /solutions 추천 템플릿: list.css 이후에도 우선하도록 3중 스코프 (h2 말줄임·그리드 폭) */
.solution-wrap .template-wrap .template-card {
    min-width: 0;
}

.solution-wrap .template-wrap .template-info {
    min-width: 0;
    max-width: 100%;
}

.solution-wrap .template-wrap .template-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/*
 * /solutions/* 추천 템플릿(.sec-template .template-wrap)
 * — 그리드는 카드 바깥 .template-list (카드 안 .thumb-track은 list.css 구조 유지)
 * — index .sec3 · /template .template-inner 와 동일: 모바일 2열, .thumb-mo 비표시, hover 트랙 고정
 */
@media (max-width: 1024px) {

    .solution-wrap .sec-template .template-wrap .template-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 2rem;
        row-gap: 3rem;
    }

    .solution-wrap .sec-template .template-wrap .template-thumb {
        height: auto;
        min-height: 240px;
        max-height: 360px;
    }

    .solution-wrap .sec-template .template-wrap .template-thumb > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 768px) {

    .solution-wrap .sec-template .template-wrap .template-list {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 2rem;
        row-gap: 2rem;
    }

    .solution-wrap .sec-template .template-wrap .template-thumb {
        min-height: 200px;
        max-height: 300px;
    }

    .solution-wrap .sec-template .template-wrap .thumb-mo {
        display: none !important;
    }

    .solution-wrap .sec-template .template-wrap .template-card:hover .thumb-mo {
        display: none !important;
    }

    .solution-wrap .sec-template .template-wrap .template-card:hover .thumb-track {
        transform: none;
    }

    .solution-wrap .sec-template .template-wrap .template-thumb .thumb-track img,
    .solution-wrap .sec-template .template-wrap .template-thumb img.thumb-pc {
        object-fit: cover;
        object-position: top center;
    }
}

@media (max-width: 480px) {

    .solution-wrap .sec-template .template-wrap .template-list {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 0.5rem;
        row-gap: 1.25rem;
    }

    .solution-wrap .sec-template .template-wrap .template-thumb {
        min-height: 160px;
        max-height: 260px;
    }
}

@media (max-width: 360px) {

    .solution-wrap .sec-template .template-wrap .template-list {
        grid-template-columns: 1fr;
        column-gap: 0;
        row-gap: 1.25rem;
    }

    .solution-wrap .sec-template .template-wrap .template-thumb {
        max-height: none;
    }
}

/* ===== 모바일에서는 sticky 해제 ===== */




@media (max-width: 1024px) {
    .solution-wrap .sec-cost-wrap .cost-desc-wrap {
        grid-template-columns: 1fr;
    }

    .solution-wrap .sec-cost-wrap .cost-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 30px 40px;
    }

    .solution-wrap .sec-grid {
        gap: 20px;
    }

    .solution-wrap .feature-grid--sticky .feature-card {
        position: relative;
        bottom: auto;
        margin-top: 0;
    }
}



@media (max-width:900px) {
    .solution-wrap .feature-grid--sticky .feature-card {
        flex-direction: column;
        position: inherit;
        gap: 32px;
        padding: 3rem;
    }
}

@media (max-width:768px) {

    .solution-wrap .sec-head h2,
    .solution-wrap .sec-template .sec-head h2 {
        font-size: 1.7rem;
    }

    .solution-wrap .sec-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .solution-wrap .feature-head h2 {
        font-size: 1.8rem;
    }

    .solution-wrap .feature-image {
        border: none;
    }

    .solution-wrap .sec-cost-wrap .cost-head h2 {
        font-size: 1.6rem;
    }

    .solution-wrap .sec-cost-wrap .cost-text .price {
        font-size: 2.4rem;
    }

    .solution-wrap .sec-cost-wrap .cost-text .label {
        font-size: 1.2rem;
    }
}

.sec-faq {
    text-align: left;
}

.sec-faq .inner {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 20px;
}

.sec-faq .sec-title {
    text-align: center;
}

.sec-faq .sec-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 16px;
    color: #555;
}

.sec-faq .sec-title p {
    line-height: 1.4;
    color: #666;
}

.sec-faq .faq-list {
    margin: 40px auto 0;
    word-break: keep-all;
}

.sec-faq .faq-list .boxwrap {
    overflow: hidden;
    background: #f1f1f1;
    border-radius: 20px;
    padding: 0 40px;
    margin-bottom: 20px;
}

.marketing-wrap .sec-faq .faq-list .boxwrap {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.sec-faq .faq-list .question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
    cursor: pointer;
}

.sec-faq .faq-list .question .mark {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary);
    border-radius: 50%;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    line-height: 50px;
}

.sec-faq .faq-list .question .tit {
    box-sizing: border-box;
    width: calc(100% - 50px - 30px);
    font-size: 1.2rem;
    color: #000;
    font-weight: 600;
    margin-left: 24px;
    text-align: left;
}

.sec-faq .faq-list .question .arr {
    width: 30px;
    height: 30px;
    text-align: center;
}

.sec-faq .faq-list .question .arr:after {
    display: inline-block;
    content: "";
    width: 12px;
    height: 12px;
    margin-top: 12px;
    border-right: 3px solid #222;
    border-bottom: 3px solid #222;
    transform: rotate(45deg);
    transition: all 0.4s;
}

.sec-faq .faq-list .question.active .arr:after {
    transform: rotate(225deg) translate(-6px, -6px);
}

.sec-faq .faq-list .answer {
    display: none;
    padding: 25px 0;
    border-top: 1px solid #ddd;
}

.sec-faq .faq-list .answer > div {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.sec-faq .faq-list .answer > div .mark {
    width: 50px;
    height: 50px;
    background: #505255;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 50px;
}

.sec-faq .faq-list .answer > div .txt {
    box-sizing: border-box;
    width: calc(100% - 30px);
    font-size: 17px;
    color: #666;
    line-height: 180%;
    margin-left: 24px;
    text-align: left;
}

.sec-faq .faq-list .answer > div a {
    font-size: 17px;
    color: #666;
    line-height: 180%;
    display: block;
}

@media (max-width:768px) {
    .sec-faq .sec-title h2 {
        font-size: 1.6rem;
    }

    .sec-faq .sec-title p {
        padding: 0 40px;
    }

    .sec-faq .sec-title p br {
        display: none;
    }

    .sec-faq .faq-list .question .tit {
        margin-left: 16px;
    }

    .sec-faq .faq-list .question .mark {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        font-size: 15px;
    }

    .sec-faq .faq-list .boxwrap {
        padding: 0 20px;
    }
}

.solution-wrap .trust-banner {
    margin: 100px 0 0;
    padding: 40px 20px;
    text-align: center;
    background: #f3f6fb;
    border-radius: 16px;
}

.solution-wrap .trust-banner p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    font-weight: 500;
    max-width: 820px;
    margin: 0 auto;
    word-break: keep-all;
}

@media (max-width: 768px) {
    .solution-wrap .trust-banner {
        margin-top: 60px;
        padding: 30px 20px;
    }

    .solution-wrap .trust-banner p {
        font-size: 0.95rem;
    }
}

.solution-wrap .solution-summary {
    margin-top: 56px;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    padding: 36px 28px;
    background: linear-gradient(180deg, #f0f5ff 0%, #f9fafb 100%);
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    text-align: center;
}

.solution-wrap .solution-summary h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.4;
}

.solution-wrap .solution-summary p {
    font-size: 0.98rem;
    line-height: 1.75;
    color: #4b5563;
    margin-bottom: 24px;
    word-break: keep-all;
}

.solution-wrap .solution-summary p a {
    color: #2563eb;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.solution-wrap .solution-summary p a:hover {
    color: #1d4ed8;
}

.solution-wrap .solution-summary .summary-seo {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 24px;
    margin-top: -8px;
}

.solution-wrap .solution-summary .summary-lead {
    font-size: 0.98rem;
    line-height: 1.75;
    color: #4b5563;
    margin-bottom: 24px;
}

.solution-wrap .solution-summary .btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #2563eb;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.solution-wrap .solution-summary .btn-primary:hover {
    background: #1d4ed8;
    color: #fff;
}

.solution-wrap .solution-summary button.btn-primary {
    border: none;
    cursor: pointer;
    font: inherit;
}

@media (max-width: 768px) {
    .solution-wrap .solution-summary {
        margin-top: 40px;
        padding: 28px 18px;
    }

    .solution-wrap .solution-summary h2 {
        font-size: 1.15rem;
    }
}

/* portfolio ***********************************************/
.portfolio-wrap {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.portfolio-wrap .portfolio-heading {
    margin: 0 0 40px;
}

.portfolio-wrap .list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.portfolio-wrap .card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transition: transform .3s ease;
}

.portfolio-wrap .card:hover {
    transform: translateY(-10px);
}

.portfolio-wrap .link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.marketing-wrap .card .link.is-disabled {
    cursor: default;
}

.marketing-wrap .card .link.is-disabled {
    pointer-events: none;
}

/* 상단 배경 */

.portfolio-wrap .bg {
    position: relative;
    height: 360px;
    overflow: hidden;
}

/* 이미지 */
.portfolio-wrap .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 오버레이 */
.portfolio-wrap .overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.35) 0%,
            rgba(0, 0, 0, 0.25) 40%,
            rgba(0, 0, 0, 0) 100%);
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.portfolio-wrap .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.portfolio-wrap .name {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 600;
}

.portfolio-wrap .state {
    font-size: 0.75rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 999px;
}

/* 하단 화이트 카드 */

.portfolio-wrap .box {
    position: relative;
    z-index: 2;
    background: #fff;
    margin-top: -120px;
    border-radius: 24px;
    padding: 32px;
}

.portfolio-wrap .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.portfolio-wrap .tit {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.4;
}

.portfolio-wrap .time {
    font-size: 0.8rem;
    color: #888;
}

.portfolio-wrap .desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* 최대 3줄 */
    -webkit-box-orient: vertical;
    overflow: hidden;

    min-height: calc(1.6em * 3);
    /* 3줄 높이 확보 */
    margin-bottom: 20PX;
}

.portfolio-wrap .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.portfolio-wrap .tag {
    font-size: 0.75rem;
    padding: 6px 12px;
    background: #f3f5f7;
    border-radius: 999px;
    color: #444;
}

/* 반응형 */

@media (max-width: 1200px) {
    .portfolio-wrap .list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .portfolio-wrap .list {
        grid-template-columns: 1fr;
    }

    .portfolio-wrap .bg {
        height: 280px;
    }

    .portfolio-wrap .box {
        margin-top: -60px;
    }
}

/* marketing ***********************************************/
.marketing-wrap {}

.marketing-wrap .intro {
    background: #33455c;
    text-align: center;
    padding: 60px 0;
}

.marketing-wrap .intro .inr {
    max-width: 880px;
    margin: 0 auto;
}

.marketing-wrap .intro .inr h2 {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.6;
    color: #eff6ff;
}

.marketing-wrap .sec-backcolor1 {
    padding: 120px 0 0;
    background: linear-gradient(to bottom, rgba(225, 237, 252, 0) 0%, #E1EDFC 10%, transparent 33%, #E1EDFC 66%, transparent 100%);
}

.marketing-wrap .sec-head .check-wrap {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 28px;
}


.marketing-wrap .sec-head .check-wrap svg {
    position: relative;
    width: 60px;
    height: 60px;
    background: linear-gradient(270deg, #00afff 0%, #001ca0 100%);
    border-radius: 50%;
    padding: 18px;
    z-index: 2;
}

.marketing-wrap .sec-head .check-wrap .pulse {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(270deg, #00afff 0%, #001ca0 100%);
    opacity: 0.4;
    animation: solutionPulse 1.8s infinite;
    z-index: 1;
}

@keyframes solutionPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    70% {
        transform: scale(1.8);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.marketing-wrap .sec-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.marketing-wrap .sec-head {
    text-align: center;
    margin-bottom: 60px;
}

.marketing-wrap .sec-head h2 {
    font-size: 2rem;
    /* 32px */
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 18px;
    color: #434b54;
}

.marketing-wrap .sec-head p {
    font-size: 1.125rem;
    /* 18px */
    color: #5f6974;
    line-height: 1.6;
}

.marketing-wrap .marketing-services-heading {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 auto 40px;
    max-width: 1280px;
    padding: 0 20px;
    color: #434b54;
    word-break: keep-all;
}

.marketing-wrap .marketing-summary {
    margin-top: 56px;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    padding: 36px 28px;
    background: linear-gradient(180deg, #f0f5ff 0%, #f9fafb 100%);
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    text-align: center;
}

.marketing-wrap .marketing-summary h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.4;
}

.marketing-wrap .marketing-summary p {
    font-size: 0.98rem;
    line-height: 1.75;
    color: #4b5563;
    margin-bottom: 24px;
    word-break: keep-all;
}

.marketing-wrap .marketing-summary p a {
    color: #2563eb;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.marketing-wrap .marketing-summary p a:hover {
    color: #1d4ed8;
}

.marketing-wrap .marketing-summary .summary-seo {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 24px;
    margin-top: -8px;
}

.marketing-wrap .marketing-summary .summary-lead {
    font-size: 0.98rem;
    line-height: 1.75;
    color: #4b5563;
    margin-bottom: 24px;
}

.marketing-wrap .marketing-summary .btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #2563eb;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.marketing-wrap .marketing-summary .btn-primary:hover {
    background: #1d4ed8;
    color: #fff;
}

.marketing-wrap .marketing-summary button.btn-primary {
    border: none;
    cursor: pointer;
    font: inherit;
}

.marketing-wrap .sec-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.marketing-wrap .sec-grid .card {
    border-radius: 28px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    transition: transform .35s ease, box-shadow .35s ease;
}

.marketing-wrap .sec-grid .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.marketing-wrap .sec-grid .link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.marketing-wrap .sec-grid .bg {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.marketing-wrap .sec-grid .img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.marketing-wrap .sec-grid .card:hover .img {
    transform: scale(1.08);
}

/*
.marketing-wrap .sec-grid .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .65), rgba(0, 0, 0, .15));
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 20px;
}
*/

.marketing-wrap .sec-grid .top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.marketing-wrap .sec-grid .name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.marketing-wrap .sec-grid .state {
    font-size: .8rem;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    backdrop-filter: blur(6px);
}

.marketing-wrap .sec-grid .box {
    padding: 32px;
}

.marketing-wrap .sec-grid .tit {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 16px;
}

.marketing-wrap .sec-grid h3.tit {
    margin-top: 0;
}

.marketing-wrap .sec-grid .desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(1.6em * 3);
}

.marketing-wrap .sec-grid .cta {
    margin-top: 24px;
}

.marketing-wrap .sec-grid .more {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: #1e40af;
    position: relative;
}

.marketing-wrap .sec-grid .more::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: #1e40af;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}

.marketing-wrap .sec-grid .card:hover .more::after {
    transform: scaleX(1);
}

.marketing-wrap .mk-system {
    padding: 120px 20px 0;
    max-width: 1400px;
    margin: 0 auto;
}

.marketing-wrap .mk-system .ban {
    background: url('/images/marketing/mk-system-bg.jpg') no-repeat center center / cover;
    border-radius: 24px;
    padding: 100px 40px;
    margin-bottom: 40px;
    text-align: center;
    color: #fff;
}

.marketing-wrap .mk-system .ban .inr span img {
    width: 150px;
}

.marketing-wrap .mk-system .ban .inr h2 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.4;
    margin-top: 20px;
}

.marketing-wrap .mk-system .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.marketing-wrap .mk-system .card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.marketing-wrap .mk-system .card .tit {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.marketing-wrap .mk-system .card .lst {
    list-style: none;
    padding: 0;
    margin: 0;
}

.marketing-wrap .mk-system .card .lst li {
    display: flex;
    align-items: flex-start;
    gap: 2px;
    font-size: 1.2rem;
    margin-bottom: 14px;
    line-height: 1.6;
}

.marketing-wrap .mk-system .card .lst li .chk {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.marketing-wrap .mk-system .card .lst li .chk img {
    width: 100%;
    height: 100%;
}

.marketing-wrap .mk-process {
    padding: 140px 20px;
    max-width: 1024px;
    margin: 0 auto;
}

.marketing-wrap .mk-process .head {
    text-align: center;
    margin-bottom: 100px;
}

.marketing-wrap .mk-process .head h2 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.3;
}

.marketing-wrap .mk-process .stk {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
    /* 솔루션이랑 동일 */
}

.marketing-wrap .mk-process .card {
    position: sticky;
    left: 0;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    padding: 4rem 4rem;
    border-radius: 2.4rem;
    background: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.marketing-wrap .mk-process .c1 {
    bottom: 6rem;
    z-index: 4;
}

.marketing-wrap .mk-process .c2 {
    bottom: 4rem;
    z-index: 3;
}

.marketing-wrap .mk-process .c3 {
    bottom: 2rem;
    z-index: 2;
}

.marketing-wrap .mk-process .c4 {
    bottom: 0;
    z-index: 1;
}

.marketing-wrap .mk-process .txt {
    flex: 1.1;
}

.marketing-wrap .mk-process .txt .num {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #999;
    text-transform: uppercase;
}

.marketing-wrap .mk-process .txt h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary);
}

.marketing-wrap .mk-process .txt h4 {
    font-size: 1.2rem;
    margin-bottom: 24px;
    font-weight: 500;
    color: #555;
}

.marketing-wrap .mk-process .txt .lst {
    list-style: none;
    padding: 0;
    margin: 0;

    display: flex;
    flex-direction: column;
    gap: 10px;
}

.marketing-wrap .mk-process .txt .lst li {
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
    margin-bottom: 10px;
    line-height: 1.1;
}

.marketing-wrap .mk-process .txt .lst li::before {
    content: "";
    width: 4px;
    height: 4px;
    margin-right: 10px;
    margin-top: 0;
    border-radius: 50%;
    background-color: #ddd;
    flex-shrink: 0;
}

.marketing-wrap .mk-process .img {
    flex: 0.9;
    height: 320px;
    border-radius: 32px;
    background: #eef3f8;
}

@media (max-width: 1024px) {
    .marketing-wrap .sec-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .marketing-wrap .mk-system .ban .inr h2 {
        font-size: 2.4rem;
    }

    .marketing-wrap .mk-process .head h2 {
        font-size: 2.4rem;
    }

    .marketing-wrap .mk-system .grid {
        grid-template-columns: 1fr;
    }

    .marketing-wrap .mk-process .head {
        margin-bottom: 40px;
    }
}

@media (max-width:900px) {
    .marketing-wrap .mk-process .stk {
        gap: 40px;
    }

    .marketing-wrap .mk-process .card {
        flex-direction: column;
        position: inherit;
        gap: 32px;
        padding: 3rem;
    }

    .marketing-wrap .mk-process .img,
    .marketing-wrap .mk-process .txt {
        flex: auto;
    }

    .marketing-wrap .mk-process .img {
        overflow: hidden;
    }

    .marketing-wrap .mk-process .img img {
        width: 100%;
    }
}

@media (min-width:769px) {
    .marketing-wrap .mbr {
        display: none;
    }
}

@media (max-width: 768px) {
    .marketing-wrap .mbr {
        display: block;
    }

    .marketing-wrap .sec-grid {
        grid-template-columns: 1fr;
    }

    .marketing-wrap .sec-head h2 {
        font-size: 1.7rem;
    }

    .marketing-wrap .mk-system .ban .inr h2 {
        font-size: 2rem;
    }

    .marketing-wrap .intro .inr h2 {
        font-size: 1.3rem;
    }

    .marketing-wrap .marketing-services-heading {
        font-size: 1.7rem;
        margin-bottom: 32px;
    }

    .marketing-wrap .marketing-summary {
        margin-top: 40px;
        padding: 28px 18px;
    }

    .marketing-wrap .marketing-summary h2 {
        font-size: 1.15rem;
    }
}

/* footer ***********************************************/
#footer {
    background: linear-gradient(135deg, #dbeafe, #e0f2fe);
    border-radius: 32px;
    padding: 80px 60px 40px;
}

#footer .inner {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* 상단 CTA 배너 */
#footer .banner {
    text-align: center;
    padding: 100px 20px 40px;
}

#footer .banner h2 {
    font-size: 2.625rem;
    /* 42px */
    margin-bottom: 16px;
}

#footer .banner p {
    font-size: 1.2rem;
    /* 16px */
    color: #555;
    margin-bottom: 30px;
    line-height: 1.5;
}


/* 하단 블러 박스 */
#footer .bottom {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 60px 60px 0 60px;
}

#footer .top {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

#footer .info {
    flex: 1;
    font-style: normal; /* <address> UA 기본 이탤릭 제거 */
}

#footer .logo {
    font-size: 1.375rem;
    /* 22px */
    margin-bottom: 20px;
}

#footer .info p {
    font-size: 0.875rem;
    /* 14px */
    color: #555;
    margin-bottom: 8px;
}

#footer .map {
    flex: 1.2;
    display: flex;
    gap: 60px;
}

#footer .col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#footer .col a {
    font-size: 0.875rem;
    /* 14px */
    color: #333;
    text-decoration: none;
    transition: .2s;
}

#footer .col a:hover {
    color: #2563eb;
}

#footer .cs {
    flex: 1.2;
    padding-left: 40px;
}

#footer .cs .tit {
    font-size: 1.25rem;
    margin-bottom: 16px;
    font-weight: 600;
}

#footer .cs .tel {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}

#footer .cs .meta p {
    font-size: 0.875rem;
    margin-bottom: 6px;
    color: #555;
}

#footer .cs .meta strong {
    display: inline-block;
    width: 70px;
    font-weight: 600;
}

#footer .bank {
    background: rgba(0, 0, 0, 0.04);
    border-radius: 20px;
    padding: 24px 28px;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

#footer .bank-download {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 6px 4px 12px;
    border-radius: 8px;
    background: #8b9aa6;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}

#footer .bank-download > .txt {
    color: #fff;
}

#footer .bank p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    margin: 0;
}

#footer .bank p span {
    color: #777;
    font-weight: 400;
}

#footer .bank p strong {
    font-weight: 700;
    color: #111;
}

#footer .bank .woori {
    width: 71px;
    height: auto;
}

#footer .copy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

#footer .copy-left a {
    font-size: 14px;
    color: #999;
    text-decoration: none;
}

#footer .copy-left a:hover {
    text-decoration: underline;
}

#footer .copy-right {
    font-size: 14px;
    color: #999;
}

#footer .bank-account {
    display: flex;
    align-items: center;
    gap: 12px;
}

#footer .bank-account .copy-btn {
    padding: 6px 14px;
    font-size: 0.85rem;
    border-radius: 6px;
    border: 1px solid #007BFF;
    background: #007BFF;
    color: #fff;
    cursor: pointer;
    transition: all .2s ease;
}

#footer .bank-account .copy-btn:hover {
    background: #005fcc;
    border-color: #005fcc;
}

#footer .bank-account .copy-btn:active {
    transform: scale(0.96);
}

@media (max-width: 1024px) {

    #footer {
        padding: 60px 40px 40px;
        margin-top: 100px;
    }

    #footer .inner {
        gap: 50px;
    }

    #footer .banner {
        padding: 80px 20px 30px;
    }

    #footer .banner h2 {
        font-size: 2rem;
    }

    #footer .bottom {
        padding: 50px 40px 0 40px;
    }

    #footer .top {
        flex-direction: column;
        gap: 50px;
    }

    #footer .map {
        gap: 40px;
    }
}

@media (min-width:769px) {
    #footer .mbr {
        display: none;
    }
}

@media (max-width: 768px) {

    #footer {
        border-radius: 24px;
        padding: 50px 20px 30px;
        margin-top: 0;
    }

    #footer .mbr {
        display: block;
    }

    #footer .inner {
        gap: 40px;
    }

    #footer .banner {
        padding: 60px 10px 20px;
    }

    #footer .banner h2 {}



    #footer .bottom {
        padding: 40px 20px 0 20px;
        border-radius: 20px;
    }

    #footer .top {
        gap: 40px;
        padding-bottom: 40px;
    }

    #footer .map {
        flex-direction: column;
        gap: 30px;
    }

    #footer .copy {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 24px 0;
    }

    #footer .copy-left a,
    #footer .copy-right {
        font-size: 14px;
    }

    #footer .cs {
        padding-left: 0;
    }
}

/* 개인정보 모달 (components/ui/modal) — 모바일 슬라이드 메뉴보다 위 */
#modal-privacy.ui-modal {
    z-index: 10050;
}

/* 개인정보처리방침 모달 — 본문 가독성 (토스 스타일 느낌, 구조 변경 없음) */
#modal-privacy .ui-modal-title {
    font-size: 18px;
    font-weight: 600;
    color: #111;
}

#modal-privacy .ui-modal-body {
    padding: 16px 20px;
}

#modal-privacy .ui-modal-body p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 10px;
}

#modal-privacy .ui-modal-body p:last-child {
    margin-top: 12px;
}

#modal-privacy .ui-modal-body a {
    font-size: 15px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
}
