
        :root {
            --somssi-pink: #E55275;
            --somssi-pink-light: #FF688B;
            --somssi-deep: #B92348;
            --somssi-soft: #FFF5F7;
            --somssi-tint: #FDE8ED;
            --somssi-tint-subtle: #FAF0F3;
            --somssi-dark: #2A2124;
            --somssi-subdark: #382C30;
            --gold: #C29A64;
            --gold-light: #F4ECE1;
            --gold-dark: #9B7542;
            --text-title: #1F191B;
            --text-main: #333333;
            --text-sub: #5E5357;
            --text-muted: #887B80;
            --border-light: #EFE7EB;
            --border-pink: #F7D5DF;
            --bg-gray: #F8F9FA;
            --white: #FFFFFF;
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 24px;
            --radius-xl: 32px;
            --shadow-sm: 0 4px 15px rgba(0,0,0,0.03);
            --shadow-md: 0 10px 30px rgba(229, 82, 117, 0.08);
            --shadow-lg: 0 20px 50px rgba(0,0,0,0.08);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Pretendard', 'Noto Sans KR', -apple-system, sans-serif;
            background-color: #FAF8F9;
            color: var(--text-main);
            line-height: 1.75;
            word-break: keep-all;
            -webkit-font-smoothing: antialiased;
            width: 100%;
            overflow-x: clip;
        }

        /* ── 상단 헤더 (스크롤 시 상단 고정 네비게이션) ── */
        .site-header {
            position: -webkit-sticky;
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-pink);
            box-shadow: 0 2px 10px rgba(229, 82, 117, 0.05);
        }
        .header-inner {
            max-width: 1240px;
            margin: 0 auto;
            padding: 10px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }
        .brand-logo img {
            height: 38px;
            width: auto;
            display: block;
        }
        .header-nav {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .nav-row {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px 12px;
            font-size: 13px;
        }
        .nav-link {
            color: var(--text-sub);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s;
        }
        .nav-link:hover, .nav-link.nav-highlight {
            color: var(--somssi-pink);
            font-weight: 700;
        }
        .nav-sep {
            color: #DDD;
            font-size: 11px;
        }
        .btn-call-direct {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: linear-gradient(135deg, var(--somssi-pink), var(--somssi-deep));
            color: #FFF;
            padding: 9px 16px;
            border-radius: 30px;
            font-size: 13.5px;
            font-weight: 700;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(229, 82, 117, 0.25);
            transition: transform 0.2s;
            white-space: nowrap;
        }
        .btn-call-direct:hover {
            transform: translateY(-1px);
        }

        /* ── 모바일 햄버거 버튼 & 드로어 메뉴 ── */
        .btn-hamburger {
            display: none;
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: #FFF0F4;
            border: 1px solid var(--border-pink);
            padding: 0;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            color: var(--somssi-pink);
            transition: all 0.2s ease;
            flex-shrink: 0;
        }
        .btn-hamburger:hover {
            background: #FDE2E8;
            transform: scale(1.03);
        }
        .btn-hamburger svg {
            display: block;
        }

        .mobile-drawer-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(20, 15, 18, 0.55);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            z-index: 100000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.25s ease, visibility 0.25s ease;
        }
        .mobile-drawer-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-drawer {
            position: fixed;
            top: 0;
            right: 0;
            width: min(320px, 86vw);
            height: 100%;
            background: #FFFFFF;
            z-index: 100001;
            box-shadow: -6px 0 30px rgba(0, 0, 0, 0.15);
            transform: translateX(100%);
            transition: transform 0.28s cubic-bezier(0.33, 1, 0.68, 1);
            display: flex;
            flex-direction: column;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
        }
        .mobile-drawer.active {
            transform: translateX(0);
        }

        .drawer-header {
            padding: 16px 18px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid var(--border-pink);
            background: #FFF9FA;
        }
        .drawer-logo img {
            height: 28px;
            width: auto;
            display: block;
        }
        .drawer-close {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: #FFFFFF;
            border: 1px solid var(--border-pink);
            color: var(--somssi-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        .drawer-close:hover {
            background: #FFF0F4;
            color: var(--somssi-pink);
        }

        .drawer-call-banner {
            padding: 14px 18px;
            background: linear-gradient(135deg, #FFF0F4 0%, #FFF9FA 100%);
            border-bottom: 1px solid var(--border-pink);
        }
        .drawer-call-title {
            font-size: 11.5px;
            font-weight: 700;
            color: var(--somssi-pink);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .drawer-call-title::before {
            content: "";
            width: 6px;
            height: 6px;
            background: var(--somssi-pink);
            border-radius: 50%;
            display: inline-block;
        }
        .drawer-call-buttons {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
        }
        .drawer-btn-tel, .drawer-btn-mob {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            padding: 9px 8px;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.2s ease;
        }
        .drawer-btn-tel {
            background: var(--somssi-pink);
            color: #FFFFFF;
        }
        .drawer-btn-mob {
            background: #FFFFFF;
            color: var(--somssi-dark);
            border: 1px solid var(--border-pink);
        }

        .drawer-nav {
            flex: 1;
            padding: 16px 18px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .drawer-group-title {
            font-size: 11px;
            font-weight: 800;
            color: var(--text-muted);
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 8px;
            padding-bottom: 4px;
            border-bottom: 1px dashed var(--border-pink);
        }
        .drawer-menu-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .drawer-menu-link {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 9px 12px;
            border-radius: 8px;
            color: var(--text-main);
            font-size: 13.5px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.15s ease;
        }
        .drawer-menu-link .menu-num {
            font-size: 11px;
            font-weight: 700;
            color: var(--somssi-pink);
            background: #FFF0F4;
            padding: 2px 6px;
            border-radius: 4px;
            min-width: 24px;
            text-align: center;
        }
        .drawer-menu-link:hover, .drawer-menu-link:active {
            background: #FFF0F4;
            color: var(--somssi-pink);
            padding-left: 15px;
        }
        .drawer-menu-link.highlight-link {
            background: #FFF5F7;
            color: var(--somssi-pink);
            font-weight: 700;
        }

        .drawer-bottom {
            padding: 16px 18px 24px;
            border-top: 1px solid var(--border-pink);
            background: #FFF9FA;
        }
        .drawer-cta-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            background: linear-gradient(135deg, var(--somssi-pink), var(--somssi-deep));
            color: #FFFFFF;
            padding: 12px 16px;
            border-radius: 10px;
            font-size: 13.5px;
            font-weight: 800;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(229, 82, 117, 0.25);
            transition: all 0.2s ease;
        }
        .drawer-cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(229, 82, 117, 0.35);
        }

        /* ── 메인 히어로 섹션 (단순 명확 타이틀) ── */
        .hero-section {
            background: linear-gradient(180deg, #FFFFFF 0%, #FFF5F7 60%, #FAF8F9 100%);
            padding: 45px 24px 50px;
            border-bottom: 1px solid var(--border-pink);
            position: relative;
        }
        .hero-container {
            max-width: 1000px;
            margin: 0 auto;
        }
        .breadcrumb-trail {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }
        .breadcrumb-trail a {
            color: var(--text-sub);
            text-decoration: none;
        }
        .breadcrumb-trail a:hover {
            color: var(--somssi-pink);
        }
        .breadcrumb-trail span {
            color: var(--somssi-pink);
            font-weight: 700;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--somssi-tint);
            border: 1px solid var(--border-pink);
            color: var(--somssi-deep);
            font-size: 13px;
            font-weight: 700;
            padding: 6px 14px;
            border-radius: 20px;
            margin-bottom: 16px;
        }
        .hero-badge-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--somssi-pink);
        }
        .hero-title {
            font-family: 'Noto Serif KR', serif;
            font-size: 40px;
            font-weight: 900;
            color: var(--text-title);
            line-height: 1.25;
            letter-spacing: -1px;
            margin-bottom: 0;
        }
        .hero-title .accent {
            color: var(--somssi-pink);
        }

        /* 히어로 3대 핵심 진료 원칙 칩 바 */
        .hero-core-pillars {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 18px;
        }
        .pillar-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #FFFFFF;
            border: 1px solid rgba(224, 76, 122, 0.35);
            border-radius: 20px;
            padding: 6px 14px;
            font-size: 13px;
            color: var(--somssi-dark);
            box-shadow: 0 2px 6px rgba(224, 76, 122, 0.08);
            line-height: 1.4;
        }
        .pillar-pill strong {
            color: var(--somssi-deep);
            font-weight: 800;
        }
        @media (max-width: 768px) {
            .hero-core-pillars {
                flex-direction: column;
                gap: 7px;
                margin-top: 14px;
            }
            .pillar-pill {
                font-size: 12px;
                padding: 6px 12px;
                border-radius: 8px;
            }
        }

        /* ── MEDICAL CONTENTS 상단: 공식 의료정보 제공 안내 & 집도의 메타 박스 ── */
        .medical-lead-card {
            background: linear-gradient(135deg, #FFF9FA 0%, #FFFFFF 100%);
            border: 1.5px solid var(--border-pink);
            border-radius: var(--radius-lg);
            padding: 24px 26px;
            margin-bottom: 30px;
            box-shadow: var(--shadow-sm);
        }
        .med-lead-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #FFF0F4;
            color: var(--somssi-pink);
            font-size: 12.5px;
            font-weight: 800;
            padding: 4px 12px;
            border-radius: 20px;
            border: 1px solid var(--border-pink);
            margin-bottom: 12px;
        }
        .med-lead-badge .badge-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--somssi-pink);
        }
        .med-lead-text {
            font-size: 15px;
            line-height: 1.85;
            color: var(--text-main);
            margin-bottom: 18px;
            word-break: keep-all;
        }
        .med-lead-text strong {
            color: var(--somssi-deep);
            font-weight: 800;
        }

        /* 솜씨좋은 3대 핵심 진료 원칙 박스 */
        .core-principles-box {
            background: #FFFFFF;
            border: 1px solid #F3D3DF;
            border-radius: var(--radius-md);
            padding: 16px 18px;
            margin-bottom: 16px;
        }
        .core-principles-badge {
            display: inline-block;
            font-size: 12px;
            font-weight: 800;
            color: var(--somssi-pink);
            background: #FFF0F5;
            padding: 3px 10px;
            border-radius: 12px;
            margin-bottom: 12px;
            border: 1px solid #FCE4EC;
        }
        .core-principles-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .core-principle-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            background: #FAFAFB;
            border: 1px solid #F0F0F2;
            border-radius: 8px;
            padding: 10px 14px;
        }
        .core-principle-item .core-icon {
            font-size: 16px;
            line-height: 1.2;
            flex-shrink: 0;
            margin-top: 1px;
        }
        .core-principle-item .core-info {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        .core-principle-item .core-info strong {
            font-size: 13.5px;
            color: var(--somssi-deep);
            font-weight: 800;
        }
        .core-principle-item .core-info p {
            font-size: 12.5px;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.45;
            word-break: keep-all;
        }
        @media (max-width: 600px) {
            .core-principles-box { padding: 14px 12px; }
            .core-principle-item { padding: 8px 10px; gap: 8px; }
            .core-principle-item .core-info strong { font-size: 12.5px; }
            .core-principle-item .core-info p { font-size: 11.5px; }
        }

        .med-meta-bar {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
            background: #FAF8F9;
            border: 1px solid #F0D9E1;
            border-radius: var(--radius-sm);
            padding: 13px 16px;
        }
        .med-meta-item {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        .med-meta-item .meta-label {
            font-size: 11px;
            color: var(--text-muted);
            font-weight: 500;
        }
        .med-meta-item .meta-val {
            font-size: 12.5px;
            font-weight: 700;
            color: var(--somssi-dark);
            line-height: 1.35;
        }
        @media (max-width: 768px) {
            .medical-lead-card { padding: 18px 16px; margin-bottom: 22px; }
            .med-lead-text { font-size: 13.5px; line-height: 1.75; margin-bottom: 14px; }
            .med-meta-bar { grid-template-columns: 1fr 1fr; gap: 10px; padding: 10px 12px; }
        }
        @media (max-width: 480px) {
            .med-meta-bar { grid-template-columns: 1fr; gap: 8px; }
        }

        /* ── 배너 섹션 (1.gif, 2.jpg, 3.jpg, 4.jpg 순차 노출) ── */
        .sub-banners-wrap {
            max-width: 1000px;
            margin: 30px auto 45px;
            padding: 0 20px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .banner-card {
            background: #FFFFFF;
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-pink);
            box-shadow: var(--shadow-md);
            overflow: hidden;
            line-height: 0;
            display: block;
            text-decoration: none;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        a.banner-card {
            cursor: pointer;
        }
        a.banner-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 35px rgba(229, 82, 117, 0.16);
        }
        .banner-card img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        /* ── 메인 2단 아티클 레이아웃 ── */
        .article-wrap {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 24px 80px;
            display: grid;
            grid-template-columns: minmax(0, 1fr) 340px;
            gap: 36px;
            align-items: start;
        }

        /* 좌측: 심층 메디컬 아티클 본문 */
        .main-article {
            background: #FFFFFF;
            border-radius: var(--radius-xl);
            border: 1px solid var(--border-pink);
            box-shadow: var(--shadow-sm);
            padding: 45px 40px;
            overflow: hidden;
            min-width: 0;
        }

        /* 목차 박스 */
        .toc-box {
            background: #FFF9FA;
            border: 1.5px solid var(--border-pink);
            border-radius: var(--radius-md);
            padding: 24px 28px;
            margin-bottom: 40px;
        }
        .toc-head {
            font-size: 13px;
            font-weight: 800;
            color: var(--somssi-pink);
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 6px;
        }
        .toc-title {
            font-size: 18px;
            font-weight: 800;
            color: var(--somssi-dark);
            margin-bottom: 16px;
        }
        .toc-list {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px 20px;
            padding: 0;
        }
        .toc-list li a {
            display: flex;
            align-items: baseline;
            gap: 6px;
            color: var(--text-main);
            text-decoration: none;
            font-size: 13.5px;
            line-height: 1.5;
            transition: color 0.15s;
        }
        .toc-list li a:hover {
            color: var(--somssi-pink);
            text-decoration: underline;
        }
        .toc-num {
            color: var(--somssi-pink);
            font-weight: 800;
            font-size: 12px;
            flex-shrink: 0;
        }

        /* ── 아티클 섹션 공통 ── */
        .art-sec {
            margin-bottom: 50px;
            padding-bottom: 45px;
            border-bottom: 1px dashed var(--border-pink);
        }
        .art-sec:last-of-type {
            border-bottom: none;
            margin-bottom: 20px;
            padding-bottom: 0;
        }
        .sec-kicker {
            display: inline-block;
            font-size: 12px;
            font-weight: 800;
            color: var(--gold-dark);
            background: var(--gold-light);
            padding: 3px 10px;
            border-radius: 4px;
            letter-spacing: 0.5px;
            margin-bottom: 10px;
        }
        .mob-br { display: none; }
        @media (max-width: 680px) {
            .mob-br { display: block; }
        }
        .sec-h2 {
            font-family: 'Noto Serif KR', serif;
            font-size: 24px;
            font-weight: 800;
            color: var(--text-title);
            line-height: 1.45;
            letter-spacing: -0.5px;
            margin-bottom: 16px;
            word-break: keep-all;
            overflow-wrap: break-word;
        }
        .sec-lead {
            font-size: 15.5px;
            color: var(--somssi-subdark);
            font-weight: 500;
            line-height: 1.8;
            margin-bottom: 16px;
            padding-left: 14px;
            border-left: 3px solid var(--somssi-pink);
        }
        .sec-p {
            font-size: 15px;
            color: var(--text-main);
            line-height: 1.85;
            margin-bottom: 16px;
        }
        .sec-p strong {
            color: var(--somssi-dark);
            font-weight: 700;
        }

        /* ── AEO (Answer Engine Optimization) & 네이버 Cue / AI 추천 요약 박스 ── */
        .aeo-box {
            background: linear-gradient(135deg, #FFF9FB 0%, #FFF2F6 100%);
            border: 1px solid var(--border-pink);
            border-left: 5px solid var(--somssi-pink);
            border-radius: var(--radius-sm);
            padding: 16px 20px;
            margin: 18px 0 24px;
            box-shadow: 0 4px 15px rgba(229, 82, 117, 0.06);
        }
        .aeo-tag-wrap {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 8px;
            flex-wrap: wrap;
        }
        .aeo-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            background: var(--somssi-pink);
            color: #FFFFFF;
            font-size: 11px;
            font-weight: 800;
            padding: 3px 8px;
            border-radius: 4px;
            letter-spacing: -0.2px;
        }
        .aeo-kw {
            font-size: 12px;
            font-weight: 700;
            color: var(--somssi-deep);
        }
        .aeo-q {
            font-size: 15px;
            font-weight: 800;
            color: var(--somssi-dark);
            margin-bottom: 6px;
            letter-spacing: -0.3px;
            line-height: 1.45;
        }
        .aeo-a {
            font-size: 14px;
            color: var(--text-main);
            line-height: 1.7;
            margin: 0;
        }
        .aeo-a strong {
            color: var(--somssi-deep);
            font-weight: 700;
        }

        /* 콜아웃 하이라이트 박스 */
        .callout-box {
            background: #FFFDF9;
            border: 1.5px solid #F3E3D3;
            border-left: 4px solid var(--gold);
            border-radius: var(--radius-sm);
            padding: 18px 22px;
            margin: 22px 0;
        }
        .callout-title {
            font-size: 15px;
            font-weight: 800;
            color: var(--gold-dark);
            margin-bottom: 8px;
        }

        /* 8단계 골반건강 연속 파이프라인 다이어그램 */
        .continuum-flow {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin: 25px 0;
        }
        .flow-step {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            background: #FAF8F9;
            border: 1px solid var(--border-light);
            border-radius: var(--radius-md);
            padding: 14px 18px;
            transition: all 0.2s;
        }
        .flow-step:hover {
            background: #FFFFFF;
            border-color: var(--somssi-pink);
            box-shadow: var(--shadow-sm);
        }
        .step-badge {
            background: var(--somssi-pink);
            color: #FFFFFF;
            font-size: 11px;
            font-weight: 800;
            padding: 4px 10px;
            border-radius: 20px;
            flex-shrink: 0;
            margin-top: 2px;
        }
        .step-body h4 {
            font-size: 15px;
            font-weight: 800;
            color: var(--somssi-dark);
            margin-bottom: 4px;
        }
        .step-body p {
            font-size: 13.5px;
            color: var(--text-sub);
            line-height: 1.6;
            margin: 0;
        }

        /* 안내 표 (Table) 모바일 최적화 및 스크롤 가이드 */
        .table-scroll-guide {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            background: #FFF5F7;
            border: 1px solid var(--border-pink);
            border-bottom: none;
            border-radius: 10px 10px 0 0;
            padding: 7px 12px;
            font-size: 12px;
            font-weight: 700;
            color: var(--somssi-deep);
            margin: 22px 0 0;
            letter-spacing: -0.2px;
        }
        .med-table-wrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            margin: 0 0 25px;
            border-radius: 0 0 var(--radius-md) var(--radius-md);
            border: 1px solid var(--border-pink);
            box-shadow: var(--shadow-sm);
            background: #FFFFFF;
        }
        .med-table-wrap::-webkit-scrollbar {
            height: 6px;
        }
        .med-table-wrap::-webkit-scrollbar-thumb {
            background: var(--somssi-pink-light);
            border-radius: 3px;
        }
        .med-table-wrap::-webkit-scrollbar-track {
            background: #FAF0F3;
        }
        .med-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 13.5px;
            text-align: left;
        }
        .med-table-3col {
            min-width: 520px;
        }
        .med-table-5col {
            min-width: 640px;
        }
        .med-table th {
            background: #FAF2F5;
            color: var(--somssi-dark);
            font-weight: 800;
            padding: 12px 14px;
            border-bottom: 1.5px solid var(--border-pink);
            white-space: nowrap;
            font-size: 13px;
        }
        .med-table td {
            padding: 12px 14px;
            border-bottom: 1px solid var(--border-light);
            color: var(--text-main);
            vertical-align: top;
            line-height: 1.6;
        }
        .med-table tr:hover td {
            background: #FFFDFE;
        }
        .med-table .highlight-col {
            background: rgba(229, 82, 117, 0.05);
            font-weight: 700;
            color: var(--somssi-deep);
        }

        /* 체크리스트 박스 */
        .checklist-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin: 22px 0;
        }
        .check-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            background: #FFFFFF;
            border: 1px solid var(--border-pink);
            border-radius: var(--radius-sm);
            padding: 12px 14px;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-title);
        }
        .check-item .chk-icon {
            color: var(--somssi-pink);
            font-size: 16px;
            line-height: 1;
            flex-shrink: 0;
            margin-top: 1px;
        }

        /* FAQ 아코디언 / 블록 */
        .faq-block {
            margin-bottom: 18px;
            background: #FFFBFD;
            border: 1px solid var(--border-pink);
            border-radius: var(--radius-md);
            padding: 18px 22px;
        }
        .faq-q {
            font-size: 16px;
            font-weight: 800;
            color: var(--somssi-dark);
            margin-bottom: 8px;
            display: flex;
            align-items: baseline;
            gap: 8px;
        }
        .faq-q span {
            color: var(--somssi-pink);
            font-size: 18px;
            font-weight: 900;
        }
        .faq-a {
            font-size: 14px;
            color: var(--text-sub);
            line-height: 1.75;
            margin: 0;
        }

        /* ── 사이드바 (스크롤 시 우측 고정) ── */
        .sidebar {
            position: -webkit-sticky;
            position: sticky;
            top: 85px;
            display: flex;
            flex-direction: column;
            gap: 24px;
            z-index: 900;
        }
        .side-card {
            background: #FFFFFF;
            border: 1px solid var(--border-pink);
            border-radius: var(--radius-lg);
            padding: 24px 20px;
            box-shadow: var(--shadow-sm);
        }
        .side-card-title {
            font-size: 16px;
            font-weight: 800;
            color: var(--somssi-dark);
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            padding-bottom: 10px;
            border-bottom: 1.5px solid var(--somssi-tint);
        }
        .doc-profile-box {
            text-align: center;
        }
        .doc-profile-box img {
            width: 110px;
            height: 110px;
            border-radius: 50%;
            object-fit: cover;
            object-position: top center;
            border: 3px solid var(--border-pink);
            box-shadow: var(--shadow-sm);
            margin-bottom: 12px;
        }
        .doc-name {
            font-size: 17px;
            font-weight: 800;
            color: var(--text-title);
            margin-bottom: 4px;
        }
        .doc-title {
            font-size: 12.5px;
            color: var(--somssi-pink);
            font-weight: 700;
            margin-bottom: 12px;
        }
        .doc-bio {
            font-size: 12.5px;
            color: var(--text-sub);
            line-height: 1.65;
            text-align: left;
            background: #FAF8F9;
            padding: 12px 14px;
            border-radius: var(--radius-sm);
        }
        .side-call-btn {
            display: block;
            width: 100%;
            background: linear-gradient(135deg, var(--somssi-pink), var(--somssi-deep));
            color: #FFFFFF;
            text-align: center;
            padding: 13px 0;
            border-radius: 30px;
            font-size: 15px;
            font-weight: 800;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(229, 82, 117, 0.3);
            margin-top: 14px;
            transition: all 0.2s;
        }
        .side-call-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(229, 82, 117, 0.4);
        }

        /* ── 1:1 비밀상담 & 접수 폼 카드 (메인페이지와 동일한 프리미엄 접수 UI) ── */
        .hero-form-card {
            background: #FFFFFF;
            border: 1.5px solid var(--border-pink);
            border-radius: var(--radius-xl);
            padding: 28px 24px;
            box-shadow: 0 16px 40px rgba(229, 82, 117, 0.12);
            position: relative;
            margin-top: 45px;
            scroll-margin-top: 90px;
        }
        .hero-form-head {
            text-align: center;
            margin-bottom: 16px;
        }
        .hero-form-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: var(--somssi-soft);
            border: 1px solid var(--border-pink);
            color: var(--somssi-pink);
            font-size: 12px;
            font-weight: 800;
            padding: 4px 12px;
            border-radius: 20px;
            margin-bottom: 6px;
        }
        .hero-form-title {
            font-family: 'Noto Serif KR', serif;
            font-size: 21px;
            font-weight: 800;
            color: var(--text-title);
            margin: 0 0 4px;
            letter-spacing: -0.5px;
        }
        .hero-form-desc {
            font-size: 12.5px;
            color: var(--text-sub);
            margin: 0;
        }
        .hero-form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 10px;
        }
        .hero-form-group {
            margin-bottom: 10px;
        }
        .hero-form-group label {
            display: block;
            font-size: 12px;
            font-weight: 700;
            color: var(--text-title);
            margin-bottom: 4px;
        }
        .hero-form-group label .req {
            color: var(--somssi-pink);
        }
        .hero-form-group input[type="text"],
        .hero-form-group input[type="tel"],
        .hero-form-group select,
        .hero-form-group textarea {
            width: 100%;
            padding: 10px 12px;
            font-size: 13.5px;
            border: 1px solid #E5D5DA;
            border-radius: 8px;
            background: #FFFDFE;
            color: var(--text-title);
            box-sizing: border-box;
            font-family: inherit;
            transition: all 0.2s;
        }
        .hero-form-group input:focus,
        .hero-form-group select:focus,
        .hero-form-group textarea:focus {
            border-color: var(--somssi-pink);
            outline: none;
            box-shadow: 0 0 0 3px rgba(229, 82, 117, 0.15);
            background: #FFFFFF;
        }
        .hero-form-chips {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 6px;
        }
        .hero-form-chips label {
            display: flex;
            align-items: center;
            gap: 6px;
            background: #FFF8FA;
            border: 1px solid #F0D9E1;
            border-radius: 6px;
            padding: 6px 9px;
            font-size: 12px;
            color: var(--text-sub);
            cursor: pointer;
            transition: all 0.2s;
            margin-bottom: 0;
            font-weight: 500;
            white-space: nowrap;
            user-select: none;
        }
        .hero-form-chips label:hover,
        .hero-form-chips label:has(input:checked) {
            border-color: var(--somssi-pink);
            background: var(--somssi-soft);
            color: var(--somssi-deep);
            font-weight: 700;
        }
        .hero-form-chips input[type="checkbox"] {
            accent-color: var(--somssi-pink);
            width: 14px;
            height: 14px;
            cursor: pointer;
            margin: 0;
            flex-shrink: 0;
        }
        .hero-form-agree {
            display: flex;
            align-items: center;
            gap: 6px;
            margin: 10px 0 14px;
        }
        .hero-form-agree input[type="checkbox"] {
            accent-color: var(--somssi-pink);
            width: 15px;
            height: 15px;
            cursor: pointer;
            margin: 0;
            flex-shrink: 0;
        }
        .hero-form-agree label {
            font-size: 12px;
            color: var(--text-muted);
            cursor: pointer;
            margin-bottom: 0;
        }
        .btn-privacy-view {
            background: none;
            border: none;
            color: #9C7D86;
            font-size: 11.5px;
            text-decoration: underline;
            cursor: pointer;
            padding: 0 4px;
            font-weight: 600;
            transition: color 0.15s;
            margin-left: auto;
        }
        .btn-privacy-view:hover {
            color: var(--somssi-pink);
        }
        /* ── 개인정보 수집 및 이용 동의 모달 ── */
        .privacy-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 99999;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 16px;
            box-sizing: border-box;
        }
        .privacy-modal-backdrop {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(20, 10, 14, 0.65);
            backdrop-filter: blur(4px);
        }
        .privacy-modal-card {
            position: relative;
            background: #FFFFFF;
            width: 100%;
            max-width: 580px;
            max-height: 90vh;
            border-radius: 16px;
            box-shadow: 0 20px 50px rgba(43, 35, 38, 0.35);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            animation: privacyModalFadeIn 0.2s ease-out;
            border: 1px solid var(--border-pink);
            z-index: 1;
        }
        @keyframes privacyModalFadeIn {
            from { opacity: 0; transform: scale(0.96) translateY(8px); }
            to { opacity: 1; transform: scale(1) translateY(0); }
        }
        .privacy-modal-header {
            background: linear-gradient(135deg, #2B2326 0%, #4D2836 100%);
            padding: 16px 22px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: #FFFFFF;
        }
        .privacy-modal-header h3 {
            margin: 0;
            font-size: 15.5px;
            font-weight: 700;
            color: #FFA5B8;
            letter-spacing: -0.3px;
        }
        .privacy-modal-close {
            background: transparent;
            border: none;
            color: #E0CCD3;
            font-size: 24px;
            line-height: 1;
            cursor: pointer;
            padding: 0;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background 0.15s, color 0.15s;
        }
        .privacy-modal-close:hover {
            background: rgba(255, 255, 255, 0.15);
            color: #FFFFFF;
        }
        .privacy-modal-body {
            padding: 20px 22px;
            overflow-y: auto;
            color: #332B2E;
            font-size: 13px;
            line-height: 1.6;
        }
        .privacy-intro {
            margin: 0 0 14px;
            color: #55454B;
            font-size: 12.5px;
            background: #FFF9FA;
            padding: 12px 14px;
            border-radius: 8px;
            border-left: 3px solid var(--somssi-pink);
        }
        .privacy-table-wrap {
            margin-bottom: 14px;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid #F0D9E1;
        }
        .privacy-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 12px;
        }
        .privacy-table th {
            background: #FFF3F6;
            color: #66434F;
            font-weight: 700;
            padding: 10px 12px;
            border-bottom: 1px solid #F0D9E1;
            border-right: 1px solid #F0D9E1;
            text-align: left;
            width: 28%;
            vertical-align: top;
        }
        .privacy-table td {
            background: #FFFFFF;
            color: #332B2E;
            padding: 10px 12px;
            border-bottom: 1px solid #F0D9E1;
            line-height: 1.55;
            vertical-align: top;
        }
        .privacy-table tr:last-child th,
        .privacy-table tr:last-child td {
            border-bottom: none;
        }
        .privacy-notice {
            font-size: 11.5px;
            color: #8F707A;
            margin: 0;
            line-height: 1.5;
        }
        .privacy-modal-footer {
            padding: 14px 22px;
            background: #FAF6F8;
            border-top: 1px solid #F0D9E1;
            display: flex;
            justify-content: flex-end;
            gap: 10px;
        }
        .btn-privacy-confirm {
            background: linear-gradient(135deg, var(--somssi-pink) 0%, #D83B61 100%);
            color: #FFFFFF;
            border: none;
            padding: 9px 20px;
            font-size: 13.5px;
            font-weight: 700;
            border-radius: 8px;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(229, 82, 117, 0.3);
            transition: transform 0.15s, box-shadow 0.15s;
        }
        .btn-privacy-confirm:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(229, 82, 117, 0.4);
        }
        .hero-form-submit-btn {
            width: 100%;
            padding: 14px;
            font-size: 15px;
            font-weight: 800;
            color: #FFFFFF;
            background: linear-gradient(135deg, var(--somssi-pink) 0%, #D83B61 100%);
            border: none;
            border-radius: 10px;
            cursor: pointer;
            box-shadow: 0 6px 18px rgba(229, 82, 117, 0.35);
            transition: all 0.25s;
        }
        .hero-form-submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 22px rgba(229, 82, 117, 0.45);
        }
        .hero-form-quick-call {
            margin-top: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            font-size: 12px;
            color: var(--text-muted);
            border-top: 1px dashed #F0D9E1;
            padding-top: 12px;
        }
        .hero-form-quick-call a {
            color: var(--somssi-pink);
            font-weight: 700;
            text-decoration: none;
        }
        .hero-form-result-msg {
            margin-top: 10px;
            padding: 12px;
            border-radius: 8px;
            text-align: center;
            font-size: 13px;
            font-weight: 600;
            line-height: 1.5;
        }
        /* 이미지 첨부 업로드 영역 */
        .hero-upload-group {
            margin-top: 10px;
            margin-bottom: 12px;
        }
        .upload-label-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 6px;
        }
        .upload-label-row label {
            font-size: 12px;
            font-weight: 700;
            color: var(--text-title);
            margin: 0;
        }
        .upload-sub {
            font-weight: normal;
            color: #8E7B82;
            font-size: 11px;
        }
        .upload-counter {
            font-size: 11px;
            font-weight: 700;
            color: var(--somssi-pink);
            background: #FFF0F4;
            padding: 2px 8px;
            border-radius: 12px;
            border: 1px solid var(--border-pink);
        }
        .image-upload-trigger {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px 14px;
            background: #FFFDFE;
            border: 1.5px dashed #E0CBD2;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.25s ease;
            color: #634E55;
            font-size: 12.5px;
            font-weight: 600;
        }
        .image-upload-trigger:hover {
            border-color: var(--somssi-pink);
            background: #FFF5F7;
            color: var(--somssi-pink);
        }
        .image-upload-trigger svg {
            stroke: currentColor;
        }
        .image-upload-trigger small {
            font-weight: 400;
            color: #9C858C;
            font-size: 11px;
            margin-left: 2px;
        }
        .image-preview-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(68px, 1fr));
            gap: 8px;
            margin-top: 8px;
        }
        .preview-thumb-card {
            position: relative;
            aspect-ratio: 1/1;
            border-radius: 8px;
            overflow: hidden;
            border: 1.5px solid #E5D5DA;
            background: #000;
            box-shadow: 0 2px 6px rgba(0,0,0,0.08);
        }
        .preview-thumb-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .preview-thumb-del {
            position: absolute;
            top: 3px;
            right: 3px;
            width: 18px;
            height: 18px;
            background: rgba(0, 0, 0, 0.75);
            color: #fff;
            border: none;
            border-radius: 50%;
            font-size: 10px;
            line-height: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.2s, background 0.2s;
            padding: 0;
        }
        .preview-thumb-del:hover {
            background: #E55275;
            transform: scale(1.15);
        }
        .preview-thumb-size {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.65);
            color: #fff;
            font-size: 9px;
            text-align: center;
            padding: 2px 0;
            font-weight: 600;
        }
        .upload-tip {
            font-size: 11px;
            color: #8E7B82;
            margin: 6px 0 0;
            line-height: 1.4;
        }

        /* ── 본문 하단 1:1 안심 상담 및 상단 접수 배너 ── */
        .article-bottom-cta {
            background: linear-gradient(135deg, #FFF9FA 0%, #FFF0F4 100%);
            border: 1.5px solid var(--border-pink);
            border-radius: var(--radius-xl);
            padding: 32px 24px;
            text-align: center;
            margin-top: 45px;
            box-shadow: 0 10px 30px rgba(229, 82, 117, 0.08);
        }
        .bottom-cta-badge {
            display: inline-flex;
            align-items: center;
            background: #FFFFFF;
            border: 1px solid var(--border-pink);
            color: var(--somssi-pink);
            font-size: 12px;
            font-weight: 800;
            padding: 4px 12px;
            border-radius: 20px;
            margin-bottom: 10px;
        }
        .bottom-cta-title {
            font-family: 'Noto Serif KR', serif;
            font-size: 20px;
            font-weight: 800;
            color: var(--text-title);
            margin: 0 0 8px;
            letter-spacing: -0.5px;
        }
        .bottom-cta-desc {
            font-size: 13.5px;
            color: var(--text-sub);
            margin: 0 0 20px;
        }
        .bottom-cta-buttons {
            display: flex;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        .btn-cta-call, .btn-cta-mob, .btn-cta-form {
            display: inline-flex;
            align-items: center;
            padding: 12px 18px;
            font-size: 13.5px;
            font-weight: 700;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.2s;
        }
        .btn-cta-call {
            background: #1A1F2C;
            color: #FFFFFF;
        }
        .btn-cta-mob {
            background: var(--somssi-pink);
            color: #FFFFFF;
        }
        .btn-cta-form {
            background: #FFFFFF;
            color: var(--somssi-pink);
            border: 1.5px solid var(--somssi-pink);
        }
        @media (max-width: 600px) {
            .bottom-cta-buttons { flex-direction: column; }
            .btn-cta-call, .btn-cta-mob, .btn-cta-form { justify-content: center; width: 100%; box-sizing: border-box; }
        }

        /* ── 하단 고정 4개 플로팅 바 (전화, 핸드폰, 카톡, 견적폼) ── */
        .sticky-four-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 9999;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            border-top: 1.5px solid var(--border-pink);
            box-shadow: 0 -3px 20px rgba(0, 0, 0, 0.08);
            padding: 7px 16px;
        }
        .sticky-four-inner {
            max-width: 880px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 8px;
        }
        .sticky-btn {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 6px 10px;
            border-radius: 10px;
            color: #FFFFFF;
            font-weight: 700;
            text-align: left;
            transition: all 0.2s ease;
            box-shadow: 0 2px 6px rgba(0,0,0,0.06);
            line-height: 1.2;
            text-decoration: none;
            min-height: 42px;
        }
        .sticky-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        .sticky-btn .s-icon {
            font-size: 16px;
            margin-bottom: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .sticky-btn .s-content {
            display: flex;
            flex-direction: column;
            line-height: 1.15;
        }
        .sticky-btn .s-label {
            font-size: 13px;
            font-weight: 800;
            letter-spacing: -0.3px;
            white-space: nowrap;
        }
        .sticky-btn .s-sub {
            font-size: 10px;
            opacity: 0.9;
            font-weight: 500;
            letter-spacing: -0.2px;
            white-space: nowrap;
        }
        .btn-call-tel {
            background: linear-gradient(135deg, #1E293B, #0F172A);
        }
        .btn-call-hp {
            background: linear-gradient(135deg, #E55275, #B92348);
        }
        .btn-call-kakao {
            background: #FEE500;
            color: #191919 !important;
        }
        .btn-call-kakao .s-sub {
            color: #3C1E1E;
        }
        .btn-call-form {
            background: linear-gradient(135deg, #8B5CF6, #6D28D9);
        }

        /* ── 우측 하단 고정 플로팅 SNS 위젯 (유튜브 & 네이버 블로그 & TOP) ── */
        .floating-social-widget {
            position: fixed;
            right: 22px;
            bottom: 64px;
            z-index: 9995;
            display: flex;
            flex-direction: column;
            gap: 9px;
            align-items: flex-end;
        }
        .social-float-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 14px 8px 10px;
            border-radius: 50px;
            color: #FFFFFF !important;
            text-decoration: none;
            font-size: 13px;
            font-weight: 700;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
            transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
            backdrop-filter: blur(8px);
            letter-spacing: -0.3px;
        }
        .social-float-btn:hover {
            transform: translateY(-3px) scale(1.04);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
        }
        .social-float-icon {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .btn-yt-float {
            background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
            border: 1px solid rgba(255, 255, 255, 0.35);
        }
        .btn-yt-float .social-float-icon {
            background: rgba(255, 255, 255, 0.2);
            color: #FFFFFF;
        }
        .btn-blog-float {
            background: linear-gradient(135deg, #03C75A 0%, #009E44 100%);
            border: 1px solid rgba(255, 255, 255, 0.35);
        }
        .btn-blog-float .social-float-icon {
            background: rgba(255, 255, 255, 0.2);
            color: #FFFFFF;
        }
        .social-float-top {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: #FFFFFF;
            border: 1px solid #E2D9DD;
            color: #55444A;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-size: 9.5px;
            font-weight: 800;
            cursor: pointer;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
            transition: all 0.2s ease;
            padding: 0;
            outline: none;
            line-height: 1;
        }
        .social-float-top:hover {
            background: var(--somssi-pink);
            color: #FFFFFF;
            border-color: var(--somssi-pink);
            transform: translateY(-2px);
        }

        /* ── 미니멀 푸터 ── */
        .site-footer {
            background: #231B1E;
            color: #A3969B;
            font-size: 13px;
            line-height: 1.8;
            padding: 40px 24px 80px;
            border-top: 1px solid #382C30;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .footer-logo {
            font-size: 18px;
            font-weight: 800;
            color: #FFFFFF;
            letter-spacing: -0.5px;
        }
        .footer-info-row {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 18px;
        }
        .footer-info-row span {
            display: inline-flex;
            gap: 6px;
        }
        .footer-info-row strong {
            color: #E2D7DA;
        }
        .footer-hub-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--somssi-pink-light);
            font-weight: 700;
            margin-top: 6px;
            text-decoration: none;
        }
        .footer-hub-link:hover {
            text-decoration: underline;
        }
        .footer-copy {
            font-size: 12px;
            color: #706367;
            margin-top: 10px;
            border-top: 1px solid #33272B;
            padding-top: 14px;
        }

        /* ── 반응형 최적화 ── */
        @media (max-width: 1024px) {
            .article-wrap { grid-template-columns: minmax(0, 1fr); padding: 0 16px 70px; }
            .sidebar { position: static; order: 2; }
            .main-article { padding: 35px 20px; min-width: 0; }
            .hero-title { font-size: 32px; }
        }
        @media (max-width: 768px) {
            .header-inner {
                padding: 8px 14px;
                gap: 8px;
            }
            .brand-logo img {
                height: 28px;
                width: auto;
            }
            .header-nav { display: none; }
            .header-cta {
                gap: 6px;
            }
            .btn-call-direct {
                padding: 6px 11px;
                font-size: 12px;
                gap: 5px;
                border-radius: 20px;
            }
            .btn-call-direct svg {
                width: 13px;
                height: 13px;
            }
            .btn-hamburger {
                display: inline-flex;
            }
            .hero-section { padding: 35px 18px 40px; }
            .hero-title { font-size: 26px; }
            .hero-sublead { font-size: 14.5px; }
            .toc-list { grid-template-columns: 1fr; }
            .checklist-grid { grid-template-columns: 1fr; }
            .form-row-2 { grid-template-columns: 1fr; }
            .sticky-four-bar { padding: 5px 8px; }
            .sticky-four-inner { gap: 5px; }
            .sticky-btn {
                padding: 5px 4px;
                gap: 4px;
                border-radius: 8px;
                min-height: 36px;
                justify-content: center;
                text-align: center;
            }
            .sticky-btn .s-icon { font-size: 13.5px; }
            .sticky-btn .s-label { font-size: 11.5px; }
            .sticky-btn .s-sub { display: none; }
            .sub-banners-wrap { padding: 0 16px; margin: 20px auto 30px; }
            .floating-social-widget {
                right: 12px;
                bottom: 56px;
                gap: 7px;
            }
            .social-float-btn {
                padding: 0;
                width: 38px;
                height: 38px;
                border-radius: 50%;
                justify-content: center;
            }
            .social-float-icon {
                width: 38px;
                height: 38px;
                background: transparent !important;
            }
            .social-float-text {
                display: none;
            }
            .social-float-top {
                width: 38px;
                height: 38px;
                font-size: 9px;
            }
        }
        @media (max-width: 600px) {
            .hero-form-row { grid-template-columns: 1fr; gap: 6px; }
            .hero-form-card { padding: 20px 16px; border-radius: var(--radius-lg); }
            .hero-form-chips { grid-template-columns: 1fr; }
            .hero-form-chips label { font-size: 12.5px; padding: 7px 10px; }
            .med-table th, .med-table td { padding: 9px 10px; font-size: 12px; line-height: 1.5; }
            .med-table th { font-size: 12.5px; }
            .table-scroll-guide { font-size: 11.5px; padding: 6px 10px; }
        }
        @media (max-width: 480px) {
            .sticky-four-inner { gap: 4px; }
            .sticky-btn { padding: 5px 3px; gap: 3px; }
            .sticky-btn .s-icon { font-size: 12px; }
            .sticky-btn .s-label { font-size: 11px; }
            .main-article { padding: 22px 14px; }
            .sec-h2 { font-size: 18px; line-height: 1.42; }
            .sec-lead { font-size: 14px; padding-left: 10px; }
            .sec-p { font-size: 14px; }
            .aeo-box { padding: 14px 14px; }
            .aeo-q { font-size: 14px; }
            .aeo-a { font-size: 13px; }
        }
        @media (max-width: 380px) {
            .header-inner {
                padding: 7px 8px;
                gap: 5px;
            }
            .brand-logo img {
                height: 25px;
            }
            .btn-call-direct {
                padding: 5px 8px;
                font-size: 11.5px;
                gap: 4px;
            }
            .btn-call-direct .call-prefix {
                display: none;
            }
            .btn-hamburger {
                width: 32px;
                height: 32px;
            }
        }
    

/* ══════════════ Hub Pages & Regional Grid Styling ══════════════ */
.hub-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px 60px;
}
.hub-hero-section {
    background: linear-gradient(135deg, #FFF6F8 0%, #FFF0F4 50%, #FAF2F5 100%);
    border-bottom: 1px solid var(--border-pink);
    padding: 45px 24px 50px;
    text-align: center;
    position: relative;
}
.hub-hero-inner {
    max-width: 960px;
    margin: 0 auto;
}
.hub-title {
    font-size: 30px;
    font-weight: 800;
    color: var(--somssi-dark);
    line-height: 1.35;
    margin: 14px 0 12px;
    letter-spacing: -0.6px;
}
.hub-lead {
    font-size: 15px;
    color: var(--text-sub);
    line-height: 1.75;
    margin-bottom: 24px;
}
.hub-child-section {
    margin: 40px 0 50px;
}
.hub-sec-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--somssi-pink);
    padding-bottom: 10px;
    flex-wrap: wrap;
    gap: 10px;
}
.hub-sec-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--somssi-dark);
}
.hub-sec-sub {
    font-size: 13px;
    color: var(--somssi-deep);
    font-weight: 600;
}
.hub-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
}
.hub-card {
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 16px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: var(--text-main);
    font-size: 14.5px;
    font-weight: 700;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}
.hub-card:hover {
    border-color: var(--somssi-pink);
    background: #FFF9FA;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(229, 82, 117, 0.12);
    color: var(--somssi-pink);
}
.hub-card-arrow {
    color: var(--somssi-pink);
    font-size: 13px;
    font-weight: 800;
}
.hub-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 14px;
    margin-top: 15px;
}
.hub-service-item {
    background: #FFFFFF;
    border: 1px solid var(--border-pink);
    border-left: 4px solid var(--somssi-pink);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: var(--text-title);
    font-size: 14px;
    font-weight: 700;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(229, 82, 117, 0.04);
}
.hub-service-item:hover {
    background: #FFF7F9;
    border-color: var(--somssi-deep);
    transform: translateX(3px);
    color: var(--somssi-deep);
}
.hub-specs-card {
    background: #FFFFFF;
    border: 1px solid var(--border-pink);
    border-radius: var(--radius-md);
    padding: 24px;
    margin: 40px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
@media (max-width: 768px) {
    .hub-title { font-size: 22px; }
    .hub-card-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .hub-service-grid { grid-template-columns: 1fr; }
}
