html, body { margin: 0; padding: 0; }
        .custom *, .custom *::before, .custom *::after { margin: 0; padding: 0; box-sizing: border-box; }
        .custom {
            --blue: #265e90; --green: #00a379; --blue-light: #3a7ab8; --green-light: #00c48f;
            --blue-dark: #1a4568; --green-dark: #008a64; --navy: #0f1a2b; --bg: #ffffff;
            --bg-alt: #f7f9fc; --bg-dark: #0f1a2b; --text: #1a1a2e; --text-light: #5a6377;
            --text-muted: #8b95a8; --border: #e2e8f0; --radius: 12px; --radius-lg: 20px;
            --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04);
            --shadow-lg: 0 4px 24px rgba(0,0,0,0.08);
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--text); background: var(--bg); line-height: 1.6;
            -webkit-font-smoothing: antialiased; scroll-behavior: smooth;
        }
        .custom h1,.custom h2,.custom h3,.custom h4,.custom h5 { font-family:'Inter',sans-serif; line-height:1.2; }
        .custom a { text-decoration: none; color: inherit; }
        .custom .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

        /* HEADER */
        .custom .header { position:fixed;top:0;left:0;right:0;z-index:1000;background:rgba(255,255,255,0.92);backdrop-filter:blur(20px);border-bottom:1px solid var(--border); }
        .custom .header-inner { display:flex;align-items:center;justify-content:space-between;max-width:1200px;margin:0 auto;padding:0 24px;height:72px; }
        .custom .logo { display:flex;align-items:center; }
        .custom .logo-img { height:40px;width:auto; }
        .custom .nav { display:flex;align-items:center;gap:32px; }
        .custom .nav a { font-size:15px;font-weight:500;color:var(--text-light);transition:var(--transition); }
        .custom .nav a:hover { color:var(--blue); }
        .custom .nav a.active { color:var(--blue);font-weight:600; }
        .custom .header-actions { display:flex;align-items:center;gap:12px; }
        .custom .btn-login { padding:10px 20px;border-radius:8px;font-size:14px;font-weight:600;color:var(--blue);background:transparent;border:1.5px solid var(--border);cursor:pointer;transition:var(--transition);font-family:'Inter',sans-serif; }
        .custom .btn-login:hover { border-color:var(--blue);background:rgba(38,94,144,0.04); }
        .custom .btn-schedule { padding:10px 24px;border-radius:8px;font-size:14px;font-weight:600;color:#fff;border:none;cursor:pointer;background:linear-gradient(135deg,var(--green),var(--blue));transition:var(--transition);box-shadow:0 2px 12px rgba(0,163,121,0.3);font-family:'Inter',sans-serif; }
        .custom .btn-schedule:hover { transform:translateY(-1px);box-shadow:0 4px 20px rgba(0,163,121,0.4); }
        .custom .mobile-toggle { display:none;background:none;border:none;cursor:pointer;padding:8px; }
        .custom .mobile-toggle span { display:block;width:24px;height:2px;background:var(--text);margin:5px 0;border-radius:2px; }

        /* MOBILE NAV */
        .custom .mobile-nav { position:fixed;top:0;left:0;right:0;bottom:0;z-index:998;background:#fff;display:flex;flex-direction:column;padding:88px 24px 32px;transform:translateX(100%);transition:transform 0.35s cubic-bezier(0.4,0,0.2,1);overflow-y:auto;-webkit-overflow-scrolling:touch; }
        .custom .mobile-nav.open { transform:translateX(0); }
        .custom .mobile-nav a { display:block;padding:16px 0;font-size:18px;font-weight:600;color:var(--text);border-bottom:1px solid var(--border);transition:var(--transition); }
        .custom .mobile-nav a:last-of-type { border-bottom:none; }
        .custom .mobile-nav a:hover,.custom .mobile-nav a:active { color:var(--green); }
        .custom .mobile-nav-actions { display:flex;flex-direction:column;gap:12px;margin-top:auto;padding-top:24px; }
        .custom .mobile-nav-actions .btn-login { display:block;width:100%;padding:14px;text-align:center;border-radius:10px;font-size:15px;font-weight:600;color:var(--blue);background:transparent;border:1.5px solid var(--border);cursor:pointer;font-family:'Inter',sans-serif; }
        .custom .mobile-nav-actions .btn-schedule { display:block;width:100%;padding:14px;text-align:center;border-radius:10px;font-size:15px;font-weight:600;color:#fff;border:none;cursor:pointer;background:linear-gradient(135deg,var(--green),var(--blue));font-family:'Inter',sans-serif;box-shadow:0 2px 12px rgba(0,163,121,0.3); }
        .custom .mobile-toggle.active span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
        .custom .mobile-toggle.active span:nth-child(2) { opacity:0; }
        .custom .mobile-toggle.active span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }

        /* ARTICLE HERO */
        .custom .article-hero { padding:140px 0 60px; background:linear-gradient(180deg,#f0f7ff 0%,#fff 100%); position:relative; overflow:hidden; }
        .custom .article-hero::before { content:'';position:absolute;top:-120px;left:50%;transform:translateX(-50%);width:600px;height:600px;border-radius:50%;background:radial-gradient(circle,rgba(0,163,121,0.06) 0%,transparent 70%); }
        .custom .article-hero .container { position:relative; max-width:800px; }
        .custom .breadcrumb { font-size:14px;color:var(--text-muted);margin-bottom:20px; }
        .custom .breadcrumb a { color:var(--blue);font-weight:500; }
        .custom .breadcrumb a:hover { color:var(--green); }
        .custom .article-tag { display:inline-block;padding:4px 14px;border-radius:100px;font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:1px;margin-bottom:16px; }
        .custom .article-tag.automation { background:rgba(0,163,121,0.08);color:var(--green-dark); }
        .custom .article-tag.sales { background:rgba(38,94,144,0.08);color:var(--blue-dark); }
        .custom .article-tag.marketing { background:rgba(139,92,246,0.08);color:#7c3aed; }
        .custom .article-tag.growth { background:rgba(245,158,11,0.08);color:#b45309; }
        .custom .article-tag.product { background:rgba(239,68,68,0.08);color:#dc2626; }
        .custom .article-tag.strategy { background:rgba(6,182,212,0.08);color:#0891b2; }
        .custom .article-hero h1 { font-size:clamp(28px,4vw,42px);font-weight:800;color:var(--text);margin-bottom:20px;letter-spacing:-0.5px;line-height:1.2; }
        .custom .article-meta { display:flex;align-items:center;gap:20px;font-size:14px;color:var(--text-muted);flex-wrap:wrap; }
        .custom .article-meta span { display:flex;align-items:center;gap:6px; }
        .custom .article-meta svg { width:15px;height:15px; }

        /* ARTICLE BODY */
        .custom .article-body { max-width:800px;margin:0 auto;padding:60px 24px 100px; }
        .custom .article-body .verdict-box { background:var(--bg-alt);border-left:4px solid var(--green);padding:24px 28px;border-radius:0 var(--radius) var(--radius) 0;margin-bottom:48px;font-size:16px;line-height:1.7;color:var(--text); }
        .custom .article-body .verdict-box strong { color:var(--green-dark); }
        .custom .article-body h2 { font-size:24px;font-weight:800;color:var(--text);margin:48px 0 16px;letter-spacing:-0.3px; }
        .custom .article-body h3 { font-size:20px;font-weight:700;color:var(--text);margin:32px 0 12px; }
        .custom .article-body p { font-size:16px;line-height:1.8;color:var(--text-light);margin-bottom:16px; }
        .custom .article-body ul,.custom .article-body ol { padding-left:24px;margin-bottom:20px; }
        .custom .article-body li { font-size:16px;line-height:1.8;color:var(--text-light);margin-bottom:8px; }
        .custom .article-body strong { color:var(--text); }
        .custom .article-body em { font-style:italic; }
        .custom .cta-line { font-style:italic;color:var(--green-dark);font-weight:500;margin-top:24px; }

        /* COMPARISON TABLE */
        .custom .comparison-table { overflow-x:auto;margin:24px 0 32px; }
        .custom .comparison-table table { width:100%;border-collapse:collapse;font-size:14px; }
        .custom .comparison-table thead th { background:var(--navy);color:#fff;padding:12px 16px;text-align:left;font-weight:700;font-size:13px;text-transform:uppercase;letter-spacing:0.5px; }
        .custom .comparison-table tbody td { padding:12px 16px;border-bottom:1px solid var(--border);color:var(--text-light); }
        .custom .comparison-table tbody tr:nth-child(even) { background:var(--bg-alt); }
        .custom .comparison-table tbody td:first-child { font-weight:600;color:var(--text); }
        .custom .comparison-table tbody td:last-child { color:var(--green-dark);font-weight:500; }

        /* AUTHOR BOX */
        .custom .author-box { display:flex;gap:20px;align-items:flex-start;padding:32px;border-radius:var(--radius);background:var(--bg-alt);border:1px solid var(--border);margin-top:60px; }
        .custom .author-avatar { width:56px;height:56px;border-radius:50%;background:linear-gradient(135deg,var(--green),var(--blue));display:flex;align-items:center;justify-content:center;color:#fff;font-weight:800;font-size:20px;flex-shrink:0; }
        .custom .author-info h4 { font-size:16px;font-weight:700;color:var(--text);margin-bottom:2px; }
        .custom .author-info .author-title { font-size:13px;font-weight:600;color:var(--green);margin-bottom:8px; }
        .custom .author-info p { font-size:14px;color:var(--text-light);line-height:1.6; }

        /* CTA BANNER */
        .custom .blog-cta { padding:80px 0;background:linear-gradient(135deg,var(--navy) 0%,#1a3a5c 100%);text-align:center; }
        .custom .blog-cta h2 { font-size:clamp(24px,3.5vw,36px);font-weight:800;color:#fff;margin-bottom:12px; }
        .custom .blog-cta p { font-size:16px;color:rgba(255,255,255,0.7);max-width:500px;margin:0 auto 28px;line-height:1.7; }
        .custom .blog-cta .btn-schedule { padding:14px 32px;font-size:16px;border-radius:10px; }

        /* FOOTER */
        .custom .footer { padding:64px 0 32px;background:var(--bg-dark);color:rgba(255,255,255,0.7); }
        .custom .footer-grid { display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:48px;margin-bottom:48px; }
        .custom .footer-brand p { font-size:14px;line-height:1.6;color:rgba(255,255,255,0.5); }
        .custom .footer-brand .logo-img { filter:brightness(0) invert(1); }
        .custom .footer h4 { font-family:'Inter',sans-serif;font-weight:700;font-size:14px;text-transform:uppercase;letter-spacing:1px;color:#fff;margin-bottom:16px; }
        .custom .footer ul { list-style:none; }
        .custom .footer ul li { margin-bottom:10px; }
        .custom .footer ul a { font-size:14px;color:rgba(255,255,255,0.5);transition:var(--transition); }
        .custom .footer ul a:hover { color:var(--green-light); }
        .custom .footer-bottom { padding-top:32px;border-top:1px solid rgba(255,255,255,0.08);display:flex;justify-content:space-between;align-items:center;font-size:13px;color:rgba(255,255,255,0.35); }

        @media (max-width:1024px) { .custom .footer-grid { grid-template-columns:2fr 1fr 1fr;gap:32px; } }
        @media (max-width:768px) {
            .custom .nav { display:none; }
            .custom .header-actions { display:none; }
            .custom .mobile-toggle { display:block; }
            .custom .article-hero { padding:120px 0 40px; }
            .custom .article-hero h1 { font-size:28px; }
            .custom .article-body { padding:40px 24px 80px; }
            .custom .article-body h2 { font-size:20px; }
            .custom .author-box { flex-direction:column; }
            .custom .footer-grid { grid-template-columns:1fr 1fr;gap:24px; }
            .custom .footer-bottom { flex-direction:column;gap:12px;text-align:center; }
            .custom .comparison-table { font-size:13px; }
        }
        @media (max-width:480px) {
            .custom .footer-grid { grid-template-columns:1fr;gap:24px; }
            .custom .article-hero h1 { font-size:24px; }
            .custom .article-meta { gap:12px; }

        /* ========== LANGUAGE TOGGLE ========== */

        /* Mobile nav toggle */

        }
    
        /* ========== LANGUAGE SWITCHER ========== */
        .custom .lang-switcher {
            position: relative;
            display: flex;
            align-items: center;
        }
        .custom .lang-switcher-btn {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 7px 14px;
            border-radius: 8px;
            border: 1.5px solid var(--border);
            background: transparent;
            cursor: pointer;
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-light);
            transition: var(--transition);
        }
        .custom .lang-switcher-btn:hover {
            border-color: var(--blue);
            color: var(--blue);
            background: rgba(38,94,144,0.04);
        }
        .custom .lang-switcher-btn svg {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
        }
        .custom .lang-switcher-btn .arrow {
            width: 10px;
            height: 10px;
            transition: transform 0.2s ease;
        }
        .custom .lang-switcher.open .lang-switcher-btn .arrow {
            transform: rotate(180deg);
        }
        .custom .lang-switcher.open .lang-switcher-btn {
            border-color: var(--blue);
            color: var(--blue);
        }
        .custom .lang-dropdown {
            position: absolute;
            top: calc(100% + 6px);
            right: 0;
            min-width: 140px;
            background: #fff;
            border-radius: 10px;
            border: 1px solid var(--border);
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px);
            transition: all 0.2s ease;
            z-index: 1001;
            overflow: hidden;
        }
        .custom .lang-switcher.open .lang-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .custom .lang-dropdown a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 16px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-light);
            text-decoration: none;
            transition: var(--transition);
        }
        .custom .lang-dropdown a:hover {
            background: rgba(38,94,144,0.06);
            color: var(--blue);
        }
        .custom .lang-dropdown a.active-lang {
            color: var(--blue);
            font-weight: 600;
            background: rgba(38,94,144,0.04);
        }
        .custom .lang-dropdown a .check {
            margin-left: auto;
            opacity: 0;
        }
        .custom .lang-dropdown a.active-lang .check {
            opacity: 1;
        }
        .custom .mobile-nav .lang-switcher {
            padding: 16px 0;
            border-bottom: 1px solid var(--border);
        }
        .custom .mobile-nav .lang-switcher-btn {
            width: 100%;
            justify-content: center;
        }