
     /* ----- BASE (same as old template) ----- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #ffffff;
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Breadcrumb */
        .breadcrumb {
            padding: 20px 0;
            background-color: #f8f9ff;
            border-bottom: 1px solid #eef0f9;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #555;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .breadcrumb a:hover {
            color: #00d4ff;
        }
        .breadcrumb .separator {
            margin: 0 10px;
            color: #aaa;
        }
        .breadcrumb .current {
            color: #00d4ff;
            font-weight: 600;
        }

        /* Article container */
        .article-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        /* Article Header */
        .article-header {
            margin-bottom: 40px;
        }
        .article-category {
            display: inline-block;
            background: linear-gradient(90deg, #00d4ff, #6a11cb);
            color: white;
            padding: 8px 25px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
        }
        .article-title {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            color: #0a0e2a;
        }
        .article-meta {
            display: flex;
            align-items: center;
            gap: 25px;
            flex-wrap: wrap;
            margin-bottom: 25px;
            padding-bottom: 25px;
            border-bottom: 2px solid #f0f0f0;
        }
        .author-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #f0f0f0;
        }
        .author-details h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
        }
        .author-details p {
            color: #777;
            font-size: 0.9rem;
        }
        .article-stats {
            display: flex;
            gap: 20px;
            color: #777;
        }
        .article-stats span {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .article-featured-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 15px;
            margin-bottom: 30px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        /* Table of Contents */
        .article-summary {
            background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
            border-left: 5px solid #00d4ff;
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 40px;
        }
        .article-summary h3 {
            color: #0a0e2a;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        .article-summary ul {
            padding-left: 20px;
            list-style: none;
        }
        .article-summary li {
            margin-bottom: 10px;
            line-height: 1.6;
            padding-left: 1.5rem;
            position: relative;
        }
        .article-summary li:before {
            content: "▹";
            color: #00d4ff;
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        .article-summary a {
            text-decoration: none;
            color: #0a0e2a;
            font-weight: 500;
            transition: color 0.2s;
            display: inline-block;
        }
        .article-summary a:hover {
            color: #00d4ff;
            text-decoration: underline;
        }

        /* Article content */
        .article-content {
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .article-content h2 {
            font-size: 2rem;
            margin: 50px 0 20px;
            color: #0a0e2a;
            padding-bottom: 10px;
            border-bottom: 3px solid #f0f0f0;
            scroll-margin-top: 30px;
        }
        .article-content h3 {
            font-size: 1.5rem;
            margin: 40px 0 15px;
            color: #0a0e2a;
            scroll-margin-top: 30px;
        }
        .article-content p {
            margin-bottom: 25px;
        }
        .article-content ul, .article-content ol {
            margin: 25px 0 25px 30px;
        }
        .stat-box {
            background: #f0f4ff;
            padding: 1.2rem;
            border-radius: 12px;
            margin: 1.5rem 0;
            font-weight: 500;
            border-left: 4px solid #00d4ff;
        }
        .stat-box i {
            color: #00d4ff;
            margin-right: 0.5rem;
        }
        .stat-box a {
            color: #1a237e;
            font-weight: 600;
        }
        .checklist {
            list-style: none;
            padding: 0;
        }
        .checklist li {
            margin-bottom: 0.8rem;
            display: flex;
            align-items: flex-start;
            gap: 0.8rem;
        }
        .checklist li i {
            color: #10b981;
            font-size: 1.3rem;
            margin-top: 0.2rem;
        }
        .internal-link {
            color: #00d4ff;
            font-weight: 600;
            text-decoration: underline;
        }
        .system-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .system-card {
            background: #ffffff;
            border: 1px solid #eef2f6;
            border-radius: 16px;
            padding: 1.5rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.02);
            transition: transform 0.2s;
        }
        .system-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(0,212,255,0.1);
        }
        .system-card i {
            font-size: 2rem;
            color: #00d4ff;
            margin-bottom: 1rem;
        }
        .system-card h4 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: #0a0e2a;
        }
        .system-card p {
            font-size: 1rem;
            color: #444;
        }
        .comparison-table {
            margin: 2.5rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
        }
        .comparison-table table {
            width: 100%;
            border-collapse: collapse;
            background: white;
        }
        .comparison-table th {
            background: #0a0e2a;
            color: white;
            font-weight: 600;
            padding: 1rem;
            text-align: left;
        }
        .comparison-table td {
            padding: 1rem;
            border-bottom: 1px solid #eee;
        }
        .comparison-table tr:last-child td {
            border-bottom: none;
        }
        .comparison-table .bad {
            background: #fff2f0;
        }
        .comparison-table .good {
            background: #f0fff4;
        }
        .future-outlook {
            background: #0a0e2a;
            color: white;
            padding: 2rem;
            border-radius: 20px;
            margin: 3rem 0;
        }
        .future-outlook h2 {
            color: white;
            border-left-color: #00d4ff;
        }
        .future-outlook p, .future-outlook li {
            color: #ddd;
        }
        .blog-cta {
            background: linear-gradient(135deg, #0a0e2a, #1a237e);
            color: white;
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            margin: 3rem 0;
        }
        .blog-cta h3 {
            color: white;
            margin-top: 0;
        }
        .blog-cta .itaw-btn {
            background: white;
            color: #0a0e2a;
            padding: 0.8rem 2rem;
            border-radius: 40px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            margin: 0.5rem;
        }
        .blog-cta .itaw-btn-wa {
            background: #25D366;
            color: white;
        }
        .faq-section {
            background: #e8efff;
            padding: 2rem;
            border-radius: 20px;
            margin: 3rem 0;
            
        }
        .faq-item {
            margin-bottom: 1rem;
            border-bottom: 1px solid #ddd;
            padding-bottom: 1rem;
        }
        .faq-question {
            font-weight: 700;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.1rem;
        }
        .faq-answer {
            display: none;
            padding-top: 0.8rem;
            color: #555;
        }
        .faq-item.active .faq-answer {
            display: block;
        }
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        .author-box {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            background: #e8f0fe;
            padding: 1.5rem;
            border-radius: 16px;
            margin-top: 3rem;
        }
        .author-box img {
            width: 100px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
        }

        /* Article actions (share and tags) */
        .article-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 30px 0;
            margin: 0;
            border-top: 2px solid #f0f0f0;
            border-bottom: 2px solid #f0f0f0;
            flex-wrap: wrap;
            gap: 20px;
        }
        .social-sharing {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .share-title {
            font-weight: 600;
            color: #555;
        }
        .share-btn {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: transform 0.3s ease;
        }
        .share-btn:hover {
            transform: translateY(-3px);
        }
        .facebook { background-color: #3b5998; }
        .twitter { background-color: #1da1f2; }
        .linkedin { background-color: #0077b5; }
        .whatsapp { background-color: #25d366; }
        .copy-link { background-color: #6a11cb; }
        .article-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
        }
        .article-tag {
            background-color: #f0f0f0;
            color: #555;
            padding: 8px 20px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .article-tag:hover {
            background-color: #00d4ff;
            color: white;
        }

        /* Post navigation */
        .post-navigation {
            display: flex;
            justify-content: space-between;
            margin: 3rem 0 4rem;
            padding: 1.5rem 0;
            border-top: 2px solid #f0f0f0;
            border-bottom: 2px solid #f0f0f0;
            gap: 2rem;
        }
        .nav-link {
            flex: 1;
            text-decoration: none;
            color: #0a0e2a;
            background: #f8f9ff;
            padding: 1.5rem;
            border-radius: 16px;
            transition: all 0.2s;
            border: 1px solid #eef0f9;
        }
        .nav-link:hover {
            background: #e0f0ff;
            border-color: #00d4ff;
        }
        .nav-link .label {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #6a11cb;
            font-weight: 600;
            display: block;
            margin-bottom: 0.5rem;
        }
        .nav-link .title {
            font-weight: 700;
            font-size: 1.2rem;
            line-height: 1.4;
            color: #0a0e2a;
        }
        .nav-link.next {
            text-align: right;
        }

        /* Related articles */
        .related-articles {
            margin: 0 auto;
            text-align: center;
        }
        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            color: #0a0e2a;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: 0;
            width: 100px;
            height: 5px;
            background: linear-gradient(90deg, #00d4ff, #6a11cb);
            border-radius: 3px;
        }
        .section-description {
            color: #64748b;
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 50px;
            line-height: 1.6;
        }
        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        .article-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.05);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(0,212,255,0.1);
            text-align: left;
        }
        .article-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 50px rgba(0,212,255,0.15);
            border-color: #00d4ff;
        }
        .article-card-image {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .article-card:hover .article-card-image {
            transform: scale(1.05);
        }
        .article-card-content {
            padding: 25px;
        }
        .article-card-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.4;
        }
        .article-card-title a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .article-card-title a:hover {
            color: #00d4ff;
        }
        .article-card p {
            color: #64748b;
            font-size: 0.95rem;
            line-height: 1.6;
        }
        .article-card-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 20px;
            padding-top: 15px;
            border-top: 1px solid #f0f0f0;
            font-size: 0.85rem;
            color: #94a3b8;
        }
        .article-card-meta i {
            color: #00d4ff;
            margin-right: 5px;
        }

        /* Newsletter CTA */
        .newsletter-cta {
            background: linear-gradient(135deg, #0a0e2a 0%, #1a237e 100%);
            color: white;
            padding: 70px 40px;
            border-radius: 30px;
            text-align: center;
            margin: 80px auto;
            position: relative;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.2);
            
        }
        .newsletter-cta::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, rgba(0,212,255,0.2), transparent 70%);
            border-radius: 50%;
            animation: float 8s ease infinite;
        }
        .newsletter-cta::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: -50px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(106,17,203,0.2), transparent 70%);
            border-radius: 50%;
            animation: float 10s ease infinite reverse;
        }
        @keyframes float {
            0%, 100% { transform: translate(0, 0); }
            33% { transform: translate(20px, -20px); }
            66% { transform: translate(-20px, 20px); }
        }
        .newsletter-cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            position: relative;
            font-weight: 800;
        }
        .newsletter-cta p {
            color: #cbd5e1;
            max-width: 600px;
            margin: 0 auto 35px;
            font-size: 1.2rem;
            position: relative;
        }
        .newsletter-form {
            display: flex;
            max-width: 550px;
            margin: 0 auto;
            gap: 15px;
            position: relative;
            z-index: 2;
        }
        .newsletter-form input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            border-radius: 60px;
            font-size: 1rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }
        .newsletter-form input:focus {
            outline: none;
            border-color: #00d4ff;
            box-shadow: 0 0 0 4px rgba(0,212,255,0.2);
        }
        .newsletter-form button {
            background: linear-gradient(90deg, #00d4ff, #6a11cb);
            color: white;
            border: none;
            border-radius: 60px;
            padding: 18px 45px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            font-size: 1.1rem;
            box-shadow: 0 10px 25px rgba(0,212,255,0.3);
            white-space: nowrap;
        }
        .newsletter-form button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 20px 40px rgba(0,212,255,0.4);
        }

        /* Back to top */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: linear-gradient(90deg, #00d4ff, #6a11cb);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.5rem;
            box-shadow: 0 5px 20px rgba(0,212,255,0.3);
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            z-index: 100;
            border: 3px solid white;
        }
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 15px 35px rgba(0,212,255,0.5);
        }

        /* Word count note */
        .word-count-note {
            font-size: 0.9rem;
            color: #999;
            text-align: right;
            margin-top: 2rem;
        }

        /* WhatsApp float */
        .itaw-whatsapp-float {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: 0 4px 16px rgba(0,0,0,0.2);
            transition: transform 0.2s;
            z-index: 99;
        }
        .itaw-whatsapp-float:hover {
            transform: scale(1.1);
        }

        @media (max-width: 768px) {
            .article-title { font-size: 2rem; }
            .article-featured-image { height: 350px; }
            .post-navigation { flex-direction: column; }
            .newsletter-form { flex-direction: column; }
            .newsletter-cta h2 { font-size: 2rem; }
            .newsletter-cta { padding: 50px 20px; }
            .articles-grid { grid-template-columns: 1fr; }
            .section-title { font-size: 2rem; }
            .author-box { flex-direction: column; text-align: center; }
        }

        /* ===== MOBILE TWEAKS FOR SHARE SECTION AND BREADCRUMB ===== */
        @media (max-width: 600px) {
            .article-actions {
                flex-direction: column;
                align-items: flex-start;
            }
            .social-sharing {
                flex-wrap: wrap;
            }
            .breadcrumb {
                display: flex;
                flex-wrap: wrap;
                gap: 5px 0;
                font-size: 0.85rem;
                padding: 15px 10px;
            }
            .breadcrumb .separator {
                margin: 0 5px;
            }
        }















