/* 
 * 뚜러조케어 (ddurujocare) 초청량 4차 개편 CSS 디자인 시스템
 * 디자인 테마: 초청량 클리어 워터 블루 (Water Clear Blue) & 퓨어 화이트 (Pure White)
 * 마감 기법: 칙칙한 막힌 어두운 색 100% 박멸, 가로고정 Before/After 줌인, 초슬림 컴팩트 폼
 */

/* --------------------------------------------------
   [1] 글로벌 디자인 토큰 및 리셋 
-------------------------------------------------- */
:root {
    --clear-blue: #007aff;
    --soft-blue: #f0f7ff;
    --ice-blue: #e0f2fe;
    --pure-white: #ffffff;
    --slate-dark: #1e293b;
    --slate-gray: #64748b;
    --slate-light: #f8fafc;
    --border-color: #e2e8f0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--pure-white) !important;
    font-family: 'Noto Sans KR', sans-serif;
    color: var(--slate-dark);
    -webkit-font-smoothing: antialiased;
}

/* 반응형 개행 헬퍼 클래스 (PC 기본값: PC에서는 모바일 개행 br을 숨김) */
.br-mobile {
    display: none !important;
}
.no-br-mobile {
    display: inline;
}
.hidden-mobile {
    display: inline;
}

/* 타이틀 타이포그래피 프레임 */
.section-title-wrap {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.section-kicker {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: var(--clear-blue);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 16px;
    background: var(--soft-blue);
    padding: 6px 18px;
    border-radius: 4px;
    border: 1px solid rgba(0, 122, 255, 0.15);
}

.section-main-title {
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 900;
    color: var(--slate-dark);
    line-height: 1.3;
    letter-spacing: -0.05em;
    margin-bottom: 18px;
    word-break: keep-all;
}

.section-desc {
    font-size: 16px;
    color: var(--slate-gray);
    line-height: 1.75;
    letter-spacing: -0.03em;
    word-break: keep-all;
}

/* --------------------------------------------------
   [2] 24시 신뢰 보증 띠 배너 (main 상단 자연스러운 배치) 
-------------------------------------------------- */
.main-top-banner {
    width: 100%;
    height: 48px;
    background-color: var(--clear-blue);
    color: #ffffff;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 82, 255, 0.1);
}

.main-top-banner .banner-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
}

.main-top-banner .banner-item {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.main-top-banner .banner-divider {
    width: 1px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.25);
}

/* --------------------------------------------------
   [3] 참고사이트2 스타일의 웅장한 애니메이션 Hero Section 
-------------------------------------------------- */
.hero-section {
    position: relative;
    width: 100%;
    padding: 100px 0 120px;
    /* 맑고 투명한 하늘빛 그라데이션 - 막힌 다크 블루 100% 영구 추방 */
    background: linear-gradient(135deg, var(--ice-blue) 0%, var(--pure-white) 100%);
    color: var(--slate-dark);
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-text-area {
    max-width: 900px;
    margin: 0 auto;
}

.hero-eyebrow {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge-urgent {
    background: var(--soft-blue);
    color: var(--clear-blue);
    border: 1px solid rgba(0, 122, 255, 0.2);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.badge-as {
    background: var(--clear-blue);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.hero-title {
    font-size: clamp(34px, 5.5vw, 54px);
    line-height: 1.25;
    font-weight: 900;
    color: var(--slate-dark);
    letter-spacing: -0.06em;
    margin-bottom: 24px;
    word-break: keep-all;
}

.hero-title .accent-color {
    color: var(--clear-blue);
    background: linear-gradient(180deg, transparent 75%, rgba(0, 122, 255, 0.08) 25%);
}

.hero-desc {
    font-size: 18px;
    line-height: 1.75;
    color: var(--slate-gray);
    margin-bottom: 45px;
    letter-spacing: -0.03em;
    word-break: keep-all;
}

/* 신규 통계 스펙: 30분 평균출동 / 24시 연중무휴 / 1년 A/S 보증 */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 600px;
    margin: 0 auto 50px;
}

.stat-card {
    background: var(--pure-white);
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(7, 31, 67, 0.02);
}

.stat-num {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 30px;
    font-weight: 900;
    color: var(--clear-blue);
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 13px;
    color: var(--slate-gray);
    font-weight: 700;
    letter-spacing: -0.04em;
}

/* 둥실둥실 떠 있는 참고사이트2 스타일 핫라인 카드 */
.hero-call-card-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.hero-call-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--pure-white);
    border: 2px solid var(--clear-blue);
    border-radius: 20px;
    padding: 20px 50px;
    box-shadow: 0 15px 35px rgba(0, 122, 255, 0.15);
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    animation: floatSoft 4.5s ease-in-out infinite;
}

.hero-call-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(0, 122, 255, 0.25);
    color: var(--clear-blue);
}

.call-card-label {
    font-size: 12px;
    font-weight: 800;
    color: var(--slate-gray);
    letter-spacing: -0.02em;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.call-card-phone {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 950;
    color: var(--clear-blue);
    letter-spacing: -0.02em;
}

@keyframes floatSoft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* --------------------------------------------------
   [3-1] WHY DDURUJO CARE Section (수치 신뢰 카드)
-------------------------------------------------- */
.why-ddurujo-section {
    padding: 100px 0;
    background: var(--pure-white);
    border-top: 1px solid var(--border-color);
}

.why-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.why-card {
    background: var(--pure-white);
    border: 1.5px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.01);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), 
                box-shadow 0.4s ease, 
                border-color 0.4s ease;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 122, 255, 0.02) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.why-card:hover::before {
    opacity: 1;
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: var(--clear-blue);
    box-shadow: 0 15px 35px rgba(0, 122, 255, 0.08);
}

.why-icon-wave {
    width: 60px;
    height: 60px;
    background: var(--soft-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border: 1px solid rgba(0, 122, 255, 0.1);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.why-card:hover .why-icon-wave {
    transform: scale(1.1) rotate(5deg);
    background: var(--ice-blue);
}

.why-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-card-icon i {
    font-size: 24px;
    color: var(--clear-blue);
    text-shadow: 0 2px 10px rgba(0, 122, 255, 0.15);
}

.why-card-num-box {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 12px;
}

.why-card-num {
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-weight: 950;
    color: var(--clear-blue);
    letter-spacing: -0.02em;
}

.why-card-unit {
    font-size: 18px;
    font-weight: 800;
    color: var(--slate-dark);
    margin-left: 3px;
}

.why-card-title {
    font-size: 18px;
    font-weight: 900;
    color: var(--slate-dark);
    margin-bottom: 14px;
    letter-spacing: -0.04em;
}

.why-card-desc {
    font-size: 14px;
    color: var(--slate-gray);
    line-height: 1.6;
    letter-spacing: -0.03em;
    word-break: keep-all;
}

/* --------------------------------------------------
   [3-2] OUR CORE SERVICE Section (5대 프리미엄 카드)
-------------------------------------------------- */
.core-service-section {
    padding: 100px 0;
    background: var(--slate-light);
    border-top: 1px solid var(--border-color);
}

.service-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 24px;
}

.service-card {
    background: var(--pure-white);
    border: 1.5px solid var(--border-color);
    border-radius: 16px;
    padding: 30px 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(7, 31, 67, 0.01);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), 
                box-shadow 0.4s ease, 
                border-color 0.4s ease;
}

