:root {
            --white: #FFFFFF;
            --cream-50: #FFFBF6;
            --cream-100: #FDF6ED;
            --gray-50: #F9FAFB;
            --gray-100: #F3F4F6;
            --gray-200: #E5E7EB;
            --gray-300: #D1D5DB;
            --gray-400: #9CA3AF;
            --gray-500: #6B7280;
            --gray-600: #4B5563;
            --gray-700: #374151;
            --gray-800: #1F2937;
            --gray-900: #111827;
            --gray-950: #0a0d12;
            
            --bronze-900: #312E81;
            --bronze-800: #3730A3;
            --bronze-700: #4F46E5;
            --bronze-600: #6366F1;
            --bronze-500: #818CF8;
            --bronze-400: #A5B4FC;
            --bronze-300: #C7D2FE;
            --bronze-200: #E0E7FF;
            --bronze-100: #EEF2FF;
            
            --emerald: #10B981;
            --blue: #3B82F6;
            --violet: #8B5CF6;
            --cyan: #06B6D4;
            --teal: #14B8A6;
            --pink: #EC4899;
            
            --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-serif: 'DM Serif Display', Georgia, serif;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        html { overflow-x: hidden; }

        body {
            font-family: var(--font-sans);
            background: var(--white);
            color: var(--gray-900);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            padding-top: 80px;
            overflow-x: hidden;
        }

        a { color: inherit; text-decoration: none; }
        .container { max-width: 1600px; margin: 0 auto; padding: 0 72px; }
        .container-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }

        /* BLOG HERO */
        .blog-hero {
            padding: 60px 0 80px;
            background: linear-gradient(180deg, var(--cream-50) 0%, var(--white) 100%);
        }

        .blog-breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--gray-500);
            margin-bottom: 24px;
        }

        .blog-breadcrumb a { color: var(--gray-500); transition: color 0.2s; }
        .blog-breadcrumb a:hover { color: var(--bronze-600); }
        .blog-breadcrumb svg { width: 14px; height: 14px; }

        .blog-category {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(16, 185, 129, 0.06));
            border: 1px solid rgba(16, 185, 129, 0.2);
            border-radius: 100px;
            font-size: 12px;
            font-weight: 700;
            color: var(--emerald);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 20px;
        }

        .blog-title {
            font-family: var(--font-serif);
            font-size: clamp(36px, 5vw, 52px);
            font-weight: 400;
            color: var(--gray-900);
            line-height: 1.15;
            margin-bottom: 24px;
            max-width: 900px;
        }

        .blog-excerpt {
            font-size: 19px;
            color: var(--gray-600);
            line-height: 1.7;
            max-width: 700px;
            margin-bottom: 32px;
        }

        .blog-meta {
            display: flex;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
        }

        .blog-meta-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            color: var(--gray-500);
        }

        .blog-meta-item svg { width: 16px; height: 16px; }

        /* FEATURED IMAGE */
        .blog-featured-image {
            position: relative;
            margin: -40px auto 0;
            max-width: 1000px;
            padding: 0 24px;
        }

        .blog-featured-image-inner {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
            background: linear-gradient(180deg, var(--cream-100) 0%, #EEF2FF 100%);
            padding: 60px 40px;
        }

        .featured-image-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        /* Languages Visual */
        .languages-visual {
            text-align: center;
            width: 100%;
        }

        .big-number {
            font-size: clamp(80px, 15vw, 120px);
            font-weight: 800;
            background: linear-gradient(180deg, var(--bronze-700) 0%, var(--bronze-400) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 8px;
        }

        .languages-headline {
            font-size: clamp(24px, 4vw, 36px);
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 4px;
        }

        .languages-subhead {
            font-size: clamp(20px, 3vw, 28px);
            font-weight: 600;
            color: var(--bronze-500);
            margin-bottom: 40px;
        }

        /* Country Code Bubbles - Cluster Layout */
        .country-codes-cluster {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            margin: 0 auto 40px;
            width: 100%;
            max-width: 600px;
        }

        .bubble-row {
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            align-items: center;
            justify-content: center;
            gap: 12px;
            width: 100%;
        }

        .bubble-row.middle {
            gap: 16px;
        }

        .globe-center {
            width: 70px;
            height: 70px;
            min-width: 70px;
            background: linear-gradient(135deg, var(--teal), #0D9488);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(20, 184, 166, 0.3);
            flex-shrink: 0;
        }

        .globe-center svg {
            width: 36px;
            height: 36px;
            color: white;
        }

        .country-bubble {
            width: 52px;
            height: 52px;
            min-width: 52px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
            color: var(--gray-700);
            background: white;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
            flex-shrink: 0;
        }

        .country-bubble.small {
            width: 46px;
            height: 46px;
            min-width: 46px;
            font-size: 13px;
        }

        .featured-tagline {
            text-align: center;
            max-width: 500px;
            margin: 0 auto;
        }

        .featured-tagline p {
            font-size: 15px;
            color: var(--gray-600);
            line-height: 1.6;
            margin: 0;
        }

        /* ARTICLE CONTENT */
        .blog-content { padding: 80px 0; }

        .article-body {
            font-size: 17px;
            line-height: 1.8;
            color: var(--gray-700);
        }

        .article-body p { margin-bottom: 24px; }

        .article-body h2 {
            font-family: var(--font-serif);
            font-size: 32px;
            font-weight: 400;
            color: var(--gray-900);
            margin: 56px 0 24px;
            line-height: 1.3;
        }

        .article-body h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--gray-900);
            margin: 40px 0 16px;
        }

        .article-body strong { color: var(--gray-900); }

        .article-body a {
            color: var(--bronze-600);
            text-decoration: underline;
            text-underline-offset: 2px;
        }

        .article-body a:hover { color: var(--bronze-700); }

        /* LANGUAGES GRID */
        .languages-section { margin: 56px 0; }

        .languages-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .language-card {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 16px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .language-card:hover {
            border-color: var(--bronze-300);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            transform: translateY(-2px);
        }

        .language-card.new {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.02));
            border-color: rgba(16, 185, 129, 0.2);
        }

        .language-flag { font-size: 36px; margin-bottom: 12px; }
        .language-name { font-size: 14px; font-weight: 600; color: var(--gray-900); margin-bottom: 4px; }
        .language-code { font-size: 12px; color: var(--gray-500); font-weight: 500; }

        .language-badge {
            display: inline-block;
            margin-top: 8px;
            padding: 2px 8px;
            background: var(--emerald);
            color: white;
            font-size: 10px;
            font-weight: 700;
            border-radius: 100px;
            text-transform: uppercase;
        }

        /* STAT HIGHLIGHT */
        .stat-highlight {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin: 48px 0;
        }

        .stat-card {
            background: var(--gray-50);
            border: 1px solid var(--gray-100);
            border-radius: 16px;
            padding: 24px;
            text-align: center;
        }

        .stat-value {
            font-size: 36px;
            font-weight: 800;
            color: var(--bronze-600);
            line-height: 1;
            margin-bottom: 8px;
        }

        .stat-label { font-size: 13px; color: var(--gray-600); line-height: 1.4; }

        /* USE CASES */
        .usecases-section { margin: 56px 0; }

        .usecases-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .usecase-card {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 16px;
            padding: 28px;
            transition: all 0.3s ease;
        }

        .usecase-card:hover {
            border-color: var(--gray-300);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
        }

        .usecase-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }

        .usecase-icon.healthcare { background: rgba(16, 185, 129, 0.12); color: var(--emerald); }
        .usecase-icon.ecommerce { background: rgba(251, 146, 60, 0.12); color: #FB923C; }
        .usecase-icon.hospitality { background: rgba(59, 130, 246, 0.12); color: var(--blue); }
        .usecase-icon.support { background: rgba(139, 92, 246, 0.12); color: var(--violet); }
        .usecase-icon svg { width: 26px; height: 26px; }

        .usecase-title { font-size: 18px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
        .usecase-desc { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

        /* CALLOUT BOX */
        .callout {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(16, 185, 129, 0.04));
            border: 1px solid rgba(16, 185, 129, 0.2);
            border-radius: 16px;
            padding: 28px 32px;
            margin: 40px 0;
        }

        .callout.bronze {
            background: linear-gradient(135deg, rgba(99,102,241, 0.08), rgba(99,102,241, 0.04));
            border: 1px solid rgba(99,102,241, 0.2);
        }

        .callout-icon {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, var(--emerald), #059669);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }

        .callout.bronze .callout-icon {
            background: linear-gradient(135deg, var(--bronze-500), var(--bronze-700));
        }

        .callout-icon svg { width: 22px; height: 22px; color: white; }
        .callout-title { font-size: 18px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
        .callout-text { font-size: 15px; color: var(--gray-600); line-height: 1.7; margin: 0; }

        /* INTERFACE PREVIEW */
        .interface-section {
            margin: 56px 0;
            padding: 40px;
            background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
            border-radius: 20px;
            text-align: center;
        }

        .interface-title {
            display: inline-block;
            background: #2563EB;
            padding: 12px 24px;
            border-radius: 6px;
            font-size: 20px;
            font-weight: 700;
            color: white;
            margin-bottom: 32px;
        }

        .interface-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .interface-lang {
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
        }

        .interface-lang-code {
            font-size: 28px;
            font-weight: 800;
            color: rgba(255,255,255,0.2);
            letter-spacing: 0.05em;
            margin-bottom: 8px;
        }

        .interface-lang-flag { font-size: 32px; margin-bottom: 8px; display: none; }
        .interface-lang-name { font-size: 14px; font-weight: 600; color: white; margin-bottom: 4px; }
        .interface-lang-greeting { font-size: 12px; color: rgba(255,255,255,0.6); font-style: italic; }

        /* ARTICLE FOOTER */
        .article-footer {
            margin-top: 56px;
            padding-top: 40px;
            border-top: 1px solid var(--gray-200);
        }

        .article-tags {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 32px;
        }

        .article-tags-label { font-size: 13px; font-weight: 600; color: var(--gray-500); }

        .article-tag {
            padding: 6px 14px;
            background: var(--gray-100);
            border-radius: 100px;
            font-size: 13px;
            font-weight: 500;
            color: var(--gray-600);
            transition: all 0.2s;
        }

        .article-tag:hover { background: var(--gray-200); color: var(--gray-900); }

        .article-share {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 24px;
            background: var(--gray-50);
            border-radius: 16px;
        }

        .article-share-text { font-size: 15px; font-weight: 600; color: var(--gray-900); }
        .share-buttons { display: flex; gap: 10px; }

        .share-btn {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--white);
            border: 1px solid var(--gray-200);
            color: var(--gray-600);
            transition: all 0.2s;
            cursor: pointer;
        }

        .share-btn:hover { border-color: var(--bronze-300); color: var(--bronze-600); background: var(--bronze-100); }
        .share-btn svg { width: 18px; height: 18px; }

        /* CTA SECTION */
        .blog-cta {
            margin: 80px 0;
            background: linear-gradient(135deg, var(--emerald), #059669);
            border-radius: 24px;
            padding: 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .blog-cta::before {
            content: "";
            position: absolute;
            top: -50%;
            right: -20%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 60%);
            pointer-events: none;
        }

        .blog-cta-title {
            font-family: var(--font-serif);
            font-size: 32px;
            color: white;
            margin-bottom: 12px;
            position: relative;
        }

        .blog-cta-text {
            font-size: 17px;
            color: rgba(255,255,255,0.85);
            margin-bottom: 28px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
        }

        .blog-cta-actions {
            display: flex;
            justify-content: center;
            gap: 16px;
            position: relative;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px 20px;
            font-family: var(--font-sans);
            font-size: 14px;
            font-weight: 500;
            border-radius: 8px;
            transition: all 0.2s ease;
            border: none;
            cursor: pointer;
        }

        .btn-white { background: white; color: var(--emerald); }
        .btn-white:hover { background: var(--gray-100); box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
        .btn-icon { width: 16px; height: 16px; }

        /* RELATED POSTS */
        .related-section { padding: 80px 0; background: var(--gray-50); }

        .related-header { text-align: center; margin-bottom: 48px; }
        .related-title { font-size: 28px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
        .related-subtitle { font-size: 15px; color: var(--gray-500); }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        .related-card {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .related-card:hover {
            border-color: var(--gray-300);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
            transform: translateY(-4px);
        }

        .related-card-image {
            height: 160px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .related-card-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .related-card-icon.bronze { background: linear-gradient(135deg, var(--bronze-500), var(--bronze-700)); }
        .related-card-icon.emerald { background: linear-gradient(135deg, var(--emerald), #059669); }
        .related-card-icon svg { width: 28px; height: 28px; }

        .related-card-body { padding: 24px; }
        .related-card-category { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--bronze-600); margin-bottom: 10px; }
        .related-card-title { font-size: 17px; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; line-height: 1.4; }
        .related-card-meta { font-size: 13px; color: var(--gray-500); }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .stat-highlight { grid-template-columns: repeat(2, 1fr); }
            .languages-grid { grid-template-columns: repeat(3, 1fr); }
            .usecases-grid { grid-template-columns: 1fr; }
            .interface-grid { grid-template-columns: repeat(2, 1fr); }
            .related-grid { grid-template-columns: 1fr; }
        }

        @media (max-width: 768px) {
            .blog-hero { padding: 40px 0 60px; }
            .stat-highlight { grid-template-columns: 1fr; gap: 12px; }
            .blog-cta { padding: 40px 24px; }
            .article-share { flex-direction: column; gap: 16px; text-align: center; }
            .share-buttons { justify-content: center; }
            .languages-grid { grid-template-columns: repeat(2, 1fr); }
            .country-codes-cluster { gap: 8px; }
            .bubble-row { gap: 6px; }
            .bubble-row.middle { gap: 10px; }
            .country-bubble { width: 38px; height: 38px; min-width: 38px; font-size: 10px; }
            .country-bubble.small { width: 34px; height: 34px; min-width: 34px; font-size: 9px; }
            .globe-center { width: 50px; height: 50px; min-width: 50px; }
            .globe-center svg { width: 24px; height: 24px; }
            .blog-featured-image-inner { padding: 40px 20px; }
            .interface-grid { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 480px) {
            .blog-title { font-size: 28px; }
            .language-card { padding: 16px; }
            .language-flag { font-size: 28px; }
            .country-codes-cluster { gap: 6px; }
            .bubble-row { gap: 4px; }
            .bubble-row.middle { gap: 6px; }
            .country-bubble { width: 32px; height: 32px; min-width: 32px; font-size: 9px; }
            .country-bubble.small { width: 28px; height: 28px; min-width: 28px; font-size: 8px; }
            .globe-center { width: 44px; height: 44px; min-width: 44px; }
            .globe-center svg { width: 22px; height: 22px; }
        }
    
/* ── Nav wrapping fix for long translations ── */
#header .nav-link,
#header .nav-item > a {
  white-space: nowrap;
}
#header .nav {
  font-size: clamp(12px, 1.1vw, 15px);
  flex-wrap: nowrap;
}
#header .header-inner {
  flex-wrap: nowrap;
  align-items: center;
}
.header-actions {
  flex-shrink: 0;
  white-space: nowrap;
}
