  
        /* ── Footer ─────────────────────────────────────────────── */
        .ft-wrapper {
            position: relative;
            z-index: 1;
            background: rgba(4, 8, 20, 0.95);
            border-top: 1px solid rgba(59, 130, 246, 0.15);
            padding: 60px 0 0;
        }

        .ft-brand-name {
            font-size: 1.4rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.02em;
            margin-bottom: 12px;
            display: block;
        }

        .ft-about-text {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.647);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .ft-social-list {
            display: flex;
            gap: 10px;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .ft-social-list li a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(59,130,246,0.12);
            border: 1px solid rgba(59,130,246,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.516);
            font-size: 0.85rem;
            transition: all 0.2s;
            text-decoration: none;
        }
        .ft-social-list li a:hover {
            background: rgba(37,99,235,0.35);
            border-color: #3b82f6;
            color: #fff;
        }

        .ft-heading {
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: rgba(255, 255, 255, 0.647);
            margin-bottom: 18px;
        }

        .ft-link-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .ft-link-list li {
            margin-bottom: 10px;
        }
        .ft-link-list li a {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.574);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: color 0.2s;
        }
        .ft-link-list li a i {
            font-size: 0.7rem;
            color: #3b82f6;
        }
        .ft-link-list li a:hover {
            color: #fff;
        }

        .ft-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 14px;
        }
        .ft-contact-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: rgba(37,99,235,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #60a5fa;
            font-size: 0.8rem;
            flex-shrink: 0;
            margin-top: 1px;
        }
        .ft-contact-text {
            font-size: 0.83rem;
            color: rgba(255, 255, 255, 0.574);
            line-height: 1.55;
        }
        .ft-contact-text a {
            color: rgba(255, 255, 255, 0.574);
            text-decoration: none;
            transition: color 0.2s;
        }
        .ft-contact-text a:hover { color: #fff; }

        .ft-newsletter-label {
            font-size: 0.83rem;
            color: rgba(255, 255, 255, 0.574);
            margin-bottom: 14px;
            line-height: 1.6;
        }
        .ft-newsletter-wrap {
            display: flex;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(59,130,246,0.25);
            background: rgba(255,255,255,0.04);
        }
        .ft-newsletter-wrap input {
            flex: 1;
            background: transparent;
            border: none;
            padding: 11px 16px;
            font-size: 0.83rem;
            color: #fff;
            outline: none;
        }
        .ft-newsletter-wrap input::placeholder { color: rgba(255, 255, 255, 0.647); }
        .ft-newsletter-wrap button {
            background: #2563eb;
            border: none;
            padding: 0 18px;
            color: #fff;
            font-size: 0.85rem;
            cursor: pointer;
            transition: background 0.2s;
        }
        .ft-newsletter-wrap button:hover { background: #1d4ed8; }

        .ft-divider {
            border-top: 1px solid rgba(59,130,246,0.1);
            margin-top: 48px;
            padding: 20px 0;
        }
        .ft-copyright {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.25);
            margin: 0;
        }
        .ft-copyright a {
            color: rgba(255,255,255,0.45);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s;
        }
        .ft-copyright a:hover { color: #fff; }
    
    
        /* ── Base ─────────────────────────────────────────────── */
        *  { box-sizing: border-box; }
        body {
            font-family: 'Inter', sans-serif;
            background-color: #060c1a;
            color: #e2e8f0;
            overflow-x: hidden;
        }

        /* ── CSS Background Pattern ───────────────────────────── */
        .bg-hero {
            position: relative;
            background-color: #060c1a;
            min-height: 100vh;
            overflow: hidden;
        }

        /* Dot-grid layer */
        .bg-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                radial-gradient(circle, rgba(59,130,246,0.18) 1px, transparent 1px);
            background-size: 40px 40px;
            z-index: 0;
            pointer-events: none;
        }

        /* Glowing blue radial blur */
        .bg-hero::after {
            content: '';
            position: absolute;
            top: -120px;
            left: 50%;
            transform: translateX(-50%);
            width: 900px;
            height: 600px;
            background: radial-gradient(ellipse at center,
                rgba(29, 78, 216, 0.25) 0%,
                rgba(6, 12, 26, 0) 70%);
            z-index: 0;
            pointer-events: none;
        }

        /* Circuit lines overlay */
        .circuit-lines {
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            opacity: 0.25;
            background-image:
                linear-gradient(rgba(59,130,246,0.3) 1px, transparent 1px),
                linear-gradient(90deg, rgba(59,130,246,0.3) 1px, transparent 1px),
                linear-gradient(rgba(59,130,246,0.08) 1px, transparent 1px),
                linear-gradient(90deg, rgba(59,130,246,0.08) 1px, transparent 1px);
            background-size: 160px 160px, 160px 160px, 40px 40px, 40px 40px;
        }

        /* ── Navbar ───────────────────────────────────────────── */
        .navbar-custom {
            background: rgba(6, 12, 26, 0.85);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(59,130,246,0.12);
            padding: 14px 0;
            position: relative;
            z-index: 100;
        }

        .navbar-brand-text {
            font-size: 1.35rem;
            font-weight: 400;
            color: #fff;
            letter-spacing: -0.02em;
        }

        .nav-pill {
            background: rgba(255,255,255,0.06);
            border-radius: 50px;
            padding: 6px 6px;
            display: flex;
            gap: 2px;
        }

        .nav-pill .nav-item-btn {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 7px 16px;
            border-radius: 50px;
            color: rgba(255,255,255,0.65);
            background: rgba(255,255,255,0.08);
            font-size: 0.875rem;
            font-weight: 300;
            text-decoration: none;
            transition: all 0.2s;
            cursor: pointer;
        }

        .nav-pill .nav-item-btn:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.375);
        }

        .nav-pill .nav-item-btn.active {
            background: #2563eb;
            color: #fff;
        }

        .nav-pill .nav-item-btn i {
            font-size: 0.9rem;
        }

        .btn-login {
            background: transparent;
            border: 1px solid rgba(255,255,255,0.2);
            color: #fff;
            padding: 8px 22px;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 500;
            transition: all 0.2s;
            text-decoration: none;
        }
        .btn-login:hover {
            border-color: rgba(255,255,255,0.5);
            color: #fff;
        }

        .btn-trial {
            background: linear-gradient(135deg, #2563eb, #1d4ed8);
            border: none;
            color: #fff;
            padding: 8px 22px;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            transition: all 0.25s;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(37,99,235,0.4);
        }
        .btn-trial:hover {
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            color: #fff;
            box-shadow: 0 6px 20px rgba(37,99,235,0.55);
            transform: translateY(-1px);
        }

        /* ── Hero ─────────────────────────────────────────────── */
        .hero-section {
            position: relative;
            z-index: 1;
            padding: 70px 0 70px;
            text-align: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.07);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 50px;
            padding: 6px 18px;
            font-size: 0.82rem;
            color: rgba(255,255,255,0.8);
            margin-bottom: 28px;
        }
        .hero-badge i { color: #fbbf24; font-size: 0.8rem; }

        .hero-title {
            font-size: clamp(2.5rem, 3vw, 3.2rem);
            font-weight: 600;
            color: #fff;
            line-height: 1.15;
            letter-spacing: -0.03em;
            margin-bottom: 20px;
        }

        .hero-subtitle {
            font-size: 1rem;
            color: rgba(255,255,255,0.5);
            max-width: 480px;
            margin: 0 auto 36px;
            line-height: 1.65;
        }

        .btn-hero {
            background: linear-gradient(135deg, 
                #3b82f6 0%, 
                #2563eb 40%, 
                #1d4ed8 70%, 
                #1e40af 100%
            );
            border: none;
            color: #fff;
            padding: 14px 32px;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
        }
        .btn-hero:hover {
            background: linear-gradient(135deg, 
                #60a5fa 0%, 
                #3b82f6 40%, 
                #2563eb 70%, 
                #1d4ed8 100%
            );
            transform: translateY(-2px);
        }
        /* Stacked avatars */
        .avatars-stack {
            display: inline-flex;
            align-items: center;
            margin-left: 16px;
            vertical-align: middle;
        }
        .avatars-stack img,
        .avatar-placeholder {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: 2px solid #060c1a;
            margin-left: -10px;
            object-fit: cover;
        }
        .avatars-stack .avatar-placeholder {
            background: linear-gradient(135deg, #3b82f6, #9333ea);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: 600;
            color: #fff;
        }
        .avatars-stack .avatar-placeholder:first-child { margin-left: 0; }

        /* ── Feature Cards Row ────────────────────────────────── */
        .cards-section {
            position: relative;
            z-index: 1;
            padding: 0 0 60px;
        }

        .feature-card {
            background: rgba(13, 22, 45, 0.85);
            border: 1px solid rgba(59,130,246,0.18);
            border-radius: 20px;
            padding: 24px;
            height: 100%;
            transition: transform 0.25s, box-shadow 0.25s;
            backdrop-filter: blur(8px);
        }
        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(37,99,235,0.2);
        }

        .card-icon-wrap {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(37,99,235,0.18);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 14px;
        }
        .card-icon-wrap i {
            font-size: 1.1rem;
            color: #60a5fa;
        }

        .card-title-sm {
            font-size: 0.95rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 14px;
        }

        /* Loan card inputs */
        .loan-input-row {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.07);
            border-radius: 10px;
            padding: 9px 14px;
            margin-bottom: 10px;
        }
        .loan-input-row i { color: rgba(255,255,255,0.35); font-size: 0.9rem; }
        .loan-input-row span {
            font-size: 0.82rem;
            color: rgba(255,255,255,0.4);
        }

        .btn-estimate {
            width: 100%;
            background: linear-gradient(135deg, #f8fafc, #e2e8f0);
            color: #1e293b;
            border: none;
            border-radius: 12px;
            padding: 11px;
            font-weight: 600;
            font-size: 0.88rem;
            margin-top: 4px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            transition: opacity 0.2s;
        }
        .btn-estimate:hover { opacity: 0.9; }
        .btn-estimate .arrow-circle {
            width: 28px;
            height: 28px;
            background: #2563eb;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
        }

        /* Expense tabs */
        .tab-pills-sm {
            display: flex;
            gap: 4px;
            margin-bottom: 18px;
        }
        .tab-pills-sm .tp {
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.78rem;
            font-weight: 500;
            color: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.2s;
        }
        .tab-pills-sm .tp.active,
        .tab-pills-sm .tp:hover {
            background: rgba(37,99,235,0.25);
            color: #93c5fd;
        }

        .total-spent-label {
            font-size: 0.78rem;
            color: rgba(255,255,255,0.4);
            margin-bottom: 4px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .total-spent-label span {
            color: #34d399;
            font-weight: 500;
            font-size: 0.75rem;
        }
        .total-amount {
            font-size: 1.5rem;
            font-weight: 700;
            color: #fff;
        }

        .expense-bar {
            height: 8px;
            background: linear-gradient(90deg, #2563eb, #3b82f6);
            border-radius: 4px;
            margin-top: 14px;
        }

        /* Risk bars */
        .risk-tabs {
            display: flex;
            gap: 4px;
            margin-bottom: 16px;
            flex-wrap: wrap;
        }
        .risk-tab {
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 500;
            color: rgba(255,255,255,0.5);
            background: rgba(255,255,255,0.06);
            cursor: pointer;
        }
        .risk-tab.active { background: rgba(37,99,235,0.3); color: #93c5fd; }

        .bar-chart {
            display: flex;
            align-items: flex-end;
            gap: 8px;
            height: 90px;
        }
        .bar-col {
            flex: 1;
            border-radius: 8px 8px 0 0;
            position: relative;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: 700;
            color: #fff;
            padding-bottom: 8px;
            background: linear-gradient(180deg, rgba(37,99,235,0.9), rgba(37,99,235,0.6));
            transition: opacity 0.2s;
        }
        .bar-col:hover { opacity: 0.85; }

        /* Rewards */
        .reward-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 6px 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .reward-row:last-of-type { border-bottom: none; }
        .reward-label {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.7);
        }
        .reward-badge {
            background: #2563eb;
            color: #fff;
            font-size: 0.72rem;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 20px;
        }
        .reward-badge.green { background: #059669; }
        .annual-rate {
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
            margin-top: 12px;
            margin-bottom: 6px;
        }
        .reward-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .reward-list li {
            font-size: 0.78rem;
            color: rgba(255,255,255,0.45);
            padding: 2px 0;
        }
        .reward-list li::before {
            content: '• ';
            color: #3b82f6;
        }

        /* ── Partners ─────────────────────────────────────────── */
        .partners-section {
            position: relative;
            z-index: 1;
            padding: 30px 0 60px;
            border-top: 1px solid rgba(255,255,255,0.05);
        }
        .partners-label {
            text-align: center;
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.647);
            margin-bottom: 28px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }
        .partner-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            font-weight: 800;
            color: rgba(255,255,255,0.25);
            letter-spacing: -0.02em;
            transition: color 0.2s;
            user-select: none;
        }
        .partner-logo:hover { color: rgba(255,255,255,0.55); }
        .partner-logo i { font-size: 1.4rem; margin-right: 5px; }

        /* ── Responsive ───────────────────────────────────────── */
        @media (max-width: 991px) {
            .nav-pill { display: none; }
        }
        @media (max-width: 767px) {
            .hero-section { padding: 50px 0 40px; }
            .hero-title { font-size: 1.5rem; }
        }
    
    
        /* ── Topbar ───────────────────────────────────────────── */
        .hd-topbar {
            background: rgba(3, 7, 18, 0.92);
            border-bottom: 1px solid rgba(59,130,246,0.1);
            padding: 7px 0;
            position: relative;
            z-index: 101;
        }
        .hd-topbar-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }
        .hd-topbar-list li a {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.45);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 7px;
            transition: color 0.2s;
        }
        .hd-topbar-list li a i { color: #60a5fa; font-size: 0.75rem; }
        .hd-topbar-list li a:hover { color: #fff; }

        /* ── Main Navbar ──────────────────────────────────────── */
        .navbar-custom {
            background: rgba(6, 12, 26, 0.92);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(59,130,246,0.12);
            padding: 10px 0;
            position: relative;
            z-index: 100;
            position: sticky;
            top: 0;
        }

        .navbar-logo img {
            height: 42px;
            width: auto;
            object-fit: contain;
        }

        /* Nav pill wrapper */
        .nav-pill {
            background: rgba(255,255,255,0.05);
            border-radius: 50px;
            padding: 5px;
            display: flex;
            gap: 2px;
            align-items: center;
        }

        .nav-item-btn {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 7px 15px;
            border-radius: 50px;
            color: rgba(255, 255, 255, 0.303);
            font-size: 0.845rem;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.2s;
            white-space: nowrap;
            position: relative;
        }
        .nav-item-btn i { font-size: 0.8rem; }
        .nav-item-btn:hover { color: #fff; background: rgba(255, 255, 255, 0.08); }
        .nav-item-btn.active { background: #2563eb; color: #fff; }

        /* Dropdown */
        .nav-has-dropdown { position: relative; }
        .nav-has-dropdown .nav-dropdown {
            position: absolute;
            top: calc(100% + 6px);
            left: 50%;
            transform: translateX(-50%) translateY(6px);
            background: rgba(8, 15, 35, 0.97);
            border: 1px solid rgba(59,130,246,0.2);
            border-radius: 14px;
            padding: 8px 0;
            min-width: 270px;
            z-index: 200;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
            backdrop-filter: blur(12px);
            /* hidden state */
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.18s ease, transform 0.18s ease,
                        visibility 0s ease 0.35s;
        }
        /* invisible bridge fills gap so mouse can travel from trigger → dropdown */
        .nav-has-dropdown .nav-dropdown::before {
            content: '';
            position: absolute;
            top: -14px;
            left: 0;
            right: 0;
            height: 14px;
        }
        .nav-has-dropdown:hover .nav-dropdown,
        .nav-has-dropdown .nav-dropdown:hover {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateX(-50%) translateY(0);
            transition: opacity 0.18s ease, transform 0.18s ease,
                        visibility 0s ease 0s;
        }
        .nav-dropdown li { list-style: none; }
        .nav-dropdown li a {
            display: flex;
            align-items: center;
            gap: 9px;
            padding: 9px 18px;
            font-size: 0.83rem;
            color: rgba(255,255,255,0.55);
            text-decoration: none;
            transition: all 0.18s;
        }
        .nav-dropdown li a i { color: #3b82f6; font-size: 0.72rem; width: 12px; }
        .nav-dropdown li a:hover { color: #fff; background: rgba(37,99,235,0.15); padding-left: 22px; }
        .nav-dropdown .dropdown-divider {
            border-top: 1px solid rgba(59,130,246,0.1);
            margin: 6px 14px;
        }

        /* Language switcher */
        .nav-lang-btn {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            border-radius: 50px;
            color: rgba(255,255,255,0.6);
            font-size: 0.845rem;
            text-decoration: none;
            transition: all 0.2s;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.08);
        }
        .nav-lang-btn img { width: 20px; height: 14px; object-fit: cover; border-radius: 2px; }
        .nav-lang-btn:hover { color: #fff; border-color: rgba(255,255,255,0.2); }

        .lang-dropdown {
            position: absolute;
            top: calc(100% + 6px);
            right: 0;
            background: rgba(8, 15, 35, 0.97);
            border: 1px solid rgba(59,130,246,0.2);
            border-radius: 12px;
            padding: 8px;
            min-width: 90px;
            z-index: 200;
            box-shadow: 0 16px 40px rgba(0,0,0,0.5);
            backdrop-filter: blur(12px);
            /* hidden state */
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transform: translateY(6px);
            transition: opacity 0.18s ease, transform 0.18s ease,
                        visibility 0s ease 0.35s;
        }
        /* invisible bridge fills gap */
        .lang-dropdown::before {
            content: '';
            position: absolute;
            top: -14px;
            left: 0;
            right: 0;
            height: 14px;
        }
        .nav-has-dropdown:hover .lang-dropdown,
        .lang-dropdown:hover {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateY(0);
            transition: opacity 0.18s ease, transform 0.18s ease,
                        visibility 0s ease 0s;
        }
        .lang-dropdown a {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 7px 10px;
            border-radius: 8px;
            color: rgba(255,255,255,0.6);
            font-size: 0.8rem;
            text-decoration: none;
            transition: all 0.18s;
        }
        .lang-dropdown a img { width: 22px; height: 15px; object-fit: cover; border-radius: 2px; }
        .lang-dropdown a:hover { background: rgba(37,99,235,0.2); color: #fff; }

        /* Mobile hamburger */
        .btn-nav-toggle {
            background: rgba(255,255,255,0.07);
            border: 1px solid rgba(255,255,255,0.1);
            color: #fff;
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.2s;
        }
        .btn-nav-toggle:hover { background: rgba(37,99,235,0.25); }

        /* Mobile collapse menu */
        .mobile-nav-menu {
            background: rgba(6,12,26,0.98);
            border-top: 1px solid rgba(59,130,246,0.12);
            padding: 12px 0 18px;
        }
        .mobile-nav-menu .mob-link {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 20px;
            color: rgba(255,255,255,0.6);
            font-size: 0.88rem;
            text-decoration: none;
            transition: all 0.18s;
        }
        .mobile-nav-menu .mob-link i { color: #3b82f6; width: 16px; text-align: center; }
        .mobile-nav-menu .mob-link:hover,
        .mobile-nav-menu .mob-link.active { color: #fff; background: rgba(37,99,235,0.12); }
        .mobile-sub-toggle {
            cursor: pointer;
            user-select: none;
        }
        .mobile-sub-menu { display: none; }
        .mobile-sub-menu .mob-link { padding-left: 46px; font-size: 0.82rem; }
        .mobile-sub-menu.open { display: block; }
    
    
        @import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
        body {
            font-family: "Kanit", sans-serif;
            font-style: normal;
        }
    

    
        /* ── Page Hero (shared by all inner pages) ─────────────── */
        .page-hero { position: relative; z-index: 1; padding: 0; text-align: center; }
        .highlight-strip-inner {
            position: relative;
            border-top: 1px solid rgba(59,130,246,0.15);
            border-bottom: 1px solid rgba(59,130,246,0.15);
            background: rgba(37,99,235,0.05);
            backdrop-filter: blur(6px);
            padding: 40px 0;
            overflow: hidden;
        }
        .highlight-strip-inner::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle, rgba(48,5,150,0.22) 1px, transparent 1px);
            background-size: 28px 28px;
            pointer-events: none;
            z-index: 0;
        }
        .highlight-strip-inner::after {
            content: '';
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%,-50%);
            width: 600px; height: 160px;
            background: radial-gradient(ellipse at center, rgba(37,99,235,0.22) 0%, transparent 70%);
            pointer-events: none;
            z-index: 0;
        }
        .page-hero-content {
            position: relative; z-index: 1;
            display: flex; flex-direction: column; align-items: center; gap: 14px;
        }
        .page-hero-badge {
            display: inline-flex; align-items: center; gap: 8px;
            background: rgba(37,99,235,0.18);
            border: 1px solid rgba(59,130,246,0.3);
            border-radius: 50px; padding: 5px 16px;
            font-size: 0.78rem; font-weight: 500;
            color: #93c5fd; letter-spacing: 0.04em;
        }
        .page-hero-badge i { font-size: 0.72rem; }
        .page-hero h2 {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 500; color: #fff;
            letter-spacing: -0.03em; margin: 0;
        }
        .page-hero-line { display: flex; align-items: center; gap: 12px; }
        .page-hero-line span {
            width: 40px; height: 1px;
            background: linear-gradient(90deg, transparent, rgba(59,130,246,0.6));
        }
        .page-hero-line span:last-child {
            background: linear-gradient(90deg, rgba(59,130,246,0.6), transparent);
        }
        .page-hero-dot {
            width: 6px; height: 6px; border-radius: 50%;
            background: #3b82f6; box-shadow: 0 0 8px rgba(59,130,246,0.7);
        }

        /* ── About Page ─────────────────────────────────────────── */
        .about-section { position: relative; z-index: 1; padding: 60px 0; }
        .about-title {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 600; color: #fff;
            letter-spacing: -0.03em; margin-bottom: 20px;
        }
        .about-text {
            font-size: 0.95rem; color: rgba(255,255,255,0.5);
            line-height: 1.8; margin-bottom: 16px;
        }

        /* ── Tech Stack ─────────────────────────────────────────── */
        .tech-section { position: relative; z-index: 1; padding: 0 0 80px; }
        .tech-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
        .tech-item {
            width: 110px; flex: 0 0 110px;
            background: rgba(13,22,45,0.8);
            border: 1px solid rgba(59,130,246,0.14);
            border-radius: 14px; padding: 10px 8px;
            display: flex; flex-direction: column;
            align-items: center; justify-content: center; gap: 8px;
            transition: all 0.25s; cursor: default;
        }
        .tech-item:hover {
            border-color: rgba(59,130,246,0.45);
            background: rgba(37,99,235,0.12);
            transform: translateY(-3px);
            box-shadow: 0 10px 28px rgba(37,99,235,0.15);
        }
        .tech-item img {
            height: 56px; width: auto; object-fit: contain;
            filter: brightness(0.85) saturate(0.9); transition: filter 0.25s;
            border-radius: 10px;
        }
        .tech-item:hover img { filter: brightness(1) saturate(1.1); }
        .tech-item span {
            font-size: 0.72rem; font-weight: 500;
            color: rgba(255,255,255,0.4); text-align: center;
        }

        /* ── Service Page ───────────────────────────────────────── */
        .service-intro { position: relative; z-index: 1; padding: 52px 0 36px; text-align: center; }
        .service-intro-title {
            font-size: clamp(1.4rem, 2.5vw, 2rem);
            font-weight: 700; color: #fff;
            letter-spacing: -0.03em; margin-bottom: 12px;
        }
        .service-intro-text {
            font-size: 0.92rem; color: rgba(255,255,255,0.45);
            line-height: 1.8; max-width: 620px; margin: 0 auto;
        }
        .services-section { position: relative; z-index: 1; padding: 0 0 80px; }
        .service-card {
            display: flex; align-items: center; gap: 18px;
            background: rgba(13,22,45,0.82);
            border: 1px solid rgba(59,130,246,0.14);
            border-radius: 16px; padding: 20px 22px;
            text-decoration: none; height: 100%;
            transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
        }
        .service-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 14px 36px rgba(37,99,235,0.2);
            border-color: rgba(59,130,246,0.4);
        }
        .service-card-icon {
            width: 56px; height: 56px; border-radius: 14px;
            background: rgba(37,99,235,0.15);
            border: 1px solid rgba(59,130,246,0.2);
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0; transition: background 0.25s;
        }
        .service-card:hover .service-card-icon { background: rgba(37,99,235,0.28); }
        .service-card-icon img { width: 28px; height: 28px; filter: invert(1) brightness(2); }
        .service-card-content h2 {
            font-size: 0.95rem; font-weight: 600;
            color: #fff; margin: 0 0 6px; line-height: 1.35;
        }
        .service-card-content p {
            font-size: 0.8rem; color: rgba(255,255,255,0.4);
            margin: 0; line-height: 1.6;
            display: -webkit-box; -webkit-line-clamp: 2;
            -webkit-box-orient: vertical; overflow: hidden;
        }
        .service-card-arrow {
            margin-left: auto; flex-shrink: 0;
            width: 30px; height: 30px; border-radius: 50%;
            background: rgba(37,99,235,0.12);
            display: flex; align-items: center; justify-content: center;
            color: #60a5fa; font-size: 0.7rem;
            transition: background 0.2s, transform 0.2s;
        }
        .service-card:hover .service-card-arrow {
            background: #2563eb; color: #fff; transform: translateX(2px);
        }

        /* ── Blog / Article Page ────────────────────────────────── */
        .article-section { position: relative; z-index: 1; padding: 52px 0 64px; }
        .article-hero-img {
            width: 100%; border-radius: 16px; overflow: hidden;
            border: 1px solid rgba(59,130,246,0.15); margin-bottom: 24px;
        }
        .article-hero-img img { width: 100%; height: auto; display: block; }
        .article-meta {
            display: flex; align-items: center; gap: 16px;
            font-size: 0.82rem; color: rgba(255,255,255,0.4); margin-bottom: 16px;
        }
        .article-meta i { color: #3b82f6; }
        .article-meta .cat-badge {
            background: rgba(37,99,235,0.18);
            border: 1px solid rgba(59,130,246,0.25);
            border-radius: 50px; padding: 2px 12px;
            color: #93c5fd; font-size: 0.75rem;
        }
        .article-toc {
            background: rgba(13,22,45,0.8);
            border: 1px solid rgba(59,130,246,0.14);
            border-radius: 12px; padding: 16px 20px; margin-bottom: 24px;
        }
        .article-toc-title {
            font-size: 0.78rem; font-weight: 600; color: #93c5fd;
            text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px;
        }
        .article-toc a {
            display: flex; align-items: center; gap: 8px;
            color: rgba(255,255,255,0.55); font-size: 0.83rem;
            text-decoration: none; padding: 3px 0; transition: color 0.2s;
        }
        .article-toc a:hover { color: #60a5fa; }
        .article-toc a::before {
            content: ''; width: 4px; height: 4px; border-radius: 50%;
            background: #3b82f6; flex-shrink: 0;
        }
        .article-divider { border: none; border-top: 1px solid rgba(59,130,246,0.12); margin: 20px 0; }
        .article-body { color: rgba(255,255,255,0.75); line-height: 1.9; font-size: 0.92rem; }
        .article-body h3 {
            font-size: 1.1rem; font-weight: 600; color: #fff;
            margin: 32px 0 12px; padding-left: 12px; border-left: 3px solid #2563eb;
        }
        .article-body img { max-width: 100%; border-radius: 10px; }
        .article-body a { color: #60a5fa; }
        .article-body ul, .article-body ol { padding-left: 1.4rem; }

        /* ── Related / Blog Listing ─────────────────────────────── */
        .related-section { position: relative; z-index: 1; padding: 0 0 80px; }
        .related-title {
            font-size: 1.1rem; font-weight: 600; color: #fff;
            letter-spacing: -0.02em; margin-bottom: 24px;
            display: flex; align-items: center; gap: 10px;
        }
        .related-title::after {
            content: ''; flex: 1; height: 1px;
            background: linear-gradient(90deg, rgba(59,130,246,0.3), transparent);
        }
        .blog-card {
            background: rgba(13,22,45,0.82);
            border: 1px solid rgba(59,130,246,0.14);
            border-radius: 16px; overflow: hidden;
            display: flex; flex-direction: column; height: 100%;
            text-decoration: none;
            transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
        }
        .blog-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 14px 36px rgba(37,99,235,0.18);
            border-color: rgba(59,130,246,0.35);
        }
        .blog-card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
        .blog-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
        .blog-card-meta {
            display: flex; justify-content: space-between;
            font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-bottom: 8px;
        }
        .blog-card-cat {
            background: rgba(37,99,235,0.18);
            border: 1px solid rgba(59,130,246,0.2);
            border-radius: 50px; padding: 1px 10px;
            color: #93c5fd; font-size: 0.7rem;
        }
        .blog-card h2 {
            font-size: 0.9rem; font-weight: 600;
            color: #fff; margin: 0 0 8px; line-height: 1.45;
        }
        .blog-card p {
            font-size: 0.78rem; color: rgba(255,255,255,0.38);
            line-height: 1.6; margin: 0;
            display: -webkit-box; -webkit-line-clamp: 3;
            -webkit-box-orient: vertical; overflow: hidden;
        }
    
        .hero-section .hero-title {
            font-size: clamp(1.5rem, 3vw, 2.2rem);
        }

        /* ซ่อนลูกศร ค่อยแสดงเมื่อ hover */
        #heroCarousel .carousel-control-prev,
        #heroCarousel .carousel-control-next {
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        #heroCarousel:hover .carousel-control-prev,
        #heroCarousel:hover .carousel-control-next {
            opacity: 0.8;
        }

        /* มือถือ: ซ่อนถาวร ไม่มี hover */
        @media (max-width: 768px) {
            #heroCarousel .carousel-control-prev,
            #heroCarousel .carousel-control-next {
                display: none !important;
            }
        }

        /* ── Modern Feature Cards ── */
        .feature-card {
            background: linear-gradient(145deg, rgba(15,23,42,0.9), rgba(20,30,55,0.85));
            border: 1px solid rgba(99,130,246,0.2);
            border-radius: 24px;
            padding: 32px 28px;
            height: 100%;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
            backdrop-filter: blur(12px);
        }
        .feature-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 24px;
            background: linear-gradient(135deg, rgba(99,102,241,0.06), rgba(37,99,235,0.03));
            pointer-events: none;
        }
        .feature-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 50px rgba(37,99,235,0.25);
            border-color: rgba(99,130,246,0.45);
        }

        .card-icon-modern {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.6rem;
        }
        .card-icon-modern.blue  { background: rgba(37,99,235,0.15);  color: #60a5fa; }
        .card-icon-modern.purple{ background: rgba(139,92,246,0.15); color: #a78bfa; }
        .card-icon-modern.emerald{ background: rgba(16,185,129,0.15); color: #34d399; }

        .card-tag {
            display: inline-block;
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #60a5fa;
            background: rgba(37,99,235,0.12);
            border-radius: 50px;
            padding: 3px 12px;
            margin-bottom: 10px;
        }
        .card-tag.purple { color: #a78bfa; background: rgba(139,92,246,0.12); }
        .card-tag.emerald{ color: #34d399; background: rgba(16,185,129,0.12); }

        .card-heading {
            font-size: 1.05rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
            line-height: 1.35;
        }
        .card-desc {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.5);
            line-height: 1.7;
            margin: 0;
        }
        .card-divider {
            border: none;
            border-top: 1px solid rgba(255,255,255,0.06);
            margin: 18px 0;
        }
        .card-link {
            font-size: 0.82rem;
            font-weight: 600;
            color: #60a5fa;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap 0.2s;
        }
        .card-link:hover { gap: 10px; color: #93c5fd; }
        .card-link.purple { color: #a78bfa; }
        .card-link.purple:hover { color: #c4b5fd; }
        .card-link.emerald { color: #34d399; }
        .card-link.emerald:hover { color: #6ee7b7; }

        /* ── Section Label ── */
        .section-eyebrow {
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #60a5fa;
            margin-bottom: 12px;
            display: block;
        }
        .section-heading {
            font-size: clamp(1.4rem, 3vw, 2rem);
            font-weight: 500;
            color: #fff;
            line-height: 1.25;
            margin-bottom: 14px;
        }
        .section-subtext {
            font-size: 0.92rem;
            color: rgba(255,255,255,0.5);
            line-height: 1.7;
            max-width: 620px;
            margin: 0 auto;
        }

        /* ── About / Partners ── */
        .about-section {
            padding: 80px 0 60px;
            position: relative;
            z-index: 1;
            background: rgba(99,102,241,0.03);
        }
        .partner-img-wrap {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 16px;
            padding: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.25s, border-color 0.25s;
        }
        .partner-img-wrap:hover {
            background: rgba(255,255,255,0.08);
            border-color: rgba(99,130,246,0.35);
        }
        .partner-img-wrap img {
            max-height: 100%;
            max-width: 100%;
            object-fit: contain;
            border-radius: 16px;
            opacity: 0.95;
            transition: opacity 0.25s;
        }
        .partner-img-wrap:hover img { opacity: 1; }

        /* ── Tech Stack ── */
        .techstack-section {
            padding: 70px 0;
            background: rgba(37,99,235,0.06);
            border-top: 1px solid rgba(99,130,246,0.12);
            border-bottom: 1px solid rgba(99,130,246,0.12);
            position: relative;
            z-index: 1;
        }
        .tech-chip {
            background: rgba(15,23,42,0.8);
            border: 1px solid rgba(99,130,246,0.18);
            border-radius: 14px;
            padding: 14px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
            backdrop-filter: blur(8px);
        }
        .tech-chip:hover {
            transform: translateY(-4px);
            border-color: rgba(99,130,246,0.45);
            box-shadow: 0 10px 30px rgba(37,99,235,0.2);
        }
        .tech-chip img {
            height: 36px;
            width: 36px;
            object-fit: contain;
            opacity: 0.75;
        }
        .tech-chip:hover img { opacity: 1; }
        .tech-chip span {
            font-size: 0.72rem;
            color: rgba(255,255,255,0.5);
            font-weight: 500;
        }

        /* ── Our Services ── */
        .services-new-section {
            padding: 80px 0 60px;
            position: relative;
            z-index: 1;
            background: rgba(99,102,241,0.03);
        }
        .service-new-card {
            background: linear-gradient(145deg, rgba(15,23,42,0.9), rgba(20,30,55,0.85));
            border: 1px solid rgba(99,130,246,0.15);
            border-radius: 20px;
            padding: 28px 24px;
            height: 100%;
            display: flex;
            gap: 18px;
            align-items: flex-start;
            transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
            backdrop-filter: blur(10px);
        }
        .service-new-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(37,99,235,0.2);
            border-color: rgba(99,130,246,0.4);
        }
        .service-new-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            background: rgba(37,99,235,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 2.4rem;
            color: #60a5fa;
            transition: transform 0.25s;
        }
        .service-new-card:hover .service-new-icon {
            transform: scale(1.08);
        }
        .service-new-card:nth-child(2) .service-new-icon { background: rgba(139,92,246,0.15); color: #a78bfa; }
        .service-new-card:nth-child(3) .service-new-icon { background: rgba(16,185,129,0.15); color: #34d399; }
        .service-new-card:nth-child(4) .service-new-icon { background: rgba(245,158,11,0.15); color: #fbbf24; }
        .service-new-title {
            font-size: 0.95rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 6px;
        }
        .service-new-desc {
            font-size: 0.82rem;
            color: rgba(255,255,255,0.5);
            line-height: 1.65;
            margin: 0;
        }

        /* ── Call to Action ── */
        .cta-section {
            padding: 70px 0;
            position: relative;
            z-index: 1;
        }
        .cta-box {
            background: linear-gradient(135deg, rgba(37,99,235,0.18), rgba(139,92,246,0.12));
            border: 1px solid rgba(99,130,246,0.25);
            border-radius: 28px;
            padding: 50px 40px;
            text-align: center;
            backdrop-filter: blur(16px);
            position: relative;
            overflow: hidden;
        }
        .cta-box::before {
            content: '';
            position: absolute;
            top: -60px; right: -60px;
            width: 220px; height: 220px;
            background: rgba(99,102,241,0.08);
            border-radius: 50%;
            pointer-events: none;
        }
        .cta-contact-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 6px;
            width: 100%;
            background: rgba(255,255,255,0.07);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 16px;
            padding: 14px 20px;
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            font-size: 0.78rem;
            font-weight: 600;
            transition: all 0.25s;
        }
        .cta-contact-btn i { font-size: 2rem; }
        .cta-contact-btn:hover {
            background: rgba(37,99,235,0.25);
            border-color: rgba(99,130,246,0.5);
            color: #fff;
            transform: translateY(-3px);
        }
        .cta-btn-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 12px;
            width: 100%;
        }
        @media (max-width: 768px) {
            .cta-btn-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* ── Blog ── */
        .blog-new-section {
            padding: 50px 0 60px;
            position: relative;
            z-index: 1;
        }
        .blog-card {
            background: linear-gradient(145deg, rgba(15,23,42,0.9), rgba(20,30,55,0.85));
            border: 1px solid rgba(99,130,246,0.15);
            border-radius: 20px;
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
            text-decoration: none;
            transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
            backdrop-filter: blur(10px);
        }
        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 45px rgba(37,99,235,0.22);
            border-color: rgba(99,130,246,0.4);
        }
        .blog-img-wrap {
            overflow: hidden;
            height: 180px;
        }
        .blog-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .blog-card:hover .blog-img-wrap img { transform: scale(1.05); }
        .blog-body {
            padding: 20px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        .blog-meta {
            display: flex;
            justify-content: space-between;
            font-size: 0.75rem;
            color: rgba(255,255,255,0.35);
            margin-bottom: 10px;
        }
        .blog-cat {
            background: rgba(37,99,235,0.15);
            color: #60a5fa;
            border-radius: 50px;
            padding: 2px 10px;
            font-size: 0.72rem;
            font-weight: 600;
        }
        .blog-title {
            font-size: 0.95rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .blog-excerpt {
            font-size: 0.82rem;
            color: rgba(255,255,255,0.45);
            line-height: 1.65;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex-grow: 1;
        }
        .blog-readmore {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.8rem;
            font-weight: 600;
            color: #60a5fa;
            margin-top: 14px;
            transition: gap 0.2s;
        }
        .blog-card:hover .blog-readmore { gap: 10px; }