/* ── Hero ── */
        .blog-hero {
            background: var(--gradient-primary);
            color: var(--white);
            padding: 100px 0 60px;
            text-align: center;
        }

        .blog-hero h1 {
            font-size: 44px;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .blog-meta {
            font-size: 15px;
            opacity: 0.88;
            margin-bottom: 30px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 22px;
            flex-wrap: wrap;
        }

        .blog-meta span {
            display: flex;
            align-items: center;
            gap: 7px;
        }

        /* ── Outer Layout ── */
        .blog-content {
            padding: 80px 0;
            background-color: var(--bg-light);
        }

        .blog-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            gap: 40px;
            background: transparent;
            padding: 0 20px;
            box-shadow: none;
        }

        /* ── Main Article ── */
        .blog-main {
            flex: 2;
            background: var(--white);
            border-radius: 16px;
            padding: 52px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
        }

        .blog-main p {
            line-height: 1.85;
            color: var(--text-dark);
            margin-bottom: 18px;
        }

        .blog-main h2 {
            font-size: 26px;
            margin-top: 46px;
            margin-bottom: 16px;
            color: var(--primary-color);
            padding-bottom: 10px;
            border-bottom: 2px solid #e5e7eb;
        }

        .blog-main h3 {
            font-size: 19px;
            margin-top: 28px;
            margin-bottom: 12px;
            color: var(--text-dark);
        }

        .blog-main ul {
            padding-left: 22px;
            margin-bottom: 18px;
        }

        .blog-main ul li {
            margin-bottom: 9px;
            line-height: 1.75;
            color: var(--text-dark);
        }

        /* ── Sidebar ── */
        .blog-sidebar {
            flex: 1;
            background: var(--white);
            border-radius: 16px;
            padding: 32px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
            height: fit-content;
            position: sticky;
            top: 100px;
        }

        .blog-sidebar h4 {
            color: var(--primary-color);
            margin-bottom: 22px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--secondary-color);
            font-size: 15px;
            text-transform: uppercase;
            letter-spacing: 0.6px;
        }

        .recent-blog-item {
            display: flex;
            gap: 14px;
            margin-bottom: 20px;
            text-decoration: none;
            color: inherit;
            transition: transform 0.3s ease;
            padding-bottom: 18px;
            border-bottom: 1px solid #f3f4f6;
        }

        .recent-blog-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

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

        .recent-blog-thumb {
            width: 76px;
            height: 58px;
            object-fit: cover;
            border-radius: 8px;
            flex-shrink: 0;
        }

        .recent-blog-info h5 {
            font-size: 13px;
            color: var(--text-dark);
            margin: 0;
            line-height: 1.5;
        }

        /* ── Featured Image ── */
        .blog-featured-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 36px;
        }

        /* ── Intro Banner ── */
        .intro-banner {
            background: var(--gradient-primary);
            color: white;
            border-radius: 14px;
            padding: 32px 36px;
            margin: 32px 0;
            display: flex;
            align-items: flex-start;
            gap: 22px;
        }

        .intro-banner .banner-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.18);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: white;
            flex-shrink: 0;
            margin-top: 3px;
        }

        .intro-banner p {
            margin: 0;
            font-size: 16px;
            line-height: 1.85;
            opacity: 0.97;
            color: white;
        }

        /* ── Pillars Grid ── */
        .pillars {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin: 32px 0;
        }

        .pillar {
            background: #f8fafc;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            padding: 24px 16px;
            text-align: center;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .pillar:hover {
            border-color: var(--primary-color);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        }

        .pillar .p-icon {
            width: 46px;
            height: 46px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 14px;
            color: white;
            font-size: 17px;
        }

        .pillar h4 {
            font-size: 13px;
            color: var(--primary-color);
            margin: 0;
            font-weight: 600;
            line-height: 1.4;
        }

        /* ── Services Grid ── */
        .services-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin: 32px 0;
        }

        .service-card {
            border: 1px solid #e5e7eb;
            border-radius: 14px;
            padding: 28px 24px;
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
            position: relative;
            overflow: hidden;
            background: #fff;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-primary);
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.09);
            border-color: var(--primary-color);
        }

        .service-card .s-icon {
            width: 46px;
            height: 46px;
            background: var(--gradient-primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            margin-bottom: 16px;
        }

        .service-card h3 {
            font-size: 16px;
            color: var(--primary-color);
            margin-bottom: 10px;
            margin-top: 0;
        }

        .service-card p {
            font-size: 14px;
            color: var(--text-dark);
            margin: 0;
            line-height: 1.7;
        }

        /* ── Highlight Box ── */
        .highlight-box {
            background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
            border-left: 4px solid #22c55e;
            border-radius: 10px;
            padding: 22px 26px;
            margin: 28px 0;
        }

        .highlight-box h4 {
            color: #15803d;
            margin-bottom: 8px;
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .highlight-box p {
            margin: 0;
            color: #166534;
        }

        /* ── Process Steps ── */
        .process-steps {
            margin: 28px 0;
        }

        .process-step {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            margin-bottom: 24px;
            padding-bottom: 24px;
            border-bottom: 1px dashed #e5e7eb;
        }

        .process-step:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .step-number {
            background: var(--gradient-primary);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 15px;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .step-content h4 {
            color: var(--primary-color);
            margin-bottom: 6px;
            margin-top: 8px;
            font-size: 16px;
        }

        .step-content p {
            margin: 0;
            font-size: 14px;
            color: var(--text-dark);
            line-height: 1.75;
        }

        /* ── Quote Card ── */
        .quote-card {
            background: #fffbeb;
            border-left: 4px solid #f59e0b;
            border-radius: 10px;
            padding: 28px 32px;
            margin: 32px 0;
            position: relative;
        }

        .quote-card::before {
            content: '\201C';
            font-size: 72px;
            color: #f59e0b;
            opacity: 0.22;
            position: absolute;
            top: -8px;
            left: 18px;
            font-family: Georgia, serif;
            line-height: 1;
        }

        .quote-card p {
            font-style: italic;
            color: #78350f;
            margin: 0;
            padding-left: 8px;
            font-size: 15.5px;
            line-height: 1.8;
        }

        /* ── Back Link ── */
        .back-to-blog a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary-color);
            font-weight: 600;
            text-decoration: none;
            border: 2px solid var(--primary-color);
            padding: 10px 22px;
            border-radius: 8px;
            transition: background 0.3s ease, color 0.3s ease;
            font-size: 15px;
        }

        .back-to-blog a:hover {
            background: var(--primary-color);
            color: white;
        }

        /* ── Responsive ── */
        @media (max-width: 992px) {
            .blog-container {
                flex-direction: column;
                padding: 0 16px;
            }

            .blog-sidebar {
                position: static;
                width: 100%;
                box-sizing: border-box;
            }

            .blog-main {
                padding: 32px 24px;
            }
        }

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

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

            .blog-hero h1 {
                font-size: 28px;
            }

            .blog-main h2 {
                font-size: 22px;
            }

            .intro-banner {
                flex-direction: column;
                gap: 14px;
            }
        }

        @media (max-width: 480px) {
            .pillars {
                grid-template-columns: 1fr;
            }
        }