/* 카드 하단부에 청량한 블루 라인이 슥 슬라이딩 차오르는 마이크로 인터랙션 */
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background-color: var(--clear-blue);
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-card:hover::after {
    width: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--clear-blue);
    box-shadow: 0 12px 28px rgba(0, 122, 255, 0.07);
}

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.badge-service {
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: -0.03em;
}

.badge-service.urgent { background: #f0f7ff; color: var(--clear-blue); border: 1px solid rgba(0, 122, 255, 0.15); }
.badge-service.remove { background: #e0f2fe; color: #0284c7; border: 1px solid rgba(2, 132, 199, 0.15); }
.badge-service.handle { background: #ecfdf5; color: #059669; border: 1px solid rgba(5, 150, 105, 0.15); }
.badge-service.wash { background: #f0fdfa; color: #0d9488; border: 1px solid rgba(13, 148, 136, 0.15); }
.badge-service.detect { background: #fef2f2; color: #ef4444; border: 1px solid rgba(239, 68, 68, 0.15); }
.badge-service.engineering { background: #f8fafc; color: #475569; border: 1px solid rgba(71, 85, 105, 0.15); }

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-icon i {
    font-size: 28px;
    color: var(--clear-blue);
    text-shadow: 0 2px 10px rgba(0, 122, 255, 0.15);
    transition: color 0.4s ease;
}

.service-card:hover .service-icon i {
    color: #0056d8;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(-8deg);
}

.service-title {
    font-size: 20px;
    font-weight: 900;
    color: var(--slate-dark);
    margin-bottom: 12px;
    letter-spacing: -0.04em;
}

.service-desc {
    font-size: 13.5px;
    color: var(--slate-gray);
    line-height: 1.6;
    letter-spacing: -0.03em;
    word-break: keep-all;
}

/* --------------------------------------------------
   [4] Before & After Section (가로 팽창 제거 및 줌인 조화) 
-------------------------------------------------- */
.before-after-section {
    padding: 100px 0;
    background: var(--slate-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.ba-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.ba-card {
    background: var(--pure-white);
    border: 1.5px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.015);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    cursor: pointer; /* 상세 과정 확인 클릭 유도 */
}

.ba-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    display: flex;
}

/* 폭을 50%로 견고하게 고정하여 마우스 호버 시 좌우가 요동치지 않음 */
.ba-side {
    position: relative;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.ba-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.tag-before {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: var(--slate-gray); /* 빨간색 영구 박멸 */
    color: var(--white);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.tag-after {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: var(--clear-blue); /* 청량한 블루 마감 */
    color: var(--white);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

/* 호버 시 50% 폭은 고정하고, 이미지 전체를 정교하게 줌인 및 카드 미세 부유 */
.ba-card:hover {
    border-color: var(--clear-blue);
    box-shadow: 0 10px 30px rgba(0, 122, 255, 0.08);
    transform: translateY(-2px) !important;
}

.ba-card:hover .ba-side img {
    transform: scale(1.05);
}

.ba-info {
    padding: 28px;
}

.ba-info h4 {
    font-size: 18px;
    font-weight: 900;
    color: var(--slate-dark);
    margin-bottom: 10px;
    letter-spacing: -0.05em;
}

.ba-info p {
    font-size: 14px;
    color: var(--slate-gray);
    line-height: 1.6;
    letter-spacing: -0.03em;
}

/* --------------------------------------------------
   [5] Photo Gallery & Lightbox (12개 대확장 그리드) 
-------------------------------------------------- */
.gallery-section {
    padding: 100px 0;
    background: var(--pure-white);
}

/* 카테고리 탭 버튼 프리미엄 스타일 */
.gallery-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 45px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.tab-btn {
    background: var(--slate-light);
    color: var(--slate-gray);
    border: 1px solid var(--border-color);
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    letter-spacing: -0.04em;
    outline: none;
}

.tab-btn:hover {
    background: var(--soft-blue);
    color: var(--clear-blue);
    border-color: rgba(0, 122, 255, 0.25);
    transform: translateY(-1px);
}

.tab-btn.active {
    background: var(--clear-blue);
    color: var(--pure-white);
    border-color: var(--clear-blue);
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.25);
}

/* 갤러리 안내 가이드 배너 */
.gallery-explore-guide {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--soft-blue);
    border: 1px dashed rgba(0, 122, 255, 0.35);
    border-radius: 16px;
    padding: 18px 30px;
    max-width: 900px;
    margin: -10px auto 45px;
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.04);
}

.gallery-explore-guide p {
    margin: 0;
    font-size: 14.5px;
    color: var(--slate-dark);
    line-height: 1.6;
    letter-spacing: -0.03em;
    word-break: keep-all;
}

.gallery-explore-guide p b {
    color: var(--clear-blue);
    font-weight: 800;
}

.guide-pulse-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--clear-blue);
    font-size: 18px;
    animation: guidePulseIcon 2s infinite ease-in-out;
}

@keyframes guidePulseIcon {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; filter: drop-shadow(0 0 5px rgba(0, 122, 255, 0.5)); }
}

/* 모바일 768px 이하 안내 배너 피팅 */
@media (max-width: 768px) {
    .gallery-explore-guide {
        margin: -5px 16px 25px !important;
        padding: 12px 18px !important;
        border-radius: 12px !important;
        gap: 8px !important;
    }
    .gallery-explore-guide p {
        font-size: 12px !important;
        line-height: 1.5 !important;
    }
    .guide-pulse-icon {
        font-size: 15px !important;
    }
    
    /* 모바일 2열 카드 뷰에서의 뱃지 및 정보 바 피팅 */
    .gallery-badge {
        top: 8px !important;
        right: 8px !important;
        padding: 4px 8px !important;
        font-size: 9px !important;
        gap: 4px !important;
    }
    .gallery-info-bar {
        padding: 14px 10px 10px !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 6px !important;
    }
    .gallery-info-bar h4 {
        font-size: 11px !important;
        line-height: 1.35 !important;
        text-align: left !important;
    }
    .gallery-info-bar span {
        font-size: 9.5px !important;
        padding: 4px 6px !important;
        justify-content: center !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}

.gallery-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(7, 31, 67, 0.04);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease, opacity 0.35s ease;
    opacity: 0;
    transform: scale(0.95);
}

.gallery-item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 122, 255, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* 이미지 장수 플로팅 뱃지 */
.gallery-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(15, 23, 42, 0.75); /* 다크 블루 그레이 반투명 */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: -0.02em;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), background 0.3s;
}

.gallery-item:hover .gallery-badge {
    transform: scale(1.05);
    background: var(--clear-blue); /* 호버 시 청량 블루 톤으로 영롱하게 변화 */
    border-color: rgba(255,255,255,0.25);
}

/* 하단 상시 노출 정보 바 */
.gallery-info-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.7) 70%, transparent 100%);
    padding: 24px 18px 18px;
    box-sizing: border-box;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 15px;
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.35s;
}

