/* Reading Progress Bar */
        .read-progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            width: 0%;
            background: linear-gradient(90deg, #2d4791, #4a6abf, #6b8fd4);
            z-index: 9999;
            transition: width 0.08s linear;
            border-radius: 0 2px 2px 0;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: "Poppins", sans-serif; overflow-x: hidden; background: #f0f4fb; color: #1a1a2e; }

        /* ===== NAVBAR ===== */
        .navbar {
            position: fixed; top: 0; left: 0; right: 0; height: 64px; padding: 0 5%;
            display: flex; justify-content: space-between; align-items: center;
            background: #fff; z-index: 1000; border-bottom: 1px solid #e5e7eb;
            box-shadow: 0 1px 8px rgba(45,71,145,0.06);
            transition: top .4s, left .4s, right .4s, border-radius .4s, box-shadow .4s, background .4s, padding .4s, border-color .4s;
        }
        .logo img { width: 130px; height: 48px; object-fit: contain; }
        .nav-links { display: flex; gap: 36px; align-items: center; }
        .nav-links a {
            color: #374151; text-decoration: none; font-weight: 500; font-size: 14px;
            transition: color .2s, border-color .2s;
            border-bottom: 2px solid transparent; padding-bottom: 4px;
        }
        .nav-links a:hover { color: #2d4791; border-bottom-color: #2d4791; }
        .nav-links a.active { color: #2d4791; border-bottom-color: #2d4791; }
        .nav-cta-group { display: flex; align-items: center; gap: 12px; }
        .cta-btn {
            font-family: "Poppins", sans-serif; padding: 9px 20px;
            background: #2d4791; border: 2px solid #2d4791; border-radius: 8px;
            color: #fff; font-weight: 600; font-size: 13px; cursor: pointer;
            transition: background .2s; white-space: nowrap;
        }
        .cta-btn:hover { background: #1e3370; border-color: #1e3370; }
        .cta-btn-outline {
            font-family: "Poppins", sans-serif; padding: 9px 20px;
            background: #fff; border: 2px solid #2d4791; border-radius: 8px;
            color: #2d4791; font-weight: 600; font-size: 13px; cursor: pointer;
            transition: background .2s, color .2s; white-space: nowrap;
            text-decoration: none; display: inline-flex; align-items: center;
        }
        .cta-btn-outline:hover { background: #e8edf8; color: #2d4791; }
        .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; z-index: 1001; }
        .hamburger span { width: 24px; height: 2.5px; background: #374151; border-radius: 2px; transition: all .3s; }
        .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(7px,7px); }
        .hamburger.active span:nth-child(2) { opacity: 0; }
        .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px,-6px); }

        /* ===== HERO ===== */
        .hero {
            background: linear-gradient(135deg, #0f172a 0%, #1e3370 55%, #2d4791 100%);
            padding: 130px 5% 100px; text-align: center;
            position: relative; overflow: hidden; min-height: auto;
            display: block; align-items: unset; justify-content: unset;
        }
        .hero::before {
            content: ''; position: absolute; inset: 0;
            background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1.5px, transparent 1.5px);
            background-size: 30px 30px; pointer-events: none;
        }
        .hero::after {
            content: ''; position: absolute; top: -100px; right: -80px;
            width: 500px; height: 500px; border-radius: 50%;
            background: radial-gradient(circle, rgba(74,106,191,0.25) 0%, transparent 70%); pointer-events: none;
        }
        .hero-bg, .floating-shapes, .shape { display: none; }
        .hero-content { position: relative; z-index: 1; max-width: 860px; margin: 0 auto; padding: 0; }
        .hero-badge {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 8px 20px; background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.25); border-radius: 50px;
            font-size: 13px; font-weight: 600; color: #fff;
            margin-bottom: 28px; letter-spacing: 0.3px;
        }
        .hero h1 {
            font-size: 42px; font-weight: 700; color: #fff;
            line-height: 1.25; margin-bottom: 22px; letter-spacing: -0.3px;
            background: none; -webkit-text-fill-color: #fff; -webkit-background-clip: unset; background-clip: unset;
        }
        .hero p { font-size: 16px; color: rgba(255,255,255,0.75); line-height: 1.75; margin-bottom: 0; }
        .sub-hero-content1 { margin-bottom: 36px; }
        .sub-hero-content2 {
            background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
            border-radius: 16px; padding: 22px 32px; font-style: italic;
            font-size: 15px !important; color: rgba(255,255,255,0.85) !important;
            margin-top: 36px; margin-bottom: 0; max-width: 700px; margin-left: auto; margin-right: auto;
        }

        /* ===== SECTION COMMON ===== */
        .features, .services { padding: 50px 5%; background: #fff; }
        .section-title { text-align: center; margin-bottom: 52px; }
        .section-badge {
            display: inline-block; padding: 6px 18px;
            background: #e8edf8; border-radius: 50px;
            font-size: 12px; font-weight: 700; color: #2d4791;
            text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px;
        }
        .section-title h2 { font-size: 26px; font-weight: 700; color: #1a1a2e; margin-bottom: 12px; letter-spacing: -0.3px; }
        .section-title p { font-size: 15px; color: #6b7280; max-width: 560px; margin: 0 auto; line-height: 1.7; }

        /* ===== FEATURES GRID ===== */
        .features-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 24px; max-width: 1400px; margin: 0 auto;
        }
        .feature-card {
            background: #fff; border: 1px solid #e0e7f5; border-radius: 18px;
            padding: 32px; transition: transform .25s, box-shadow .25s, border-color .25s;
            position: relative; overflow: hidden;
            opacity: 1; transform: none;
        }
        .feature-card::before { display: none; }
        .feature-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(45,71,145,0.13); border-color: #b0c0e8; }
        .feature-icon {
            width: 48px; height: 48px; background: #e8edf8;
            border-radius: 14px; display: flex; align-items: center;
            justify-content: center; font-size: 22px; margin-bottom: 20px;
        }
        .feature-card h3 { font-size: 17px; font-weight: 700; color: #1a1a2e; margin-bottom: 10px; }
        .feature-card p { font-size: 13.5px; color: #6b7280; line-height: 1.7; }

        /* ===== FEATURES BENTO GRID ===== */
        .feat-bento {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .feat-bento-card {
            border-radius: 18px;
            padding: 32px 28px;
            position: relative;
            overflow: hidden;
            transition: transform 0.25s, box-shadow 0.25s;
        }
        .feat-bento-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(45,71,145,0.12); }

        /* Wide card: spans 2 cols */
        .feat-bento-wide { grid-column: span 2; }

        /* Dark (AI) card */
        .feat-bento-dark {
            background: linear-gradient(135deg, #1e3370 0%, #2d4791 100%);
            color: #fff;
        }
        .feat-bento-dark h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 10px; }
        .feat-bento-dark p  { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 20px; }

        /* Light tint card */
        .feat-bento-light { background: #eef2ff; border: 1px solid #d4def8; }
        .feat-bento-light h3 { font-size: 17px; font-weight: 700; color: #1a1a2e; margin-bottom: 10px; }
        .feat-bento-light p  { font-size: 13.5px; color: #4b5563; line-height: 1.7; }

        /* White cards */
        .feat-bento-white { background: #fff; border: 1px solid #e0e7f5; }
        .feat-bento-white h3 { font-size: 16px; font-weight: 700; color: #1a1a2e; margin-bottom: 8px; }
        .feat-bento-white p  { font-size: 13px; color: #6b7280; line-height: 1.7; }

        /* Number badge */
        .feat-bento-num {
            font-size: 11px; font-weight: 700; color: #2d4791;
            background: #e8edf8; border-radius: 6px;
            padding: 2px 8px; display: inline-block; margin-bottom: 14px;
        }

        /* Tag badge (AI card) */
        .feat-bento-tag {
            display: inline-block; font-size: 11px; font-weight: 700;
            background: rgba(255,255,255,0.18); color: rgba(255,255,255,0.95);
            border-radius: 20px; padding: 3px 12px; margin-bottom: 20px;
            letter-spacing: 0.5px;
        }

        /* Icon */
        .feat-bento-icon {
            width: 52px; height: 52px; border-radius: 14px;
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 18px;
            background: rgba(255,255,255,0.15); color: #fff;
        }
        .feat-bento-icon-blue {
            background: #e8edf8; color: #2d4791;
        }

        /* Chips row (AI card) */
        .feat-bento-chips { display: flex; gap: 8px; flex-wrap: wrap; }
        .feat-bento-chips span {
            font-size: 11.5px; font-weight: 600;
            background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.95);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 20px; padding: 4px 12px;
        }

        @media (max-width: 960px) {
            .feat-bento { grid-template-columns: repeat(2, 1fr); }
            .feat-bento-wide { grid-column: span 2; }
        }
        @media (max-width: 600px) {
            .feat-bento { grid-template-columns: 1fr; }
            .feat-bento-wide { grid-column: span 1; }
        }

        /* ===== MODULE GRID (Services Section) ===== */
        .module-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto 60px;
        }
        .module-card {
            display: flex;
            gap: 24px;
            background: #fff;
            border: 1px solid #e0e7f5;
            border-radius: 18px;
            padding: 32px 28px;
            transition: transform 0.25s, box-shadow 0.25s;
        }
        .module-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(45,71,145,0.1); }
        .module-card-dark {
            background: linear-gradient(135deg, #1e3370 0%, #2d4791 100%);
            border-color: transparent;
        }
        .module-card-left {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            min-width: 72px;
        }
        .module-icon-wrap {
            width: 56px; height: 56px;
            background: #e8edf8; border-radius: 16px;
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
        }
        .module-icon-wrap-light { background: rgba(255,255,255,0.18); }
        .module-tag {
            font-size: 10px; font-weight: 700;
            color: #2d4791; background: #e8edf8;
            border-radius: 20px; padding: 3px 10px;
            text-align: center; white-space: nowrap;
            letter-spacing: 0.3px;
        }
        .module-tag-light {
            color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.15);
        }
        .module-card-body { flex: 1; }
        .module-card-body h3 { font-size: 17px; font-weight: 700; color: #1a1a2e; margin-bottom: 8px; }
        .module-card-dark .module-card-body h3 { color: #fff; }
        .module-card-body > p { font-size: 13.5px; color: #6b7280; line-height: 1.7; margin-bottom: 16px; }
        .module-card-dark .module-card-body > p { color: rgba(255,255,255,0.75); }
        .module-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
        .module-list li {
            font-size: 13px; color: #4b5563;
            display: flex; align-items: center; gap: 8px;
        }
        .module-list li::before { content: '✓'; color: #2d4791; font-weight: 700; flex-shrink: 0; }
        .module-list-light li { color: rgba(255,255,255,0.85); }
        .module-list-light li::before { color: rgba(255,255,255,0.7); }

        /* Ecosystem strip */
        .ecosystem-strip {
            max-width: 1200px; margin: 0 auto;
            background: #f4f7fd; border: 1px solid #e0e7f5;
            border-radius: 16px; padding: 24px 32px;
            display: flex; align-items: center; gap: 24px;
            flex-wrap: wrap;
        }
        .ecosystem-strip-label {
            display: flex; align-items: center; gap: 8px;
            font-size: 13px; font-weight: 700; color: #1a1a2e;
            white-space: nowrap;
        }
        .ecosystem-steps {
            display: flex; align-items: center; gap: 8px;
            flex: 1; flex-wrap: wrap;
        }
        .eco-step {
            display: flex; flex-direction: column; align-items: center; gap: 6px;
        }
        .eco-step-icon {
            width: 40px; height: 40px; background: #e8edf8;
            border-radius: 12px; display: flex; align-items: center; justify-content: center;
        }
        .eco-step-icon-final { background: #2d4791; }
        .eco-step span { font-size: 11px; font-weight: 600; color: #4b5563; text-align: center; }
        .eco-step-final span { color: #2d4791; }
        .eco-arrow { font-size: 18px; color: #b0c0e8; font-weight: 300; }

        @media (max-width: 768px) {
            .module-grid { grid-template-columns: 1fr; }
            .ecosystem-strip { flex-direction: column; align-items: flex-start; }
            .ecosystem-steps { gap: 6px; }
        }

        /* ===== COMPREHENSIVE MODULES ===== */
        .comprehensive-services {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 28px; max-width: 1200px; margin: 0 auto 60px;
        }
        .comprehensive-card {
            background: #fff; border: 1px solid #e0e7f5; border-radius: 18px;
            padding: 36px; transition: transform .25s, box-shadow .25s;
            position: relative; overflow: hidden; box-shadow: 0 4px 16px rgba(45,71,145,0.06);
            opacity: 1; transform: none;
        }
        .comprehensive-card::before { display: none; }
        .comprehensive-card:hover { transform: translateY(-6px); box-shadow: 0 20px 52px rgba(45,71,145,0.13); }
        .comprehensive-icon {
            width: 56px; height: 56px; background: #e8edf8;
            border-radius: 16px; display: flex; align-items: center;
            justify-content: center; font-size: 26px; margin-bottom: 20px;
        }
        .comprehensive-card h3 { font-size: 19px; font-weight: 700; color: #1a1a2e; margin-bottom: 6px; }
        .service-category {
            color: #2d4791; font-size: 11px; font-weight: 700;
            letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px;
        }
        .service-description { font-size: 13.5px; color: #6b7280; line-height: 1.7; margin-bottom: 20px; }
        .service-features { list-style: none; padding: 0; margin: 0; }
        .service-features li {
            padding: 9px 0; color: #374151; font-size: 13.5px;
            display: flex; align-items: center; gap: 10px;
            border-bottom: 1px solid #f0f4fb;
        }
        .service-features li:last-child { border-bottom: none; }
        .service-features li::before { content: '✓'; color: #2d4791; font-weight: 700; font-size: 14px; flex-shrink: 0; }

        /* ===== ECOSYSTEM FLOW ===== */
        .service-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px; max-width: 1200px; margin: 0 auto;
        }
        .service-card {
            background: #f0f4fb; border: 1px solid #e0e7f5; border-radius: 16px;
            padding: 28px; transition: transform .25s, background .2s;
            position: relative; overflow: hidden;
            opacity: 1; transform: none;
        }
        .service-card::before { display: none; }
        .service-card:hover { transform: translateY(-5px); background: #fff; box-shadow: 0 12px 36px rgba(45,71,145,0.1); }
        .service-icon {
            width: 46px; height: 46px; background: #e8edf8;
            border-radius: 12px; display: flex; align-items: center;
            justify-content: center; font-size: 22px; margin-bottom: 16px;
        }
        .service-card p { font-size: 13.5px; color: #4b5563; line-height: 1.65; }

        /* ===== STATS ===== */
        .stats {
            padding: 80px 5%;
            background: linear-gradient(135deg, #0f172a 0%, #1e3370 55%, #2d4791 100%);
            text-align: center; position: relative; overflow: hidden;
        }
        .stats::before {
            content: ''; position: absolute; inset: 0;
            background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1.5px, transparent 1.5px);
            background-size: 30px 30px; pointer-events: none;
        }
        .stats h2 { font-size: 36px; font-weight: 800; color: #fff; margin-bottom: 14px; position: relative; z-index: 1; }
        .stats > p { font-size: 15px; color: rgba(255,255,255,0.72); position: relative; z-index: 1; margin-bottom: 0; }
        .stats-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px; max-width: 1000px; margin: 48px auto 0;
            position: relative; z-index: 1;
        }
        .stat-item { text-align: center; }
        .stat-icon { font-size: 32px; margin-bottom: 14px; }
        .stat-item h3 { font-size: 52px; font-weight: 800; color: #fff; margin-bottom: 8px; }
        .stat-item p { font-size: 15px; color: rgba(255,255,255,0.75); }

        /* ===== ONBOARDING / REQUEST DEMO ===== */
        .onboarding-wrap { background: #f8faff; padding: 0 5%; }
        .onboarding-section {
            background: transparent;
            padding: 80px 0;
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 60px;
            align-items: start;
            max-width: 1200px;
            margin: 0 auto;
        }
        .onboarding-left { position: sticky; top: 84px; }
        .onboarding-badge {
            display: inline-block;
            background: #e8edf8; color: #2d4791;
            font-size: 12px; font-weight: 600;
            letter-spacing: 1.5px; text-transform: uppercase;
            padding: 6px 18px; border-radius: 20px; margin-bottom: 20px;
        }
        .onboarding-left h2 {
            font-size: 30px; font-weight: 700;
            color: #1a1a2e; line-height: 1.25; margin-bottom: 18px;
        }
        .onboarding-left p {
            font-size: 15px; color: #6b7280;
            line-height: 1.8; margin-bottom: 28px;
        }
        .onboarding-btns { display: flex; gap: 12px; flex-wrap: wrap; }
        .onboarding-cta {
            font-family: "Poppins", sans-serif;
            padding: 10px 22px; background: #2d4791;
            border: none; border-radius: 6px; color: #fff;
            font-size: 14px; font-weight: 600; cursor: pointer;
            transition: background 0.2s, box-shadow 0.2s; white-space: nowrap;
        }
        .onboarding-cta:hover { background: #1e3370; box-shadow: 0 4px 14px rgba(45,71,145,0.3); }
        .onboarding-cta-outline {
            font-family: "Poppins", sans-serif;
            padding: 10px 22px; background: transparent;
            border: 2px solid #2d4791; border-radius: 6px;
            color: #2d4791; font-size: 14px; font-weight: 600;
            cursor: pointer; text-decoration: none;
            transition: background 0.2s, color 0.2s; white-space: nowrap;
            display: inline-block;
        }
        .onboarding-cta-outline:hover { background: #e8edf8; color: #2d4791; }
        .onboarding-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
        .onboarding-card {
            background: #fff; border: 1px solid #e5e9f0;
            border-radius: 12px; padding: 28px 24px;
            transition: box-shadow 0.3s, transform 0.3s;
            display: flex; flex-direction: column;
            opacity: 0; transform: translateY(20px);
            transition: opacity 0.5s, transform 0.5s, box-shadow 0.3s;
        }
        .onboarding-card.visible { opacity: 1; transform: translateY(0); }
        .onboarding-card.visible:hover { box-shadow: 0 10px 36px rgba(45,71,145,0.12); transform: translateY(-4px); }
        .onboarding-card-title { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
        .onboarding-card-title svg { width: 22px; height: 22px; flex-shrink: 0; }
        .onboarding-card-title h4 { font-size: 16px; font-weight: 600; color: #1a1a2e; margin: 0; }
        .onboarding-list { list-style: none; padding: 0; margin: 0; flex: 1; }
        .onboarding-list li {
            font-size: 14px; color: #4b5563;
            padding: 5px 0; display: flex; align-items: flex-start;
            gap: 8px; line-height: 1.5;
        }
        .onboarding-list li::before { content: '✓'; color: #2d4791; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
        .fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
        .fade-up.visible { opacity: 1; transform: translateY(0); }

        /* ===== CONTACT ===== */
        .contact-badge {
            display: inline-block;
            background: #e8edf8;
            color: #2d4791;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 6px 18px;
            border-radius: 20px;
            margin-bottom: 16px;
        }
        .contact { background: #fff; padding: 50px 5%; color: #1a1a2e; }
        .contact-container {
            max-width: 1400px; margin: 0 auto;
            display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start;
        }
        .contact h2 { font-size: 30px; font-weight: 700; color: #1a1a2e; margin-bottom: 14px; }
        .contact > .contact-container > div > p { font-size: 14px; color: #6b7280; margin-bottom: 32px; line-height: 1.7; }
        .contact-info { display: flex; flex-direction: column; gap: 16px; }
        .contact-item {
            display: flex; align-items: flex-start; gap: 14px; padding: 16px 18px;
            background: #fff; border: 1px solid #e5e9f5; border-radius: 12px;
            transition: box-shadow 0.2s, transform 0.5s, opacity 0.5s;
            opacity: 0; transform: translateY(24px);
        }
        .contact-item.visible { opacity: 1 !important; transform: translateY(0) !important; }
        .contact-item.visible:hover { box-shadow: 0 4px 16px rgba(45,71,145,0.09); transform: translateX(4px) !important; }
        .contact-item-icon {
            width: 38px; height: 38px; min-width: 38px; background: #e8edf8; border-radius: 10px;
            display: flex; align-items: center; justify-content: center; color: #2d4791;
        }
        .contact-item-icon svg { width: 18px; height: 18px; }
        .contact-item-text { display: flex; flex-direction: column; gap: 3px; }
        .contact-item-text strong { font-size: 13px; font-weight: 700; color: #1a1a2e; }
        .contact-item-text span { font-size: 13px; color: #6b7280; line-height: 1.5; }
        .form-container {
            background: #fff; padding: 36px; border-radius: 20px;
            border: 1px solid #e0e7f5; box-shadow: 0 8px 32px rgba(45,71,145,0.08);
        }
        .form-container h3 { font-size: 20px; font-weight: 700; color: #1a1a2e; margin-bottom: 24px; }
        .form-group { margin-bottom: 16px; }
        .form-group input, .form-group textarea {
            width: 100%; padding: 12px 16px;
            border: 1.5px solid #e0e7f5; border-radius: 10px;
            font-size: 13.5px; font-family: "Poppins", sans-serif; color: #1a1a2e;
            background: #f8fafc; transition: border-color .2s, box-shadow .2s;
        }
        .form-group input:focus, .form-group textarea:focus {
            outline: none; border-color: #2d4791;
            box-shadow: 0 0 0 3px rgba(45,71,145,0.1); background: #fff;
        }
        .form-group textarea { resize: vertical; min-height: 110px; }
        .phone-input-wrapper { display: flex; gap: 10px; }
        .country-code-select {
            width: 130px; padding: 12px; border: 1.5px solid #e0e7f5; border-radius: 10px;
            font-size: 13px; font-family: "Poppins", sans-serif; background: #f8fafc;
            cursor: pointer; color: #1a1a2e;
        }
        .country-code-select:focus { outline: none; border-color: #2d4791; }
        .phone-input { flex: 1; }
        .captcha-container {
            background: #f0f4fb; padding: 18px; border-radius: 10px; border: 1.5px solid #e0e7f5;
        }
        .captcha-label { color: #374151; font-weight: 600; font-size: 13px; margin-bottom: 12px; display: block; }
        .captcha-canvas-wrapper { display: flex; gap: 10px; align-items: center; margin-bottom: 12px; }
        .captcha-canvas { border: 1.5px solid #e0e7f5; border-radius: 8px; background: #fff; }
        .captcha-refresh {
            background: #2d4791; color: #fff; border: none; padding: 10px 14px;
            border-radius: 8px; cursor: pointer; font-size: 18px; transition: background .2s;
            display: flex; align-items: center; justify-content: center; min-width: 46px; height: 46px;
        }
        .captcha-refresh:hover { background: #1e3370; transform: rotate(180deg); }
        .captcha-input {
            width: 100%; padding: 10px 14px; border: 1.5px solid #e0e7f5; border-radius: 8px;
            font-size: 15px; font-family: "Poppins", sans-serif; text-transform: uppercase;
            letter-spacing: 3px; font-weight: 600; background: #fff;
        }
        .captcha-input:focus { outline: none; border-color: #2d4791; box-shadow: 0 0 0 3px rgba(45,71,145,0.1); }
        .captcha-hint { font-size: 11px; color: #9ca3af; margin-top: 6px; }
        .error-message {
            background: #fee2e2; border: 1.5px solid #ef4444; color: #991b1b;
            padding: 10px 14px; border-radius: 8px; margin-bottom: 14px;
            display: none; font-size: 13px; font-weight: 600; align-items: center; gap: 8px;
        }
        .error-message.show { display: flex; }
        .error-message::before { content: '⚠️'; font-size: 16px; }
        .success-message {
            background: #d1fae5; border: 1.5px solid #10b981; color: #065f46;
            padding: 10px 14px; border-radius: 8px; margin-bottom: 14px;
            display: none; font-size: 13px; font-weight: 600; align-items: center; gap: 8px;
        }
        .success-message.show { display: flex; }
        .success-message::before { content: '✅'; font-size: 16px; }
        .form-group input.error, .form-group textarea.error { border-color: #ef4444; background: #fef2f2; }
        .submit-button {
            width: 100%; padding: 14px; background: #2d4791; color: #fff;
            border: none; border-radius: 10px; font-size: 15px; font-weight: 600;
            cursor: pointer; transition: background .2s, transform .2s;
            font-family: "Poppins", sans-serif;
        }
        .submit-button:hover { background: #1e3370; transform: translateY(-2px); }

        /* ===== FOOTER ===== */
        .site-footer { background: #1a1a2e; padding: 60px 5% 30px; color: rgba(255,255,255,0.65); }
        .footer-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1300px; margin: 0 auto 50px; }
        .footer-col-contact { max-width: none; }
        .footer-col h4 { color: #fff; font-size: 15px; font-weight: 600; margin-bottom: 16px; }
        .footer-col a { display: block; color: #6b7280; text-decoration: none; font-size: 14px; margin-bottom: 10px; transition: color .2s; }
        .footer-col a:hover { color: #fff; text-decoration: underline; }
        .footer-address { color: rgba(255,255,255,0.5); font-size: 13px; line-height: 1.7; margin-top: 4px; }
        .footer-social-row { display: flex; align-items: center; gap: 24px; max-width: 1300px; margin: 0 auto 32px; }
        .footer-divider-line { flex: 1; height: 1px; background: rgba(255,255,255,0.15); }
        .footer-social-icons { display: flex; gap: 20px; align-items: center; }
        .footer-social-icons a { color: #6b7280; display: flex; align-items: center; pointer-events: none; cursor: default; }
        .footer-social-icons a:hover { color: #6b7280; }
        .footer-social-icons svg { width: 22px; height: 22px; }
        .footer-logo-row { text-align: center; margin-bottom: 16px; }
        .footer-logo-row img { height: 40px; object-fit: contain; filter: brightness(0) invert(1) brightness(0.45); }
        .footer-copyright { text-align: center; font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
        .footer-bottom { display: flex; justify-content: center; align-items: center; gap: 12px; flex-wrap: wrap; }
        .footer-bottom a { color: rgba(255,255,255,0.55); text-decoration: underline; font-size: 14px; transition: color .2s; }
        .footer-bottom a:hover { color: #fff; }
        .footer-sep { color: rgba(255,255,255,0.25); font-size: 14px; }

        /* ===== FLOATING CA BTN ===== */
        .floating-ca-btn {
            position: fixed; bottom: 30px; right: 30px;
            display: flex; align-items: center; gap: 10px;
            background: #fff; color: #2d4791; text-decoration: none;
            padding: 10px 24px 10px 14px; border-radius: 50px;
            border: 2px solid #2d4791;
            box-shadow: 0 6px 24px rgba(45,71,145,0.2);
            font-family: "Poppins", sans-serif; z-index: 999;
            transition: transform .3s, box-shadow .3s;
        }
        .floating-ca-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(45,71,145,0.3); }
        .floating-ca-logo { width: 32px; height: 32px; object-fit: contain; flex-shrink: 0; }
        .floating-ca-text { font-size: 18px; font-weight: 700; color: #2d4791; white-space: nowrap; }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 767.98px) {
            .navbar { padding: 0 4%; height: 56px; }
            .logo img { width: 100px; height: 38px; }
            .hamburger { display: flex; }
            .nav-cta-group { display: none; }
            .nav-links {
                position: fixed; top: 56px; left: -100%;
                width: 100%; height: calc(100vh - 56px); background: #fff;
                flex-direction: column; gap: 0; padding: 16px;
                transition: left .3s; overflow-y: auto; align-items: stretch;
            }
            .nav-links.active { left: 0; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
            .nav-links a { padding: 12px 0; border-bottom: 1px solid #e5e7eb; font-size: 14px; }
            .cta-btn { width: 100%; margin-top: 10px; padding: 10px; text-align: center; }
            .hero { padding: 100px 4% 64px; }
            .hero h1 { font-size: 28px; }
            .sub-hero-content2 { padding: 16px 20px; font-size: 13px !important; }
            .section-title h2 { font-size: 24px; }
            .features-grid, .comprehensive-services { grid-template-columns: 1fr; gap: 18px; }
            .service-grid { grid-template-columns: 1fr; gap: 14px; }
            .stats h2 { font-size: 26px; }
            .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
            .stat-item h3 { font-size: 38px; }
            .contact-container { grid-template-columns: 1fr; gap: 32px; }
            .contact h2 { font-size: 24px; }
            .form-container { padding: 22px; }
            .footer-content { grid-template-columns: 1fr; gap: 28px; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .floating-ca-btn { bottom: 20px; right: 20px; padding: 8px 18px 8px 12px; }
            .floating-ca-logo { width: 26px; height: 26px; }
            .floating-ca-text { font-size: 15px; }
            .onboarding-section { grid-template-columns: 1fr; gap: 32px; padding: 50px 0; }
            .onboarding-left { position: static; }
            .onboarding-grid { grid-template-columns: 1fr; }
            .ecosystem-section { padding: 30px 4%; }
        }
        @media (min-width: 768px) and (max-width: 991.98px) {
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .comprehensive-services { grid-template-columns: 1fr; }
            .service-grid { grid-template-columns: repeat(3, 1fr); }
            .contact-container { grid-template-columns: 1fr; gap: 36px; }
            .hero h1 { font-size: 38px; }
            .section-title h2 { font-size: 28px; }
            .onboarding-section { grid-template-columns: 1fr; gap: 40px; }
            .onboarding-left { position: static; }
        }
        @media (min-width: 992px) and (max-width: 1199.98px) {
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .comprehensive-services { grid-template-columns: repeat(2, 1fr); }
            .service-grid { grid-template-columns: repeat(3, 1fr); }
            .hero h1 { font-size: 44px; }
        }
        @media (min-width: 1400px) {
            .navbar { padding: 0 8%; }
            .hero { padding: 140px 8% 110px; }
            .hero h1 { font-size: 54px; }
            .features, .services, .stats, .contact { padding: 100px 5%; }
            .features-grid, .comprehensive-services, .service-grid { max-width: 1400px; }
        }

        /* ===== SEAMLESS ECOSYSTEM SECTION ===== */
        .ecosystem-section { padding: 50px 5%; background: #f8faff; }
        .eco-points-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            max-width: 1400px;
            margin: 0 auto;
        }
        .eco-point-card {
            display: flex; gap: 16px; align-items: flex-start;
            background: #fff; border: 1px solid #e0e7f5;
            border-radius: 16px; padding: 24px 22px;
            transition: transform 0.25s, box-shadow 0.25s;
        }
        .eco-point-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(45,71,145,0.10); }
        .eco-point-icon {
            width: 44px; height: 44px; flex-shrink: 0;
            background: #e8edf8; border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
        }
        .eco-point-card h4 { font-size: 14px; font-weight: 700; color: #1a1a2e; margin-bottom: 6px; }
        .eco-point-card p { font-size: 14px; font-weight: 600; color: #1a1a2e; line-height: 1.6; }
        .eco-point-card-blue {
            background: linear-gradient(135deg, #1e3370 0%, #2d4791 100%);
            border-color: transparent;
        }
        .eco-point-card-blue h4 { color: #fff; }
        .eco-point-card-blue p { color: rgba(255,255,255,0.8); }
        .eco-point-icon-light { background: rgba(255,255,255,0.18); }
        @media (max-width: 1024px) { .eco-points-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 600px) { .eco-points-grid { grid-template-columns: 1fr; } }

        /* ===== CS FEATURES GRID ===== */
        .cs-feat-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
            max-width: 1400px;
            margin: 0 auto;
        }
        .cs-feat-card {
            background: #fff !important;
            border: 1px solid #e0e7f5 !important;
            border-radius: 16px !important;
            padding: 26px 22px !important;
            transition: transform 0.25s, box-shadow 0.25s;
            display: flex !important;
            flex-direction: column;
        }
        .cs-feat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 14px 40px rgba(45,71,145,0.10);
            border-color: #b0c0e8 !important;
        }
        .cs-feat-icon {
            width: 46px; height: 46px;
            background: #e8edf8;
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 16px;
            flex-shrink: 0;
        }
        .cs-feat-card h3 { font-size: 15px; font-weight: 700; color: #1a1a2e; margin-bottom: 8px; }
        .cs-feat-card p { font-size: 13px; color: #6b7280; line-height: 1.7; }
        .cs-feat-card-blue {
            background: #fff !important;
            border-color: #e0e7f5 !important;
        }
        .cs-feat-card-blue h3 { color: #1a1a2e !important; }
        .cs-feat-card-blue p { color: #6b7280 !important; }
        .cs-feat-icon-light { background: #e8edf8; }

        /* Primary blue card override */
        .cs-feat-primary {
            background: #2d4791 !important;
            border-color: #2d4791 !important;
            box-shadow: 0 4px 20px rgba(45,71,145,0.25) !important;
        }
        .cs-feat-primary h3 { color: #ffffff !important; }
        .cs-feat-primary p  { color: rgba(255,255,255,0.82) !important; }
        .cs-feat-primary .cs-feat-icon-light { background: rgba(255,255,255,0.18) !important; }
        .cs-feat-badge {
            display: inline-block; margin-top: 12px;
            font-size: 11px; font-weight: 700;
            background: rgba(255,255,255,0.18); color: rgba(255,255,255,0.95);
            border: 1px solid rgba(255,255,255,0.25);
            border-radius: 20px; padding: 3px 12px; letter-spacing: 0.5px;
        }
        @media (max-width: 1024px) { .cs-feat-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 600px) { .cs-feat-grid { grid-template-columns: 1fr; } }

        /* ===== CS MODULE GRID ===== */
        .cs-module-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            max-width: 1400px;
            margin: 0 auto 40px;
        }
        .cs-module-card {
            background: #fff !important;
            border: 1px solid #e0e7f5 !important;
            border-radius: 18px !important;
            padding: 32px 28px !important;
            transition: transform 0.25s, box-shadow 0.25s;
            display: flex !important;
            flex-direction: column;
        }
        .cs-module-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(45,71,145,0.10); }
        .cs-module-card-dark {
            background: linear-gradient(135deg, #1e3370 0%, #2d4791 100%) !important;
            border-color: transparent !important;
        }
        .cs-module-head { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
        .cs-module-icon {
            width: 50px; height: 50px; flex-shrink: 0;
            background: #e8edf8; border-radius: 14px;
            display: flex; align-items: center; justify-content: center;
        }
        .cs-module-icon-light { background: rgba(255,255,255,0.18); }
        .cs-module-head > div { display: flex; flex-direction: column; justify-content: center; }
        .cs-module-cat {
            font-size: 11px; font-weight: 700; color: #2d4791;
            text-transform: uppercase; letter-spacing: 0.08em;
            margin-bottom: 4px; display: block;
        }
        .cs-module-cat-light { color: rgba(255,255,255,0.7); }
        .cs-module-card h3 { font-size: 17px; font-weight: 700; color: #1a1a2e; margin: 0; }
        .cs-module-card-dark h3 { color: #fff !important; }
        .cs-module-card > p { font-size: 13.5px; color: #6b7280; line-height: 1.7; margin-bottom: 18px; }
        .cs-module-card-dark > p { color: rgba(255,255,255,0.75) !important; }
        .cs-module-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 7px; }
        .cs-module-list li { font-size: 13px; color: #4b5563; display: flex; align-items: center; gap: 8px; }
        .cs-module-list li::before { content: '✓'; color: #2d4791; font-weight: 700; flex-shrink: 0; }
        .cs-module-list-light li { color: rgba(255,255,255,0.85); }
        .cs-module-list-light li::before { color: rgba(255,255,255,0.6); }
        @media (max-width: 768px) { .cs-module-grid { grid-template-columns: 1fr; } }

        /* ===== CS ECOSYSTEM BAR ===== */
        .cs-eco-bar {
            max-width: 1200px; margin: 0 auto;
            background: #f4f7fd; border: 1px solid #e0e7f5;
            border-radius: 14px; padding: 20px 28px;
            display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
        }
        .cs-eco-title {
            font-size: 12px; font-weight: 700; color: #1a1a2e;
            text-transform: uppercase; letter-spacing: 0.08em; white-space: nowrap;
        }
        .cs-eco-flow { display: flex; align-items: center; gap: 10px; flex: 1; flex-wrap: wrap; }
        .cs-eco-item {
            display: flex; align-items: center; gap: 6px;
            font-size: 12.5px; font-weight: 600; color: #4b5563;
            background: #fff; border: 1px solid #e0e7f5;
            border-radius: 20px; padding: 6px 14px; white-space: nowrap;
        }
        .cs-eco-item svg { flex-shrink: 0; color: #2d4791; }
        .cs-eco-sep { color: #b0c0e8; font-size: 16px; font-weight: 600; }
        .cs-eco-item-final { background: #2d4791 !important; color: #fff !important; border-color: #2d4791 !important; }
        .cs-eco-item-final svg { color: #fff !important; }
        @media (max-width: 600px) {
            .cs-eco-bar { flex-direction: column; align-items: flex-start; }
            .cs-eco-flow { gap: 6px; }
        }

        /* =========================================================
           RESPONSIVE TYPOGRAPHY — Bootstrap breakpoints (mobile-first)
           XS <576 · SM ≥576 · MD ≥768 · LG ≥992 · XL ≥1200 · XXL ≥1400
           ========================================================= */
        .hero h1 { font-size: 28px; }
        .section-title h2 { font-size: 23px; }
        .section-title p { font-size: 14px; }
        .stats h2, .contact h2 { font-size: 24px; }

        @media (min-width: 576px) {
            .hero h1 { font-size: 34px; }
            .section-title h2 { font-size: 25px; }
            .section-title p { font-size: 15px; }
            .stats h2, .contact h2 { font-size: 26px; }
        }
        @media (min-width: 768px) {
            .hero h1 { font-size: 40px; }
            .section-title h2 { font-size: 28px; }
            .section-title p { font-size: 16px; }
            .stats h2, .contact h2 { font-size: 28px; }
        }
        @media (min-width: 992px) {
            .hero h1 { font-size: 46px; }
            .section-title h2 { font-size: 30px; }
            .section-title p { font-size: 16px; }
            .stats h2, .contact h2 { font-size: 30px; }
        }
        @media (min-width: 1200px) {
            .hero h1 { font-size: 52px; }
            .section-title h2 { font-size: 34px; }
            .section-title p { font-size: 17px; }
            .stats h2, .contact h2 { font-size: 33px; }
        }
        @media (min-width: 1400px) {
            .hero h1 { font-size: 56px; }
            .section-title h2 { font-size: 38px; }
            .section-title p { font-size: 18px; }
            .stats h2, .contact h2 { font-size: 36px; }
        }

@media (max-width: 991.98px) { .footer-sep { display: none; } .footer-divider-line { display: none; } }

@media (max-width: 991.98px) { .footer-bottom { flex-direction: column; gap: 8px; align-items: center; } }
/* Scroll to Top Button */
#scrollTopBtn {
    display: none;
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 9999;
    width: 46px;
    height: 46px;
    background: #fff;
    color: #2d4791;
    border: 2px solid #2d4791;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    transition: background 0.3s, color 0.3s, transform 0.3s;
}
#scrollTopBtn:hover { background: #2d4791; color: #fff; transform: translateY(-4px); }
