/* Home page styles — extracted from home.blade.php
   Static CSS, browser-cacheable. Linked via @push('styles'). */
        /* Match the Select2 service picker to the dark intent-bar inputs (h-14 / rounded-xl). */
        .intent-bar .select2-container--default .select2-selection--single {
            height: 56px;
            border-radius: 12px;
            border-color: transparent;
        }
        .intent-bar .select2-container--default .select2-selection--single .select2-selection__rendered {
            font-weight: 600;
        }
        .intent-bar .select2-container--default .select2-selection--single .select2-selection__arrow {
            height: 54px;
        }
        .hero-section {
            position: relative;
            background:
                radial-gradient(1100px 460px at 90% -10%, rgba(var(--site-primary-rgb), 0.14), transparent 60%),
                radial-gradient(820px 420px at 2% 4%, rgba(var(--site-primary-rgb), 0.08), transparent 55%),
                linear-gradient(180deg, #fbf7f7 0%, #f8f0f1 52%, #fdf7f7 100%);
        }
        /* Khoảng cách hero (dùng CSS thật vì tailwind.css build sẵn KHÔNG có
           các class pt-40/pt-48...). Header glass cao ~96px nên padding-top
           phải > 96px để nội dung không bị che. */
        /* padding-top do header.css (main > section.hero-section:first-child → 120px)
           quản lý — nguồn duy nhất, đồng nhất với các trang khác. */
        .hero-inner {
            padding-bottom: 56px;
        }
        @media (min-width: 1024px) {
            .hero-inner {
                padding-bottom: 64px;
            }
        }
        .hero-section::after {
            content: '';
            position: absolute;
            top: 0; right: 0;
            width: 320px; height: 320px;
            background-image: radial-gradient(circle, #ecbdbe 1px, transparent 1px);
            background-size: 20px 20px;
            opacity: 0.4;
            pointer-events: none;
            z-index: 0;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            inset: auto 0 0 0;
            height: 42%;
            background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.85) 100%);
            pointer-events: none;
            z-index: 0;
        }
        /* ===== HERO — liquid glass (orbs nền + glass card/pill + glow) ===== */
        .hero-aurora {
            position: absolute;
            inset: 0;
            z-index: 0;
            overflow: hidden;
            pointer-events: none;
        }
        .hero-orb {
            position: absolute;
            border-radius: 999px;
            filter: blur(10px);
            will-change: transform;
        }
        .hero-orb--1 {
            width: 340px; height: 340px; top: -50px; right: 5%;
            background: radial-gradient(circle at 32% 30%, rgba(var(--site-primary-rgb), 0.30), rgba(var(--site-primary-rgb), 0) 70%);
            animation: tsv-float 7s ease-in-out infinite;
        }
        .hero-orb--2 {
            width: 280px; height: 280px; bottom: 6%; left: -70px;
            background: radial-gradient(circle at 32% 30%, rgba(var(--site-primary-rgb), 0.14), rgba(var(--site-primary-rgb), 0) 70%);
            animation: tsv-float 8.6s ease-in-out infinite; animation-delay: .6s;
        }
        .hero-orb--3 {
            width: 200px; height: 200px; top: 42%; left: 40%;
            background: radial-gradient(circle at 32% 30%, rgba(var(--site-primary-rgb), 0.20), rgba(var(--site-primary-rgb), 0) 70%);
            animation: tsv-float 6.2s ease-in-out infinite; animation-delay: 1.1s;
        }
        /* Glass mini-card cho 3 tính năng */
        .hero-feature {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 12px;
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.58);
            border: 1px solid rgba(255, 255, 255, 0.72);
            box-shadow: 0 6px 18px rgba(15, 23, 43, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.85);
            -webkit-backdrop-filter: blur(16px) saturate(160%);
            backdrop-filter: blur(16px) saturate(160%);
            transition: transform .25s ease, box-shadow .25s ease;
        }
        .hero-feature:hover {
            transform: translateY(-2px);
            box-shadow: 0 14px 30px rgba(15, 23, 43, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.92);
        }
        /* Glass pill cho trust chips */
        .hero-trust {
            background: rgba(255, 255, 255, 0.60);
            border: 1px solid rgba(255, 255, 255, 0.72);
            box-shadow: 0 4px 14px rgba(15, 23, 43, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.85);
            -webkit-backdrop-filter: blur(14px) saturate(155%);
            backdrop-filter: blur(14px) saturate(155%);
        }
        /* Quầng sáng nhẹ sau mockup */
        .hero-glow {
            position: absolute;
            inset: 6% 4%;
            z-index: 0;
            pointer-events: none;
            background: radial-gradient(closest-side, rgba(var(--site-primary-rgb), 0.16), rgba(var(--site-primary-rgb), 0) 72%);
        }
        @supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
            .hero-feature { background: rgba(255, 255, 255, 0.93); }
            .hero-trust { background: rgba(255, 255, 255, 0.93); }
        }
        @media (prefers-reduced-motion: reduce) {
            .hero-orb { animation: none !important; }
        }
        @keyframes tsv-fade-up {
            from { opacity: 0; transform: translate3d(0, 22px, 0); }
            to { opacity: 1; transform: translate3d(0, 0, 0); }
        }
        @keyframes tsv-float {
            0%, 100% { transform: translate3d(0, 0, 0); }
            50% { transform: translate3d(0, -12px, 0); }
        }
        @keyframes tsv-pulse-soft {
            0%, 100% { box-shadow: 0 0 0 0 rgba(var(--site-primary-rgb, 59, 79, 232), 0.25); }
            50% { box-shadow: 0 0 0 10px rgba(var(--site-primary-rgb, 59, 79, 232), 0); }
        }
        .motion-in {
            opacity: 0;
            transform: translate3d(0, 22px, 0);
            animation: tsv-fade-up 0.7s cubic-bezier(.2,.8,.2,1) forwards;
        }
        .motion-delay-1 { animation-delay: .08s; }
        .motion-delay-2 { animation-delay: .18s; }
        .motion-delay-3 { animation-delay: .28s; }
        .float-slow { animation: tsv-float 5.8s ease-in-out infinite; }
        .float-slow-alt { animation: tsv-float 6.6s ease-in-out infinite; animation-delay: .7s; }
        .pulse-soft { animation: tsv-pulse-soft 2.8s ease-in-out infinite; }
        .reveal-on-scroll {
            opacity: 0;
            transform: translate3d(0, 26px, 0);
            transition: opacity .65s ease, transform .65s cubic-bezier(.2,.8,.2,1);
        }
        .reveal-on-scroll.is-visible {
            opacity: 1;
            transform: translate3d(0, 0, 0);
        }
        /* ===== Reveal cascade PER-ITEM — đồng bộ chất động với trang dịch vụ (crm/erp/saas).
           Gate .home-anim thêm ở <head> (chỉ khi hỗ trợ IntersectionObserver & KHÔNG bật
           giảm chuyển động). Không JS / giảm chuyển động → phần tử hiện đủ ngay (an toàn SEO/LCP).
           CHỈ animate transform + opacity (GPU) → không hại tốc độ, CLS = 0. */
        .home-anim [data-reveal] {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity .6s cubic-bezier(.16, 1, .3, 1), transform .6s cubic-bezier(.16, 1, .3, 1);
        }
        .home-anim [data-reveal].is-in { opacity: 1; transform: none; }
        @media (prefers-reduced-motion: reduce) {
            .home-anim [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
        }
        /* ===== Giao thoa điểm chạm =====
           Mỗi section CÓ nền màu riêng (lõi giữ ở giữa), nhưng MÉP TRÊN & DƯỚI
           fade dần về TRẮNG (màu chung). Tại điểm chạm 2 section cùng tiến về
           trắng → màu tương đồng, không còn đường kẻ. Đặt --sect-tint để đổi màu
           lõi cho từng section. */
        /* Nền section: TRẮNG + vài circle lavender nhỏ, mềm (không dùng wash đỏ
           chói theo theme). Circle đặt ở GIỮA section nên mép trên/dưới vẫn trắng
           → điểm chạm giữa các section vẫn liền mạch. */
        .section-soft {
            background:
                radial-gradient(circle 150px at 13% 56%, rgba(167, 139, 250, 0.12), transparent 70%),
                radial-gradient(circle 120px at 87% 40%, rgba(196, 181, 253, 0.11), transparent 70%),
                radial-gradient(circle 95px at 62% 70%, rgba(167, 139, 250, 0.09), transparent 70%),
                #ffffff;
        }
        /* ===== DỊCH VỤ BỔ TRỢ — service card + social card glass ===== */
        .svc-mini {
            position: relative;
            border-radius: 18px;
            padding: 22px;
            height: 100%;
            background: rgba(255, 255, 255, 0.62);
            border: 1px solid rgba(255, 255, 255, 0.8);
            box-shadow: 0 8px 24px rgba(15, 23, 43, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9);
            -webkit-backdrop-filter: blur(14px) saturate(150%);
            backdrop-filter: blur(14px) saturate(150%);
            transition: transform .28s ease, box-shadow .28s ease;
        }
        .svc-mini:hover {
            transform: translateY(-5px);
            box-shadow: 0 18px 40px rgba(15, 23, 43, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.95);
        }
        /* Giải pháp đi kèm: bento — 2 ô RỘNG bookend (ngang) + 4 ô vuông (phá lưới đều). */
        .svc-mini-bento {
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: 20px;
        }
        .svc-mini__body { min-width: 0; }
        @media (min-width: 640px) {
            .svc-mini-bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
            .svc-mini--wide {
                grid-column: 1 / -1;
                display: flex;
                align-items: center;
                gap: 20px;
            }
            .svc-mini--wide .svc-mini__ico { margin-bottom: 0; flex: 0 0 auto; }
        }
        .svc-mini__ico {
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(255, 255, 255, 0.95);
            box-shadow: 0 6px 16px rgba(15, 23, 43, 0.08);
            margin-bottom: 16px;
            overflow: hidden;
        }
        .social-card {
            border-radius: 18px;
            padding: 24px;
            background: rgba(255, 255, 255, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.8);
            box-shadow: 0 10px 30px rgba(15, 23, 43, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9);
            -webkit-backdrop-filter: blur(16px) saturate(150%);
            backdrop-filter: blur(16px) saturate(150%);
        }
        @supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
            .svc-mini,
            .social-card { background: rgba(255, 255, 255, 0.95); }
        }
        /* ===== MẪU WEBSITE — product card glass ===== */
        .tpl-card {
            background: rgba(255, 255, 255, 0.62);
            border: 1px solid rgba(255, 255, 255, 0.8);
            box-shadow: 0 6px 18px rgba(15, 23, 43, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.85);
            -webkit-backdrop-filter: blur(12px) saturate(150%);
            backdrop-filter: blur(12px) saturate(150%);
            transition: transform .25s ease, box-shadow .25s ease;
        }
        .tpl-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 40px rgba(15, 23, 43, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.92);
        }
        @supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
            .tpl-card { background: rgba(255, 255, 255, 0.95); }
        }
        /* ===== TẠI SAO CHỌN — card + thanh benefits glass ===== */
        .wc-card {
            background: rgba(255, 255, 255, 0.62);
            border: 1px solid rgba(255, 255, 255, 0.8);
            box-shadow: 0 8px 24px rgba(15, 23, 43, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.85);
            -webkit-backdrop-filter: blur(14px) saturate(150%);
            backdrop-filter: blur(14px) saturate(150%);
        }
        .wc-card:hover {
            box-shadow: 0 18px 40px rgba(15, 23, 43, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.92);
        }
        @supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
            .wc-card { background: rgba(255, 255, 255, 0.95); }
        }
        /* ===== CTA BANNER — nền liquid glass theo tông theme ===== */
        /* Đỏ glass theo đúng recipe của .footer-glass / .nav-pill: nền translucent
           (đỏ theme) + viền sáng + inset highlight trắng + bóng nhiều lớp + blur. */
        .cta-glass {
            position: relative;
            overflow: hidden;
            border-radius: 24px;
            background: rgba(var(--site-primary-rgb), 0.86);
            border: 1px solid rgba(255, 255, 255, 0.45);
            box-shadow:
                inset 0 1px 2px rgba(255, 255, 255, 0.55),
                inset 0 0 0 1px rgba(255, 255, 255, 0.16),
                0 22px 50px rgba(var(--site-primary-rgb), 0.28),
                0 3px 8px rgba(15, 23, 43, 0.06);
            -webkit-backdrop-filter: blur(20px) saturate(155%);
            backdrop-filter: blur(20px) saturate(155%);
        }
        @supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
            .cta-glass { background: var(--site-primary); }
        }
        .cta-badge {
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.22);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
            -webkit-backdrop-filter: blur(8px) saturate(140%);
            backdrop-filter: blur(8px) saturate(140%);
        }
        .magnetic-card {
            transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
        }
        /* ===== STATS STRIP — glass panel + 6 icon tile nhiều màu ===== */
        .stats-strip {
            background: rgba(255, 255, 255, 0.72);
            border: 1px solid rgba(255, 255, 255, 0.8);
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.9),
                0 0 0 1px rgba(148, 163, 184, 0.08),
                0 18px 50px rgba(15, 23, 43, 0.10);
            -webkit-backdrop-filter: blur(20px) saturate(155%);
            backdrop-filter: blur(20px) saturate(155%);
        }
        .stat-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 12px;
            border-radius: 14px;
            transition: background .25s ease, transform .25s ease;
        }
        .stat-item:hover {
            background: rgba(255, 255, 255, 0.75);
            transform: translateY(-2px);
        }
        .stat-ico {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            flex: 0 0 auto;
            box-shadow: 0 8px 18px rgba(15, 23, 43, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.35);
            transition: transform .25s ease, box-shadow .25s ease;
        }
        .stat-item:hover .stat-ico {
            transform: scale(1.06) rotate(-3deg);
        }
        .stat-ico svg { width: 20px; height: 20px; }
        .stat-ico--indigo  { background: linear-gradient(135deg, var(--site-primary-light, #5b6bf0), var(--site-primary, #3b4fe8)); }
        .stat-ico--emerald { background: linear-gradient(135deg, var(--site-primary-light, #5b6bf0), var(--site-primary, #3b4fe8)); }
        .stat-ico--amber   { background: linear-gradient(135deg, var(--site-primary-light, #5b6bf0), var(--site-primary, #3b4fe8)); }
        .stat-ico--sky     { background: linear-gradient(135deg, var(--site-primary-light, #5b6bf0), var(--site-primary, #3b4fe8)); }
        .stat-ico--violet  { background: linear-gradient(135deg, var(--site-primary-light, #5b6bf0), var(--site-primary, #3b4fe8)); }
        .stat-ico--rose    { background: linear-gradient(135deg, var(--site-primary-light, #5b6bf0), var(--site-primary, #3b4fe8)); }
        @supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
            .stats-strip { background: rgba(255, 255, 255, 0.95); }
        }
        /* ===== LỐI VÀO CHUYỂN ĐỔI — dark glass panel + glass card ===== */
        .entry-dark {
            position: relative;
            background:
                radial-gradient(120% 150% at 0% 0%, rgba(var(--site-primary-rgb), 0.30), transparent 55%),
                radial-gradient(120% 150% at 100% 100%, rgba(var(--site-primary-rgb), 0.14), transparent 55%),
                linear-gradient(150deg, #0f172b 0%, #131a33 100%);
        }
        .entry-panel {
            position: relative;
            background: linear-gradient(180deg, #faf7f8 0%, #f4eff1 100%);
        }
        .entry-card {
            position: relative;
            display: block;
            border-radius: 14px;
            padding: 16px;
            background: rgba(255, 255, 255, 0.58);
            border: 1px solid rgba(255, 255, 255, 0.7);
            box-shadow: 0 6px 18px rgba(15, 23, 43, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.85);
            -webkit-backdrop-filter: blur(14px) saturate(155%);
            backdrop-filter: blur(14px) saturate(155%);
            transition: transform .25s ease, box-shadow .25s ease;
        }
        .entry-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 18px 40px rgba(15, 23, 43, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.92);
        }
        .entry-ico {
            width: 38px;
            height: 38px;
            border-radius: 11px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            box-shadow: 0 8px 18px rgba(15, 23, 43, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.35);
            transition: transform .25s ease;
        }
        .entry-card:hover .entry-ico {
            transform: scale(1.06) rotate(-3deg);
        }
        .entry-ico--indigo  { background: linear-gradient(135deg, var(--site-primary-light, #5b6bf0), var(--site-primary, #3b4fe8)); }
        .entry-ico--emerald { background: linear-gradient(135deg, var(--site-primary-light, #5b6bf0), var(--site-primary, #3b4fe8)); }
        .entry-ico--amber   { background: linear-gradient(135deg, var(--site-primary-light, #5b6bf0), var(--site-primary, #3b4fe8)); }
        .entry-ico--rose    { background: linear-gradient(135deg, var(--site-primary-light, #5b6bf0), var(--site-primary, #3b4fe8)); }
        .entry-ico--violet  { background: linear-gradient(135deg, var(--site-primary-light, #5b6bf0), var(--site-primary, #3b4fe8)); }
        .entry-ico--sky     { background: linear-gradient(135deg, var(--site-primary-light, #5b6bf0), var(--site-primary, #3b4fe8)); }
        /* Hàng giải pháp CRM/ERP/SAAS — glass row ngang */
        .entry-solution {
            display: flex;
            align-items: center;
            gap: 12px;
            border-radius: 14px;
            padding: 12px 14px;
            background: rgba(255, 255, 255, 0.58);
            border: 1px solid rgba(255, 255, 255, 0.7);
            box-shadow: 0 6px 18px rgba(15, 23, 43, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.85);
            -webkit-backdrop-filter: blur(14px) saturate(155%);
            backdrop-filter: blur(14px) saturate(155%);
            transition: transform .25s ease, box-shadow .25s ease;
        }
        .entry-solution:hover {
            transform: translateX(3px);
            box-shadow: 0 14px 30px rgba(15, 23, 43, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.92);
        }
        .entry-solution:hover .entry-ico {
            transform: scale(1.06) rotate(-3deg);
        }
        @supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
            .entry-card,
            .entry-solution { background: rgba(255, 255, 255, 0.95); }
        }
        /* Desktop: lùi mép panel phải 1px để chồng nhẹ lên panel tối, triệt tiêu
           khe trắng hairline do làm tròn sub-pixel của lưới fr. */
        @media (min-width: 1024px) {
            .entry-panel {
                margin-left: -1px;
            }
        }
        /* ===== DỊCH VỤ THIẾT KẾ — 2 thẻ lớn (featured + plain) ===== */
        .svc-card {
            position: relative;
            overflow: hidden;
            border-radius: 24px;
            padding: 28px;
            transition: transform .28s ease, box-shadow .28s ease;
        }
        @media (min-width: 1024px) {
            .svc-card { padding: 34px; }
        }
        .svc-card:hover { transform: translateY(-6px); }
        /* Dịch vụ chính: 2 card KHÔNG bằng nhau — featured lớn hơn (feature 1 lớn + 1 nhỏ). */
        .svc-duo {
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: 24px;
        }
        @media (min-width: 1024px) {
            .svc-duo { grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); }
        }
        .svc-card--featured {
            background:
                radial-gradient(420px 280px at 100% 0%, rgba(var(--site-primary-rgb), 0.18), transparent 60%),
                linear-gradient(160deg, #faf7f8 0%, #f4eff1 100%);
            box-shadow: 0 18px 50px rgba(15, 23, 43, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.9);
        }
        .svc-card--featured:hover {
            box-shadow: 0 26px 60px rgba(var(--site-primary-rgb), 0.20), inset 0 1px 0 rgba(255, 255, 255, 0.95);
        }
        .svc-card--plain {
            background: linear-gradient(180deg, #ffffff 0%, #f6f8ff 100%);
            border: 1px solid #e8ecf6;
            box-shadow: 0 12px 36px rgba(15, 23, 43, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9);
        }
        .svc-card--plain:hover {
            box-shadow: 0 22px 50px rgba(15, 23, 43, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.95);
        }
        .svc-glow {
            position: absolute;
            top: -60px; right: -40px;
            width: 240px; height: 240px;
            border-radius: 999px;
            pointer-events: none;
            background: radial-gradient(circle at 50% 50%, rgba(var(--site-primary-rgb), 0.22), transparent 70%);
        }
        .svc-ico {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            box-shadow: 0 10px 22px rgba(15, 23, 43, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.35);
        }
        .svc-ico--primary { background: linear-gradient(135deg, var(--site-primary-light, #5b6bf0), var(--site-primary, #3b4fe8)); }
        .svc-ico--emerald { background: linear-gradient(135deg, var(--site-primary-light, #5b6bf0), var(--site-primary, #3b4fe8)); }
        .svc-chip {
            display: flex;
            align-items: center;
            gap: 8px;
            border-radius: 12px;
            padding: 11px 14px;
            font-size: 14px;
            font-weight: 600;
            color: #0f172b;
            background: rgba(255, 255, 255, 0.62);
            border: 1px solid rgba(255, 255, 255, 0.8);
            box-shadow: 0 4px 12px rgba(15, 23, 43, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.9);
            -webkit-backdrop-filter: blur(12px) saturate(150%);
            backdrop-filter: blur(12px) saturate(150%);
        }
        .svc-chip::before {
            content: '';
            width: 7px; height: 7px;
            border-radius: 999px;
            flex: 0 0 auto;
            background: linear-gradient(135deg, var(--site-primary-light, #5b6bf0), var(--site-primary, #3b4fe8));
        }
        .svc-card--plain .svc-chip::before {
            background: linear-gradient(135deg, var(--site-primary-light, #5b6bf0), var(--site-primary, #3b4fe8));
        }
        .svc-cta {
            background: linear-gradient(135deg, var(--site-primary-light, #5b6bf0), var(--site-primary, #3b4fe8));
            box-shadow: 0 10px 24px rgba(var(--site-primary-rgb), 0.34);
            transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
        }
        .svc-cta:hover {
            transform: translateY(-1px);
            filter: brightness(1.05);
            box-shadow: 0 14px 30px rgba(var(--site-primary-rgb), 0.46);
        }
        @supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
            .svc-chip { background: rgba(255, 255, 255, 0.95); }
        }
        .magnetic-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 45px rgba(15, 23, 43, 0.11);
        }
        /* ===== INTENT BAR — dark liquid glass ===== */
        .intent-bar {
            position: relative;
            background:
                radial-gradient(130% 180% at 0% 0%, rgba(var(--site-primary-rgb), 0.30), transparent 55%),
                radial-gradient(130% 180% at 100% 120%, rgba(var(--site-primary-rgb), 0.22), transparent 55%),
                linear-gradient(135deg, #0f172b 0%, #131a33 100%);
            border: 1px solid rgba(255, 255, 255, 0.12);
            box-shadow:
                0 24px 60px rgba(15, 23, 43, 0.30),
                0 0 0 1px rgba(var(--site-primary-rgb), 0.10),
                inset 0 1px 0 rgba(255, 255, 255, 0.14);
            -webkit-backdrop-filter: blur(16px) saturate(150%);
            backdrop-filter: blur(16px) saturate(150%);
        }
        /* Focus ring input/select theo brand (class ring-[#8b9bff] không nằm trong
           override app.blade → set thẳng --tw-ring-color, thắng nhờ tổ tiên .intent-bar). */
        .intent-bar input:focus,
        .intent-bar select:focus {
            --tw-ring-color: rgba(var(--site-primary-rgb), 0.55);
        }
        .intent-cta {
            background: linear-gradient(135deg, var(--site-primary-light, #5b6bf0), var(--site-primary, #3b4fe8));
            animation: intent-cta-pulse 2.8s ease-in-out infinite;
            transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
        }
        .intent-cta:hover {
            filter: brightness(1.06);
            transform: translateY(-1px);
            box-shadow: 0 14px 34px rgba(var(--site-primary-rgb), 0.52);
        }
        @keyframes intent-cta-pulse {
            0%, 100% { box-shadow: 0 10px 26px rgba(var(--site-primary-rgb), 0.40), 0 0 0 0 rgba(var(--site-primary-rgb), 0.45); }
            50% { box-shadow: 0 10px 26px rgba(var(--site-primary-rgb), 0.40), 0 0 0 10px rgba(var(--site-primary-rgb), 0); }
        }
        .intent-hints span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .intent-hints span::before {
            content: '';
            width: 6px; height: 6px;
            border-radius: 999px;
            flex: 0 0 auto;
            background: linear-gradient(135deg, var(--site-primary-light, #5b6bf0), var(--site-primary, #3b4fe8));
            box-shadow: 0 0 0 3px rgba(var(--site-primary-rgb, 59, 79, 232), 0.18);
        }
        @media (prefers-reduced-motion: reduce) {
            .intent-cta { animation: none; }
        }
        .support-services-split {
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: 24px;
            align-items: stretch;
        }
        .social-card-layout {
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: 32px;
            align-items: center;
        }
        .website-complete-layout {
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: 24px;
            align-items: center;
            max-width: 1180px;
            margin: 0 auto;
        }
        .website-complete-image {
            display: none;
        }
        .website-complete-column {
            display: contents;
        }
        .website-complete-card {
            position: relative;
            height: 100%;
        }
        @media (min-width: 1024px) {
            .support-services-split {
                grid-template-columns: minmax(0, 8fr) minmax(0, 4fr);
            }
            .social-card-layout {
                grid-template-columns: minmax(0, .34fr) minmax(0, .66fr);
            }
            .website-complete-layout {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
            .website-complete-card:hover {
                transform: translateY(-6px);
            }
            .website-complete-benefits {
                display: none !important;
            }
        }
        @media (min-width: 768px) and (max-width: 1023px) {
            .website-complete-layout {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        /* =====================================================================
           TẠI SAO CHỌN — BENTO bất đối xứng (phá lưới 3×2 đều, khuôn AI).
           1 ô HERO lớn (Tốc độ / 90+ PageSpeed) 2×2 + ô rộng 2×1 + ô vuông đan
           xen → lấp kín 4×3 trên desktop (gapless), 2 cột tablet, 1 cột mobile.
           ===================================================================== */
        .wc-bento {
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: 16px;
            max-width: 1180px;
            margin: 0 auto;
        }
        .wc-tile {
            position: relative;
            height: 100%;
            transition: transform .28s ease, box-shadow .28s ease;
        }
        @media (min-width: 768px) and (max-width: 1023px) {
            .wc-bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
            .wc-tile--hero,
            .wc-tile--wide { grid-column: span 2; }
        }
        @media (min-width: 1024px) {
            .wc-bento {
                grid-template-columns: repeat(4, minmax(0, 1fr));
                grid-auto-rows: minmax(174px, auto);
                grid-auto-flow: row dense;
            }
            .wc-tile--hero { grid-column: span 2; grid-row: span 2; }
            .wc-tile--wide { grid-column: span 2; }
            .wc-tile:hover { transform: translateY(-6px); }
        }
        /* Ô HERO — nền accent theo theme + số 90+ mảng lớn (gradient tông site) */
        .wc-hero {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 22px;
            padding: 30px;
            border-radius: 24px;
            overflow: hidden;
            background:
                radial-gradient(460px 300px at 100% 0%, rgba(var(--site-primary-rgb), 0.22), transparent 60%),
                linear-gradient(160deg, #faf7f8 0%, #f4eff1 100%);
            box-shadow: 0 18px 50px rgba(15, 23, 43, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.9);
        }
        .wc-hero:hover {
            box-shadow: 0 26px 60px rgba(var(--site-primary-rgb), 0.20), inset 0 1px 0 rgba(255, 255, 255, 0.95);
        }
        .wc-hero__metric {
            display: flex;
            align-items: baseline;
            gap: 10px;
        }
        .wc-hero__num {
            font-size: clamp(54px, 7vw, 86px);
            font-weight: 900;
            line-height: 0.9;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, var(--site-primary-light, #5b6bf0), var(--site-primary, #3b4fe8));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .wc-hero__unit {
            font-size: 14px;
            font-weight: 700;
            line-height: 1.3;
            color: #475569;
        }

        .stats-desktop-row {
            display: none;
        }
        .stats-mobile-grid {
            display: grid;
        }
        .blog-carousel {
            position: relative;
        }
        .blog-carousel-track {
            display: flex;
            gap: 28px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            scrollbar-width: none;
            padding: 2px 2px 18px;
            margin: -2px -2px -18px;
        }
        .blog-carousel-track::-webkit-scrollbar {
            display: none;
        }
        .blog-carousel-slide {
            flex: 0 0 calc((100% - 56px) / 3);
            min-width: 0;
            scroll-snap-align: start;
        }
        .blog-carousel-control {
            width: 40px;
            height: 40px;
            border-radius: 999px;
            border: 1px solid #fee2e2;
            background: #fff;
            color: #e31d22;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 24px rgba(227, 29, 34, .08);
            transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
        }
        .blog-carousel-control:hover {
            background: #fff5f5;
            box-shadow: 0 14px 30px rgba(227, 29, 34, .13);
            transform: translateY(-1px);
        }
        .blog-carousel-control:disabled {
            opacity: .38;
            cursor: default;
            transform: none;
            box-shadow: none;
        }
        @media (min-width: 1024px) {
            .stats-desktop-row {
                display: flex;
            }
            .stats-mobile-grid {
                display: none;
            }
        }
        @media (max-width: 1023px) {
            .blog-carousel-slide {
                flex-basis: calc((100% - 28px) / 2);
            }
        }
        @media (max-width: 767px) {
            .blog-carousel-slide {
                flex-basis: 86%;
            }
        }
        .social-marquee {
            position: relative;
            overflow: hidden;
            padding: 2px 0;
        }
        .social-marquee::before,
        .social-marquee::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 72px;
            z-index: 2;
            pointer-events: none;
        }
        .social-marquee::before {
            left: 0;
            background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
        }
        .social-marquee::after {
            right: 0;
            background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
        }
        .social-marquee-row {
            display: flex;
            width: max-content;
            gap: 8px;
            animation: social-marquee-left 24s linear infinite;
            will-change: transform;
        }
        .social-marquee-row + .social-marquee-row {
            margin-top: 10px;
        }
        .social-marquee-row.is-reverse {
            animation-name: social-marquee-right;
        }
        .social-marquee:hover .social-marquee-row {
            animation-play-state: paused;
        }
        .social-marquee-pill {
            flex: 0 0 auto;
        }
        :root {
            --home-h2-size: clamp(30px, 3vw, 42px);
            --home-h2-size-mobile: clamp(28px, 8vw, 34px);
            --home-h2-line-height: 1.16;
        }
        .home-section-title {
            color: var(--color-text, var(--text-primary, var(--dark)));
            font-size: var(--home-h2-size);
            font-weight: 900;
            line-height: var(--home-h2-line-height);
            letter-spacing: 0;
        }
        .home-section-title--light {
            color: var(--white);
        }
        .home-section-rule {
            width: 40px;
            height: 3px;
            background: var(--color-primary, var(--site-primary));
            border-radius: 99px;
        }
        @keyframes social-marquee-left {
            from { transform: translate3d(0, 0, 0); }
            to { transform: translate3d(calc(-50% - 4px), 0, 0); }
        }
        @keyframes social-marquee-right {
            from { transform: translate3d(calc(-50% - 4px), 0, 0); }
            to { transform: translate3d(0, 0, 0); }
        }
        .process-journey {
            --process-primary: var(--color-primary, var(--site-primary));
            --process-primary-dark: var(--color-primary-dark, var(--site-primary-dark));
            --process-secondary: var(--color-secondary, var(--warning));
            --process-accent: var(--color-accent, var(--secondary));
            --process-success: var(--color-success, var(--success));
            --process-bg: var(--color-background, var(--bg-primary, var(--white)));
            --process-surface: var(--color-surface, var(--bg-card, var(--white)));
            --process-text: var(--color-text, var(--text-primary, var(--dark)));
            --process-muted: var(--color-text-muted, var(--text-secondary, var(--gray)));
            --process-soft: var(--site-primary-soft);
            --process-soft-border: var(--site-primary-soft-border);
            --process-shadow: var(--shadow-sm, var(--shadow));
            position: relative;
            overflow: hidden;
            padding: 78px 0 74px;
            background:
                linear-gradient(180deg,
                    #ffffff 0,
                    rgba(255, 255, 255, 0) 150px,
                    rgba(255, 255, 255, 0) calc(100% - 120px),
                    #ffffff 100%),
                radial-gradient(circle at 8% 24%, color-mix(in srgb, var(--process-primary) 9%, transparent) 0 8%, transparent 24%),
                radial-gradient(circle at 92% 18%, color-mix(in srgb, var(--process-secondary) 9%, transparent) 0 10%, transparent 28%),
                var(--process-bg);
            color: var(--process-text);
            isolation: isolate;
        }
        .process-journey::before,
        .process-journey::after {
            content: '';
            position: absolute;
            z-index: 0;
            pointer-events: none;
            border-radius: 28px;
            background: linear-gradient(135deg, color-mix(in srgb, var(--process-primary) 28%, transparent), color-mix(in srgb, var(--process-surface) 72%, transparent));
            border: 1px solid color-mix(in srgb, var(--process-primary) 18%, transparent);
            box-shadow: var(--process-shadow);
        }
        .process-journey::before {
            left: clamp(18px, 6vw, 96px);
            top: 190px;
            width: 54px;
            height: 54px;
            transform: rotate(24deg);
            opacity: .54;
            filter: blur(.2px);
        }
        .process-journey::after {
            right: clamp(18px, 5vw, 82px);
            top: 142px;
            width: 74px;
            height: 74px;
            border-radius: 50%;
            opacity: .26;
        }
        .process-journey__inner {
            position: relative;
            z-index: 1;
            width: min(100% - 32px, 1280px);
            margin: 0 auto;
        }
        .process-journey__header {
            display: grid;
            justify-items: center;
            text-align: center;
            margin-bottom: clamp(56px, 6.2vw, 92px);
        }
        .process-journey__badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            min-height: 48px;
            padding: 0 30px;
            border-radius: 50px;
            border: 1px solid color-mix(in srgb, var(--process-primary) 28%, transparent);
            background: color-mix(in srgb, var(--process-primary) 10%, var(--process-surface));
            color: var(--process-primary);
            font-size: 14px;
            font-weight: 900;
            letter-spacing: .02em;
            text-transform: uppercase;
            box-shadow: 0 12px 28px color-mix(in srgb, var(--process-primary) 9%, transparent);
        }
        .process-journey__badge svg {
            width: 21px;
            height: 21px;
            flex: 0 0 auto;
        }
        .process-journey__title {
            max-width: 1320px;
            margin: 26px 0 18px;
            color: var(--process-text);
        }
        .process-journey__title span {
            color: var(--process-primary);
        }
        .process-journey__lead {
            max-width: 660px;
            margin: 0;
            color: var(--process-muted);
            font-size: 17px;
            line-height: 1.72;
        }
        .process-journey__rule {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            margin-top: 26px;
            color: var(--process-primary);
        }
        .process-journey__rule::before {
            content: '';
            width: 66px;
            height: 4px;
            border-radius: 999px;
            background: currentColor;
        }
        .process-journey__rule::after {
            content: '';
            width: 7px;
            height: 7px;
            border-radius: 999px;
            background: currentColor;
        }
        .process-journey__stage {
            position: relative;
            padding-top: 96px;
        }
        .process-journey__rocket-line {
            position: absolute;
            top: clamp(-232px, -17vw, -196px);
            left: 50%;
            width: min(1260px, 94vw);
            max-width: none;
            height: auto;
            transform: translateX(-50%);
            pointer-events: none;
            z-index: 0;
            opacity: .94;
            filter: drop-shadow(0 18px 34px color-mix(in srgb, var(--process-primary) 10%, transparent));
        }
        .process-journey__grid {
            position: relative;
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            gap: clamp(12px, 1.5vw, 20px);
            align-items: end;
        }
        .process-step {
            --step-color: var(--process-primary);
            --node-top: -78px;
            position: relative;
            min-width: 0;
        }
        .process-step.is-secondary {
            --step-color: var(--process-secondary);
        }
        .process-step.is-accent {
            --step-color: var(--process-accent);
        }
        .process-step.is-success {
            --step-color: var(--process-success);
        }
        .process-step.is-mixed {
            --step-color: color-mix(in srgb, var(--process-primary) 46%, var(--process-accent));
        }
        .process-step:nth-child(2) {
            --node-top: -72px;
        }
        .process-step:nth-child(3) {
            --node-top: -92px;
        }
        .process-step:nth-child(4) {
            --node-top: -74px;
        }
        .process-step:nth-child(5) {
            --node-top: -72px;
        }
        .process-step__node {
            position: absolute;
            left: 50%;
            top: var(--node-top);
            width: 42px;
            height: 42px;
            transform: translateX(-50%);
            border-radius: 50%;
            border: 9px solid var(--process-surface);
            background: var(--process-primary);
            box-shadow:
                0 12px 28px color-mix(in srgb, var(--process-primary) 18%, transparent),
                0 0 0 1px color-mix(in srgb, var(--process-primary) 18%, transparent);
            z-index: 2;
        }
        .process-step__node::after {
            content: '';
            position: absolute;
            left: 50%;
            top: calc(100% + 6px);
            width: 1px;
            height: 60px;
            transform: translateX(-50%);
            background: repeating-linear-gradient(180deg, color-mix(in srgb, var(--step-color) 70%, transparent) 0 6px, transparent 6px 13px);
            opacity: .7;
        }
        .process-step__card {
            position: relative;
            min-height: 284px;
            overflow: visible;
            padding: 30px 18px 24px;
            border: 1px solid transparent;
            border-radius: 20px;
            /* Liquid glass: bề mặt translucent + viền gradient theo màu bước (theme-aware). */
            background:
                linear-gradient(rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.72)) padding-box,
                linear-gradient(145deg, color-mix(in srgb, var(--step-color) 28%, transparent), color-mix(in srgb, var(--process-secondary) 14%, transparent)) border-box;
            box-shadow:
                0 4px 12px rgba(15, 23, 43, 0.04),
                inset 0 1px 0 rgba(255, 255, 255, 0.9),
                0 8px 20px color-mix(in srgb, var(--step-color) 5%, transparent);
            -webkit-backdrop-filter: blur(14px) saturate(150%);
            backdrop-filter: blur(14px) saturate(150%);
            text-align: center;
            transition: transform .24s ease, box-shadow .24s ease;
        }
        .process-step__card:hover {
            transform: translateY(-8px);
            box-shadow:
                0 4px 12px rgba(15, 23, 43, 0.04),
                inset 0 1px 0 rgba(255, 255, 255, 0.95),
                0 14px 30px color-mix(in srgb, var(--step-color) 9%, transparent);
        }
        @supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
            .process-step__card {
                background:
                    linear-gradient(#ffffff, #ffffff) padding-box,
                    linear-gradient(145deg, color-mix(in srgb, var(--step-color) 28%, transparent), color-mix(in srgb, var(--process-secondary) 14%, transparent)) border-box;
            }
        }
        .process-step.is-featured .process-step__card {
            min-height: 304px;
            transform: translateY(-10px) scale(1.025);
            box-shadow:
                0 4px 12px rgba(15, 23, 43, 0.04),
                inset 0 1px 0 rgba(255, 255, 255, 0.95),
                0 16px 36px color-mix(in srgb, var(--step-color) 10%, transparent);
        }
        .process-step.is-featured .process-step__card:hover {
            transform: translateY(-15px) scale(1.025);
        }
        .process-step__number {
            position: absolute;
            left: 18px;
            top: 18px;
            color: var(--step-color);
            font-size: clamp(38px, 3.5vw, 54px);
            font-weight: 900;
            line-height: 1;
            opacity: .12;
            letter-spacing: 0;
        }
        .process-step__icon {
            position: relative;
            z-index: 1;
            width: 84px;
            height: 84px;
            margin: -10px auto 14px;
            filter: drop-shadow(0 14px 16px color-mix(in srgb, var(--step-color) 16%, transparent));
        }
        .process-step.is-featured .process-step__icon {
            width: 102px;
            height: 102px;
            margin-top: -24px;
        }
        .process-step__icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        .process-step__title {
            margin: 0;
            color: var(--process-text);
            font-size: clamp(17px, 1.25vw, 20px);
            line-height: 1.28;
            font-weight: 900;
        }
        .process-step__title::after {
            content: '';
            display: block;
            width: 34px;
            height: 3px;
            margin: 13px auto 0;
            border-radius: 999px;
            background: var(--step-color);
        }
        .process-step__desc {
            margin: 18px auto 0;
            max-width: 205px;
            color: var(--process-muted);
            font-size: 14px;
            line-height: 1.66;
        }
        .process-step__arrow {
            position: absolute;
            left: 50%;
            bottom: -19px;
            display: grid;
            place-items: center;
            width: 38px;
            height: 38px;
            transform: translateX(-50%);
            border-radius: 50%;
            color: var(--step-color);
            background: var(--process-surface);
            border: 1px solid color-mix(in srgb, var(--step-color) 24%, transparent);
            box-shadow:
                var(--process-shadow),
                0 8px 18px color-mix(in srgb, var(--step-color) 16%, transparent);
            font-size: 25px;
            font-weight: 900;
            line-height: 1;
        }
        .process-journey__mobile-line {
            display: none;
        }
        @media (prefers-reduced-motion: reduce) {
            .motion-in, .float-slow, .float-slow-alt, .pulse-soft, .reveal-on-scroll, .social-marquee-row, .process-step__card {
                animation: none !important;
                opacity: 1 !important;
                transform: none !important;
                transition: none !important;
            }
        }
        @media (max-width: 1180px) {
            .process-step__card {
                min-height: 270px;
                padding-inline: 16px;
            }
            .process-step__icon {
                width: 76px;
                height: 76px;
            }
        }
        @media (max-width: 900px) {
            .process-journey {
                padding: 64px 0;
            }
            .process-journey__stage {
                padding-top: 0;
            }
            .process-journey__rocket-line {
                display: none;
            }
            .process-journey__grid {
                grid-template-columns: 1fr;
                max-width: 540px;
                margin: 0 auto;
                gap: 26px;
            }
            .process-journey__mobile-line {
                display: block;
                position: absolute;
                top: 0;
                bottom: 0;
                left: 28px;
                width: 2px;
                background: linear-gradient(180deg, color-mix(in srgb, var(--process-primary) 30%, transparent), color-mix(in srgb, var(--process-primary) 8%, transparent));
            }
            .process-step {
                padding-left: 56px;
            }
            .process-step__node {
                left: 28px;
                top: 28px;
                width: 30px;
                height: 30px;
                border-width: 7px;
                transform: translateX(-50%);
            }
            .process-step__node::after {
                display: none;
            }
            .process-step__card,
            .process-step.is-featured .process-step__card,
            .process-step.is-featured .process-step__card:hover {
                min-height: 0;
                transform: none;
            }
            .process-step__card {
                padding: 22px 18px 26px;
                text-align: left;
            }
            .process-step__icon,
            .process-step.is-featured .process-step__icon {
                width: 72px;
                height: 72px;
                margin: -8px 0 12px auto;
            }
            .process-step__title::after {
                margin-left: 0;
                margin-right: 0;
            }
            .process-step__desc {
                max-width: none;
                margin-left: 0;
            }
            .process-step__arrow {
                left: auto;
                right: 18px;
                bottom: -20px;
                transform: none;
            }
        }
        @media (max-width: 640px) {
            :root {
                --home-h2-size: var(--home-h2-size-mobile);
            }
            .process-journey {
                padding: 56px 0;
            }
            .process-journey::before,
            .process-journey::after {
                display: none;
            }
            .process-journey__title {
                font-size: var(--home-h2-size-mobile);
            }
            .process-journey__lead {
                font-size: 15px;
            }
            .process-journey__badge {
                min-height: 40px;
                padding-inline: 18px;
                font-size: 12px;
            }
        }

        /* ===== Stagger reveal cho luoi card (kich hoat khi .is-visible) =====
           Container giu nguyen vi tri; CAC CON tuan tu troi len theo nth-child.
           Dung chung observer cua .reveal-on-scroll (DOMContentLoaded script). */
        .reveal-stagger { opacity: 1; transform: none; }
        .reveal-stagger > * {
            opacity: 0;
            transform: translate3d(0, 22px, 0);
            transition: opacity .6s ease, transform .6s cubic-bezier(.2, .8, .2, 1);
        }
        .reveal-stagger.is-visible > * { opacity: 1; transform: translate3d(0, 0, 0); }
        .reveal-stagger.is-visible > *:nth-child(1) { transition-delay: .04s; }
        .reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .11s; }
        .reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .18s; }
        .reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .25s; }
        .reveal-stagger.is-visible > *:nth-child(5) { transition-delay: .32s; }
        .reveal-stagger.is-visible > *:nth-child(6) { transition-delay: .39s; }
        .reveal-stagger.is-visible > *:nth-child(7) { transition-delay: .46s; }
        .reveal-stagger.is-visible > *:nth-child(8) { transition-delay: .53s; }
        @media (prefers-reduced-motion: reduce) {
            .reveal-stagger > * {
                opacity: 1 !important;
                transform: none !important;
                transition: none !important;
            }
        }
        /* ===== Icon tile gradient cho section "Giai phap website toan dien"
           (dong bo voi .entry-ico cua section entry: nen gradient + glyph trang
           + shadow + inset highlight). Giu size 48px khop layout wc-card. ===== */
        .wc-ico {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            box-shadow: 0 8px 18px rgba(15, 23, 43, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.35);
            transition: transform .25s ease;
        }
        .wc-ico svg { color: #fff; }
        .wc-card:hover .wc-ico { transform: scale(1.06) rotate(-3deg); }
        .wc-ico--indigo  { background: linear-gradient(135deg, var(--site-primary-light, #5b6bf0), var(--site-primary, #3b4fe8)); }
        .wc-ico--emerald { background: linear-gradient(135deg, var(--site-primary-light, #5b6bf0), var(--site-primary, #3b4fe8)); }
        .wc-ico--amber   { background: linear-gradient(135deg, var(--site-primary-light, #5b6bf0), var(--site-primary, #3b4fe8)); }
        .wc-ico--violet  { background: linear-gradient(135deg, var(--site-primary-light, #5b6bf0), var(--site-primary, #3b4fe8)); }
        .wc-ico--sky     { background: linear-gradient(135deg, var(--site-primary-light, #5b6bf0), var(--site-primary, #3b4fe8)); }
        .wc-ico--rose    { background: linear-gradient(135deg, var(--site-primary-light, #5b6bf0), var(--site-primary, #3b4fe8)); }

        /* =====================================================================
           QUY TRÌNH — editorial split + timeline DỌC số ghost (thay rocket "trẻ con").
           Cột trái sticky (tiêu đề + CTA) · cột phải timeline node glass + rail + số ghost.
           Đồng bộ chất với crm-process; accent theo theme, node theo liquid-glass.
           ===================================================================== */
        .proc { padding: 64px 0; }
        .proc-split {
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: 40px;
            align-items: start;
        }
        @media (min-width: 1024px) {
            .proc-split { grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: 56px; }
            .proc-aside { position: sticky; top: 100px; }
        }
        .proc-title { margin: 14px 0 14px; }
        .proc-title span { color: var(--site-primary, #3B4FE8); }
        .proc-lead { max-width: 420px; margin-bottom: 24px; color: #64748b; font-size: 15px; line-height: 1.75; }

        .proc-steps { display: grid; gap: 0; }
        .proc-step {
            position: relative;
            display: grid;
            grid-template-columns: 66px 1fr;
            gap: 24px;
            padding-bottom: 30px;
        }
        /* Rail dọc nối các node — mảnh, fade theo tông site */
        .proc-step:not(:last-child)::before {
            content: '';
            position: absolute;
            top: 66px;
            left: 32px;
            width: 2px;
            height: calc(100% - 66px);
            background: linear-gradient(180deg, rgba(var(--site-primary-rgb), .32), rgba(var(--site-primary-rgb), .08));
        }
        .proc-step__node {
            position: relative;
            z-index: 1;
            width: 66px;
            height: 66px;
            display: grid;
            place-items: center;
            border-radius: 999px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.62);
            border: 1px solid rgba(255, 255, 255, 0.78);
            box-shadow: 0 10px 26px rgba(15, 23, 43, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
            -webkit-backdrop-filter: blur(18px) saturate(160%);
            backdrop-filter: blur(18px) saturate(160%);
            transition: transform .25s ease, box-shadow .25s ease;
        }
        .proc-step__node img { width: 38px; height: 38px; object-fit: contain; }
        .proc-step:hover .proc-step__node {
            transform: translateY(-3px);
            box-shadow: 0 16px 34px rgba(var(--site-primary-rgb), 0.20);
        }
        @supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
            .proc-step__node { background: rgba(255, 255, 255, 0.93); }
        }
        .proc-step__body { position: relative; padding-top: 4px; }
        .proc-step__ghost {
            position: absolute;
            top: -16px;
            right: 6px;
            z-index: 0;
            font-size: 66px;
            font-weight: 900;
            line-height: 1;
            color: rgba(var(--site-primary-rgb), 0.08);
            font-variant-numeric: tabular-nums;
            pointer-events: none;
        }
        .proc-step__title { position: relative; z-index: 1; margin-bottom: 7px; font-size: 17px; font-weight: 900; color: #0f172b; }
        .proc-step__desc { position: relative; z-index: 1; max-width: 52ch; color: #64748b; font-size: 14px; line-height: 1.7; }
        @media (max-width: 1023px) {
            .proc-aside { position: static; }
        }
        /* ===== Section eyebrow badge — liquid glass, kich thuoc DONG NHAT =====
           Cao 32px + padding ngang co dinh (moi badge bang nhau); inline-flex +
           nowrap nen chieu dai co gian theo content. Mau chu/icon theo theme. */
        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            height: 32px;
            padding: 0 16px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 700;
            line-height: 1;
            letter-spacing: .03em;
            color: var(--site-primary, #3B4FE8);
            white-space: nowrap;
            background: rgba(255, 255, 255, 0.55);
            border: 1px solid rgba(255, 255, 255, 0.7);
            box-shadow: 0 6px 18px rgba(15, 23, 43, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.85);
            -webkit-backdrop-filter: blur(16px) saturate(160%);
            backdrop-filter: blur(16px) saturate(160%);
        }
        .section-badge svg { width: 14px; height: 14px; flex: 0 0 auto; }
        @supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
            .section-badge { background: rgba(255, 255, 255, 0.93); }
        }