.gallery-item:hover .gallery-info-bar {
    transform: translateY(100%); /* 호버 시 스윽 아래로 사라지며 이미지가 다 보임 */
    opacity: 0;
}

.gallery-info-bar h4 {
    margin: 0;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: -0.04em;
    word-break: keep-all;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.gallery-info-bar span {
    color: var(--clear-blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: -0.03em;
    flex-shrink: 0;
    background: rgba(0, 122, 255, 0.15);
    border: 1px solid rgba(0, 122, 255, 0.25);
    padding: 3px 8px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-shadow: none;
}

/* 호버 시 나타나는 프리미엄 오버레이 */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 122, 255, 0.92); /* 더 진하고 청량한 오버레이 */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 6;
}

.overlay-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    color: #ffffff;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.overlay-inner i {
    font-size: 28px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
    animation: overlayIconPulse 1.5s infinite;
}

@keyframes overlayIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.overlay-inner span {
    font-weight: 800;
    font-size: 15px;
    letter-spacing: -0.03em;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    padding: 8px 22px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    word-break: keep-all;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .overlay-inner {
    transform: scale(1);
}

/* 멈춤 없는 슬라이더 라이트박스 오버레이 모달 */
.slider-lightbox-modal {
    display: none;
    position: fixed;
    z-index: 100000 !important;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 15, 30, 0.97); /* 극상의 고급 다크 블루 톤 */
    backdrop-filter: blur(20px);
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-sizing: border-box;
}

.slider-lightbox-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

/* 상단 프리미엄 공중 배너 가이드 */
.lightbox-top-banner {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 24px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 14px;
    letter-spacing: -0.03em;
    z-index: 100002;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    pointer-events: none; /* 클릭 방해 없음 */
    word-break: keep-all;
    text-align: center;
}

.lightbox-top-banner b {
    color: var(--clear-blue, #007aff);
}

.guide-pulsing-dot {
    width: 8px;
    height: 8px;
    background-color: #ff9f0a; /* 눈길을 끄는 오렌지색 */
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px #ff9f0a;
    animation: guidePulse 1.5s infinite ease-in-out;
}

@keyframes guidePulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.4); opacity: 1; box-shadow: 0 0 15px #ff9f0a; }
}

.guide-mobile-txt {
    display: none;
}

/* 닫기 단추 */
.lightbox-close-btn {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #ffffff;
    font-size: 45px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 100003;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    user-select: none;
}

.lightbox-close-btn:hover {
    color: #ff3b30;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg);
}

/* 2컬럼 레이아웃 랩 */
.lightbox-content-wrapper {
    display: flex;
    width: 90%;
    max-width: 1400px;
    height: 78vh;
    gap: 40px;
    align-items: stretch;
    position: relative;
    z-index: 100001;
    box-sizing: border-box;
}

/* [왼쪽 영역] 이미지/비디오 슬라이더 */
.lightbox-left-pane {
    flex: 7; /* 70% 비중 */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    box-sizing: border-box;
}

/* 좌우 화살표 버튼 - 이미지 내부 혹은 양옆 플로팅 */
.lightbox-prev-btn, .lightbox-next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    z-index: 100002;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.lightbox-prev-btn:hover, .lightbox-next-btn:hover {
    background: var(--clear-blue, #007aff);
    border-color: var(--clear-blue, #007aff);
    box-shadow: 0 0 25px rgba(0, 122, 255, 0.6);
    transform: translateY(-50%) scale(1.08);
}

.lightbox-prev-btn { left: 20px; }
.lightbox-next-btn { right: 20px; }

#lightbox-media-box {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.lightbox-slide-img, .lightbox-slide-video {
    max-width: 100%;
    max-height: 52vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    transition: opacity 0.25s ease-in-out;
}

/* 하부 캡션 및 안내 영역 랩 */
.lightbox-left-bottom-wrap {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    gap: 15px;
}

/* 캡션 텍스트 */
.lightbox-slide-caption {
    color: #ffffff;
    font-size: 14.5px;
    margin: 0;
    text-align: left;
    letter-spacing: -0.03em;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    padding: 10px 24px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    word-break: keep-all;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.lightbox-caption-text {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.lightbox-caption-counter {
    color: #34c759; /* 신선하고 시인성이 좋은 녹색 */
    font-weight: 700;
    font-family: monospace;
    font-size: 13.5px;
    background: rgba(52, 199, 89, 0.15);
    padding: 2px 8px;
    border-radius: 10px;
}

/* 다음 시공 보기 클릭 유도 힌트 */
.lightbox-nav-guide-hint {
    background: rgba(255, 159, 10, 0.15); /* 주황색 럭셔리 반투명 */
    border: 1px dashed rgba(255, 159, 10, 0.4);
    color: #ff9f0a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: -0.02em;
    padding: 8px 18px;
    border-radius: 15px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    animation: hintPulse 2s infinite;
}

.lightbox-nav-guide-hint:hover {
    background: rgba(255, 159, 10, 0.25);
    border-style: solid;
    transform: scale(1.03);
}

@keyframes hintPulse {
    0%, 100% { opacity: 0.8; box-shadow: 0 0 0 0 rgba(255, 159, 10, 0); }
    50% { opacity: 1; box-shadow: 0 0 8px 2px rgba(255, 159, 10, 0.25); }
}

.hint-arrow {
    display: inline-block;
    animation: hintArrowMove 1s infinite alternate;
}

@keyframes hintArrowMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(3px); }
}

/* [오른쪽 영역] 고정 시공 순서 상세 패널 */
.lightbox-right-pane {
    flex: 3; /* 30% 비중 */
    background: rgba(15, 23, 42, 0.85); /* 럭셔리 다크 블루 메탈 톤 */
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    overflow: hidden;
}

.lightbox-pane-header {
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 16px;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.pane-badge {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 800;
    color: var(--clear-blue);
    background: rgba(0, 122, 255, 0.15);
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}

.lightbox-right-pane h3 {
    font-size: 18px;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 10px;
    line-height: 1.4;
    letter-spacing: -0.04em;
    word-break: keep-all;
}

.lightbox-right-pane p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.6;
    letter-spacing: -0.02em;
    word-break: keep-all;
}

.lightbox-steps-container {
    flex: 1;
    overflow-y: auto;
    padding-right: 8px;
}

/* 스크롤바 커스텀 */
.lightbox-steps-container::-webkit-scrollbar {
    width: 6px;
}
.lightbox-steps-container::-webkit-scrollbar-track {
    background: transparent;
}
.lightbox-steps-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
}
.lightbox-steps-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-steps-ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lightbox-steps-ul li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    align-items: flex-start;
}

