/* CSS Variables */
        }/* Blog-specific styles */
        
        .blog-post {
            background: #0a0a0a;
            color: #ffffff;
            min-height: 100vh;
        }
        
        .blog-hero {
            padding: 6rem 0 6rem;
            background: linear-gradient(135deg, 
                var(--neural-purple, #3c1361) 0%, 
                rgba(60, 19, 97, 0.8) 50%, 
                var(--neural-orange, #d97706) 100%);
        }
        
        .blog-hero .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        
        .blog-hero-content h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 200;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.8));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .blog-hero-content .blog-subtitle {
            font-size: 1.25rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
        }
        
        .blog-meta {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }
        
        .blog-category {
            background: rgba(255, 255, 255, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .blog-date {
            color: rgba(255, 255, 255, 0.7);
            display: flex;
            align-items: center;
        }
        
        .blog-hero-image {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .blog-hero-image img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }
        
        .blog-content {
            padding: 6rem 0;
        }
        
        .blog-content .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 4rem;
        }
        
        .blog-article {
            background: rgba(255, 255, 255, 0.02);
            border-radius: 16px;
            padding: 4rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }
        
        .blog-intro {
            font-size: 1.2rem;
            line-height: 1.7;
            margin-bottom: 3rem;
            padding: 2rem;
            background: rgba(var(--neural-purple-rgb, 60, 19, 97), 0.1);
            border-left: 4px solid var(--neural-orange, #d97706);
            border-radius: 0 8px 8px 0;
        }
        
        .blog-article h2 {
            font-size: 2rem;
            font-weight: 300;
            margin: 3rem 0 1.5rem;
            color: var(--neural-orange, #d97706);
        }
        
        .blog-article p {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .content-wrapper {
            color: rgba(255, 255, 255, 0.95);
            max-width: 800px;
            margin: 0 auto;
        }

        .content-wrapper p {
            font-size: 1.125rem;
            line-height: 1.9;
            margin-bottom: 1.75rem;
            color: rgba(255, 255, 255, 0.92);
            font-weight: 300;
            letter-spacing: 0.01em;
        }

        .content-wrapper p:first-of-type {
            font-size: 1.25rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.95);
        }

        .content-wrapper h2 {
            font-size: 2.25rem;
            font-weight: 300;
            margin: 4rem 0 1.75rem;
            color: #ffffff;
            letter-spacing: -0.02em;
            position: relative;
            padding-bottom: 0.75rem;
        }

        .content-wrapper h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--neural-orange, #d97706), transparent);
        }

        .content-wrapper h3 {
            font-size: 1.6rem;
            font-weight: 400;
            margin: 3rem 0 1.5rem;
            color: rgba(255, 255, 255, 0.95);
            letter-spacing: -0.01em;
        }

        .content-wrapper ul,
        .content-wrapper ol {
            margin: 2rem 0;
            padding-left: 0;
            list-style: none;
        }

        .content-wrapper ul li {
            margin-bottom: 1rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.92);
            padding-left: 2rem;
            position: relative;
        }

        .content-wrapper ul li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--neural-orange, #d97706);
            font-weight: 600;
            font-size: 1.2rem;
        }

        .content-wrapper ol {
            counter-reset: list-counter;
            padding-left: 0;
        }

        .content-wrapper ol li {
            counter-increment: list-counter;
            margin-bottom: 1rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.92);
            padding-left: 2.5rem;
            position: relative;
        }

        .content-wrapper ol li::before {
            content: counter(list-counter) ".";
            position: absolute;
            left: 0;
            color: var(--neural-orange, #d97706);
            font-weight: 600;
            font-size: 1.1rem;
        }

        .content-wrapper strong {
            color: #ffffff;
            font-weight: 600;
            letter-spacing: 0.01em;
        }

        .content-wrapper a {
            color: var(--neural-orange, #d97706);
            text-decoration: none;
            border-bottom: 1px solid rgba(217, 119, 6, 0.3);
            transition: all 0.2s ease;
            padding-bottom: 2px;
        }

        .content-wrapper a:hover {
            color: #e68a1f;
            border-bottom-color: #e68a1f;
        }

        .content-wrapper .lead-text {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 3rem;
            font-style: italic;
            padding: 1.5rem 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .content-wrapper blockquote {
            margin: 2.5rem 0;
            padding: 1.5rem 2rem;
            background: rgba(217, 119, 6, 0.05);
            border-left: 4px solid var(--neural-orange, #d97706);
            border-radius: 0 8px 8px 0;
            font-style: italic;
            color: rgba(255, 255, 255, 0.88);
        }

        .content-wrapper blockquote p {
            margin-bottom: 0;
        }
        
        .blog-image-container {
            margin: 3rem 0;
            text-align: center;
        }
        
        .blog-image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .image-caption {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 1rem;
            font-style: italic;
        }
        
        .blog-list {
            margin: 2rem 0;
            padding-left: 0;
            list-style: none;
        }
        
        .blog-list li {
            margin-bottom: 1rem;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 8px;
            border-left: 3px solid var(--neural-orange, #d97706);
        }
        
        .blog-list li strong {
            color: var(--neural-orange, #d97706);
        }
        
        .blog-cta {
            margin-top: 5rem;
            padding: 3.5rem 3rem;
            background: linear-gradient(135deg,
                rgba(60, 19, 97, 0.15) 0%,
                rgba(217, 119, 6, 0.08) 100%);
            border-radius: 16px;
            border: 1px solid rgba(217, 119, 6, 0.2);
            position: relative;
            overflow: hidden;
        }

        .blog-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg,
                transparent,
                var(--neural-orange, #d97706),
                transparent);
        }

        .blog-cta h3 {
            font-size: 1.75rem;
            margin-bottom: 1.25rem;
            color: #ffffff;
            font-weight: 300;
            letter-spacing: -0.01em;
        }

        .blog-cta p {
            margin-bottom: 2rem;
            font-size: 1.125rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.85);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .blog-cta ul {
            list-style: none;
            padding: 0;
            margin: 2rem 0;
            text-align: left;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .blog-cta ul li {
            padding: 0.75rem 0 0.75rem 2rem;
            position: relative;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
        }

        .blog-cta ul li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--neural-orange, #d97706);
            font-weight: 600;
        }

        .blog-cta .cta-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: var(--neural-orange, #d97706);
            color: #000000;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            margin-top: 1rem;
            border: none;
        }

        .blog-cta .cta-button:hover {
            background: #e68a1f;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(217, 119, 6, 0.4);
        }
        
        .btn {
            display: inline-block;
            padding: 1rem 2rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-primary {
            background: var(--neural-orange, #d97706);
            color: #000000;
        }
        
        .btn-primary:hover {
            background: #e68a1f;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(217, 119, 6, 0.3);
        }
        
        /* Related Articles Section */
        .related-articles {
            margin-top: 4rem;
            padding: 3rem 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .related-articles h2 {
            font-size: 2rem;
            font-weight: 200;
            color: var(--neural-white, #ffffff);
            margin-bottom: 2rem;
            text-align: center;
        }
        
        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .article-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 1.5rem;
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
            position: relative;
            overflow: hidden;
        }
        
        .article-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--neural-orange, #d97706), var(--neural-purple, #7b2cbf));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .article-card:hover::before {
            transform: scaleX(1);
        }
        
        .article-card:hover {
            transform: translateY(-4px);
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(217, 119, 6, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .article-date {
            font-size: 0.85rem;
            color: var(--neural-light-grey, #a0a0a0);
            margin-bottom: 0.5rem;
        }
        
        .article-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--neural-white, #ffffff);
            margin-bottom: 0.75rem;
            line-height: 1.4;
        }
        
        .article-excerpt {
            font-size: 0.95rem;
            color: var(--neural-light-grey, #a0a0a0);
            line-height: 1.6;
            margin-bottom: 1rem;
        }
        
        .article-link {
            color: var(--neural-orange, #d97706);
            font-size: 0.9rem;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        /* Enhanced Service CTA */
        .service-callout {
            background: linear-gradient(135deg, 
                rgba(60, 19, 97, 0.1) 0%, 
                transparent 50%,
                rgba(217, 119, 6, 0.1) 100%
            );
            border: 1px solid rgba(217, 119, 6, 0.3);
            border-radius: 16px;
            padding: 2.5rem;
            margin: 3rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .service-callout::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(217, 119, 6, 0.1) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 0.5; transform: scale(1); }
            50% { opacity: 0.8; transform: scale(1.1); }
        }
        
        .service-callout-content {
            position: relative;
            z-index: 1;
        }
        
        .service-callout h3 {
            font-size: 1.8rem;
            font-weight: 300;
            color: var(--neural-white, #ffffff);
            margin-bottom: 1rem;
        }
        
        .service-callout p {
            font-size: 1.1rem;
            color: var(--neural-light-grey, #a0a0a0);
            margin-bottom: 1.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .service-callout .service-link {
            color: var(--neural-orange, #d97706);
            text-decoration: none;
            font-weight: 600;
            border-bottom: 2px solid transparent;
            transition: border-color 0.3s ease;
        }
        
        .service-callout .service-link:hover {
            border-bottom-color: var(--neural-orange, #d97706);
        }
        
        .service-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 2rem;
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--neural-white, #ffffff);
            border: 2px solid rgba(255, 255, 255, 0.3);
            padding: 1rem 2rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--neural-orange, #d97706);
            transform: translateY(-2px);
        }
        
        /* Add visual breathing room between sections */
        .content-wrapper > h2:not(:first-child) {
            margin-top: 5rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        /* Pull quotes styling */
        .content-wrapper > p:has(strong):first-line {
            font-size: 1.15em;
        }

        /* Improve readability for nested lists */
        .content-wrapper ul ul,
        .content-wrapper ol ul,
        .content-wrapper ul ol,
        .content-wrapper ol ol {
            margin-top: 0.5rem;
            margin-bottom: 0.5rem;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .blog-post {
                padding-top: 80px;
            }

            .blog-hero .container {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .blog-hero {
                padding: 2rem 0 4rem;
            }

            .blog-content .container {
                padding: 0 1.5rem;
            }

            .content-wrapper {
                padding: 0 1rem;
            }

            .content-wrapper p {
                font-size: 1.05rem;
                line-height: 1.8;
            }

            .content-wrapper h2 {
                font-size: 1.75rem;
                margin-top: 3rem;
            }

            .content-wrapper h3 {
                font-size: 1.35rem;
            }

            .blog-article {
                padding: 2rem 1.5rem;
            }

            .blog-intro {
                padding: 1.5rem;
            }

            .blog-cta {
                padding: 2rem 1.5rem;
                text-align: center;
            }

            .blog-cta ul {
                text-align: left;
            }
        }

        @media (max-width: 480px) {
            .blog-content .container {
                padding: 0 1rem;
            }

            .blog-article {
                padding: 1.5rem 1rem;
            }

            .content-wrapper p {
                font-size: 1rem;
            }

            .content-wrapper h2 {
                font-size: 1.5rem;
            }

            .content-wrapper ul li,
            .content-wrapper ol li {
                padding-left: 1.5rem;
                font-size: 0.95rem;
            }
        }