body {
            font-family: 'Raleway', system-ui, sans-serif;
            background-color: #0B0F15;
            color: #FFFFFF;
        }
        h1, h2, h3, h4,
        h1.font-bold, h2.font-bold, h3.font-bold, h4.font-bold {
            font-weight: 300;
            letter-spacing: 0.06em;
        }
        h1, h1.font-bold {
            letter-spacing: 0.08em;
        }
        .gradient-text {
            background: linear-gradient(135deg, #3B82F6 0%, #14B8A6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .card-bg {
            background-color: #111827;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), 
                        box-shadow 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), 
                        border-color 0.4s ease, 
                        background-color 0.4s ease;
            will-change: transform;
        }
        .card-bg:hover {
            transform: translateY(-6px);
            border-color: rgba(59, 130, 246, 0.5);
            box-shadow: 0 20px 40px -20px rgba(59, 130, 246, 0.3);
            background-color: #1a2233;
        }
        .card-bg:hover .icon-animate {
            animation: icon-bounce 0.6s ease-in-out;
        }
        @keyframes icon-bounce {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.15) rotate(5deg); }
        }

        /* Cases Grid Styles */
        .case-card {
            border-left: 2px solid rgba(59, 130, 246, 0.3);
            background: linear-gradient(90deg, rgba(59, 130, 246, 0.05) 0%, transparent 100%);
            transition: all 0.3s ease;
        }
        .case-card:hover {
            background: linear-gradient(90deg, rgba(59, 130, 246, 0.1) 0%, transparent 100%);
            transform: translateX(4px);
        }
        .case-card.border-teal-500\/30 { border-color: rgba(20, 184, 166, 0.3); }
        .case-card.border-purple-500\/30 { border-color: rgba(168, 85, 247, 0.3); }
        .case-card.border-orange-500\/30 { border-color: rgba(249, 115, 22, 0.3); }
        .case-card.border-emerald-500\/30 { border-color: rgba(16, 185, 129, 0.3); }
        .case-card.border-rose-500\/30 { border-color: rgba(244, 63, 94, 0.3); }
        .case-card.border-indigo-500\/30 { border-color: rgba(99, 102, 241, 0.3); }
        .case-card.border-cyan-500\/30 { border-color: rgba(6, 182, 212, 0.3); }

        /* FAQ Styles */
        .faq-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
        }
        .faq-number {
            font-size: 0.875rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.2);
            min-width: 2rem;
            padding-top: 1.5rem;
            transition: color 0.3s ease;
        }
        .faq-item.active .faq-number {
            color: #3B82F6;
        }
        .faq-content {
            flex: 1;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
        }
        .faq-item.active .faq-answer {
            max-height: 300px;
            opacity: 1;
            padding-bottom: 1.5rem;
        }
        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        
        /* Animated Background Blobs */
        .blob {
            position: fixed;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0) 70%);
            border-radius: 50%;
            filter: blur(80px);
            z-index: -1;
            pointer-events: none;
            animation: move 25s infinite alternate;
        }
        .blob-2 {
            background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, rgba(20, 184, 166, 0) 70%);
            width: 600px;
            height: 600px;
            right: -100px;
            top: -100px;
            animation-duration: 30s;
            animation-delay: -5s;
        }
        .blob-3 {
            background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, rgba(168, 85, 247, 0) 70%);
            width: 400px;
            height: 400px;
            left: -50px;
            bottom: -50px;
            animation-duration: 20s;
            animation-delay: -10s;
        }

        @keyframes move {
            from { transform: translate(0, 0) scale(1); }
            to { transform: translate(100px, 100px) scale(1.1); }
        }

        /* Image banners with readability overlays */
        .visual-banner {
            position: relative;
            width: 100%;
            border-radius: 1rem;
            overflow: hidden;
            isolation: isolate;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
        .visual-banner__media {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
        .visual-banner__overlay {
            position: absolute;
            inset: 0;
            z-index: 1;
            pointer-events: none;
        }
        .visual-banner__content {
            position: relative;
            z-index: 2;
        }
        .visual-banner--hero {
            min-height: clamp(300px, 52vw, 520px);
        }
        .visual-banner--hero .visual-banner__overlay {
            background:
                linear-gradient(180deg, rgba(11, 15, 21, 0.82) 0%, rgba(11, 15, 21, 0.45) 45%, rgba(11, 15, 21, 0.88) 100%),
                linear-gradient(90deg, rgba(11, 15, 21, 0.65) 0%, rgba(11, 15, 21, 0.2) 55%, rgba(11, 15, 21, 0.5) 100%);
        }
        .visual-banner--hero .visual-banner__content {
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.85), 0 0 40px rgba(11, 15, 21, 0.9);
        }
        .visual-banner--services,
        .visual-banner--cases {
            min-height: clamp(160px, 30vw, 300px);
            margin-bottom: 2rem;
        }
        .visual-banner--services .visual-banner__overlay,
        .visual-banner--cases .visual-banner__overlay {
            background:
                linear-gradient(180deg, rgba(11, 15, 21, 0.8) 0%, rgba(11, 15, 21, 0.4) 55%, rgba(11, 15, 21, 0.92) 100%),
                linear-gradient(0deg, rgba(11, 15, 21, 0.85) 0%, transparent 45%);
        }
        .visual-banner--services .visual-banner__content,
        .visual-banner--cases .visual-banner__content {
            text-shadow: 0 2px 16px rgba(0, 0, 0, 0.8);
        }
        .section-grid-wrap {
            position: relative;
            z-index: 2;
        }
        .case-card--on-image {
            background: linear-gradient(90deg, rgba(17, 24, 39, 0.95) 0%, rgba(17, 24, 39, 0.85) 100%);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }
        .site-logo {
            display: inline-flex;
            align-items: center;
            flex-shrink: 0;
            line-height: 0;
        }
        .site-logo img {
            display: block;
            height: 26px;
            width: auto;
            max-width: min(200px, 48vw);
        }
        @media (min-width: 768px) {
            .site-logo img {
                height: 30px;
                max-width: 240px;
            }
        }

        /* Article + listing (blog templates) */
        .visual-banner--article {
            min-height: clamp(240px, 40vw, 420px);
        }
        .hl-article__meta {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.5rem 0.75rem;
        }
        .hl-article__cat {
            color: #93c5fd;
            text-decoration: none;
        }
        .hl-article__cat:hover {
            color: #bfdbfe;
        }
        .hl-article__body {
            max-width: 720px;
            margin: 0 auto;
            color: #d1d5db;
            font-size: 1.0625rem;
            line-height: 1.75;
        }
        .hl-article__body > *:first-child {
            margin-top: 0;
        }
        .hl-article__body h2,
        .hl-article__body h3 {
            color: #ffffff;
            letter-spacing: 0.06em;
        }
        .hl-article__body h2 {
            font-size: 1.5rem;
            margin: 2.5rem 0 1rem;
        }
        .hl-article__body h3 {
            font-size: 1.25rem;
            margin: 2rem 0 0.75rem;
        }
        .hl-article__body p {
            margin: 0 0 1.25rem;
        }
        .hl-article__body a {
            color: #60a5fa;
            text-decoration: underline;
            text-underline-offset: 3px;
        }
        .hl-article__body a:hover {
            color: #93c5fd;
        }
        .hl-article__body ul,
        .hl-article__body ol {
            margin: 0 0 1.25rem;
            padding-left: 1.35rem;
        }
        .hl-article__body ul {
            list-style: disc;
        }
        .hl-article__body ol {
            list-style: decimal;
        }
        .hl-article__body li {
            display: list-item;
            margin: 0.35rem 0;
        }
        .hl-article__body li::marker {
            color: #6b7280;
        }
        .hl-article__body details {
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            padding: 0.85rem 0;
        }
        .hl-article__body summary {
            cursor: pointer;
            color: #ffffff;
            font-weight: 500;
            list-style: none;
        }
        .hl-article__body summary::-webkit-details-marker {
            display: none;
        }
        .hl-article__body details[open] summary {
            color: #93c5fd;
        }
        .hl-article__body details > *:not(summary) {
            margin-top: 0.75rem;
        }
        .hl-article__body .hl-faq,
        .hl-article__body .faq-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        .hl-article__body .faq-item {
            display: flex;
            align-items: flex-start;
            gap: 1.25rem;
            padding: 1.25rem 0;
        }
        .hl-article__body .faq-number {
            padding-top: 0.15rem;
            min-width: 1.75rem;
        }
        .hl-article__body .faq-content {
            flex: 1;
        }
        .hl-article__body .faq-content h3 {
            margin: 0 0 0.5rem;
            font-size: 1.125rem;
        }
        .hl-article__body .faq-answer {
            max-height: none;
            overflow: visible;
            opacity: 1;
            padding-bottom: 0;
        }
        .hl-article__body .faq-answer p:last-child {
            margin-bottom: 0;
        }
        .hl-article__body blockquote {
            border-left: 2px solid rgba(59, 130, 246, 0.5);
            padding-left: 1rem;
            color: #9ca3af;
            margin: 0 0 1.25rem;
        }
        .hl-article__body img,
        .hl-article__body figure {
            max-width: 100%;
            height: auto;
            border-radius: 0.75rem;
        }
        .hl-article__body figure {
            margin: 0 0 1.5rem;
        }
        .hl-article__body figcaption {
            margin-top: 0.5rem;
            font-size: 0.875rem;
            color: #9ca3af;
        }
        .hl-article__body .hl-answer {
            margin: 0 0 1.5rem;
            padding: 1rem 1.15rem;
            border: 1px solid rgba(59, 130, 246, 0.35);
            border-radius: 0.75rem;
            background: rgba(59, 130, 246, 0.06);
        }
        .hl-article__body .hl-answer p {
            margin: 0;
            color: #e5e7eb;
        }
        .hl-article__body .hl-scheme {
            margin: 0 0 1.5rem;
            padding: 1.15rem 1.2rem;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 0.75rem;
            background: #111827;
        }
        .hl-article__body .hl-scheme__title {
            margin: 0 0 0.85rem;
            font-size: 0.8rem;
            letter-spacing: 0.02em;
            color: #94a3b8;
        }
        .hl-article__body .hl-scheme__row {
            display: flex;
            flex-wrap: wrap;
            gap: 0.45rem;
            align-items: center;
        }
        .hl-article__body .hl-scheme__node {
            display: inline-block;
            padding: 0.5rem 0.7rem;
            border: 1px solid rgba(59, 130, 246, 0.55);
            border-radius: 0.5rem;
            background: #0B0F15;
            color: #e5e7eb;
            font-size: 0.9rem;
        }
        .hl-article__body .hl-scheme__arrow {
            color: #14B8A6;
            font-weight: 600;
        }
        .hl-article__body pre,
        .hl-article__body code {
            font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
            font-size: 0.9em;
        }
        .hl-article__body code {
            background: rgba(255, 255, 255, 0.06);
            padding: 0.1em 0.35em;
            border-radius: 0.3rem;
        }
        .hl-article__body pre {
            background: #111827;
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 0.75rem;
            padding: 1rem 1.15rem;
            overflow-x: auto;
            margin: 0 0 1.25rem;
        }
        .hl-article__body pre code {
            background: transparent;
            padding: 0;
        }
        .hl-article__cta a {
            color: #ffffff;
        }
        .hl-article__cta a:hover {
            color: #93c5fd;
        }

        .hl-post-card {
            display: flex;
            flex-direction: column;
            height: 100%;
            border-radius: 0.75rem;
        }
        .hl-post-card__link {
            display: flex;
            flex-direction: column;
            height: 100%;
            color: inherit;
            text-decoration: none;
        }
        .hl-post-card__thumb {
            aspect-ratio: 16 / 8;
            overflow: hidden;
            background: #0f172a;
            border-radius: 0.75rem 0.75rem 0 0;
        }
        .hl-post-card__img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .hl-post-card:hover .hl-post-card__img {
            transform: scale(1.03);
        }
        .hl-post-card__body {
            display: flex;
            flex-direction: column;
            flex: 1;
            padding: 0.7rem 0.8rem 0.8rem;
        }
        .hl-post-card__meta {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem 0.6rem;
            font-size: 0.6875rem;
            color: #6b7280;
            margin-bottom: 0.35rem;
        }
        .hl-post-card__cat {
            color: #60a5fa;
        }
        .hl-post-card__title {
            color: #ffffff;
            font-size: 0.95rem;
            line-height: 1.3;
            margin: 0 0 0.3rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .hl-post-card__excerpt {
            color: #9ca3af;
            font-size: 0.75rem;
            line-height: 1.4;
            margin: 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .hl-post-card__date {
            margin-top: auto;
            font-size: 0.6875rem;
            color: #6b7280;
        }

        .navigation.pagination {
            margin-top: 1.5rem;
        }
        .navigation.pagination .nav-links {
            display: flex;
            flex-wrap: wrap;
            gap: 0.25rem;
            justify-content: center;
        }
        .navigation.pagination .page-numbers {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 1.55rem;
            height: 1.55rem;
            padding: 0 0.3rem;
            border-radius: 0.35rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #d1d5db;
            text-decoration: none;
            font-size: 0.75rem;
            line-height: 1;
        }
        .navigation.pagination .page-numbers.dots {
            display: none;
        }
        .navigation.pagination .page-numbers.current,
        .navigation.pagination a.page-numbers:hover {
            background: rgba(59, 130, 246, 0.2);
            border-color: rgba(59, 130, 246, 0.5);
            color: #ffffff;
        }