.step-num {
    background: var(--clear-blue);
    color: #ffffff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(0, 122, 255, 0.3);
}

.step-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    line-height: 1.55;
    font-weight: 500;
    word-break: keep-all;
    letter-spacing: -0.02em;
}

/* 라이트박스 비동기 비디오 플레이어 스타일 */
.lightbox-slide-video {
    max-width: 100%;
    max-height: 52vh;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    outline: none;
    background-color: #000000;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
}

/* 모바일 전용 반응형 최적화 */
@media (max-width: 768px) {
    .lightbox-top-banner {
        width: 85%;
        padding: 8px 16px;
        font-size: 12px;
        top: 15px;
    }
    
    .guide-desktop-txt { display: none; }
    .guide-mobile-txt { display: inline; }
    
    .lightbox-close-btn {
        top: 12px;
        right: 12px;
        width: 38px;
        height: 38px;
        font-size: 32px;
        background: rgba(0, 0, 0, 0.5);
    }
    
    /* 모바일에서 2컬럼 상하 배치로 전환 */
    .lightbox-content-wrapper {
        flex-direction: column;
        width: 94%;
        height: 82vh;
        gap: 16px;
        margin-top: 50px;
    }
    
    .lightbox-left-pane {
        flex: none;
        height: 46vh; /* 이미지 슬라이더 영역 높이 고정 */
        padding: 12px;
        border-radius: 16px;
    }
    
    .lightbox-prev-btn, .lightbox-next-btn {
        width: 44px;
        height: 44px;
        font-size: 20px;
        background: rgba(0, 0, 0, 0.5); /* 모바일에서는 시인성을 위해 어둡게 */
        border-color: rgba(255, 255, 255, 0.2);
    }
    
    .lightbox-prev-btn { left: 10px; }
    .lightbox-next-btn { right: 10px; }
    
    .lightbox-slide-img, .lightbox-slide-video {
        max-height: 32vh;
    }
    
    .lightbox-left-bottom-wrap {
        margin-top: 10px;
        display: flex !important;
        flex-direction: column !important; /* 모바일 세로 2열 정렬 */
        align-items: center !important;
        gap: 8px !important;
        width: 100% !important;
        box-sizing: border-box;
    }
    
    .lightbox-slide-caption {
        font-size: clamp(10px, 3.2vw, 12px) !important;
        padding: 6px 14px !important;
        width: 92% !important;
        max-width: 320px !important;
        justify-content: center !important;
        white-space: nowrap !important; /* 개행 방지 */
        box-sizing: border-box;
        display: inline-flex !important;
        align-items: center !important;
        gap: 8px !important;
    }

    .lightbox-caption-text {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 160px; /* 긴 지명 파일명 자동 말줄임 처리 */
        display: inline-block;
    }

    .lightbox-caption-counter {
        font-size: 11px !important;
        padding: 2px 6px !important;
        flex-shrink: 0 !important; /* 카운터 깨짐 방지 */
    }
    
    .lightbox-nav-guide-hint {
        padding: 6px 16px !important;
        font-size: 11px !important;
        width: 92% !important;
        max-width: 320px !important;
        justify-content: center !important;
        white-space: nowrap !important; /* 힌트 버튼 깨짐 방지 */
        box-sizing: border-box;
    }
    
    /* 모바일 하단 시공 일지 텍스트 고정 영역 */
    .lightbox-right-pane {
        flex: 1;
        padding: 16px;
        border-radius: 16px;
        overflow-y: auto;
    }
    
    .lightbox-pane-header {
        padding-bottom: 10px;
        margin-bottom: 12px;
    }
    
    .pane-badge {
        font-size: 10px;
        padding: 2px 6px;
        margin-bottom: 6px;
    }
    
    .lightbox-right-pane h3 {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .lightbox-right-pane p {
        font-size: 12px;
        line-height: 1.5;
    }
    
    .lightbox-steps-ul li {
        margin-bottom: 10px;
        gap: 8px;
    }
    
    .step-num {
        width: 18px;
        height: 18px;
        font-size: 9.5px;
    }
    
    .step-text {
        font-size: 12px;
        line-height: 1.45;
    }
}

/* --------------------------------------------------
   [6] Real-time Review Columns (상시 노출 복원 마감) 
-------------------------------------------------- */
.review-section {
    padding: 100px 0;
    background: var(--slate-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden; /* 슬라이더 가로 넘침 방지 */
}

/* 1줄 무한 가로 롤링 트랙 컨테이너 */
.review-marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

/* 좌우 부드럽게 연기처럼 흐려져 들어오고 나가는 고급스러운 그라데이션 페이딩 마스크 */
.review-marquee-container::before,
.review-marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: clamp(50px, 15vw, 250px);
    z-index: 5;
    pointer-events: none;
}

.review-marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--slate-light) 0%, transparent 100%);
}

.review-marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--slate-light) 0%, transparent 100%);
}

/* 무한 롤링 트랙 (CSS GPU 가속 적용으로 끊김 및 버벅임 완전 제로) */
.review-marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: marqueeLinear 100s linear infinite;
    will-change: transform;
}

/* 마우스 호버 시 글을 꼼꼼하게 다 읽을 수 있도록 자연스럽게 일시정지(Pause)되는 최상의 UX 설계 */
.review-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marqueeLinear {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        /* 정확히 반(50%)을 스크롤했을 때 순간 리셋하여 Seamless 구현 */
        transform: translate3d(-50%, 0, 0);
    }
}

.review-card {
    background: var(--pure-white);
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    width: 320px; /* 카드 가로 폭 고정 */
    flex-shrink: 0; /* 밀려나서 찌그러지는 현상 방지 */
    box-shadow: 0 4px 12px rgba(7, 31, 67, 0.015);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: var(--clear-blue);
    box-shadow: 0 8px 24px rgba(0, 122, 255, 0.06);
}

.review-stars {
    display: block;
    color: #ffc107;
    font-size: 13px;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.review-user {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--slate-gray);
    margin-bottom: 14px;
    letter-spacing: -0.03em;
}

