        /* =========================================
           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
           ========================================= */
        .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: 3rem 0 2rem;
            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: 1.5rem;
            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);
        }

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

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

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

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

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

        .hero-meta {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            padding: 1.25rem 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: 0.9375rem;
            font-weight: 700;
            color: var(--text-primary);
        }

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

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

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

        /* Section Header */
        .section-header {
            position: relative;
            margin-bottom: 1.5rem;
            text-align: left;
        }

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

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

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

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

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

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

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

        .magazine-quote p {
            font-size: 1.0625rem;
            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: 0.75rem;
            font-size: 0.8125rem;
            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: 1.5rem 0;
        }

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

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

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

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

        /* 인포그래픽용 - 높이 제한 없음 */
        .content-figure.full-height .img-wrapper {
            max-height: none;
        }

        /* 중간 크기 이미지 */
        .content-figure.medium .img-wrapper {
            max-width: 600px;
            margin: 0 auto;
            max-height: none;
        }

        /* =========================================
           Problem List
           ========================================= */
        .problem-list {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            margin: 1.5rem 0;
        }

        .problem-item {
            display: flex;
            gap: 0.75rem;
            padding: 1rem 1.25rem;
            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.25rem;
            flex-shrink: 0;
        }

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

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

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

        .warning-box.info {
            background-color: var(--primary-light);
            border-left-color: var(--primary);
        }

        .warning-box.success {
            background-color: var(--success-light);
            border-left-color: var(--success);
        }

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

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

        .warning-box.info .warning-content strong {
            color: var(--primary);
        }

        .warning-box.success .warning-content strong {
            color: var(--success);
        }

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

        .warning-content ul {
            margin: 0.375rem 0 0 1.25rem;
            padding: 0;
        }

        .warning-content ul li {
            font-size: 0.875rem;
            color: var(--text-primary);
            margin-bottom: 0.125rem;
        }

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

        .info-card h3 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .info-table {
            width: 100%;
            border-collapse: collapse;
        }

        .info-table tr {
            border-bottom: 1px solid var(--border-color);
        }

        .info-table tr:last-child {
            border-bottom: none;
        }

        .info-table th {
            text-align: left;
            padding: 0.75rem 1rem;
            background-color: var(--primary);
            color: white;
            font-size: 0.8125rem;
            font-weight: 600;
            width: 30%;
        }

        .info-table td {
            padding: 0.75rem 1rem;
            background-color: var(--bg-white);
            font-size: 0.875rem;
            color: var(--text-primary);
        }

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

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

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

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

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

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

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

        /* =========================================
           Timeline - 컴팩트하게
           ========================================= */
        .timeline {
            margin: 1.5rem 0;
        }

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

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

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

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

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

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -8px;
            top: 50%;
            transform: translateY(-50%);
            width: 10px;
            height: 10px;
            background-color: var(--accent);
            border: 2px 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.25rem 0.625rem;
            background-color: var(--accent);
            color: var(--text-primary);
            font-size: 0.6875rem;
            font-weight: 700;
            border-radius: var(--radius-sm);
            height: fit-content;
        }

        .timeline-content {
            flex: 1;
        }

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

        .timeline-content > p {
            font-size: 0.875rem;
            color: var(--text-secondary);
            line-height: 1.65;
            margin-bottom: 0.75rem;
        }

        /* Timeline Figure - 높이 제한 */
        .timeline-figure {
            margin-top: 0.75rem;
        }

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

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

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

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

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

        .grid-figure {
            margin: 0;
        }

        .grid-figure .img-wrapper {
            overflow: hidden;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            height: 200px;
        }

        .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.75rem;
            color: var(--text-muted);
            text-align: center;
        }

        /* =========================================
           Before & After
           ========================================= */
        .before-after-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin: 1.5rem 0;
        }

        .ba-item {
            position: relative;
        }

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

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

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

        .ba-item .img-wrapper {
            overflow: hidden;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-md);
            height: 220px;
        }

        .ba-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

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

        /* =========================================
           Comparison Table
           ========================================= */
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.875rem;
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }

        .comparison-table thead th {
            background-color: var(--primary);
            color: white;
            padding: 0.75rem;
            font-weight: 600;
            text-align: left;
            font-size: 0.8125rem;
        }

        .comparison-table tbody td {
            padding: 0.75rem;
            border-bottom: 1px solid var(--border-color);
            background-color: var(--bg-white);
            vertical-align: top;
            font-size: 0.8125rem;
            line-height: 1.5;
        }

        .comparison-table tbody tr:nth-child(even) td {
            background-color: var(--bg-light);
        }

        .comparison-table tbody tr:last-child td {
            border-bottom: none;
        }

        /* =========================================
           FAQ Section
           ========================================= */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            margin: 1.5rem 0;
        }

        .faq-item {
            background-color: var(--bg-white);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: box-shadow 0.2s;
        }

        .faq-item:hover {
            box-shadow: var(--shadow-md);
        }

        .faq-question {
            padding: 1rem 1.25rem;
            background-color: var(--bg-light);
            font-weight: 700;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 0.625rem;
            font-size: 0.9375rem;
        }

        .faq-question .q-mark {
            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;
        }

        .faq-answer {
            padding: 1rem 1.25rem;
            padding-left: 3.25rem;
            font-size: 0.875rem;
            color: var(--text-secondary);
            line-height: 1.65;
        }

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

        .summary-card h3 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .summary-table {
            width: 100%;
            border-collapse: collapse;
        }

        .summary-table tr {
            border-bottom: 1px solid var(--border-color);
        }

        .summary-table tr:last-child {
            border-bottom: none;
        }

        .summary-table th {
            text-align: left;
            padding: 0.625rem 0.75rem;
            background-color: var(--primary);
            color: white;
            font-size: 0.8125rem;
            font-weight: 600;
            width: 25%;
        }

        .summary-table td {
            padding: 0.625rem 0.75rem;
            background-color: var(--bg-white);
            font-size: 0.8125rem;
            color: var(--text-primary);
        }

        /* =========================================
           Highlight Box
           ========================================= */
        .highlight-box {
            text-align: center;
            margin: 2rem 0;
            padding: 1.5rem;
            background-color: var(--bg-light);
            border-radius: var(--radius-lg);
        }

        .highlight-box .main-text {
            font-size: 1.0625rem;
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .highlight-box .sub-text {
            font-size: 0.875rem;
            color: var(--text-muted);
        }

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

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

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

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

        .related-link {
            display: flex;
            align-items: center;
            gap: 0.625rem;
            padding: 0.75rem 1rem;
            background-color: var(--bg-white);
            border-radius: var(--radius-sm);
            color: var(--primary);
            font-weight: 600;
            font-size: 0.875rem;
            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: 1rem;
        }

        /* =========================================
           CTA Section
           ========================================= */
        .cta-section {
            background-color: var(--bg-dark);
            padding: 3.5rem 1.25rem;
            position: relative;
            overflow: hidden;
            margin-top: 3rem;
        }

        .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.5rem;
            font-weight: 900;
            color: white;
            margin-bottom: 0.75rem;
            line-height: 1.3;
        }

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

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

        .cta-phone a {
            font-size: 1.75rem;
            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.25rem;
        }

        .cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            justify-content: center;
            margin-top: 1.5rem;
        }

        .btn-cta-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.875rem 1.75rem;
            background-color: var(--accent);
            color: var(--text-primary);
            font-size: 0.9375rem;
            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: 0.875rem 1.75rem;
            background-color: transparent;
            color: white;
            font-size: 0.9375rem;
            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;
        }

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

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

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

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

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

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

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

            .ba-item .img-wrapper {
                height: 240px;
            }

            .grid-figure .img-wrapper {
                height: 220px;
            }

            .content-figure .img-wrapper {
                max-height: 450px;
            }

            .timeline-figure .img-wrapper {
                max-height: 320px;
            }
        }

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

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

            .blog-container {
                padding: 0;
            }

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

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

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

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

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

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

            .ba-item .img-wrapper {
                height: 260px;
            }

            .grid-figure .img-wrapper {
                height: 240px;
            }

            .content-figure .img-wrapper {
                max-height: 500px;
            }

            .timeline-figure .img-wrapper {
                max-height: 350px;
            }
        }

        /* =========================================
           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.5rem;
            }

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

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

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

            .magazine-quote {
                padding: 1.25rem 1.5rem;
            }

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

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

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

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

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

            .before-after-grid {
                grid-template-columns: 1fr;
            }

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

            .ba-item .img-wrapper {
                height: 180px;
            }

            .grid-figure .img-wrapper {
                height: 180px;
            }

            .warning-box {
                flex-direction: column;
                gap: 0.5rem;
            }

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

            .content-figure .img-wrapper {
                max-height: 280px;
            }

            .timeline-figure .img-wrapper {
                max-height: 220px;
            }
        }
