: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;
            --instagram: #E1306C;
            --messenger: #0084FF;
            --facebook: #1877F2;
            
            --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(225, 48, 108, 0.12), rgba(0, 132, 255, 0.08));
            border: 1px solid rgba(225, 48, 108, 0.2);
            border-radius: 100px;
            font-size: 12px;
            font-weight: 700;
            color: var(--instagram);
            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(135deg, #1a1625 0%, #0f0a1a 100%);
            padding: 60px 40px;
        }

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

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

        .social-icons-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 24px;
            margin-bottom: 32px;
        }

        .social-icon-bubble {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        .social-icon-bubble.instagram {
            background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
        }

        .social-icon-bubble.messenger {
            background: linear-gradient(135deg, #0084FF, #00C6FF);
        }

        .social-icon-bubble svg {
            width: 40px;
            height: 40px;
            color: white;
        }

        .plus-icon {
            font-size: 32px;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.4);
        }

        .social-headline {
            font-size: clamp(28px, 4vw, 40px);
            font-weight: 700;
            color: white;
            margin-bottom: 8px;
        }

        .social-subhead {
            font-size: clamp(18px, 2.5vw, 24px);
            font-weight: 500;
            background: linear-gradient(90deg, var(--instagram), var(--messenger));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 32px;
        }

        /* Mock Chat Interface */
        .chat-preview {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 400px;
            margin: 0 auto 32px;
        }

        .chat-bubble {
            padding: 14px 18px;
            border-radius: 18px;
            font-size: 14px;
            max-width: 85%;
            line-height: 1.5;
        }

        .chat-bubble.incoming {
            background: rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.9);
            align-self: flex-start;
            border-bottom-left-radius: 4px;
        }

        .chat-bubble.outgoing {
            background: linear-gradient(135deg, var(--instagram), var(--messenger));
            color: white;
            align-self: flex-end;
            border-bottom-right-radius: 4px;
        }

        .chat-bubble .typing {
            display: flex;
            gap: 4px;
        }

        .chat-bubble .typing span {
            width: 6px;
            height: 6px;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 50%;
            animation: typing 1.4s infinite;
        }

        .chat-bubble .typing span:nth-child(2) { animation-delay: 0.2s; }
        .chat-bubble .typing span:nth-child(3) { animation-delay: 0.4s; }

        @keyframes typing {
            0%, 60%, 100% { transform: translateY(0); }
            30% { transform: translateY(-4px); }
        }

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

        .featured-tagline p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.6);
            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(--instagram);
            text-decoration: underline;
            text-underline-offset: 2px;
        }

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

        /* 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-card.instagram {
            background: linear-gradient(135deg, rgba(225, 48, 108, 0.08), rgba(225, 48, 108, 0.03));
            border-color: rgba(225, 48, 108, 0.15);
        }

        .stat-card.messenger {
            background: linear-gradient(135deg, rgba(0, 132, 255, 0.08), rgba(0, 132, 255, 0.03));
            border-color: rgba(0, 132, 255, 0.15);
        }

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

        .stat-card.instagram .stat-value { color: var(--instagram); }
        .stat-card.messenger .stat-value { color: var(--messenger); }

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

        /* PLATFORM CARDS */
        .platform-section { margin: 56px 0; }

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

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

        .platform-card:hover {
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
            transform: translateY(-4px);
        }

        .platform-card.instagram {
            border-color: rgba(225, 48, 108, 0.2);
        }

        .platform-card.instagram:hover {
            border-color: rgba(225, 48, 108, 0.4);
        }

        .platform-card.messenger {
            border-color: rgba(0, 132, 255, 0.2);
        }

        .platform-card.messenger:hover {
            border-color: rgba(0, 132, 255, 0.4);
        }

        .platform-card-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 20px;
        }

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

        .platform-card.instagram .platform-card-icon {
            background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
        }

        .platform-card.messenger .platform-card-icon {
            background: linear-gradient(135deg, #0084FF, #00C6FF);
        }

        .platform-card-icon svg {
            width: 28px;
            height: 28px;
            color: white;
        }

        .platform-card-title {
            font-size: 22px;
            font-weight: 700;
            color: var(--gray-900);
        }

        .platform-card-desc {
            font-size: 15px;
            color: var(--gray-600);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .platform-features {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .platform-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: var(--gray-700);
        }

        .platform-feature svg {
            width: 18px;
            height: 18px;
            color: var(--emerald);
            flex-shrink: 0;
        }

        /* FEATURES GRID */
        .features-section { margin: 56px 0; }

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

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

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

        .feature-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }

        .feature-icon.pink { background: rgba(236, 72, 153, 0.12); color: var(--pink); }
        .feature-icon.blue { background: rgba(59, 130, 246, 0.12); color: var(--blue); }
        .feature-icon.emerald { background: rgba(16, 185, 129, 0.12); color: var(--emerald); }
        .feature-icon.violet { background: rgba(139, 92, 246, 0.12); color: var(--violet); }
        .feature-icon.cyan { background: rgba(6, 182, 212, 0.12); color: var(--cyan); }
        .feature-icon.bronze { background: rgba(99,102,241, 0.12); color: var(--bronze-600); }

        .feature-icon svg { width: 24px; height: 24px; }

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

        /* 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.ecommerce { background: rgba(251, 146, 60, 0.12); color: #FB923C; }
        .usecase-icon.realestate { background: rgba(59, 130, 246, 0.12); color: var(--blue); }
        .usecase-icon.health { background: rgba(16, 185, 129, 0.12); color: var(--emerald); }
        .usecase-icon.hospitality { 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(225, 48, 108, 0.08), rgba(0, 132, 255, 0.05));
            border: 1px solid rgba(225, 48, 108, 0.2);
            border-radius: 16px;
            padding: 28px 32px;
            margin: 40px 0;
        }

        .callout.unified {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(139, 92, 246, 0.04));
            border: 1px solid rgba(139, 92, 246, 0.2);
        }

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

        .callout.unified .callout-icon {
            background: linear-gradient(135deg, var(--violet), #6D28D9);
        }

        .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; }

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

        .inbox-title {
            display: inline-block;
            background: linear-gradient(135deg, var(--instagram), var(--messenger));
            padding: 12px 24px;
            border-radius: 6px;
            font-size: 20px;
            font-weight: 700;
            color: white;
            margin-bottom: 32px;
        }

        .inbox-preview {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 500px;
            margin: 0 auto;
        }

        .inbox-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px 20px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            text-align: left;
        }

        .inbox-item-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .inbox-item-icon.instagram { background: linear-gradient(135deg, #833AB4, #E1306C); }
        .inbox-item-icon.messenger { background: linear-gradient(135deg, #0084FF, #00C6FF); }
        .inbox-item-icon.whatsapp { background: #25D366; }

        .inbox-item-icon svg { width: 20px; height: 20px; color: white; }

        .inbox-item-content { flex: 1; min-width: 0; }
        .inbox-item-name { font-size: 14px; font-weight: 600; color: white; margin-bottom: 2px; }
        .inbox-item-message { font-size: 13px; color: rgba(255, 255, 255, 0.6); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .inbox-item-time { font-size: 12px; color: rgba(255, 255, 255, 0.4); flex-shrink: 0; }

        /* 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(--instagram); color: var(--instagram); background: rgba(225, 48, 108, 0.05); }
        .share-btn svg { width: 18px; height: 18px; }

        /* CTA SECTION */
        .blog-cta {
            margin: 80px 0;
            background: linear-gradient(135deg, var(--instagram), var(--messenger));
            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.15) 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.9);
            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(--instagram); }
        .btn-white:hover { background: var(--gray-100); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
        .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.violet { background: linear-gradient(135deg, var(--violet), #6D28D9); }
        .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); }
            .platform-grid { grid-template-columns: 1fr; }
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .usecases-grid { grid-template-columns: 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; }
            .features-grid { grid-template-columns: 1fr; }
            .blog-cta { padding: 40px 24px; }
            .article-share { flex-direction: column; gap: 16px; text-align: center; }
            .share-buttons { justify-content: center; }
            .blog-featured-image-inner { padding: 40px 20px; }
            .social-icons-row { gap: 16px; }
            .social-icon-bubble { width: 64px; height: 64px; border-radius: 16px; }
            .social-icon-bubble svg { width: 32px; height: 32px; }
        }

        @media (max-width: 480px) {
            .blog-title { font-size: 28px; }
            .feature-card { padding: 20px; }
        }

        /* FOOTER */
        .footer {
            background: var(--gray-950);
            color: white;
            padding: 80px 0 32px;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 1.3fr 2fr;
            gap: 80px;
            padding-bottom: 60px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .footer-brand { max-width: 340px; }

        .footer-logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .footer-logo-mark {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--bronze-600), var(--bronze-800));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .footer-logo-mark svg { width: 18px; height: 18px; color: white; }
        .footer-desc { font-size: 15px; color: var(--gray-400); line-height: 1.7; margin-bottom: 28px; }
        .footer-social { display: flex; gap: 10px; }

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .social-link:hover { background: var(--bronze-700); border-color: var(--bronze-600); }
        .social-link svg { width: 18px; height: 18px; color: var(--gray-400); }
        .social-link:hover svg { color: white; }

        .footer-links-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
        .footer-column h4 { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: white; margin-bottom: 20px; }
        .footer-links { display: flex; flex-direction: column; gap: 12px; }
        .footer-link { font-size: 14px; color: var(--gray-400); transition: all 0.2s; }
        .footer-link:hover { color: white; transform: translateX(2px); }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 32px;
            flex-wrap: wrap;
            gap: 16px;
        }

        .footer-copyright { font-size: 14px; color: var(--gray-500); }
        .footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
        .footer-legal a { font-size: 14px; color: var(--gray-500); transition: color 0.2s; }
        .footer-legal a:hover { color: white; }

        @media (max-width: 1024px) {
            .footer-top { grid-template-columns: 1fr; gap: 48px; }
            .footer-links-grid { grid-template-columns: repeat(2, 1fr); }
        }

        body { padding-top: 80px; }
        @media (max-width: 1024px) { body { padding-top: 72px; } }

        #header .container, .footer .container{max-width:1600px;margin:0 auto;padding:0 72px;box-sizing:border-box;}

        #header .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        #header .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        #header .btn {
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
            gap: 8px !important;
            border: 1px solid transparent !important;
            border-radius: 8px !important;
            text-decoration: none !important;
            font-family: var(--font-sans) !important;
        }

        #header .btn.btn-sm {
            padding: 8px 16px !important;
            font-size: 13px !important;
        }

        #header .btn-primary { background: transparent !important; color: #1E1E24 !important; border: 1.5px solid #1E1E24 !important; box-shadow: none !important; }

        #header .btn-primary:hover { background: #1E1E24 !important; color: #FFFFFF !important; }

        #header .btn-ghost {
            background: transparent !important;
            color: var(--gray-600) !important;
        }

        #header .btn-ghost:hover {
            background: var(--gray-50) !important;
            color: var(--gray-900) !important;
        }

        #header .btn-outline {
            background: transparent !important;
            color: var(--gray-700) !important;
            border-color: var(--gray-200) !important;
        }

        #header .btn-icon {
            width: 16px;
            height: 16px;
        }

        #header .mobile-menu-toggle {
            display: none;
            width: 40px;
            height: 40px;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            color: var(--gray-600);
        }

        #header .mobile-menu-toggle svg {
            width: 24px;
            height: 24px;
        }

        @media (max-width: 1024px) {
            #header .nav {
                display: none;
            }
            #header .mobile-menu-toggle {
                display: flex;
            }
            #header .header-actions .btn-ghost {
                display: none;
            }
        }

        #mobileMenu {
            display: none !important;
        }

        #mobileMenu.active {
            display: block !important;
        }

        @media (min-width: 1025px) {
            #mobileMenu {
                display: none !important;
            }
        }

        #header .mega-menu {
            position: fixed;
            top: 76px;
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            background: linear-gradient(180deg, #FFFFFF 0%, var(--cream-50) 100%);
            border-radius: 16px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
            z-index: 6000;
            padding: 24px;
            width: min(760px, calc(100vw - 32px));
            max-width: calc(100vw - 32px);
            overflow: visible;
        }

        #header .mega-menu.wide { width: min(920px, calc(100vw - 32px)); }

        #header .nav-item.is-open .mega-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        #header .mega-menu-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 8px;
        }

        #header .mega-menu-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

        #header .mega-menu-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 14px;
            border-radius: 12px;
            transition: all 0.2s;
        }

        #header .mega-menu-item:hover { background: var(--gray-50); }

        #header .mega-menu-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        #header .mega-menu-icon svg { width: 22px; height: 22px; }

        .mega-menu-icon.voice { background: rgba(99,102,241, 0.12); color: var(--bronze-600); }
        .mega-menu-icon.whatsapp { background: rgba(37, 211, 102, 0.12); color: #25D366; }
        .mega-menu-icon.instagram { background: rgba(225, 48, 108, 0.12); color: #E1306C; }
        .mega-menu-icon.messenger { background: rgba(0, 132, 255, 0.12); color: #0084FF; }
        .mega-menu-icon.crm-agent { background: rgba(59, 130, 246, 0.12); color: #3B82F6; }
        .mega-menu-icon.quality-agent { background: rgba(16, 185, 129, 0.12); color: #10B981; }
        .mega-menu-icon.receptionist-agent { background: rgba(139, 92, 246, 0.12); color: #8B5CF6; }
        .mega-menu-icon.platform { background: rgba(59, 130, 246, 0.12); color: #3B82F6; }
        .mega-menu-icon.voip { background: rgba(99,102,241, 0.12); color: var(--bronze-600); }
        .mega-menu-icon.solutions { background: rgba(139, 92, 246, 0.12); color: #8B5CF6; }
        .mega-menu-icon.analytics { background: rgba(59, 130, 246, 0.12); color: #3B82F6; }
        .mega-menu-icon.integrations { background: rgba(139, 92, 246, 0.12); color: #8B5CF6; }
        .mega-menu-icon.auto { background: rgba(99,102,241, 0.12); color: var(--bronze-600); }
        .mega-menu-icon.health { background: rgba(16, 185, 129, 0.12); color: #10B981; }
        .mega-menu-icon.realestate { background: rgba(59, 130, 246, 0.12); color: #3B82F6; }
        .mega-menu-icon.ecommerce { background: rgba(251, 146, 60, 0.12); color: #FB923C; }
        .mega-menu-icon.finance { background: rgba(6, 182, 212, 0.12); color: #06B6D4; }
        .mega-menu-icon.hr { background: rgba(139, 92, 246, 0.12); color: #8B5CF6; }
        .mega-menu-icon.blog { background: rgba(59, 130, 246, 0.12); color: #3B82F6; }
        .mega-menu-icon.docs { background: rgba(16, 185, 129, 0.12); color: #10B981; }
        .mega-menu-icon.api { background: rgba(251, 146, 60, 0.12); color: #FB923C; }
        .mega-menu-icon.cases { background: rgba(139, 92, 246, 0.12); color: #8B5CF6; }

        .mega-menu-content h4 { font-size: 14px; font-weight: 600; color: var(--gray-900); margin-bottom: 4px; }
        .mega-menu-content p { font-size: 13px; color: var(--gray-500); line-height: 1.4; }

        .mega-menu-section-title {
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--bronze-700);
            margin-bottom: 12px;
            padding-left: 14px;
        }

        .agents-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            padding: 14px 22px 18px;
            border-top: 1px solid rgba(17, 24, 39, 0.08);
            background: linear-gradient(180deg, rgba(253,252,251,0.6), rgba(255,255,255,0.8));
            border-bottom-left-radius: 16px;
            border-bottom-right-radius: 16px;
        }

        .agents-stat { text-align: center; }
        .agents-stat strong { display: block; font-size: 16px; font-weight: 800; color: var(--bronze-700); letter-spacing: -0.01em; }
        .agents-stat span { display: block; font-size: 12px; color: var(--gray-600); margin-top: 2px; }

        @media (max-width: 1024px) {
            .agents-stats { grid-template-columns: repeat(2, 1fr); }
        }

        .mega-menu.platform { padding: 14px; width: min(980px, calc(100vw - 32px)); }

        .platform-menu { display: grid; grid-template-columns: 1fr 1.05fr; gap: 14px; align-items: stretch; }

        .platform-left { padding: 8px; height: 400px; display: flex; flex-direction: column; box-sizing: border-box; overflow: hidden; }

        .platform-kicker { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.10em; color: var(--bronze-700); margin-bottom: 8px; }

        .platform-title { font-size: 18px; font-weight: 850; color: var(--gray-900); letter-spacing: -0.02em; margin-bottom: 6px; }
        .platform-desc { font-size: 13px; color: var(--gray-600); line-height: 1.55; margin-bottom: 8px; }

        .platform-points { margin: 0; padding: 0; list-style: none; display: grid; gap: 6px; flex: 1; align-content: start; min-height: auto; overflow: hidden; }
        .platform-points::-webkit-scrollbar { display: none; }

        .platform-point { display: grid; grid-template-columns: 18px 1fr; gap: 10px; padding: 9px 12px; border-radius: 12px; border: 1px solid rgba(17, 24, 39, 0.08); background: rgba(255,255,255,0.70); }

        .platform-point-icon { width: 18px; height: 18px; border-radius: 6px; background: rgba(99,102,241,0.10); border: 1px solid rgba(99,102,241,0.18); display: grid; place-items: center; color: var(--bronze-700); }
        .platform-point-icon svg { width: 12px; height: 12px; }

        .platform-point strong { display: block; font-size: 13px; font-weight: 850; color: var(--gray-900); margin-bottom: 1px; }
        .platform-point span { display: block; font-size: 12px; color: var(--gray-600); line-height: 1.4; }

        .platform-cta { margin-top: 8px; flex-shrink: 0; }

        .platform-right { border-radius: 16px; background: linear-gradient(135deg, #1a1f2e, #141820); border: 1px solid rgba(255,255,255,0.06); box-shadow: 0 18px 50px rgba(0,0,0,0.24); overflow: hidden; display: flex; flex-direction: column; height: 400px; }

        .platform-right.platform-links { background: rgba(255,255,255,0.75); border: 1px solid rgba(17, 24, 39, 0.10); box-shadow: 0 18px 50px rgba(0,0,0,0.10); padding: 10px; overflow: hidden !important; overflow-x: hidden !important; overflow-y: hidden !important; }

        .mega-menu.platform .platform-right.platform-links .mega-menu-grid { gap: 2px !important; }
        .mega-menu.platform .platform-right.platform-links .mega-menu-item { padding: 6px; gap: 8px; }

        .mega-menu.platform .platform-right.platform-links .mega-menu-icon { width: 32px; height: 32px; border-radius: 10px; }
        .mega-menu.platform .platform-right.platform-links .mega-menu-icon svg { width: 16px; height: 16px; }

        .mega-menu.platform .platform-right.platform-links .mega-menu-content h4 { margin-bottom: 2px; line-height: 1.2; }
        .mega-menu.platform .platform-right.platform-links .mega-menu-content p { font-size: 10px; line-height: 1.15; }

        @media (max-width: 1024px) {
            .platform-menu { grid-template-columns: 1fr; }
            .platform-right { display: none; }
        }
    
/* ── 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;
}

/* ── Hero badge overflow fix for long translations ── */
.hero-badge {
  white-space: nowrap;
  width: auto;
  max-width: 100%;
}
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