.review-content {
    font-size: 14px;
    color: var(--slate-dark);
    line-height: 1.6;
    font-weight: 500;
    letter-spacing: -0.03em;
    word-break: keep-all;
}

/* --------------------------------------------------
   [7] 안심 해결 기술 보증서 
-------------------------------------------------- */
.trust-declaration {
    padding: 100px 0;
    background: var(--pure-white);
}

.trust-box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--pure-white);
    border: 1.5px solid var(--border-color);
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
}

.stamp-gold {
    display: inline-block;
    border: 2px solid var(--clear-blue);
    border-radius: 4px;
    padding: 6px 16px;
    color: var(--clear-blue);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -0.04em;
    text-align: center;
    margin-bottom: 24px;
    transform: rotate(-3deg);
    background: var(--soft-blue);
}

.trust-box h3 {
    font-size: 24px;
    font-weight: 900;
    color: var(--slate-dark);
    margin-bottom: 20px;
    letter-spacing: -0.05em;
    word-break: keep-all;
}

.trust-box p {
    font-size: 16px;
    color: var(--slate-gray);
    line-height: 1.8;
    letter-spacing: -0.03em;
    word-break: keep-all;
}

/* --------------------------------------------------
   [8] 최하단 30초 긴급 상담 폼 (극도 간소화 스마트 슬림화) 
-------------------------------------------------- */
.consult-form-section {
    padding: 100px 0;
    /* 막힌 어두운 색 완전 소멸 -> 눈부시게 밝은 맑은 하늘빛 그라데이션 적용 */
    background: linear-gradient(135deg, var(--ice-blue) 0%, var(--pure-white) 100%);
    color: var(--slate-dark);
    border-top: 1px solid var(--border-color);
}

.consult-form-container {
    max-width: 760px; /* 초슬림을 위해 가로폭 대폭 축소 */
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.form-title-head {
    text-align: center;
}

.badge-form {
    font-family: 'Outfit', sans-serif;
    background: var(--soft-blue);
    border: 1px solid rgba(0, 122, 255, 0.2);
    color: var(--clear-blue);
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.form-title-head h2 {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 900;
    color: var(--slate-dark);
    margin-bottom: 12px;
    letter-spacing: -0.05em;
}

.form-title-head p {
    font-size: 15px;
    color: var(--slate-gray);
    margin-bottom: 20px;
}

.form-phone-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.phone-label {
    font-size: 12px;
    font-weight: 800;
    color: var(--slate-gray);
}

.phone-link {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--clear-blue);
}

/* 슬림 인라인 형 폼 래퍼 */
.form-box-compact {
    width: 100%;
    background: var(--pure-white);
    border: 2px solid var(--clear-blue);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 122, 255, 0.08);
}

.form-input-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

@media (min-width: 600px) {
    .form-input-grid {
        grid-template-columns: repeat(2, 1fr); /* 2x2 슬림 레이아웃 */
    }
}

.form-input-grid input[type="text"],
.form-input-grid input[type="tel"],
.form-input-grid select {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    color: var(--slate-dark);
    outline: none;
    transition: all 0.2s ease;
    background-color: var(--slate-light);
}

.form-input-grid input:focus,
.form-input-grid select:focus {
    border-color: var(--clear-blue);
    background-color: var(--pure-white);
    box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.06);
}

/* 동의 및 제출 원라인 세팅 */
.form-agree-submit {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.agree-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--slate-gray);
}

.agree-label input[type="checkbox"] {
    accent-color: var(--clear-blue);
}

.btn-submit-consult {
    background-color: var(--clear-blue);
    color: var(--pure-white);
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -0.04em;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 82, 255, 0.15);
    transition: all 0.2s ease;
}

.btn-submit-consult:hover {
    background-color: #0056d8;
    box-shadow: 0 6px 16px rgba(0, 82, 255, 0.25);
    transform: translateY(-1px);
}

/* --------------------------------------------------
   [9] 프리미엄 Footer 
-------------------------------------------------- */
.main-footer {
    background: #0f1c30;
    color: #64748b;
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 50px;
}

.footer-logo-text {
    font-size: 26px;
    font-weight: 900;
    color: #ffffff;
    display: block;
    margin-bottom: 12px;
    letter-spacing: -0.05em;
}

.footer-tagline {
    font-size: 13px;
    color: #475569;
    margin-bottom: 35px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.footer-company-info p {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 6px;
    letter-spacing: -0.03em;
}

.footer-company-info a {
    color: #94a3b8;
}

.footer-call-side h3 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.04em;
}

.footer-phone-btn {
    display: inline-block;
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
    background: var(--clear-blue);
    padding: 14px 28px;
    border-radius: 6px;
    margin-bottom: 28px;
    letter-spacing: -0.04em;
    box-shadow: 0 4px 15px rgba(0, 82, 255, 0.2);
    transition: all 0.2s ease;
}

.footer-phone-btn:hover {
    background-color: #0056d8;
    color: #ffffff;
}

.footer-copyright {
    font-size: 11px;
    color: #334155;
    line-height: 1.6;
    letter-spacing: -0.03em;
}

/* --------------------------------------------------
   [10] 모바일 플로팅 링크 단추 (가로 단일 행 슬림 캡슐 패널 개편)
-------------------------------------------------- */
.floating-contact-panel {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 94%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 122, 255, 0.15);
    box-shadow: 0 10px 35px rgba(0, 122, 255, 0.12);
    border-radius: 30px; /* 완전 둥글고 세련된 캡슐형 프레임 */
    padding: 8px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    z-index: 9999;
    box-sizing: border-box;
}

.float-left {
    flex: 1.2;
    display: flex;
}

.float-right {
    flex: 1.8;
    display: flex;
    gap: 6px;
}

.float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px; /* 모바일 터치 최적 및 컴팩트한 높이 */
    border-radius: 20px; /* 둥글고 직관적인 캡슐 마감 */
    font-size: 12px;
    font-weight: 800;
    letter-spacing: -0.04em;
    transition: all 0.2s ease;
    width: 100%;
    text-decoration: none;
    box-sizing: border-box;
}

.float-phone {
    background: var(--clear-blue);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 122, 255, 0.2);
}

.float-phone:hover {
    background: #0056d8;
}

.float-naver {
    background: #03C75A;
    color: #ffffff;
    border: none;
}

.naver-n-box {
    display: flex;
    align-items: center;
    gap: 4px;
}

.n-symbol {
    font-weight: 900;
    font-size: 14px;
}

.blog-text {
    font-size: 8px;
    font-weight: 700;
}

.float-kakao {
    background: #fef08a;
    color: #451a03;
    border: 1px solid #fde047;
}

.float-kakao:hover {
    background: #fde047;
}