/* ============================================
       ITAW – Global Variables (Prefixed)
       ============================================ */
    :root {
      --itaw-primary-dark: #0a0e2a;
      --itaw-primary-light: #1a237e;
      --itaw-primary-bg: #f8f9ff;
      --itaw-gradient-start: #00d4ff;
      --itaw-gradient-end: #6a11cb;
      --itaw-gradient: linear-gradient(90deg, var(--itaw-gradient-start), var(--itaw-gradient-end));
      --itaw-gradient-vertical: linear-gradient(135deg, var(--itaw-gradient-start), var(--itaw-gradient-end));
      --itaw-gradient-diagonal: linear-gradient(135deg, var(--itaw-primary-dark) 0%, var(--itaw-primary-light) 100%);
      --itaw-text-dark: #0a0e2a;
      --itaw-text-medium: #333;
      --itaw-text-light: #555;
      --itaw-text-white: #fff;
      --itaw-text-muted: #b0b8d0;
      --itaw-bg-white: #fff;
      --itaw-bg-light: #f8f9ff;
      --itaw-border-light: #f0f0f0;
      --itaw-border-medium: #e0e0e0;
      --itaw-success: #10b981;
      --itaw-warning: #f59e0b;
      --itaw-error: #ef4444;
      --itaw-info: #3b82f6;
      --itaw-font-primary: 'Segoe UI', system-ui, -apple-system, sans-serif;
      --itaw-space-xs: 0.5rem;
      --itaw-space-sm: 1rem;
      --itaw-space-md: 1.5rem;
      --itaw-space-lg: 2rem;
      --itaw-space-xl: 3rem;
      --itaw-space-2xl: 4rem;
      --itaw-radius-sm: 0.5rem;
      --itaw-radius-md: 1rem;
      --itaw-radius-lg: 1.5rem;
      --itaw-radius-xl: 2rem;
      --itaw-radius-full: 9999px;
      --itaw-shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
      --itaw-shadow-md: 0 4px 6px rgba(0,0,0,0.1);
      --itaw-shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
      --itaw-shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
      --itaw-shadow-accent: 0 10px 30px rgba(0,212,255,0.2);
      --itaw-transition-base: 0.3s ease;
      --itaw-glow-color: rgba(0,212,255,0.3);
    }

    /* ============================================
       Base Mobile-First Reset & Typography
       ============================================ */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 80px;
    }

    body {
      font-family: var(--itaw-font-primary);
      font-size: 1rem;
      line-height: 1.6;
      color: var(--itaw-text-medium);
      background-color: var(--itaw-bg-white);
      overflow-x: hidden;
    }

    .itaw-container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 var(--itaw-space-md);
    }

    .itaw-section {
      padding: var(--itaw-space-xl) 0;
    }

    /* Headers – centered by default (mobile) */
    .itaw-section-title {
      font-size: 2rem;
      font-weight: 800;
      line-height: 1.2;
      color: var(--itaw-text-dark);
      text-align: center;
      margin-bottom: var(--itaw-space-sm);
      position: relative;
    }

    .itaw-section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: -10px;
      width: 80px;
      height: 5px;
      background: var(--itaw-gradient);
      border-radius: 3px;
    }

    .itaw-gradient-text {
      background: var(--itaw-gradient);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      font-weight: 800;
    }

    /* Buttons – full width on mobile */
    .itaw-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: var(--itaw-space-xs);
      padding: 1rem 1.5rem;
      background: var(--itaw-gradient);
      color: var(--itaw-text-white);
      border: none;
      border-radius: var(--itaw-radius-full);
      font-size: 1.125rem;
      font-weight: 600;
      text-decoration: none;
      cursor: pointer;
      transition: all var(--itaw-transition-base);
      box-shadow: var(--itaw-shadow-accent);
      position: relative;
      overflow: hidden;
      z-index: 1;
    }

    .itaw-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 0;
      height: 100%;
      background: var(--itaw-gradient-vertical);
      transition: width var(--itaw-transition-base);
      z-index: -1;
    }

    .itaw-btn:hover::before {
      width: 100%;
    }

    .itaw-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 30px rgba(0,212,255,0.3);
    }

    .itaw-btn-secondary {
      background: transparent;
      border: 2px solid var(--itaw-gradient-start);
      color: var(--itaw-gradient-start);
      box-shadow: none;
    }

    .itaw-btn-secondary:hover {
      background: rgba(0,212,255,0.1);
      transform: translateY(-3px);
    }

    /* ============================================
       Blog Hero Section (SME Focus)
       ============================================ */
    .itaw-blog-hero {
      background: var(--itaw-gradient-diagonal);
      color: var(--itaw-text-white);
      padding: var(--itaw-space-2xl) 0 var(--itaw-space-xl);
      position: relative;
      overflow: hidden;
    }

    .itaw-blog-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTIwMCA2MDAiPjxwYXRoIGQ9Ik0xMjAwIDBIMzAwTDAgMzAwaDkwMHpNMCA2MDBoOTAwbDMwMC0zMDBIMzAweiIgZmlsbD0icmdiYSgwLDIxMiwyNTUsMC4wMykiLz48L3N2Zz4=') repeat;
      opacity: 0.2;
    }

    .itaw-blog-hero-content {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--itaw-space-xl);
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .itaw-blog-hero-text h1 {
      font-size: 2.2rem;
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: var(--itaw-space-sm);
      text-align: left;
    }

    .itaw-blog-hero-text p {
      font-size: 1.125rem;
      margin-bottom: var(--itaw-space-lg);
      color: var(--itaw-text-muted);
      line-height: 1.7;
      text-align: left;
    }

    .itaw-hero-stats {
      display: flex;
      flex-wrap: wrap;
      gap: var(--itaw-space-md);
      margin-top: var(--itaw-space-sm);
    }

    .itaw-stat-item {
      text-align: center;
    }

    .itaw-stat-number {
      font-size: 2rem;
      font-weight: 800;
      color: var(--itaw-gradient-start);
      line-height: 1;
    }

    .itaw-stat-label {
      font-size: 0.95rem;
      color: var(--itaw-text-muted);
      margin-top: 0.25rem;
    }

    .itaw-hero-newsletter {
      background: rgba(255,255,255,0.05);
      backdrop-filter: blur(10px);
      border-radius: var(--itaw-radius-lg);
      padding: var(--itaw-space-lg);
      border: 1px solid rgba(255,255,255,0.1);
    }

    .itaw-newsletter-title {
      font-size: 1.8rem;
      margin-bottom: var(--itaw-space-xs);
    }

    .itaw-newsletter-subtitle {
      color: var(--itaw-text-muted);
      margin-bottom: var(--itaw-space-md);
    }

    .itaw-newsletter-form {
      display: flex;
      flex-direction: column;
      gap: var(--itaw-space-sm);
    }

    .itaw-newsletter-input {
      width: 100%;
      padding: 1rem 1.25rem;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: var(--itaw-radius-md);
      color: var(--itaw-text-white);
      font-size: 1rem;
      transition: all var(--itaw-transition-base);
    }

    .itaw-newsletter-input:focus {
      outline: none;
      border-color: var(--itaw-gradient-start);
      background: rgba(255,255,255,0.12);
    }

    .itaw-newsletter-input::placeholder {
      color: rgba(255,255,255,0.5);
    }

    .itaw-newsletter-select {
      appearance: none;
      background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
      background-repeat: no-repeat;
      background-position: right 1rem center;
      background-size: 1.5rem;
    }

    /* ============================================
       Blog Categories Filter (SME Topics)
       ============================================ */
    .itaw-blog-categories {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: var(--itaw-space-xs);
      margin-bottom: var(--itaw-space-xl);
    }

    .itaw-category-filter {
      background: var(--itaw-bg-white);
      border: 2px solid var(--itaw-border-light);
      padding: 0.6rem 1.5rem;
      border-radius: var(--itaw-radius-full);
      color: var(--itaw-text-light);
      font-weight: 600;
      cursor: pointer;
      transition: all var(--itaw-transition-base);
    }

    .itaw-category-filter:hover,
    .itaw-category-filter.itaw-active {
      background: var(--itaw-gradient-start);
      color: var(--itaw-text-white);
      border-color: var(--itaw-gradient-start);
    }

    /* ============================================
       Blog Layout
       ============================================ */
    .itaw-blog-container {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--itaw-space-xl);
      margin-top: var(--itaw-space-xl);
    }

    /* Featured Post */
    .itaw-featured-post {
      background: var(--itaw-gradient-diagonal);
      color: var(--itaw-text-white);
      border-radius: var(--itaw-radius-lg);
      overflow: hidden;
      margin-bottom: var(--itaw-space-xl);
    }

    .itaw-featured-content {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--itaw-space-lg);
      padding: var(--itaw-space-lg);
    }

    .itaw-featured-text h2 {
      font-size: 1.8rem;
      margin-bottom: var(--itaw-space-sm);
      line-height: 1.2;
    }

    .itaw-featured-text p {
      color: var(--itaw-text-muted);
      margin-bottom: var(--itaw-space-md);
      line-height: 1.7;
    }

    .itaw-post-meta {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: var(--itaw-space-sm);
      margin-bottom: var(--itaw-space-sm);
      font-size: 0.9rem;
      color: var(--itaw-gradient-start);
    }

    .itaw-post-meta span {
      display: flex;
      align-items: center;
      gap: 0.25rem;
    }

    .itaw-featured-image img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-radius: var(--itaw-radius-md);
    }

    /* Blog Posts Grid */
    .itaw-posts-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--itaw-space-lg);
    }

    .itaw-post-card {
      background: var(--itaw-bg-white);
      border-radius: var(--itaw-radius-lg);
      overflow: hidden;
      box-shadow: var(--itaw-shadow-md);
      transition: all var(--itaw-transition-base);
      border: 1px solid var(--itaw-border-light);
    }

    .itaw-post-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--itaw-shadow-lg), 0 0 30px rgba(0,212,255,0.1);
      border-color: var(--itaw-gradient-start);
    }

    .itaw-post-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .itaw-post-content {
      padding: var(--itaw-space-md);
    }

    .itaw-post-category {
      display: inline-block;
      background: linear-gradient(135deg, rgba(0,212,255,0.1), rgba(106,17,203,0.1));
      color: var(--itaw-gradient-start);
      padding: 0.25rem 1rem;
      border-radius: var(--itaw-radius-full);
      font-size: 0.8rem;
      font-weight: 600;
      margin-bottom: var(--itaw-space-xs);
    }

    .itaw-post-title {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: var(--itaw-space-xs);
      line-height: 1.3;
      color: var(--itaw-text-dark);
    }

    .itaw-post-excerpt {
      color: var(--itaw-text-light);
      margin-bottom: var(--itaw-space-sm);
      line-height: 1.6;
    }

    .itaw-read-more {
      color: var(--itaw-gradient-start);
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: gap var(--itaw-transition-base);
    }

    .itaw-read-more:hover {
      gap: 0.75rem;
    }

    /* Sidebar */
    .itaw-sidebar {
      background: var(--itaw-bg-light);
      border-radius: var(--itaw-radius-lg);
      padding: var(--itaw-space-lg);
      height: fit-content;
    }

    .itaw-sidebar-widget {
      margin-bottom: var(--itaw-space-xl);
    }

    .itaw-sidebar-widget:last-child {
      margin-bottom: 0;
    }

    .itaw-sidebar-title {
      font-size: 1.3rem;
      margin-bottom: var(--itaw-space-md);
      color: var(--itaw-text-dark);
      position: relative;
      padding-bottom: 0.5rem;
    }

    .itaw-sidebar-title::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 40px;
      height: 3px;
      background: var(--itaw-gradient-start);
    }

    /* Lead Magnet Widget – SME Focus */
    .itaw-lead-magnet-widget {
      background: var(--itaw-gradient-diagonal);
      color: var(--itaw-text-white);
      border-radius: var(--itaw-radius-lg);
      padding: var(--itaw-space-lg);
      text-align: center;
    }

    .itaw-lead-magnet-icon {
      font-size: 2.8rem;
      color: var(--itaw-gradient-start);
      margin-bottom: var(--itaw-space-sm);
    }

    .itaw-lead-magnet-title {
      font-size: 1.5rem;
      margin-bottom: var(--itaw-space-xs);
    }

    .itaw-lead-magnet-description {
      color: var(--itaw-text-muted);
      margin-bottom: var(--itaw-space-md);
      line-height: 1.6;
    }

    /* Categories List */
    .itaw-categories-list {
      list-style: none;
    }

    .itaw-categories-list li {
      margin-bottom: 0.75rem;
    }

    .itaw-categories-list a {
      color: var(--itaw-text-light);
      text-decoration: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.75rem 1rem;
      background: var(--itaw-bg-white);
      border-radius: var(--itaw-radius-md);
      transition: all var(--itaw-transition-base);
      border: 1px solid var(--itaw-border-light);
    }

    .itaw-categories-list a:hover {
      background: var(--itaw-gradient-start);
      color: var(--itaw-text-white);
      border-color: var(--itaw-gradient-start);
      transform: translateX(5px);
    }

    .itaw-category-count {
      background: rgba(0,212,255,0.1);
      color: var(--itaw-gradient-start);
      padding: 0.2rem 0.8rem;
      border-radius: var(--itaw-radius-full);
      font-size: 0.85rem;
    }

    .itaw-categories-list a:hover .itaw-category-count {
      background: rgba(255,255,255,0.2);
      color: var(--itaw-text-white);
    }

    /* Recent Posts List */
    .itaw-recent-posts-list {
      list-style: none;
    }

    .itaw-recent-post-item {
      display: flex;
      align-items: center;
      gap: var(--itaw-space-sm);
      margin-bottom: var(--itaw-space-md);
      padding-bottom: var(--itaw-space-md);
      border-bottom: 1px solid var(--itaw-border-medium);
    }

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

    .itaw-recent-post-image {
      width: 70px;
      height: 70px;
      object-fit: cover;
      border-radius: var(--itaw-radius-md);
    }

    .itaw-recent-post-content h4 {
      font-size: 1rem;
      margin-bottom: 0.25rem;
      line-height: 1.3;
    }

    .itaw-recent-post-date {
      color: var(--itaw-text-light);
      font-size: 0.85rem;
    }

    /* Pagination */
    .itaw-pagination {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: var(--itaw-space-xs);
      margin-top: var(--itaw-space-xl);
    }

    .itaw-page-number {
      width: 45px;
      height: 45px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--itaw-bg-white);
      border-radius: var(--itaw-radius-sm);
      color: var(--itaw-text-light);
      font-weight: 600;
      text-decoration: none;
      transition: all var(--itaw-transition-base);
      box-shadow: var(--itaw-shadow-sm);
    }

    .itaw-page-number:hover,
    .itaw-page-number.itaw-active {
      background: var(--itaw-gradient-start);
      color: var(--itaw-text-white);
      transform: translateY(-2px);
    }

    /* Newsletter Section – SME Focus */
    .itaw-newsletter-section {
      background: linear-gradient(135deg, var(--itaw-bg-light), #eef1ff);
      border-radius: var(--itaw-radius-xl);
      padding: var(--itaw-space-xl) var(--itaw-space-lg);
      text-align: center;
      margin-top: var(--itaw-space-xl);
    }

    .itaw-newsletter-section h2 {
      font-size: 2rem;
      margin-bottom: var(--itaw-space-sm);
      color: var(--itaw-text-dark);
    }

    .itaw-newsletter-section p {
      font-size: 1.125rem;
      color: var(--itaw-text-light);
      max-width: 700px;
      margin: 0 auto var(--itaw-space-lg);
    }

    .itaw-newsletter-features {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: var(--itaw-space-sm);
      margin-top: var(--itaw-space-lg);
    }

    .itaw-newsletter-feature {
      display: flex;
      align-items: center;
      gap: var(--itaw-space-sm);
      background: var(--itaw-bg-white);
      padding: 1rem 1.5rem;
      border-radius: var(--itaw-radius-full);
      box-shadow: var(--itaw-shadow-sm);
    }

    .itaw-newsletter-feature i {
      color: var(--itaw-gradient-start);
      font-size: 1.2rem;
    }

    /* ============================================
       Lead Magnet Modal (SME Focus)
       ============================================ */
    .itaw-modal {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(10,14,42,0.95);
      z-index: 9999;
      display: none;
      align-items: center;
      justify-content: center;
      padding: var(--itaw-space-md);
    }

    .itaw-modal-content {
      background: var(--itaw-bg-white);
      border-radius: var(--itaw-radius-lg);
      max-width: 550px;
      width: 100%;
      padding: var(--itaw-space-xl);
      position: relative;
      animation: itaw-modal-appear 0.4s ease-out;
    }

    @keyframes itaw-modal-appear {
      from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    .itaw-modal-close {
      position: absolute;
      top: 20px;
      right: 20px;
      background: none;
      border: none;
      font-size: 1.8rem;
      color: var(--itaw-text-light);
      cursor: pointer;
      transition: color var(--itaw-transition-base);
    }

    .itaw-modal-close:hover {
      color: var(--itaw-gradient-start);
    }

    .itaw-modal-title {
      font-size: 2rem;
      margin-bottom: var(--itaw-space-sm);
      color: var(--itaw-text-dark);
    }

    .itaw-modal-subtitle {
      color: var(--itaw-text-light);
      margin-bottom: var(--itaw-space-lg);
      line-height: 1.6;
    }

    /* ============================================
       Animations
       ============================================ */
    @keyframes itaw-fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .itaw-fade-in {
      opacity: 0;
      transform: translateY(20px);
      animation: itaw-fadeInUp 0.6s ease-out forwards;
    }

    .itaw-delay-1 { animation-delay: 0.2s; }
    .itaw-delay-2 { animation-delay: 0.4s; }
    .itaw-delay-3 { animation-delay: 0.6s; }
    .itaw-delay-4 { animation-delay: 0.8s; }

    /* ============================================
       Tablet & Desktop Media Queries (min-width)
       ============================================ */
    @media (min-width: 576px) {
      .itaw-blog-hero-text h1 {
        font-size: 2.5rem;
      }
      .itaw-hero-stats {
        flex-wrap: nowrap;
      }
      .itaw-newsletter-features {
        flex-direction: row;
        justify-content: center;
      }
    }

    @media (min-width: 768px) {
      .itaw-section {
        padding: var(--itaw-space-2xl) 0;
      }
      .itaw-section-title {
        font-size: 2.5rem;
      }
      .itaw-blog-hero-content {
        grid-template-columns: 1fr 1fr;
      }
      .itaw-blog-hero-text h1 {
        font-size: 3rem;
      }
      .itaw-featured-content {
        grid-template-columns: 1fr 1fr;
        padding: var(--itaw-space-xl);
      }
      .itaw-featured-image img {
        height: 300px;
      }
      .itaw-posts-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .itaw-blog-container {
        grid-template-columns: 2fr 1fr;
      }
      .itaw-newsletter-section h2 {
        font-size: 2.5rem;
      }
    }

    @media (min-width: 992px) {
      .itaw-posts-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1200px) {
      .itaw-section-title {
        font-size: 3rem;
      }
    }

    /* Mobile hero centering override */
    @media (max-width: 767px) {
      .itaw-blog-hero-text h1,
      .itaw-blog-hero-text p {
        text-align: center;
      }
      .itaw-hero-stats {
        justify-content: center;
      }
    }



    









