        /* =========================================
           CSS Variables (기존 색상 유지)
           ========================================= */
        :root {
            --primary: #0047AB;
            --primary-light: #e6f0ff;
            --primary-dark: #003380;
            --primary-rgb: 0, 71, 171;
            
            --accent: #FFD100;
            --accent-light: #fff8e0;
            --accent-dark: #e6bc00;
            
            --success: #10b981;
            --success-light: #d1fae5;
            --warning: #f59e0b;
            --warning-light: #fef3c7;
            --danger: #ef4444;
            --danger-light: #fee2e2;
            
            --text-primary: #222222;
            --text-secondary: #555555;
            --text-muted: #888888;
            --text-light: #aaaaaa;
            
            --bg-white: #ffffff;
            --bg-light: #f8f9fa;
            --bg-section: #f5f5f5;
            --bg-dark: #1a1a2e;
            
            --border-color: #e0e0e0;
            --border-light: #f0f0f0;
            
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
            --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
            --shadow-mag: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
            
            --radius-sm: 6px;
            --radius-md: 12px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --radius-full: 50px;
            
            --font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        /* =========================================
           Reset & Base
           ========================================= */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-family);
            font-size: 1rem;
            line-height: 1.8;
            color: var(--text-primary);
            background-color: var(--bg-white);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        /* =========================================
           Container
           ========================================= */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }

        .blog-container {
            max-width: 880px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }

        /* =========================================
           Breadcrumb
           ========================================= */
        .breadcrumb {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5rem;
            font-size: 0.875rem;
            color: var(--text-muted);
            padding: 2rem 0 1rem;
            max-width: 880px;
            margin: 0 auto;
        }

        .breadcrumb a {
            color: var(--text-secondary);
            transition: color 0.2s;
        }

        .breadcrumb a:hover {
            color: var(--primary);
        }

        /* =========================================
           Hero Section (매거진 스타일)
           ========================================= */
        .hero-section {
            position: relative;
            padding: 4rem 0 3rem;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background-color: var(--bg-light);
            z-index: -10;
            transform: skewY(-2deg);
            transform-origin: top left;
            height: 150%;
            margin-top: -50%;
        }

        .hero-badge {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .badge {
            padding: 0.35rem 1rem;
            font-size: 0.75rem;
            font-weight: 700;
            border-radius: var(--radius-full);
        }

        .badge-primary {
            background-color: var(--primary);
            color: white;
        }

        .badge-accent {
            background-color: var(--accent);
            color: var(--text-primary);
        }

        .badge-outline {
            background-color: var(--bg-white);
            color: var(--text-secondary);
            border: 1px solid var(--border-color);
        }

        .badge-line {
            width: 3rem;
            height: 1px;
            background-color: var(--border-color);
        }

        .hero-title {
            font-size: 2.25rem;
            font-weight: 900;
            color: var(--text-primary);
            line-height: 1.2;
            margin-bottom: 1rem;
            word-break: keep-all;
        }

        .hero-title .highlight {
            position: relative;
            display: inline;
        }

        .hero-title .highlight::after {
            content: '';
            position: absolute;
            bottom: 0.25rem;
            left: 0;
            width: 100%;
            height: 0.5rem;
            background-color: rgba(255, 209, 0, 0.4);
            z-index: -1;
        }

        .hero-title .blue {
            color: var(--primary);
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            line-height: 1.6;
            border-left: 4px solid var(--primary);
            padding-left: 1.5rem;
            font-style: italic;
        }

        .hero-meta {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem 1rem;
            padding: 1.5rem 0;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }

        .meta-item .meta-label {
            font-size: 0.625rem;
            font-weight: 700;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 0.25rem;
        }

        .meta-item .meta-value {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-primary);
        }

        /* Hero Image */
        .hero-figure {
            margin: 3rem 0;
            position: relative;
        }

        .hero-figure .img-wrapper {
            overflow: hidden;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-mag);
        }

        .hero-figure img {
            width: 100%;
            height: auto;
            transition: transform 0.7s;
        }

        .hero-figure:hover img {
            transform: scale(1.03);
        }

        .hero-figure figcaption {
            margin-top: 1rem;
            font-size: 0.875rem;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .hero-figure figcaption::before {
            content: '';
            width: 2rem;
            height: 1px;
            background-color: var(--text-light);
        }

        /* =========================================
           Article Content
           ========================================= */
        .article-content {
            padding: 4rem 0;
        }

        .content-section {
            margin-bottom: 8rem;
        }

        .content-section:last-child {
            margin-bottom: 0;
        }

        /* Section Header (매거진 스타일 큰 번호) */
        /* Section Header (매거진 스타일 큰 번호) - 수정 */
.section-header {
    position: relative;
    margin-bottom: 2.5rem;
    text-align:left;
}

.section-number {
    font-size: 7rem;
    font-weight: 900;
    color: #f0f0f0;
    line-height: 1;
    margin-bottom: -2.5rem;
    user-select: none;
    position: relative;
    z-index: 0;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
    padding-left: 0.5rem;
}

        /* Prose */
        .prose {
            font-size: 1.0625rem;
            color: var(--text-primary);
            line-height: 1.9;
        }

        .prose p {
            margin-bottom: 1.25rem;
        }

        .prose strong {
            color: var(--primary);
            font-weight: 600;
        }

        /* Drop Cap */
        .drop-cap::first-letter {
            float: left;
            font-size: 3.5rem;
            line-height: 0.8;
            font-weight: 900;
            margin-right: 0.75rem;
            margin-top: 0.25rem;
            color: var(--primary);
        }

        /* =========================================
           Magazine Quote (인용구)
           ========================================= */
        .magazine-quote {
            margin: 2.5rem 0;
            padding: 2rem 2.5rem;
            background-color: var(--accent-light);
            border-radius: 0 2rem 0 2rem;
            position: relative;
        }

        .magazine-quote::before {
            content: '"';
            position: absolute;
            top: -1rem;
            left: 1rem;
            font-size: 5rem;
            color: var(--accent);
            opacity: 0.5;
            line-height: 1;
            font-family: Georgia, serif;
        }

        .magazine-quote p {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text-primary);
            text-align: center;
            line-height: 1.6;
            font-style: italic;
            position: relative;
            z-index: 1;
            margin: 0;
        }

        .magazine-quote cite {
            display: block;
            text-align: center;
            margin-top: 1rem;
            font-size: 0.875rem;
            font-weight: 700;
            color: var(--primary);
            font-style: normal;
            letter-spacing: 0.05em;
        }

        .magazine-quote.accent {
            background-color: var(--primary-light);
        }

        .magazine-quote.accent::before {
            color: var(--primary);
        }

        /* =========================================
           Content Figure (이미지)
           ========================================= */
        .content-figure {
            margin: 2rem 0;
        }

        .content-figure .img-wrapper {
            overflow: hidden;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-md);
        }

        .content-figure img {
            width: 100%;
            height: auto;
            transition: transform 0.7s;
        }

        .content-figure:hover img {
            transform: scale(1.02);
        }

        .content-figure figcaption {
            margin-top: 0.75rem;
            font-size: 0.875rem;
            color: var(--text-muted);
            text-align: center;
            font-style: italic;
        }

        /* =========================================
           Problem List (문제점 카드)
           ========================================= */
        .problem-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin: 2rem 0;
        }

        .problem-item {
            display: flex;
            gap: 1rem;
            padding: 1.25rem 1.5rem;
            background-color: var(--bg-white);
            border-radius: var(--radius-md);
            border-left: 4px solid var(--accent);
            box-shadow: var(--shadow-sm);
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .problem-item:hover {
            transform: translateX(4px);
            box-shadow: var(--shadow-md);
        }

        .problem-icon {
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .problem-content strong {
            display: block;
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.25rem;
        }

        .problem-content p {
            margin: 0;
            font-size: 0.9375rem;
            color: var(--text-secondary);
        }

        /* =========================================
           Warning Box
           ========================================= */
        .warning-box {
            display: flex;
            gap: 1rem;
            padding: 1.5rem;
            background-color: var(--danger-light);
            border-left: 4px solid var(--danger);
            border-radius: 0 var(--radius-md) var(--radius-md) 0;
            margin: 2rem 0;
        }

        .warning-icon {
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .warning-content strong {
            display: block;
            font-size: 1rem;
            font-weight: 700;
            color: #b91c1c;
            margin-bottom: 0.5rem;
        }

        .warning-content p {
            margin: 0;
            font-size: 0.9375rem;
            color: var(--text-primary);
            line-height: 1.7;
        }

        /* =========================================
           Diagnosis Card (다크 카드 - 매거진 스타일)
           ========================================= */
        .diagnosis-card {
            background-color: var(--bg-dark);
            color: white;
            border-radius: var(--radius-xl);
            padding: 2rem;
            margin: 2.5rem 0;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-xl);
        }

        .diagnosis-card .glow-1 {
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background-color: rgba(0, 71, 171, 0.3);
            border-radius: 50%;
            filter: blur(60px);
            pointer-events: none;
        }

        .diagnosis-card .glow-2 {
            position: absolute;
            bottom: -80px;
            left: -80px;
            width: 200px;
            height: 200px;
            background-color: rgba(255, 209, 0, 0.2);
            border-radius: 50%;
            filter: blur(60px);
            pointer-events: none;
        }

        .diagnosis-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            z-index: 1;
        }

        .diagnosis-header .label {
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
        }

        .diagnosis-header h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0;
            color:white;
        }

        .diagnosis-grid {
            display: grid;
            gap: 2rem;
            position: relative;
            z-index: 1;
        }

        .diagnosis-item .label {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.6);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.5rem;
        }

        .diagnosis-item .title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .diagnosis-item .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .diagnosis-item .tag {
            padding: 0.25rem 0.75rem;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-full);
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .diagnosis-item p {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            margin: 0;
        }

        /* =========================================
           Solution Card
           ========================================= */
        .solution-card {
            background-color: var(--bg-light);
            border-radius: var(--radius-lg);
            padding: 2rem;
            margin: 2rem 0;
            border: 1px solid var(--border-color);
        }

        .solution-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 2px dashed var(--border-color);
        }

        .solution-list {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .solution-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            padding: 1rem;
            background-color: var(--bg-white);
            border-radius: var(--radius-sm);
            transition: transform 0.2s;
        }

        .solution-item:hover {
            transform: translateX(4px);
        }

        .check-icon {
            width: 24px;
            height: 24px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: 700;
            flex-shrink: 0;
        }

        .solution-item span:last-child {
            font-size: 0.9375rem;
            color: var(--text-primary);
            line-height: 1.5;
        }

        /* =========================================
           Timeline (시공 과정)
           ========================================= */
        .timeline {
            margin: 2rem 0;
        }

        .timeline-day {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin: 2.5rem 0 1rem;
        }

        .timeline-day:first-child {
            margin-top: 0;
        }

        .day-marker {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.5rem 1.25rem;
            background-color: var(--primary);
            color: white;
            font-size: 0.75rem;
            font-weight: 700;
            border-radius: var(--radius-full);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .timeline-day h3 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin: 0;
        }

        .timeline-item {
            display: flex;
            gap: 1rem;
            padding: 1.5rem;
            background-color: var(--bg-light);
            margin-bottom: 1rem;
            margin-left: 2rem;
            border-left: 3px solid var(--accent);
            position: relative;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -9px;
            top: 50%;
            transform: translateY(-50%);
            width: 12px;
            height: 12px;
            background-color: var(--accent);
            border: 3px solid var(--bg-white);
            border-radius: 50%;
        }

        .timeline-item:hover {
            transform: translateX(4px);
            box-shadow: var(--shadow-sm);
        }

        .timeline-step {
            flex-shrink: 0;
            padding: 0.35rem 0.75rem;
            background-color: var(--accent);
            color: var(--text-primary);
            font-size: 0.75rem;
            font-weight: 700;
            border-radius: var(--radius-sm);
            height: fit-content;
        }

        .timeline-content {
            flex: 1;
        }

        .timeline-content h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .timeline-content > p {
            font-size: 0.9375rem;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 1rem;
        }

        .timeline-figure {
            margin-top: 1rem;
        }

        .timeline-figure .img-wrapper {
            overflow: hidden;
            border-radius: var(--radius-sm);
            box-shadow: var(--shadow-sm);
        }

        .timeline-figure img {
            width: 100%;
            height: auto;
            transition: transform 0.5s;
        }

        .timeline-figure:hover img {
            transform: scale(1.03);
        }

        .timeline-figure figcaption {
            margin-top: 0.5rem;
            font-size: 0.8125rem;
            color: var(--text-muted);
            text-align: center;
            font-style: italic;
        }

        /* =========================================
           Before & After
           ========================================= */
        .before-after {
            margin: 2rem 0;
        }

        .ba-item {
            position: relative;
        }

        .ba-label {
            position: absolute;
            top: 1rem;
            left: 1rem;
            padding: 0.35rem 1rem;
            font-size: 0.75rem;
            font-weight: 700;
            border-radius: var(--radius-sm);
            z-index: 1;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .ba-before {
            background-color: var(--text-secondary);
            color: white;
        }

        .ba-after {
            background-color: var(--primary);
            color: white;
        }

        .ba-item .img-wrapper {
            overflow: hidden;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
        }

        .ba-item img {
            width: 100%;
            height: auto;
        }

        .ba-item figcaption {
            margin-top: 1rem;
            font-size: 0.875rem;
            color: var(--text-muted);
            text-align: center;
        }

        /* =========================================
           Image Grid
           ========================================= */
        .image-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin: 2rem 0;
        }

        .grid-figure {
            margin: 0;
        }

        .grid-figure .img-wrapper {
            overflow: hidden;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            aspect-ratio: 4/3;
        }

        .grid-figure img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .grid-figure:hover img {
            transform: scale(1.05);
        }

        .grid-figure figcaption {
            margin-top: 0.5rem;
            font-size: 0.8125rem;
            color: var(--text-muted);
            text-align: center;
        }

        /* =========================================
           Result Stats
           ========================================= */
        .result-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-top: 2.5rem;
            padding: 1.5rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: var(--radius-lg);
        }

        .stat-item {
            text-align: center;
            color: white;
            padding: 0.5rem;
        }

        .stat-number {
            display: block;
            font-size: 1.75rem;
            font-weight: 900;
        }

        .stat-label {
            display: block;
            font-size: 0.75rem;
            opacity: 0.9;
            margin-top: 0.25rem;
        }

        /* =========================================
           Sub Heading
           ========================================= */
        .sub-heading {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-primary);
            margin: 2.5rem 0 1rem;
        }

        /* =========================================
           Highlight Cards (전문가 조언)
           ========================================= */
        .highlight-cards {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin: 2rem 0;
        }

        .highlight-card {
            display: flex;
            gap: 1rem;
            padding: 1.5rem;
            background-color: var(--bg-white);
            border-radius: var(--radius-md);
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-sm);
            transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
        }

        .highlight-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
            border-color: var(--primary-light);
        }

        .highlight-icon {
            font-size: 1.75rem;
            flex-shrink: 0;
        }

        .highlight-card h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .highlight-card p {
            margin: 0;
            font-size: 0.9375rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* =========================================
           Related Section
           ========================================= */
        .related-section {
            background-color: var(--bg-light);
            border-radius: var(--radius-lg);
            padding: 2rem;
            margin: 3rem 0;
        }

        .related-section h2 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .related-section > p {
            font-size: 0.9375rem;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
        }

        .related-links {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .related-link {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 1.25rem;
            background-color: var(--bg-white);
            border-radius: var(--radius-sm);
            color: var(--primary);
            font-weight: 600;
            font-size: 0.9375rem;
            border: 1px solid var(--border-color);
            transition: all 0.2s;
        }

        .related-link:hover {
            background-color: var(--primary-light);
            transform: translateX(4px);
            border-color: var(--primary);
        }

        .link-icon {
            font-size: 1.25rem;
        }

        /* =========================================
           CTA Section (매거진 스타일)
           ========================================= */
        .cta-section {
            background-color: var(--bg-dark);
            padding: 5rem 1.25rem;
            position: relative;
            overflow: hidden;
            margin-top: 4rem;
        }

        .cta-section .glow-container {
            position: absolute;
            inset: 0;
            opacity: 0.3;
            pointer-events: none;
        }

        .cta-section .glow-1 {
            position: absolute;
            top: -20%;
            right: -10%;
            width: 50%;
            height: 60%;
            background-color: var(--primary);
            border-radius: 50%;
            filter: blur(100px);
        }

        .cta-section .glow-2 {
            position: absolute;
            bottom: -20%;
            left: -10%;
            width: 50%;
            height: 60%;
            background-color: var(--accent);
            border-radius: 50%;
            filter: blur(100px);
        }

        .cta-content {
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .cta-content h2 {
            font-size: 1.75rem;
            font-weight: 900;
            color: white;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .cta-content > p {
            font-size: 1.0625rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .cta-stats {
            display: flex;
            justify-content: center;
            gap: 2.5rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .cta-stat {
            text-align: center;
        }

        .cta-stat .stat-num {
            display: block;
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--accent);
        }

        .cta-stat .stat-txt {
            display: block;
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 0.25rem;
        }

        .cta-phone {
            margin-bottom: 1rem;
        }

        .cta-phone a {
            font-size: 2rem;
            font-weight: 900;
            color: white;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: transform 0.2s;
        }

        .cta-phone a:hover {
            transform: scale(1.05);
        }

        .cta-phone .phone-icon {
            font-size: 1.5rem;
        }

        .cta-note {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 2rem;
        }

        .cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            justify-content: center;
        }

        .btn-cta-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2rem;
            background-color: var(--accent);
            color: var(--text-primary);
            font-size: 1rem;
            font-weight: 700;
            border-radius: var(--radius-md);
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .btn-cta-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 209, 0, 0.4);
        }

        .btn-cta-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2rem;
            background-color: transparent;
            color: white;
            font-size: 1rem;
            font-weight: 600;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: var(--radius-md);
            transition: all 0.2s;
        }

        .btn-cta-secondary:hover {
            background-color: rgba(255, 255, 255, 0.1);
            border-color: white;
        }

        /* =========================================
           Related Cases (하단 카드)
           ========================================= */
        .related-cases {
            padding: 3rem 1.25rem;
            max-width: 880px;
            margin: 0 auto;
        }

        .related-cases > h2 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
        }

        .related-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .related-card {
            display: block;
            background-color: var(--bg-white);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .related-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .related-card .img-wrapper {
            overflow: hidden;
            aspect-ratio: 16/10;
        }

        .related-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

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

        .related-info {
            padding: 1rem;
        }

        .related-tag {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--primary);
            background-color: var(--primary-light);
            padding: 0.2rem 0.6rem;
            border-radius: var(--radius-sm);
            margin-bottom: 0.5rem;
        }

        .related-info h4 {
            font-size: 0.9375rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.25rem;
            line-height: 1.4;
        }

        .related-info p {
            font-size: 0.8125rem;
            color: var(--text-muted);
            margin: 0;
        }

        /* =========================================
           Responsive - Tablet
           ========================================= */
        @media (min-width: 768px) {
            .hero-title {
                font-size: 2.75rem;
            }

            .hero-meta {
                grid-template-columns: repeat(4, 1fr);
            }

            .section-number {
                font-size: 6rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .diagnosis-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .result-stats {
                grid-template-columns: repeat(4, 1fr);
            }

            .cta-content h2 {
                font-size: 2.25rem;
            }

            .cta-buttons {
                flex-direction: row;
            }

            .related-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* =========================================
           Responsive - Desktop
           ========================================= */
        @media (min-width: 1024px) {
            .hero-section {
                padding: 5rem 0 4rem;
            }

            .hero-title {
                font-size: 3rem;
            }

            .blog-container {
                padding: 0;
            }

            .section-number {
                font-size: 7rem;
                margin-bottom: -2rem;
            }

            .section-title {
                font-size: 2.25rem;
            }

            .content-section {
                margin-bottom: 10rem;
            }

            .diagnosis-card {
                padding: 2.5rem;
            }

            .timeline-item {
                flex-direction: row;
            }

            .cta-section {
                padding: 6rem 1.25rem;
            }

            .cta-content h2 {
                font-size: 2.5rem;
            }

            .cta-phone a {
                font-size: 2.5rem;
            }
        }

        /* =========================================
           Responsive - Mobile
           ========================================= */
        @media (max-width: 480px) {
            .hero-badge {
                gap: 0.5rem;
            }

            .badge {
                font-size: 0.6875rem;
                padding: 0.25rem 0.75rem;
            }

            .hero-title {
                font-size: 1.75rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .section-number {
                font-size: 4rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .magazine-quote {
                padding: 1.5rem;
            }

            .magazine-quote::before {
                font-size: 3rem;
            }

            .magazine-quote p {
                font-size: 1.0625rem;
            }

            .timeline-item {
                flex-direction: column;
                margin-left: 0;
                padding: 1.25rem;
            }

            .timeline-item::before {
                display: none;
            }

            .timeline-step {
                align-self: flex-start;
            }

            .image-grid {
                grid-template-columns: 1fr;
            }

            .warning-box,
            .highlight-card {
                flex-direction: column;
                gap: 0.75rem;
            }

            .cta-stats {
                gap: 1.5rem;
            }

            .cta-phone a {
                font-size: 1.5rem;
            }

            .result-stats {
                padding: 1rem;
            }

            .stat-number {
                font-size: 1.5rem;
            }
        }