/* --------------------------------------------------
   [11] 5차 모바일 반응형 초정밀 최종 조율 
-------------------------------------------------- */
@media (max-width: 1024px) {
    /* 띠 배너 모바일에서도 단일 줄 유지하여 세로폭 공간 잠식 완벽 방지 */
    .main-top-banner {
        height: auto;
        padding: 8px 0;
    }
    
    .main-top-banner .banner-inner {
        gap: 12px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        height: auto;
        padding: 4px 15px;
    }
    
    .main-top-banner .banner-divider {
        display: inline-block;
        height: 10px;
        background-color: rgba(255, 255, 255, 0.18);
    }

    .hero-container {
        padding: 60px 24px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .footer-phone-btn {
        margin: 0 auto 24px;
    }
}

@media (max-width: 768px) {
    /* 모바일 반응형 줄바꿈 및 개행 정밀 튜닝 */
    .br-mobile {
        display: block !important;
    }
    .no-br-mobile {
        display: block !important;
    }
    .hidden-mobile {
        display: none !important;
    }

    /* BEFORE & AFTER 카드 모바일 조밀도 및 폰트 축소 (제목 2줄 찌그러짐 방지) */
    .ba-info {
        padding: 18px !important;
    }
    .ba-info h4 {
        font-size: 15.5px !important;
        line-height: 1.4 !important;
    }
    .ba-info p {
        font-size: 12.5px !important;
        line-height: 1.5 !important;
    }

    .main-top-banner .banner-inner {
        gap: 8px;
    }
    
    .main-top-banner .banner-item {
        font-size: 11px; /* 모바일 최적 소형 폰트 */
    }
    
    .main-top-banner .banner-divider {
        display: none; /* 모바일 기기에서는 디바이더 숨기고 갭(Gap)으로 정렬 */
    }

    /* 히어로 섹션 모바일 여백 및 상단 마진 대폭 압축 */
    .hero-section {
        padding: 40px 0 50px !important; /* 위아래 거대 여백 극도 감축 */
    }
    .hero-container {
        padding: 0 16px !important;
    }
    .hero-eyebrow {
        margin-bottom: 14px !important; /* 뱃지 아래 여백 축소 */
    }

    /* 3대 스펙 카드 모바일 가로 1줄(1행) 단일 배열 강제 정렬 */
    .hero-stats {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 6px !important;
        max-width: 100% !important;
        margin-bottom: 25px !important;
        padding: 0 4px !important;
    }
    .stat-card {
        padding: 10px 2px !important;
        border-radius: 8px !important;
    }
    .stat-num {
        font-size: clamp(16px, 4.5vw, 22px) !important;
        margin-bottom: 2px !important;
    }
    .stat-label {
        font-size: clamp(8.5px, 2.5vw, 10.5px) !important;
        letter-spacing: -0.06em !important;
        white-space: nowrap !important;
    }

    /* WORK GALLERY 카테고리 탭 버튼 모바일 가로 1줄 정렬 강제화 */
    .gallery-tabs {
        display: flex !important;
        flex-wrap: nowrap !important; /* 아래로 떨어짐 100% 철저 차단 */
        justify-content: space-between !important;
        gap: 5px !important;
        padding: 0 8px !important;
        margin-bottom: 25px !important;
        width: 100% !important;
        box-sizing: border-box;
    }
    .tab-btn {
        flex: 1 !important;
        padding: 8px 2px !important;
        font-size: clamp(9px, 2.6vw, 11px) !important;
        white-space: nowrap !important;
        border-radius: 20px !important;
        text-align: center !important;
    }

    /* 안심 기술 보증서 섹션 카드 바깥 상하 여백 대폭 슬림화 */
    .trust-declaration {
        padding: 25px 0 !important; /* 카드 바깥 상하 패딩 대폭 압축 (기존 100px) */
    }
    .trust-box {
        padding: 30px 18px !important; /* 내부 패딩 최적화 */
        margin: 0 16px !important;
    }

    .review-columns {
        grid-template-columns: 1fr;
    }
    
    .review-column:nth-child(2),
    .review-column:nth-child(3) {
        display: none; /* 모바일 1열 풍성하게 노출 */
    }
    
    .ba-grid {
        grid-template-columns: 1fr;
    }
    
    /* Before & After 이미지 모바일 텍스트 겹침 및 비율 안정화 */
    .tag-before, .tag-after {
        font-size: 9px;
        padding: 3px 8px;
        bottom: 8px;
    }
    .tag-before { left: 8px; }
    .tag-after { right: 8px; }

    /* 모바일 가로 2열 그리드 강제 적용 */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
        padding: 0 16px;
    }

    /* 모바일 기기에서의 슬라이더 이전/다음 단추 압축 */
    .lightbox-prev-btn, .lightbox-next-btn {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }
    .lightbox-prev-btn { left: 15px; }
    .lightbox-next-btn { right: 15px; }
    .lightbox-close-btn {
        top: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 32px;
    }

    /* WHY DDURUJO CARE 모바일 정밀 최적화 */
    .why-ddurujo-section {
        padding: 50px 0 !important;
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* 모바일 가로 2열 배치로 정보 핏 극대화 */
        gap: 16px !important;
        padding: 0 16px !important;
    }
    .why-card {
        padding: 24px 16px !important;
        border-radius: 12px !important;
    }
    .why-icon-wave {
        width: 48px !important;
        height: 48px !important;
        margin-bottom: 16px !important;
    }
    .why-card-icon {
        font-size: 18px !important;
    }
    .why-card-num {
        font-size: clamp(24px, 6vw, 32px) !important;
    }
    .why-card-unit {
        font-size: 13px !important;
    }
    .why-card-title {
        font-size: 15px !important;
        margin-bottom: 8px !important;
    }
    .why-card-desc {
        font-size: 12px !important;
        line-height: 1.5 !important;
    }

    /* OUR CORE SERVICE 모바일 정밀 최적화 - 가로 2열 콤팩트 배치 */
    .core-service-section {
        padding: 50px 0 !important;
    }
    .service-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* 모바일 2열 그리드로 전환 */
        gap: 12px !important; /* 모바일 특화 여백 */
        padding: 0 16px !important;
    }
    .service-card {
        padding: 20px 14px !important; /* 가로폭 축소에 따른 패딩 컴팩트화 */
        border-radius: 12px !important;
    }

    .service-card-header {
        margin-bottom: 12px !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 4px;
    }
    .badge-service {
        font-size: 10px !important;
        padding: 3px 6px !important;
        white-space: nowrap !important;
    }
    .service-icon i {
        font-size: 20px !important; /* 가로폭 축소에 맞춘 선명한 소형화 */
    }
    .service-title {
        font-size: clamp(15px, 4vw, 17px) !important; /* 모바일 제목 크기 최적화 */
        margin-bottom: 8px !important;
    }
    .service-desc {
        font-size: 11.5px !important; /* 가로폭 축소 대응 콤팩트한 폰트 스케일 */
        line-height: 1.45 !important;
    }
    /* 최하단 접수 폼 모바일 한줄 및 설명 개행 미세 최적화 */
    .form-title-head h2 {
        font-size: clamp(14px, 4.2vw, 22px) !important; /* 모바일 폭에 맞게 유동적 축소 */
        white-space: nowrap !important; /* 개행 철저 방지하여 단일 1행 유지 */
        letter-spacing: -0.05em !important;
    }
    .form-title-head p {
        font-size: clamp(11px, 3.1vw, 13.5px) !important; /* 본문 크기 최적 피팅 */
        line-height: 1.55 !important;
        letter-spacing: -0.03em !important;
        word-break: keep-all !important;
    }
}

@media (max-width: 480px) {
    /* 480px 이하 초소형 스마트폰 환경에서도 스펙 3대 카드가 세로 분할되는 현상을 원천 방지하여 한줄 유지 */
    .hero-stats {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .hero-call-card {
        padding: 15px 24px;
    }
    
    .form-box-compact {
        padding: 20px;
    }

    /* 하단 플로팅 패널 가로 배열 캡슐형 모바일 초정밀 튜닝 */
    .floating-contact-panel {
        width: 95%;
        padding: 6px 10px;
        bottom: 12px;
    }
    
    .float-btn {
        height: 38px;
        font-size: 11px;
    }
    
    .float-phone .float-text {
        font-size: 10px;
    }

    /* 초소형 모바일 기기 전용 라이트박스 캡션 및 단추 튜닝 */
    .lightbox-slide-caption {
        font-size: 12px;
        padding: 6px 16px;
        margin-top: 15px;
    }
    .lightbox-prev-btn { left: 8px; }
    .lightbox-next-btn { right: 8px; }
    .lightbox-close-btn { top: 15px; right: 15px; width: 40px; height: 40px; }
}

/* ==================================================
   [12] 개인정보처리방침 모던 모달 팝업 스타일 (초청량 블루 테마)
================================================== */
.agree-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-privacy-view {
    background: none;
    border: none;
    color: var(--slate-gray);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
    transition: color 0.2s ease;
    font-family: inherit;
}

.btn-privacy-view:hover {
    color: var(--clear-blue);
}

/* 모달 오버레이 */
.privacy-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.6); /* 세련된 반투명 다크 */
    backdrop-filter: blur(8px); /* 고급 블러 처리 */
    -webkit-backdrop-filter: blur(8px);
    z-index: 100005 !important;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.privacy-modal-overlay.active {
    display: flex;
    opacity: 1;
}

/* 모달 컨텐츠 박스 */
.privacy-modal-content {
    background: var(--pure-white);
    border: 1px solid rgba(0, 122, 255, 0.15);
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 50px rgba(0, 122, 255, 0.12);
    overflow: hidden;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.privacy-modal-overlay.active .privacy-modal-content {
    transform: translateY(0);
}

/* 모달 헤더 */
.privacy-modal-header {
    background: var(--soft-blue);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.privacy-modal-header h3 {
    font-size: 17px;
    font-weight: 900;
    color: var(--slate-dark);
    letter-spacing: -0.04em;
    margin: 0;
}

.privacy-modal-close {
    font-size: 28px;
    color: var(--slate-gray);
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
    user-select: none;
}

.privacy-modal-close:hover {
    color: var(--clear-blue);
}

/* 모달 바디 */
.privacy-modal-body {
    padding: 24px;
    max-height: 300px;
    overflow-y: auto;
    font-size: 13px;
    line-height: 1.6;
    color: var(--slate-dark);
    text-align: left;
}

.privacy-modal-body h4 {
    font-size: 14px;
    font-weight: 800;
    color: var(--clear-blue);
    margin: 18px 0 8px;
    letter-spacing: -0.03em;
}

.privacy-modal-body h4:first-child {
    margin-top: 0;
}

.privacy-modal-body p {
    color: var(--slate-gray);
    margin-bottom: 12px;
    font-weight: 500;
    letter-spacing: -0.02em;
}

/* 스크롤바 디자인 */
.privacy-modal-body::-webkit-scrollbar {
    width: 6px;
}
.privacy-modal-body::-webkit-scrollbar-track {
    background: transparent;
}
.privacy-modal-body::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}
.privacy-modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--slate-gray);
}

/* 모달 푸터 */
.privacy-modal-footer {
    border-top: 1px solid var(--border-color);
    padding: 16px 24px;
    display: flex;
    justify-content: flex-end;
    background: var(--slate-light);
}

.btn-privacy-confirm {
    background-color: var(--clear-blue);
    color: var(--pure-white);
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 82, 255, 0.15);
    transition: all 0.2s ease;
}

.btn-privacy-confirm:hover {
    background-color: #0056d8;
    box-shadow: 0 6px 16px rgba(0, 82, 255, 0.25);
}

/* 모바일 전용 반응형 추가 보완 */
@media (max-width: 480px) {
    .privacy-modal-content {
        width: 92%;
    }
    .privacy-modal-body {
        padding: 20px;
        max-height: 250px;
    }
    .agree-wrapper {
        flex-direction: row;
        align-items: center;
        width: 100%;
        justify-content: space-between;
    }
}

/* ==================================================
   [13] 토스 스타일의 프리미엄 알럿 팝업 (Toss Alert Modal)
================================================== */
.toss-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.45); /* 세련된 어두운 블러 배경 */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 100010 !important;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.toss-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.toss-modal-content {
    background: var(--pure-white);
    border-radius: 28px; /* 토스 시그니처 둥글둥글한 코너 */
    width: 90%;
    max-width: 360px; /* 컴팩트한 모던 사이즈 */
    padding: 35px 24px 24px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 122, 255, 0.15);
    transform: scale(0.9) translateY(10px);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.15), opacity 0.3s ease;
    border: 1px solid rgba(0, 122, 255, 0.08);
}

.toss-modal-overlay.active .toss-modal-content {
    transform: scale(1) translateY(0);
}

.toss-modal-icon-wrap {
    width: 56px;
    height: 56px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 1px solid rgba(0, 122, 255, 0.12);
}

.toss-icon-check {
    font-size: 28px;
    color: var(--clear-blue);
    text-shadow: 0 2px 10px rgba(0, 122, 255, 0.2);
}

.toss-modal-title {
    font-size: 20px;
    font-weight: 850;
    color: var(--slate-dark);
    line-height: 1.45;
    margin-bottom: 12px;
    letter-spacing: -0.05em;
    word-break: keep-all;
}

.toss-modal-desc {
    font-size: 13.5px;
    color: var(--slate-gray);
    line-height: 1.6;
    margin-bottom: 28px;
    letter-spacing: -0.03em;
    word-break: keep-all;
}

.toss-modal-desc strong {
    color: var(--clear-blue);
    font-weight: 800;
}

.btn-toss-confirm {
    background-color: var(--clear-blue);
    color: var(--pure-white);
    border: none;
    width: 100%;
    padding: 14px 0;
    border-radius: 16px; /* 토스식 둥글둥글 긴 대형 버튼 */
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 122, 255, 0.18);
    transition: all 0.2s ease;
    font-family: inherit;
}

.btn-toss-confirm:hover {
    background-color: #0056d8;
    box-shadow: 0 10px 25px rgba(0, 122, 255, 0.28);
    transform: translateY(-1px);
}

.btn-toss-confirm:active {
    transform: scale(0.98);
}

/* ==================================================
   [14] 정직한 정찰제 요금표 섹션 스타일 (초청량 블루 테마)
================================================== */
.slogan-price-link {
    color: var(--clear-blue);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: rgba(0, 122, 255, 0.4);
    transition: text-decoration-color 0.2s, color 0.2s;
    cursor: pointer;
}

.slogan-price-link:hover {
    color: #0056d8;
    text-decoration-color: #0056d8;
}

.price-section {
    padding: 100px 0;
    background: var(--pure-white);
    border-top: 1px solid var(--border-color);
}

.price-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.price-card {
    background: var(--pure-white);
    border: 1.5px solid var(--border-color);
    border-radius: 20px;
    padding: 35px 24px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.01);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), 
                box-shadow 0.4s ease, 
                border-color 0.4s ease;
    position: relative;
    overflow: hidden;
}

.price-card:hover {
    transform: translateY(-5px);
    border-color: var(--clear-blue);
    box-shadow: 0 15px 35px rgba(0, 122, 255, 0.08);
}

.price-card.highlights {
    border-color: rgba(0, 122, 255, 0.25);
    background: linear-gradient(180deg, var(--soft-blue) 0%, var(--pure-white) 100%);
}

.price-card.highlights:hover {
    border-color: var(--clear-blue);
    box-shadow: 0 15px 35px rgba(0, 122, 255, 0.12);
}

.price-card-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.price-card-head h4 {
    font-size: 17px;
    font-weight: 900;
    color: var(--slate-dark);
    letter-spacing: -0.04em;
}

.price-icon {
    width: 48px;
    height: 48px;
    background: var(--soft-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 122, 255, 0.1);
    color: var(--clear-blue);
    font-size: 18px;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.price-card:hover .price-icon {
    transform: scale(1.1);
    background: var(--ice-blue);
}

.price-value-box {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 12px;
}

.price-num {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 950;
    color: var(--clear-blue);
    letter-spacing: -0.02em;
}

.price-num-text {
    font-size: 26px;
    font-weight: 900;
    color: var(--clear-blue);
    letter-spacing: -0.05em;
    margin: 4px 0;
}

.price-unit {
    font-size: 15px;
    font-weight: 800;
    color: var(--slate-dark);
    margin-left: 3px;
    letter-spacing: -0.04em;
}

.price-tag {
    display: inline-block;
    font-size: 12px;
    color: var(--slate-gray);
    font-weight: 600;
    letter-spacing: -0.03em;
}

/* 안심 약속 선언문 보증 팁 박스 스타일 */
.price-promise-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--soft-blue);
    border: 1.5px dashed rgba(0, 122, 255, 0.3);
    border-radius: 20px;
    padding: 24px 30px;
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
}

.promise-icon-ring {
    width: 44px;
    height: 44px;
    background: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clear-blue);
    font-size: 22px;
    box-shadow: 0 4px 10px rgba(0, 122, 255, 0.1);
    flex-shrink: 0;
}

.promise-text {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--slate-dark);
    letter-spacing: -0.03em;
    margin: 0;
}

.promise-text strong {
    color: var(--clear-blue);
    font-weight: 800;
}

/* 정직한 정찰제 모바일 반응형 피팅 */
@media (max-width: 768px) {
    /* 모바일 반응형 개행 헬퍼 스위칭 */
    .br-mobile {
        display: inline !important;
    }
    .hidden-mobile {
        display: none !important;
    }

    .price-section {
        padding: 50px 0 !important;
    }
    .price-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
        padding: 0 16px !important;
        margin-bottom: 30px !important;
    }
    .price-card {
        padding: 24px 16px !important;
        border-radius: 12px !important;
    }
    .price-card-head {
        margin-bottom: 12px !important;
    }
    .price-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 15px !important;
    }
    .price-card-head h4 {
        font-size: 14.5px !important;
    }
    .price-num {
        font-size: 24px !important;
    }
    .price-num-text {
        font-size: 20px !important;
    }
    .price-unit {
        font-size: 12.5px !important;
    }
    .price-promise-box {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        text-align: left !important;
        padding: 16px 20px !important;
        margin: 0 16px !important;
        border-radius: 16px !important;
        gap: 16px !important;
    }
    .promise-icon-ring {
        width: 36px !important;
        height: 36px !important;
        font-size: 18px !important;
    }
    .promise-text {
        font-size: 12.5px !important;
        line-height: 1.65 !important;
        word-break: keep-all !important;
    }
}

@media (max-width: 480px) {
    .price-promise-box {
        flex-direction: row !important;
        text-align: left !important;
        align-items: center !important;
    }
}

/* ==================================================
   [15] 갤러리 섹션 네이버 블로그 안내 및 바로가기 단추 스타일
================================================== */
.gallery-blog-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    padding: 20px 24px;
    background: var(--slate-light);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.blog-banner-text {
    font-size: 14px;
    color: var(--slate-gray);
    font-weight: 600;
    letter-spacing: -0.03em;
    word-break: keep-all;
    line-height: 1.5;
}

.btn-gallery-blog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #03c75a;
    color: var(--pure-white) !important;
    padding: 10px 24px;
    font-size: 13.5px;
    font-weight: 800;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(3, 199, 90, 0.2);
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    letter-spacing: -0.03em;
}

.btn-gallery-blog:hover {
    background-color: #02b14f;
    box-shadow: 0 6px 20px rgba(3, 199, 90, 0.35);
    transform: translateY(-2px);
}

.btn-gallery-blog i {
    font-size: 14px;
}

/* 모바일 768px 이하 대응 갤러리 블로그 뷰포트 피팅 */
@media (max-width: 768px) {
    .gallery-blog-banner {
        padding: 15px !important;
        margin-top: 16px !important;
        margin-left: 16px !important;
        margin-right: 16px !important;
        gap: 12px !important;
        border-radius: 12px !important;
    }
    .blog-banner-text {
        font-size: 12px !important;
        line-height: 1.45 !important;
    }
    .btn-gallery-blog {
        padding: 8px 18px !important;
        font-size: 12px !important;
    }
}
