/* 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: #f5f7fc;
            color: #1a1a2e;
        }

        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            padding: 0 5%;
            height: 64px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #ffffff;
            z-index: 1000;
            border-bottom: 1px solid #e5e7eb;
            box-shadow: 0 1px 4px rgba(0,0,0,0.06);
            
        }

        .logo img {
            width: 125px;
            height: 50px;
            padding-top: 5px;
            object-fit: contain;
        }

        .nav-links {
            display: flex;
            gap: 36px;
            align-items: center;
        }

        .nav-links a {
            color: #1a1a2e;
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: color 0.2s ease;
            padding-bottom: 2px;
            border-bottom: 2px solid transparent;
        }

        .nav-links a:hover {
            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: 8px 18px;
            background: #2d4791;
            border: 2px solid #2d4791;
            border-radius: 6px;
            color: #fff;
            font-weight: 600;
            font-size: 13px;
            line-height: 1.4;
            cursor: pointer;
            transition: background 0.2s, box-shadow 0.2s;
            text-decoration: none;
            white-space: nowrap;
        }

        .cta-btn:hover {
            background: #1e3370;
            border-color: #1e3370;
        }

        .cta-btn-outline {
            font-family: "Poppins", sans-serif;
            padding: 8px 18px;
            background: transparent;
            border: 2px solid #2d4791;
            border-radius: 6px;
            color: #2d4791;
            font-weight: 600;
            font-size: 13px;
            line-height: 1.4;
            cursor: pointer;
            transition: background 0.2s, color 0.2s;
            text-decoration: none;
            white-space: nowrap;
        }

        .cta-btn-outline:hover {
            background: #e8edf8;
            color: #2d4791;
        }

        .phone-input-wrapper {
            display: flex;
            gap: 10px;
            align-items: stretch;
        }

        .country-code-select {
            width: 130px;
            padding: 1rem;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 0.95rem;
            transition: all 0.3s;
            font-family: "Poppins", sans-serif;
            background: white;
            cursor: pointer;
            display: flex;
            align-items: center;
        }

        .country-code-select:focus {
            outline: none;
            border-color: #3b82f6;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }

        .country-code-select option {
            padding: 10px;
            font-size: 0.95rem;
        }

        .phone-input {
            flex: 1;
            padding: 1rem;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s;
            font-family: "Poppins", sans-serif;
        }

        .phone-input:focus {
            outline: none;
            border-color: #3b82f6;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #2D4792;
            border-radius: 2px;
            transition: all 0.3s;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        .hero {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background: #ffffff;
        }

        .hero-overlay {
            display: none;
        }

        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            animation: float 20s infinite;
        }

        .shape1 {
            width: 300px;
            height: 300px;
            background: #2d4791;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .shape2 {
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, #f093fb, #f5576c);
            top: 25%;
            right: 15%;
            animation-delay: 5s;
        }

        .shape3 {
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, #4facfe, #00f2fe);
            top: 35%;
            left: 70%;
            animation-delay: 10s;
        }

        @keyframes float {

            0%,
            100% {
                transform: translate(0, 0) rotate(0deg);
            }

            25% {
                transform: translate(50px, -50px) rotate(90deg);
            }

            50% {
                transform: translate(0, -100px) rotate(180deg);
            }

            75% {
                transform: translate(-50px, -50px) rotate(270deg);
            }
        }

        .hero-content {
            z-index: 1;
            width: 100%;
            padding: 120px 5% 44px;
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .hero-columns {
            display: grid;
            grid-template-columns: 1fr 420px;
            gap: 40px;
            align-items: start;
            margin: 0 auto 40px;
            max-width: 1400px;
            width: 100%;
        }

        .hero-text {
            min-width: 0;
        }

        .hero-visual {
            width: 100%;
            position: relative;
        }

        /* ── Hero blobs ── */
        .hero-blob {
            position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; z-index: 0;
        }
        .hero-blob-1 {
            width: 520px; height: 520px;
            background: radial-gradient(circle, rgba(45,71,145,0.09) 0%, transparent 70%);
            top: -100px; right: -80px;
        }
        .hero-blob-2 {
            width: 380px; height: 380px;
            background: radial-gradient(circle, rgba(100,140,240,0.07) 0%, transparent 70%);
            bottom: -60px; left: -60px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 7px 16px;
            background: #eef2ff;
            border: 1px solid #c7d4f8;
            border-radius: 50px;
            font-size: 12.5px;
            font-weight: 600;
            color: #2d4791;
            margin-bottom: 24px;
        }

        .hero h1 {
            font-size: 42px;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 28px;
            line-height: 1.25;
            letter-spacing: -0.3px;
        }

        .hero-highlight {
            color: #2d4791;
            position: relative;
        }

        .hero p {
            font-size: 16.5px;
            color: #4b5563;
            margin-bottom: 32px;
            line-height: 1.75;
        }

        .sub-hero-content1 {
            max-width: 1400px;
            width: 100%;
            margin: 0 auto 24px;
            text-align: center;
        }

        .hero .sub-hero-content2 {
            font-size: 18px;
            color: #6b7280;
            line-height: 1.75;
            margin: 0 auto;
            max-width: 1400px;
            width: 100%;
            padding: 14px 18px;
            background: #f8faff;
            border: 1px solid #e0e7f5;
            border-radius: 10px;
            box-sizing: border-box;
            text-align: center;
        }

        /* CTA row */
        .hero-cta-row {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 36px;
            flex-wrap: wrap;
        }
        .hero-cta-primary {
            padding: 13px 28px;
            font-size: 15px;
            font-weight: 600;
            border-radius: 8px;
        }
        .hero-cta-outline {
            padding: 13px 28px;
            font-size: 15px;
            font-weight: 600;
            border-radius: 8px;
        }
        .hero-cta-ghost {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            font-size: 14.5px;
            font-weight: 600;
            color: #2d4791;
            text-decoration: none;
            transition: gap 0.2s;
        }
        .hero-cta-ghost:hover { gap: 10px; }

        /* Trust row */
        .hero-trust {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .hero-trust-avatars {
            display: flex;
        }
        .trust-av {
            width: 32px; height: 32px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 12px; font-weight: 700; color: #fff;
            border: 2px solid #fff;
            margin-left: -8px;
        }
        .hero-trust-avatars .trust-av:first-child { margin-left: 0; }
        .hero-trust-text { font-size: 13px; color: #6b7280; }
        .hero-trust-text strong { color: #1a1a2e; }

        /* ── Hero Visual ── */
        .hv-card {
            background: #fff;
            border: 1px solid #e0e7f5;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 24px 64px rgba(45,71,145,0.13), 0 4px 16px rgba(45,71,145,0.06);
        }
        .hv-browser-bar {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 9px 14px;
            background: #1e3370;
        }
        .hv-dots { display: flex; gap: 5px; }
        .hv-dots span { width: 8px; height: 8px; border-radius: 50%; }
        .hv-dots span:nth-child(1) { background: #ff5f57; }
        .hv-dots span:nth-child(2) { background: #febc2e; }
        .hv-dots span:nth-child(3) { background: #28c840; }
        .hv-url {
            flex: 1;
            background: rgba(255,255,255,0.1);
            border-radius: 5px;
            padding: 3px 10px;
            font-size: 10px;
            color: rgba(255,255,255,0.55);
            text-align: center;
        }
        .hv-avatar {
            width: 22px; height: 22px; border-radius: 50%;
            background: #2d4791;
            border: 1.5px solid rgba(255,255,255,0.3);
            display: flex; align-items: center; justify-content: center;
            font-size: 10px; font-weight: 700; color: #fff;
        }
        .hv-body { display: flex; min-height: 260px; }
        .hv-sidebar {
            width: 42px;
            background: #162a5e;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2px;
            padding: 12px 0;
        }
        .hv-sicon {
            width: 30px; height: 30px;
            display: flex; align-items: center; justify-content: center;
            border-radius: 7px;
            color: rgba(255,255,255,0.4);
        }
        .hv-sicon.active { background: rgba(255,255,255,0.12); color: #fff; }
        .hv-main {
            flex: 1; padding: 8px 10px;
            background: #f4f7fd; min-width: 0;
        }
        /* Header row */
        .hv-header-row {
            display: flex; align-items: center; justify-content: space-between;
            margin-bottom: 7px;
        }
        .hv-greeting-title { font-size: 11px; font-weight: 700; color: #1a1a2e; }
        .hv-greeting-sub { font-size: 9px; color: #9ca3af; margin-top: 1px; }
        .hv-status-pill {
            display: flex; align-items: center; gap: 5px;
            background: #f0fdf4; border: 1px solid #bbf7d0;
            border-radius: 20px; padding: 2px 7px;
            font-size: 8.5px; font-weight: 700; color: #16a34a;
        }
        .hv-dot-pulse {
            width: 6px; height: 6px; border-radius: 50%;
            background: #16a34a; display: inline-block;
            box-shadow: 0 0 0 2px rgba(22,163,74,0.25);
        }
        /* KPI cards */
        .hv-kpi-row { display: flex; gap: 6px; margin-bottom: 7px; }
        .hv-kpi {
            flex: 1; background: #fff;
            border: 1px solid #e5eaf5; border-radius: 8px;
            padding: 6px 7px 5px;
        }
        .hv-kpi-label { font-size: 8px; color: #9ca3af; font-weight: 500; margin-bottom: 2px; }
        .hv-kpi-val { font-size: 12px; font-weight: 800; color: #1a1a2e; line-height: 1; margin-bottom: 4px; }
        .hv-kpi-bar {
            height: 3px; background: #f1f5f9;
            border-radius: 99px; margin-bottom: 4px; overflow: hidden;
        }
        .hv-kpi-fill { height: 100%; border-radius: 99px; }
        .hv-kpi-tag {
            display: inline-block; font-size: 7.5px; font-weight: 700;
            padding: 1px 4px; border-radius: 20px;
        }
        .hv-kpi-tag.green { background: #dcfce7; color: #16a34a; }
        .hv-kpi-tag.orange { background: #fef3c7; color: #d97706; }
        /* Chart */
        .hv-chart-wrap {
            background: #fff; border: 1px solid #e5eaf5;
            border-radius: 8px; padding: 7px 9px 5px; margin-bottom: 6px;
        }
        .hv-chart-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 5px; }
        .hv-chart-label { font-size: 9px; font-weight: 700; color: #374151; }
        .hv-chart-legend { display: flex; align-items: center; gap: 8px; }
        .hv-leg { font-size: 8px; color: #9ca3af; display: flex; align-items: center; gap: 3px; }
        .hv-leg::before { content: ''; display: inline-block; width: 16px; height: 2px; border-radius: 2px; }
        .hv-leg-in::before { background: #2d4791; }
        .hv-leg-out::before { background: #f59e0b; border-top: 1px dashed #f59e0b; height: 0; }
        .hv-area-chart { width: 100%; height: 44px; display: block; }
        .hv-chart-months { display: flex; justify-content: space-between; padding-top: 3px; }
        .hv-chart-months span { font-size: 7.5px; color: #9ca3af; }
        /* Txn rows */
        .hv-txn-row {
            display: flex; align-items: center; gap: 6px;
            padding: 5px 0; border-bottom: 1px solid #eef2fb;
        }
        .hv-txn-row:last-child { border-bottom: none; }
        .hv-txn-icon {
            width: 18px; height: 18px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center; flex-shrink: 0;
        }
        .hv-txn-icon.green { background: #dcfce7; color: #16a34a; }
        .hv-txn-icon.blue { background: #dbeafe; color: #2d4791; }
        .hv-txn-name { flex: 1; font-size: 9.5px; color: #4b5563; }
        .hv-txn-val { font-size: 9.5px; font-weight: 700; }
        .hv-txn-val.green { color: #16a34a; }
        .hv-txn-val.blue { color: #2d4791; }
        /* Floating badges */
        .hv-float {
            position: absolute;
            background: #fff; border: 1px solid #e0e7f5;
            border-radius: 10px; padding: 8px 12px;
            box-shadow: 0 8px 24px rgba(45,71,145,0.12);
            white-space: nowrap;
        }
        .hv-float-gst {
            display: flex; align-items: center; gap: 6px;
            bottom: -16px; left: -20px;
            font-size: 11px; font-weight: 600; color: #16a34a;
            background: #f0fdf4; border-color: #bbf7d0;
        }
        .hv-float-inv {
            top: 54px; right: -22px;
            border-color: #e0e7f5;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 0;
        }

        .hero-btn-solid {
            font-family: "Poppins", sans-serif;
            padding: 14px 32px;
            background: #2d4791;
            border: 2px solid #2d4791;
            border-radius: 6px;
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, box-shadow 0.2s;
            white-space: nowrap;
        }

        .hero-btn-solid:hover {
            background: #1e3370;
            border-color: #1e3370;
            box-shadow: 0 6px 20px rgba(45, 71, 145, 0.45);
        }

        .hero-btn-outline {
            font-family: "Poppins", sans-serif;
            padding: 14px 32px;
            background: transparent;
            border: 2px solid #fff;
            border-radius: 6px;
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, color 0.2s;
            text-decoration: none;
            white-space: nowrap;
        }

        .hero-btn-outline:hover {
            background: #fff;
            color: #2d4791;
        }

        .btn-primary {
            display: inline-block;
            width: 100%;
            font-family: "Poppins", sans-serif;
            padding: 16px 40px;
            background: #2d4791;
            border: none;
            border-radius: 30px;
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 16px;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
            text-align: center;
            text-decoration: none;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
        }

        .features {
            padding: 80px 5%;
            background: #fff;
            position: relative;
        }

        .services {
            padding: 80px 5%;
            background: #fff;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-badge {
            display: inline-block;
            padding: 6px 18px;
            background: #e8edf8;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.07em;
            margin-bottom: 16px;
            color: #2d4791;
        }

        .section-title h2 {
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #1a1a2e;
        }

        .section-title p {
            color: #6b7280;
            font-size: 18px;
        }

                /* ===== FEATURES BENTO GRID ===== */
        .features-bento {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .feat-card {
            border-radius: 20px;
            padding: 30px;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .feat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(45, 71, 145, 0.18);
        }

        /* Hero card */
        .feat-hero {
            grid-column: span 1;
            grid-row: span 1;
            background: #ffffff;
            border: 1px solid #e0e7f5;
            box-shadow: 0 2px 12px rgba(0,0,0,0.04);
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .feat-hero-dots { display: none; }

        .feat-hero h3 { font-size: 16px; font-weight: 700; line-height: 1.4; color: #fff; margin: 0; }
        .feat-hero p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.82); margin: 0; flex: 1; }

        .feat-stats-row { display: none; gap: 0; position: relative; z-index: 1; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.2); margin-top: auto; }
        .feat-stat { flex: 1; padding-right: 16px; }
        .feat-stat + .feat-stat { padding-left: 16px; padding-right: 16px; border-left: 1px solid rgba(255,255,255,0.2); }
        .feat-stat:last-child { padding-right: 0; }
        .feat-stat-num { font-size: 26px; font-weight: 800; color: #fff; line-height: 1; }
        .feat-stat-label { font-size: 11px; color: rgba(255,255,255,0.65); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.05em; }

        /* White card */
        .feat-white { background: #ffffff; border: 1px solid #e0e7f5; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }

        /* Primary blue card override */
        .feat-primary { background: #2d4791 !important; border-color: #2d4791 !important; box-shadow: 0 4px 20px rgba(45,71,145,0.25) !important; }
        .feat-primary h3 { color: #ffffff !important; }
        .feat-primary p  { color: rgba(255,255,255,0.82) !important; }
        .feat-primary .feat-icon-box { background: rgba(255,255,255,0.18) !important; color: #ffffff !important; }

        /* Dark card */
        .feat-dark { background: #ffffff; border: 1px solid #e0e7f5; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
        .feat-dark h3 { color: #1a1a2e; }
        .feat-dark p  { color: #6b7280; }

        /* Tint card */
        .feat-tint { background: #ffffff; border: 1px solid #e0e7f5; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }

        /* Wide card */
        .feat-wide { grid-column: span 1; display: flex; flex-direction: column; gap: 16px; }
        .feat-wide-body { flex: 1; }

        /* Centered last row wrapper */
        .feat-last-row { grid-column: 1 / -1; display: flex; justify-content: center; gap: 20px; }
        .feat-last-row .feat-card { width: calc(33.333% - 14px); max-width: calc(33.333% - 14px); }

        @media (max-width: 767.98px) {
            .feat-last-row { flex-direction: column; }
            .feat-last-row .feat-card { width: 100%; max-width: 100%; }
        }

        .feat-wide-tag { display: inline-flex; align-items: center; padding: 5px 14px; background: rgba(255,255,255,0.22); border-radius: 20px; font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.92); margin-top: 14px; letter-spacing: 0.03em; }

        /* Blue gradient wide card */
        .feat-blue { background: #ffffff; border: 1px solid #e0e7f5; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
        .feat-blue h3 { color: #1a1a2e; }
        .feat-blue p  { color: #6b7280; }

        /* Icon box */
        .feat-icon-box {
            width: 50px; height: 50px;
            border-radius: 14px;
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 18px;
            flex-shrink: 0;
            position: relative; z-index: 1;
        }

        .feat-hero .feat-icon-box  { background: #e8edf8; color: #2d4791; }
        .feat-white .feat-icon-box { background: #e8edf8; color: #2d4791; }
        .feat-dark .feat-icon-box  { background: #e8edf8; color: #2d4791; }
        .feat-tint .feat-icon-box  { background: #e8edf8; color: #2d4791; }
        .feat-blue .feat-icon-box  { background: #e8edf8; color: #2d4791; margin-bottom: 0; }

        /* General card text */
        .feat-card h3 { font-size: 16px; font-weight: 700; margin: 0 0 10px; line-height: 1.4; color: #1a1a2e; position: relative; z-index: 1; }
        .feat-card p { font-size: 14px; line-height: 1.65; color: #6b7280; margin: 0; position: relative; z-index: 1; }
        .feat-wide .feat-wide-body h3 { font-size: 16px; }

        /* Dark/coloured card text overrides (must come after .feat-card h3) */
        .feat-hero h3 { color: #1a1a2e; }
        .feat-hero p  { color: #6b7280; }
        .feat-dark h3 { color: #1a1a2e; }
        .feat-dark p  { color: #6b7280; }
        .feat-blue h3 { color: #1a1a2e; }
        .feat-blue p  { color: #6b7280; }
        .feat-blue .feat-icon-box { background: #e8edf8; color: #2d4791; }

        /* ===== SERVICES TAB SHOWCASE ===== */
        .services-showcase {
            display: grid;
            grid-template-columns: 300px 1fr;
            max-width: 1400px;
            margin: 0 auto;
            background: #fff;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(45,71,145,0.12);
            border: 1px solid #e0e7f5;
        }

        .svc-sidebar {
            background: #f8fafc;
            border-right: 1px solid #e5e9f0;
            display: flex;
            flex-direction: column;
            padding: 16px 12px;
            gap: 10px;
        }

        .svc-tab-item {
            position: relative;
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 16px 14px;
            border: none;
            background: transparent;
            cursor: pointer;
            text-align: left;
            width: 100%;
            border-radius: 12px;
            transition: all 0.25s;
            overflow: hidden;
        }

        .svc-tab-progress {
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0%;
            background: linear-gradient(180deg, #2d4791, #4a6abf);
            border-radius: 0 0 4px 4px;
            transition: none;
        }

        .svc-tab-item.active .svc-tab-progress {
            animation: svcProgressFill var(--svc-dur, 4s) linear forwards;
        }

        @keyframes svcProgressFill {
            from { height: 0%; }
            to   { height: 100%; }
        }

        .svc-tab-item:hover {
            background: #f5f7fc;
            transform: translateX(2px);
        }

        .svc-tab-item.active {
            background: #fff;
            box-shadow: 0 4px 20px rgba(45,71,145,0.10);
            transform: translateX(2px);
        }

        .svc-tab-num {
            font-size: 18px;
            font-weight: 800;
            color: #dde3f0;
            line-height: 1;
            width: 30px;
            flex-shrink: 0;
            transition: color 0.25s;
        }

        .svc-tab-item.active .svc-tab-num { color: #2d4791; }

        .svc-tab-info { flex: 1; min-width: 0; }

        .svc-tab-cat {
            display: block;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: #b0b8cc;
            margin-bottom: 3px;
            transition: color 0.25s;
        }

        .svc-tab-item.active .svc-tab-cat { color: #2d4791; }

        .svc-tab-title {
            font-size: 13px;
            font-weight: 600;
            color: #94a3b8;
            line-height: 1.35;
            transition: color 0.25s;
        }

        .svc-tab-item.active .svc-tab-title { color: #1a1a2e; }

        .svc-tab-arrow {
            color: #d1d5db;
            flex-shrink: 0;
            transition: color 0.25s, transform 0.25s;
        }

        .svc-tab-item.active .svc-tab-arrow {
            color: #2d4791;
            transform: translateX(4px);
        }

        /* Detail panel */
        .svc-detail-panel {
            padding: 52px 56px;
            display: flex;
            align-items: center;
            min-height: 380px;
            overflow: hidden;
        }

        .svc-detail {
            display: none;
            width: 100%;
            animation: svcFadeIn 0.35s ease-out;
        }

        .svc-detail.active { display: block; }

        @keyframes svcFadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        .svc-detail-top {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .svc-detail-icon {
            width: 64px;
            height: 64px;
            background: #e8edf8;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2d4791;
            flex-shrink: 0;
        }

        .svc-detail-cat {
            display: block;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #2d4791;
            margin-bottom: 6px;
        }

        .svc-detail h3 {
            font-size: 28px;
            font-weight: 700;
            color: #1a1a2e;
            line-height: 1.2;
            margin: 0;
        }

        .svc-detail p {
            font-size: 15px;
            line-height: 1.75;
            color: #6b7280;
            margin-bottom: 28px;
            max-width: 520px;
        }

        .svc-feature-list {
            list-style: none;
            padding: 0; margin: 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .svc-feature-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 15px;
            color: #374151;
            font-weight: 500;
        }

        .svc-feature-list li::before {
            content: '';
            width: 22px; height: 22px;
            border-radius: 50%;
            flex-shrink: 0;
            background: #e8edf8 url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%232d4791' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") no-repeat center;
        }

        /* Responsive */
        /* Responsive */
        @media (max-width: 767px) {
            .services-showcase {
                display: grid !important;
                grid-template-columns: 1fr !important;
                grid-template-rows: auto auto !important;
                border-radius: 16px;
                overflow: hidden;
            }
            .svc-sidebar {
                border-right: none !important;
                border-bottom: 1px solid #e5e9f0 !important;
                flex-direction: column !important;
                padding: 0 !important;
                gap: 0 !important;
            }
            .svc-tab-item {
                flex-direction: row !important;
                align-items: center !important;
                width: 100% !important;
                min-width: 0 !important;
                border-radius: 0 !important;
                border-left: none !important;
                padding: 14px 16px !important;
                gap: 14px !important;
                transform: none !important;
            }
            .svc-tab-item:not(:last-child) { border-bottom: 1px solid #f0f2f7 !important; }
            .svc-tab-item.active {
                background: rgba(45, 71, 145, 0.05) !important;
                box-shadow: none !important;
                transform: none !important;
            }
            .svc-tab-item.active:not(:last-child) { border-bottom: 1px solid #f0f2f7 !important; }
            .svc-tab-item:hover { transform: none !important; background: rgba(45, 71, 145, 0.03) !important; }
            .svc-tab-arrow { display: block !important; }
            .svc-detail-panel {
                display: block !important;
                padding: 20px !important;
            }
            .svc-detail h3 { font-size: 22px !important; }
            .svc-detail p { max-width: 100% !important; }
        }


        .service-features li::before {
            content: '✓';
            color: #10b981;
            font-weight: bold;
            font-size: 18px;
            flex-shrink: 0;
        }

        .onboarding-section {
            background: transparent;
            border-radius: 0;
            padding: 80px 0;
            margin-top: 80px;
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
            gap: 60px;
            align-items: start;
            width: 100%;
            box-sizing: border-box;
        }

        .onboarding-left {
            position: sticky;
            top: 84px;
            min-width: 0;
        }

        .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, minmax(0, 1fr));
            gap: 20px;
            min-width: 0;
        }

        .onboarding-card {
            background: #fff;
            border: 1px solid #e0e7f5;
            border-radius: 12px;
            padding: 28px 24px;
            transition: box-shadow 0.3s, transform 0.3s;
            display: flex;
            flex-direction: column;
        }

        .onboarding-card: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 0 20px;
            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;
        }

        .onboarding-link {
            font-size: 14px;
            font-weight: 600;
            color: #2d4791;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: gap 0.2s;
            margin-top: auto;
        }

        .onboarding-link:hover {
            gap: 8px;
            color: #1e3370;
        }

        /* Scroll fade-up animation */
        .fade-up {
            opacity: 0;
            transform: translateY(32px);
            transition: opacity 0.6s ease var(--delay, 0s), transform 0.6s ease var(--delay, 0s);
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            background: #ffffff;
            border: 1px solid #e0e7f5;
            border-radius: 20px;
            padding: 40px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0,0,0,0.05);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
            opacity: 0;
            transition: opacity 0.3s;
        }

        .service-card:hover {
            transform: translateY(-6px);
            border-color: #2d4791;
            box-shadow: 0 12px 40px rgba(45, 71, 145, 0.12);
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-icon {
            width: 50px;
            height: 50px;
            background: #2d4791;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 25px;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }

        .service-card p {
            color: #6b7280;
            line-height: 1.6;
            position: relative;
            z-index: 1;
        }


        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-badge {
            display: inline-block;
            padding: 6px 18px;
            background: #e8edf8;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.07em;
            margin-bottom: 16px;
            color: #2d4791;
        }

        .section-title h2 {
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #1a1a2e;
        }

        .section-title p {
            color: #6b7280;
            font-size: 18px;
        }

        /* ===== PRICING ===== */
        .pricing {
            padding: 50px 5%;
            background: #fff;
        }

        /* Billing period toggle */
        .pricing-period-toggle {
            display: inline-flex;
            gap: 4px;
            justify-content: center;
            margin-top: 32px;
            background: #f5f7fc;
            border: 1.5px solid #e5e9f5;
            border-radius: 14px;
            padding: 5px;
        }

        .period-btn {
            font-family: "Poppins", sans-serif;
            padding: 9px 20px;
            background: transparent;
            border: none;
            border-radius: 10px;
            color: #6b7280;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, color 0.2s, box-shadow 0.2s;
            font-size: 13px;
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 7px;
        }

        .period-btn:hover { color: #2d4791; background: rgba(255,255,255,0.7); }

        .period-btn.active {
            background: #fff;
            color: #2d4791;
            box-shadow: 0 2px 10px rgba(45,71,145,0.14);
        }

        .period-save-pill {
            font-size: 10px;
            font-weight: 700;
            padding: 2px 8px;
            border-radius: 20px;
            background: #dcfce7;
            color: #16a34a;
            letter-spacing: 0.02em;
        }

        .period-save-pill.best {
            background: #fef3c7;
            color: #d97706;
        }

        /* ===== PRICING PLANS GRID ===== */
        .pricing-plans-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 1400px;
            margin: 48px auto 0;
            align-items: stretch;
            padding-top: 20px;
        }

        /* Base plan card */
        .ppc-card {
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            padding: 28px 24px 28px;
            position: relative;
            display: flex;
            flex-direction: column;
            transition: box-shadow 0.25s, transform 0.25s;
        }

        .ppc-card:hover {
            box-shadow: 0 8px 32px rgba(45,71,145,0.08);
        }

        /* Diamond — same clean style as Silver */
        .ppc-card.ppc-premium {
            border-color: #e2e8f0;
        }

        /* Most Popular inline badge */

        /* Plan header */
        .ppc-header {
            margin-bottom: 20px;
        }

        .ppc-plan-name {
            font-size: 20px;
            font-weight: 700;
            color: #0f172a;
            line-height: 1.2;
            margin-bottom: 4px;
        }

        .ppc-tagline {
            font-size: 13px;
            color: #64748b;
            font-weight: 400;
        }

        /* Price block */
        .ppc-price-block {
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #f1f5f9;
        }

        .ppc-orig-price {
            font-size: 13px;
            color: #94a3b8;
            text-decoration: line-through;
            min-height: 18px;
            margin-bottom: 2px;
        }

        .ppc-main-row {
            display: flex;
            align-items: baseline;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 4px;
        }

        .ppc-price {
            font-size: 38px;
            font-weight: 800;
            color: #0f172a;
            line-height: 1;
            letter-spacing: -1px;
        }

        /* Save badge — floats above all card top borders */
        .ppc-card .ppc-save-chip {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            width: max-content;
            display: block;
            font-size: 11px;
            font-weight: 700;
            padding: 5px 14px;
            border-radius: 20px;
            background: #dcfce7;
            color: #16a34a;
            white-space: nowrap;
            box-shadow: 0 2px 8px rgba(22,163,74,0.15);
            z-index: 2;
            margin-bottom: 0;
        }

        .ppc-card .ppc-save-chip:empty { display: none; }

        .ppc-period-sub {
            font-size: 12px;
            color: #64748b;
            display: flex;
            align-items: center;
            gap: 4px;
            margin-bottom: 3px;
        }

        .ppc-info-icon { color: #94a3b8; font-size: 12px; cursor: help; }

        .ppc-usd { font-size: 11px; color: #94a3b8; }

        /* CTA button — filled (Gold) */
        .ppc-cta {
            display: block;
            width: 100%;
            padding: 13px 24px;
            background: #2d4791;
            border: 1.5px solid #2d4791;
            border-radius: 10px;
            color: #fff;
            font-family: "Poppins", sans-serif;
            font-size: 14px;
            font-weight: 600;
            text-align: center;
            text-decoration: none;
            margin-bottom: 20px;
            transition: background 0.2s, box-shadow 0.2s;
            box-sizing: border-box;
        }

        .ppc-cta:hover {
            background: #1e3370;
            border-color: #1e3370;
            box-shadow: 0 4px 16px rgba(45,71,145,0.30);
            color: #fff;
        }

        /* CTA button — outline (Silver, Diamond) */
        .ppc-cta.ppc-cta-outline {
            background: transparent;
            color: #2d4791;
        }

        .ppc-cta.ppc-cta-outline:hover {
            background: #2d4791;
            color: #fff;
            box-shadow: 0 4px 16px rgba(45,71,145,0.20);
        }

        /* Feature header label */
        .ppc-feat-header {
            font-size: 12px;
            font-weight: 600;
            color: #64748b;
            margin: 0 0 8px;
        }

        /* Features list */
        .ppc-features {
            list-style: none;
            margin: 0;
            padding: 0;
            flex: 1;
        }

        .ppc-features li {
            display: flex;
            align-items: flex-start;
            gap: 9px;
            padding: 6px 0;
            font-size: 13px;
            color: #374151;
            line-height: 1.4;
        }

        .ppc-features li::before {
            content: '✓';
            flex-shrink: 0;
            color: #2d4791;
            font-size: 13px;
            font-weight: 700;
            line-height: 1.4;
        }

        .ppc-feat-info {
            margin-left: auto;
            font-size: 12px;
            color: #94a3b8;
            cursor: help;
            flex-shrink: 0;
            line-height: 1.4;
        }

        .ppc-feat-note {
            margin-left: auto;
            font-size: 10px;
            background: #f1f5f9;
            color: #64748b;
            padding: 2px 7px;
            border-radius: 8px;
            white-space: nowrap;
            flex-shrink: 0;
        }

        /* btn-primary kept for other uses */
        .btn-primary {
            font-family: "Poppins", sans-serif;
            padding: 12px 24px;
            background: #2d4791;
            border: none;
            border-radius: 10px;
            color: #fff;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
            font-size: 13.5px;
            text-align: center;
            text-decoration: none;
            display: block;
            margin-top: auto;
        }

        .btn-primary:hover {
            background: #1e3370;
            box-shadow: 0 6px 20px rgba(45,71,145,0.35);
            transform: translateY(-1px);
        }

        .enterprise-customization {
            margin-top: 60px;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
            background: #f5f7fc;
            border: 1px solid #e0e7f5;
            border-radius: 20px;
            padding: 40px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .enterprise-customization h2 {
            font-weight: 700;
            margin-bottom: 15px;
            color: #1a1a2e;
        }

        .enterprise-customization p {
            font-size: 15px;
            color: #6b7280;
            line-height: 1.6;
        }

        .enterprise-list {
            list-style: none;
            padding: 0;
            margin: 12px 0 0;
        }

        .enterprise-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 15px;
            color: #6b7280;
            line-height: 1.6;
            margin-bottom: 10px;
        }

        .enterprise-list li::before {
            content: "ㆍ";
            flex-shrink: 0;
            color: #2d4791;
            font-size: 15px;
            line-height: 1.6;
        }

        /* ===== STATS MODERN ===== */
        .stats-modern {
            padding: 80px 5%;
            background: linear-gradient(135deg, #0f172a 0%, #1a2a5e 50%, #1e3370 100%);
            position: relative;
            overflow: hidden;
        }

        .stats-modern::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle, rgba(255,255,255,0.055) 1px, transparent 1px);
            background-size: 30px 30px;
            pointer-events: none;
        }

        .stats-modern::after {
            content: '';
            position: absolute;
            top: -120px;
            right: -120px;
            width: 480px;
            height: 480px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(74,106,191,0.18) 0%, transparent 70%);
            pointer-events: none;
        }

        .stats-bento-card {
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .stats-bento-heading {
            margin-bottom: 56px;
        }

        .stats-section-badge {
            display: inline-block;
            padding: 5px 18px;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.18);
            border-radius: 50px;
            font-size: 11px;
            font-weight: 700;
            color: rgba(255,255,255,0.75);
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 18px;
        }

        .stats-bento-heading h2 {
            font-size: 36px;
            font-weight: 800;
            color: #fff;
            line-height: 1.2;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }

        .stats-bento-heading p {
            font-size: 15px;
            color: rgba(255,255,255,0.55);
            line-height: 1.6;
        }

        /* 4-card horizontal grid */
        .stats-modern-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .stat-modern-card {
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 20px;
            padding: 36px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 14px;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
            position: relative;
            overflow: hidden;
        }

        .stat-modern-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 50% 0%, rgba(74,106,191,0.15) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
        }

        .stat-modern-card:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-6px);
            box-shadow: 0 24px 50px rgba(0,0,0,0.3);
        }

        .stat-modern-card:hover::before { opacity: 1; }

        .stat-modern-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.15);
            color: #8aaee8;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            position: relative;
            z-index: 1;
        }

        .stat-modern-num {
            font-size: 48px;
            font-weight: 800;
            line-height: 1;
            letter-spacing: -2px;
            background: linear-gradient(135deg, #ffffff 0%, #a5b9f0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            z-index: 1;
        }

        .stat-modern-label {
            font-size: 13px;
            font-weight: 500;
            color: rgba(255,255,255,0.55);
            letter-spacing: 0.3px;
            position: relative;
            z-index: 1;
        }

        .stat-modern-desc { display: none; }

        /* ===== COMPARISON TABLE ===== */
        .comparison-section {
            padding: 50px 3%;
            background: #fff;
        }

        .cmp-table-wrap {
            max-width: 1060px;
            margin: 0 auto;
            border-radius: 16px;
            border: 1px solid #e2e8f0;
            overflow: hidden;
            background: #fff;
        }

        .cmp-table {
            width: 100%;
            border-collapse: collapse;
            font-family: "Poppins", sans-serif;
        }

        /* Header row */
        .cmp-head-row th {
            padding: 0;
            text-align: center;
            font-size: 15px;
            font-weight: 700;
            color: #1a1a2e;
            background: #fff;
            border-bottom: 1px solid #e2e8f0;
        }

        .cmp-th-feature {
            width: 32%;
            text-align: left !important;
            padding: 22px 28px !important;
        }

        .cmp-th {
            padding: 22px 16px !important;
        }

        .cmp-th-featured {
            background: #2d4791 !important;
            color: #fff !important;
            padding: 0 !important;
            vertical-align: top;
        }

        .cmp-th-featured-inner {
            padding: 22px 16px;
            border-top: 4px solid #4a6abf;
        }

        /* Category group header row */
        .cmp-category-row .cmp-category-label {
            padding: 20px 28px 8px;
            font-size: 11px;
            font-weight: 700;
            color: #94a3b8;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            border-top: 1px solid #e8edf5;
            border-bottom: none;
            background: #fff;
        }

        .cmp-category-row .cmp-cat-col {
            border-top: 1px solid #e8edf5;
            border-bottom: none;
            padding: 8px 0;
        }

        .cmp-category-row .cmp-cat-col.cmp-val-featured {
            background: #eef2ff !important;
        }

        /* Feature rows */
        .cmp-row {
            border-bottom: 1px solid #f0f3fa;
        }

        .cmp-row:last-child { border-bottom: none; }

        .cmp-feat {
            padding: 16px 28px;
            font-size: 14px;
            font-weight: 600;
            color: #1a1a2e;
            text-align: left;
        }

        .cmp-info {
            font-size: 12px;
            color: #9ca3af;
            cursor: help;
            margin-left: 4px;
        }

        .cmp-val {
            padding: 16px 16px;
            text-align: center;
            font-size: 14px;
            color: #1a1a2e;
            border-left: none;
        }

        .cmp-val-featured { background: #eef2ff !important; }

        .cv-check {
            display: inline-block;
            color: #2d4791;
            font-size: 18px;
            font-weight: 800;
            line-height: 1;
        }

        .cv-dash {
            display: inline-block;
            font-size: 18px;
            font-weight: 400;
            color: #d1d5db;
            line-height: 1;
        }

        .cv-limited {
            font-size: 12px;
            font-weight: 600;
            color: #d97706;
            background: #fef3c7;
            padding: 3px 8px;
            border-radius: 6px;
        }

        .cv-extra {
            font-size: 12px;
            font-weight: 600;
            color: #d97706;
            background: #fef3c7;
            padding: 3px 8px;
            border-radius: 6px;
        }

        .cv-price {
            font-size: 15px;
            font-weight: 700;
            color: #1a1a2e;
        }

        /* Responsive */
        @media (max-width: 700px) {
            .cmp-table-wrap { overflow-x: auto; }
            .cmp-table { min-width: 580px; }
            .cmp-feat { font-size: 12px; padding-left: 14px !important; }
            .cmp-row td { padding: 14px 10px; font-size: 12px; }
            .cmp-head-row th { padding: 16px 10px; font-size: 13px; }
        }

        /* ===== BLOG SECTION ===== */
        .blog {
            padding: 50px 3%;
            background: #f5f7fc;
            position: relative;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .blog-card {
            background: #ffffff;
            border: 1px solid #e0e7f5;
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.3s;
        }

        .blog-card:hover {
            transform: translateY(-6px);
            border-color: #2d4791;
            box-shadow: 0 12px 40px rgba(45, 71, 145, 0.12);
        }

        .blog-image {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .blog-image-placeholder {
            width: 100%;
            height: 100%;
            background: #2d4791;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .blog-image-placeholder span {
            font-size: 28px;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.3);
            text-transform: uppercase;
            letter-spacing: 4px;
        }

        .blog-category {
            position: absolute;
            bottom: 15px;
            left: 15px;
            padding: 6px 16px;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            color: #fff;
            letter-spacing: 0.5px;
        }

        .blog-content {
            padding: 30px;
        }

        .blog-date {
            font-size: 13px;
            color: #9ca3af;
            margin-bottom: 12px;
        }

        .blog-content h3 {
            font-size: 20px;
            margin-bottom: 12px;
            line-height: 1.4;
            color: #1a1a2e;
        }

        .blog-content p {
            color: #6b7280;
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .blog-read-more {
            display: inline-block;
            color: #2d4791;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s;
        }

        .blog-read-more:hover {
            color: #1e3370;
            transform: translateX(5px);
        }

        /* ===== CONTACT SECTION ===== */
        .contact {
            background: #ffffff;
            padding: 50px 5%;
        }

        .contact-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: start;
        }

        /* Left info panel */
        .contact-left {
            padding-top: 8px;
        }

        .contact-badge {
            display: inline-block;
            background: #e8edf8;
            color: #2d4791;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            padding: 5px 14px;
            border-radius: 20px;
            margin-bottom: 18px;
        }

        .contact-left h2 {
            font-size: 30px;
            font-weight: 700;
            color: #1a1a2e;
            line-height: 1.3;
            margin-bottom: 14px;
        }

        .contact-left > p {
            font-size: 14px;
            color: #6b7280;
            line-height: 1.7;
            margin-bottom: 32px;
        }

        .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.2s;
        }

        .contact-item:hover {
            box-shadow: 0 4px 16px rgba(45,71,145,0.09);
            transform: translateX(4px);
        }

        .contact-item-icon {
            width: 38px;
            height: 38px;
            min-width: 38px;
            background: #e8edf8;
            border-radius: 8px;
            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;
        }

        /* Right form card */
        .form-container {
            background: #fff;
            padding: 36px 32px;
            border-radius: 16px;
            box-shadow: 0 4px 32px rgba(45,71,145,0.09);
            border: 1px solid #e5e9f5;
        }

        .form-container h3 {
            color: #1a1a2e;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 24px;
        }

        .form-group {
            margin-bottom: 14px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 10px 14px;
            border: 1.5px solid #e2e8f0;
            border-radius: 8px;
            font-size: 13.5px;
            color: #1a1a2e;
            transition: border-color 0.2s, box-shadow 0.2s;
            font-family: "Poppins", sans-serif;
            background: #fafbfe;
            box-sizing: border-box;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #2d4791;
            box-shadow: 0 0 0 3px rgba(45,71,145,0.08);
            background: #fff;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .captcha-container {
            background: #f8faff;
            padding: 16px;
            border-radius: 10px;
            border: 1.5px solid #e2e8f0;
        }

        .captcha-label {
            color: #1a1a2e;
            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 #e2e8f0;
            border-radius: 6px;
            background: white;
            cursor: default;
        }

        .captcha-refresh {
            background: #2d4791;
            color: white;
            border: none;
            padding: 10px 14px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 18px;
            transition: background 0.2s, transform 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 44px;
            height: 44px;
        }

        .captcha-refresh:hover {
            background: #1e3370;
            transform: rotate(180deg);
        }

        .captcha-input {
            width: 100%;
            padding: 10px 14px;
            border: 1.5px solid #e2e8f0;
            border-radius: 8px;
            font-size: 14px;
            font-family: "Poppins", sans-serif;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-weight: 600;
            background: #fafbfe;
            box-sizing: border-box;
        }

        .captcha-input:focus {
            outline: none;
            border-color: #2d4791;
            box-shadow: 0 0 0 3px rgba(45,71,145,0.08);
        }

        .captcha-hint {
            font-size: 10px;
            color: #94a3b8;
        }

        .error-message {
            background: #fee2e2;
            border: 2px solid #ef4444;
            color: #991b1b;
            padding: 12px 16px;
            border-radius: 8px;
            margin-bottom: 15px;
            display: none;
            font-size: 14px;
            font-weight: 600;
            align-items: center;
            gap: 8px;
        }

        .error-message.show {
            display: flex;
        }

        .error-message::before {
            content: '⚠️';
            font-size: 18px;
        }

        .success-message {
            background: #d1fae5;
            border: 2px solid #10b981;
            color: #065f46;
            padding: 12px 16px;
            border-radius: 8px;
            margin-bottom: 15px;
            display: none;
            font-size: 14px;
            font-weight: 600;
            align-items: center;
            gap: 8px;
        }

        .success-message.show {
            display: flex;
        }

        .success-message::before {
            content: '✅';
            font-size: 18px;
        }

        .form-group input.error,
        .form-group textarea.error {
            border-color: #ef4444;
            background: #fef2f2;
        }

        .form-group input.error:focus,
        .form-group textarea.error:focus {
            border-color: #dc2626;
            box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
        }

        .captcha-input:focus {
            outline: none;
            border-color: #3b82f6;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }

        .submit-button {
            width: 100%;
            padding: 12px;
            background: #2d4791;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, box-shadow 0.2s;
            font-family: "Poppins", sans-serif;
        }

        .submit-button:hover {
            background: #1e3370;
            box-shadow: 0 4px 16px rgba(45,71,145,0.3);
        }

        .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;
            letter-spacing: 0.3px;
        }

        .footer-col a {
            display: block;
            color: #6b7280;
            text-decoration: none;
            font-size: 14px;
            margin-bottom: 10px;
            transition: color 0.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: 8px;
        }

        .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);
            opacity: 1;
        }

        .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 0.2s;
        }

        .footer-bottom a:hover {
            color: #fff;
        }

        .footer-sep {
            color: rgba(255, 255, 255, 0.3);
            font-size: 14px;
        }

        /* Responsive Design */
        @media (max-width: 575.98px) {
            .navbar {
                padding: 0 4%;
            }

            .hamburger {
                display: flex;
            }

            .nav-cta-group {
                display: none;
            }

            .nav-links {
                position: fixed;
                top: 64px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 64px);
                background: white;
                flex-direction: column;
                gap: 0;
                padding: 15px;
                transition: left 0.3s ease;
                overflow-y: auto;
                box-shadow: none;
                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;
                width: 100%;
                border-bottom: 1px solid #e5e7eb;
                font-size: 14px;
            }

            .cta-btn {
                width: 100%;
                margin-top: 10px;
                padding: 10px 20px;
                font-size: 14px;
            }

            .hero {
                padding-top: 64px;
                min-height: auto;
                padding-bottom: 32px;
            }

            .hero-content {
                padding: 28px 16px 36px;
                text-align: center;
            }

            .hero-columns {
                grid-template-columns: 1fr;
                gap: 0;
                margin-bottom: 16px;
            }

            .hero-visual { display: block; max-width: 460px; margin-left: auto; margin-right: auto; }

            .hero-badge {
                font-size: 11px;
                padding: 6px 12px;
                margin-left: auto;
                margin-right: auto;
            }

            .hero h1 {
                font-size: 26px;
                line-height: 1.3;
            }

            .hero p {
                font-size: 14px;
            }

            .hero-cta-row {
                justify-content: center;
            }

            .hero-trust {
                justify-content: center;
            }

            .sub-hero-content2 {
                padding: 20px;
                border-radius: 15px;
            }

            .section-title h2 {
                font-size: 22px;
            }

            .section-title p {
                font-size: 14px;
            }

            .section-badge {
                font-size: 12px;
                padding: 6px 15px;
            }

            .features-bento {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .feat-hero, .feat-wide {
                grid-column: span 1;
                grid-row: span 1;
            }

            .feat-wide { display: block; }
            .feat-wide .feat-icon-box { margin-bottom: 16px; }

            .feat-stats-row { gap: 0; }

            .comprehensive-services {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .pricing-plans-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .onboarding-section {
                grid-template-columns: 1fr;
                padding: 40px 5%;
                gap: 32px;
            }

            .onboarding-left {
                position: static;
            }

            .onboarding-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .service-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .feat-card {
                padding: 22px;
            }

            .feat-hero h3 { font-size: 20px; }

            .feature-card,
            .comprehensive-card,
            .service-card,
            .ppc-card {
                padding: 20px;
            }

            .feature-icon,
            .service-icon {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }

            .comprehensive-icon {
                width: 50px;
                height: 50px;
                font-size: 25px;
            }

            .feature-card h3,
            .service-card h3 {
                font-size: 18px;
            }

            .comprehensive-card h3 {
                font-size: 22px;
            }

            .ppc-card.ppc-popular,
            .ppc-card.ppc-premium {
                transform: none;
            }

            .ppc-price { font-size: 30px; }

            .contact-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .contact h2 {
                font-size: 1.8rem;
            }

            .form-container {
                padding: 1.5rem;
            }

            .form-container h3 {
                font-size: 1.4rem;
            }

            .stats-modern { padding: 60px 4%; }
            .stats-bento-heading h2 { font-size: 26px; }
            .stats-modern-grid { grid-template-columns: 1fr 1fr; }
            .stat-modern-num { font-size: 36px; }

            .footer-columns {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .hero-buttons {
                flex-direction: column;
                width: 100%;
                gap: 15px;
            }

            .btn-primary {
                width: 100%;
                padding: 14px 30px;
                font-size: 15px;
            }

            .enterprise-customization {
                padding: 25px;
            }

            .enterprise-customization h2 {
                font-size: 20px;
            }

            .enterprise-customization p {
                font-size: 14px;
            }

            .enterprise-list li,
            .enterprise-list li::before {
                font-size: 14px;
            }

            .captcha-container {
                padding: 20px;
            }

            .captcha-label {
                font-size: 14px;
                margin-bottom: 15px;
            }

            .captcha-canvas-wrapper {
                flex-direction: column;
                align-items: stretch;
                padding: 12px;
            }

            .captcha-canvas {
                width: 100%;
                height: auto;
                border-width: 2px;
            }

            .captcha-refresh {
                align-self: flex-end;
                margin-top: 10px;
                padding: 12px;
                min-width: 45px;
                height: 45px;
                font-size: 20px;
            }

            .captcha-input {
                font-size: 16px;
                letter-spacing: 3px;
                padding: 12px 16px;
            }

            .captcha-hint {
                font-size: 12px;
            }

            .blog {
                padding: 50px 4%;
            }

            .blog-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .blog-image {
                height: 160px;
            }

            .blog-content {
                padding: 20px;
            }


            .blog-content h3 {
                font-size: 18px;
            }
        }

        @media (min-width: 576px) and (max-width: 991.98px) {
            .navbar {
                padding: 0 4%;
            }

            .hamburger {
                display: flex;
            }

            .nav-cta-group {
                display: none;
            }

            .nav-links {
                position: fixed;
                top: 64px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 64px);
                background: white;
                flex-direction: column;
                gap: 0;
                padding: 20px;
                transition: left 0.3s ease;
                overflow-y: auto;
                box-shadow: none;
                align-items: stretch;
            }

            .nav-links.active {
                left: 0;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            }

            .nav-links a {
                padding: 15px 0;
                width: 100%;
                border-bottom: 1px solid #e5e7eb;
                font-size: 15px;
            }

            .cta-btn {
                width: 100%;
                margin-top: 12px;
            }

            .hero {
                padding-top: 64px;
                min-height: auto;
                padding-bottom: 36px;
            }

            .hero-content {
                padding: 28px 16px 40px;
                text-align: center;
            }

            .hero-columns {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .hero-visual { display: block; max-width: 460px; margin-left: auto; margin-right: auto; }

            .hero-badge {
                font-size: 12px;
                padding: 7px 14px;
                margin-left: auto;
                margin-right: auto;
            }

            .hero h1 {
                font-size: 32px;
            }

            .hero p {
                font-size: 15px;
            }

            .sub-hero-content1 {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-cta-row {
                justify-content: center;
            }

            .hero-trust {
                justify-content: center;
            }

            .sub-hero-content2 {
                padding: 25px;
            }

            .section-title h2 {
                font-size: 26px;
            }

            .section-title p {
                font-size: 15px;
            }

            .features-bento {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .feat-hero, .feat-wide {
                grid-column: span 1;
                grid-row: span 1;
            }

            .feat-wide { display: block; }

            .comprehensive-services {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .onboarding-section {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .onboarding-left {
                position: static;
            }

            .onboarding-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }

            .service-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }

            .pricing-plans-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .ppc-card.ppc-popular { transform: none; }

            .contact-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .form-container {
                padding: 2rem;
            }

            .stats-modern-header h2 { font-size: 26px; }
            .stats-modern-grid { grid-template-columns: 1fr 1fr; }

            .footer-columns {
                grid-template-columns: 1fr 1fr;
                gap: 28px;
            }
        }

        @media (min-width: 768px) and (max-width: 960px) {
            .hero-content {
                grid-template-columns: 1fr;
                padding: 32px 5% 50px;
                gap: 0;
                text-align: center;
            }
            .hero-visual { display: block; max-width: 460px; margin-left: auto; margin-right: auto; }
            .hero-badge { margin-left: auto; margin-right: auto; }
            .hero-cta-row { justify-content: center; }
            .hero-trust { justify-content: center; }
        }

        @media (min-width: 768px) and (max-width: 991.98px) {
            .navbar {
                padding: 0 4%;
            }

            .nav-links {
                gap: 15px;
            }

            .nav-links a {
                font-size: 15px;
            }

            .cta-btn {
                padding: 9px 16px;
                font-size: 13px;
            }

            .cta-btn-outline {
                padding: 9px 16px;
                font-size: 13px;
            }

            .hero {
                padding-top: 64px;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 0;
                padding: 32px 5% 50px;
                text-align: center;
            }

            .hero-visual { display: block; max-width: 460px; margin-left: auto; margin-right: auto; }

            .hero-badge {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-cta-row {
                justify-content: center;
            }

            .hero-trust {
                justify-content: center;
            }

            .hero h1 {
                font-size: 32px;
            }

            .hero p {
                font-size: 16px;
            }

            .sub-hero-content2 {
                padding: 20px;
            }

            .section-title h2 {
                font-size: 28px;
            }

            .section-title p {
                font-size: 15px;
            }

            .features-bento {
                grid-template-columns: repeat(2, 1fr);
                gap: 18px;
            }

            .feat-hero {
                grid-column: span 1;
                grid-row: span 1;
            }

            .feat-wide {
                grid-column: span 1;
                display: flex;
            }

            .comprehensive-services {
                grid-template-columns: 1fr;
                gap: 35px;
            }

            .service-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 25px;
            }

            .pricing-plans-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 15px;
            }

            .ppc-card { padding: 25px; }


            .contact-container {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .stats-modern-header h2 { font-size: 32px; }
            .stats-modern-grid { grid-template-columns: repeat(2, 1fr); }

            .footer-columns {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
        }

        @media (min-width: 992px) and (max-width: 1199.98px) {
            .navbar {
                padding: 0 4%;
            }

            .nav-links {
                gap: 25px;
            }

            .nav-links a {
                font-size: 15px;
            }

            .hero h1 {
                font-size: 48px;
            }

            .hero p {
                font-size: 18px;
            }

            .section-title h2 {
                font-size: 36px;
            }

            .features-bento {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .feat-hero {
                grid-column: span 1;
                grid-row: span 1;
            }

            .feat-wide {
                grid-column: span 1;
            }

            .comprehensive-services {
                grid-template-columns: repeat(2, 1fr);
                gap: 35px;
            }

            .service-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 28px;
            }

            .pricing-plans-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 25px;
            }


            .contact-container {
                grid-template-columns: 1fr 1fr;
                gap: 3rem;
            }

            .stats-modern-grid { grid-template-columns: repeat(4, 1fr); }

            .footer-columns {
                grid-template-columns: 1fr 1fr;
                gap: 50px;
            }
        }

        @media (min-width: 1200px) and (max-width: 1399.98px) {
            .navbar {
                padding: 0 5%;
            }

            .nav-links {
                gap: 35px;
            }

            .hero h1 {
                font-size: 48px;
            }

            .features-bento {
                grid-template-columns: repeat(3, 1fr);
            }

            .feat-hero {
                grid-column: span 2;
                grid-row: span 1;
            }

            .feat-wide {
                grid-column: span 1;
            }

            .comprehensive-services {
                grid-template-columns: repeat(2, 1fr);
            }

            .service-grid {
                grid-template-columns: repeat(4, 1fr);
            }

        }

        @media (min-width: 1400px) {
            .navbar {
                padding: 0 8%;
            }

            .nav-links {
                gap: 40px;
            }

            .hero h1 {
                font-size: 54px;
            }

            .hero p {
                font-size: 20px;
            }

            .section-title h2 {
                font-size: 36px;
            }

            .features-bento {
                grid-template-columns: repeat(4, 1fr);
                max-width: 1400px;
            }

            .comprehensive-services {
                grid-template-columns: repeat(2, 1fr);
                max-width: 1400px;
            }

            .service-grid {
                grid-template-columns: repeat(4, 1fr);
                max-width: 1400px;
            }

            .pricing-plans-grid {
                max-width: 1400px;
            }

            .contact-container {
                max-width: 1400px;
            }

            .stats-modern-inner { max-width: 1400px; }

            .footer-columns {
                max-width: 1400px;
                grid-template-columns: 1fr 1fr;
            }
        }

        .floating-ca-btn {
            position: fixed;
            bottom: 28px;
            right: 28px;
            display: flex;
            align-items: center;
            gap: 12px;
            background: #ffffff;
            color: #2D4792;
            text-decoration: none;
            padding: 12px 28px 12px 18px;
            border-radius: 50px;
            border: 4px solid #2D4792;
            outline: 3px solid #3b5ec9;
            outline-offset: 2px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
            font-family: "Poppins", sans-serif;
            z-index: 999;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }

        .floating-ca-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 22px rgba(45, 71, 146, 0.35);
        }

        .floating-ca-logo {
            width: 32px;
            height: 32px;
            object-fit: contain;
            flex-shrink: 0;
        }

        .floating-ca-text {
            font-size: 18px;
            font-weight: 700;
            color: #2D4792;
            white-space: nowrap;
            letter-spacing: 0.3px;
        }

        @media (max-width: 767.98px) {
            .floating-ca-btn {
                bottom: 20px;
                right: 20px;
                padding: 10px 22px 10px 14px;
                gap: 10px;
                border: 3px solid #2D4792;
                outline: 2px solid #3b5ec9;
            }

            .floating-ca-logo {
                width: 26px;
                height: 26px;
            }

            .floating-ca-text {
                font-size: 15px;
            }
        }

        /* ===== NEW PRICING — PLAN TABS → PERIOD CARDS ===== */

        .pricing-toggle {
            display: inline-flex;
            gap: 4px;
            justify-content: center;
            margin-top: 32px;
            background: #f5f7fc;
            border: 1.5px solid #e5e9f5;
            border-radius: 14px;
            padding: 5px;
        }

        .toggle-btn {
            font-family: "Poppins", sans-serif;
            font-size: 14px;
            font-weight: 500;
            border: none;
            background: transparent;
            color: #64748b;
            padding: 9px 28px;
            min-width: 130px;
            text-align: center;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.22s;
        }

        .toggle-btn:hover { color: #2d4791; background: rgba(255,255,255,0.7); }

        .toggle-btn.active {
            background: #fff;
            color: #2d4791;
            font-weight: 600;
            box-shadow: 0 2px 10px rgba(45,71,145,0.1);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 1400px;
            margin: 48px auto 0;
            align-items: stretch;
            padding-top: 20px;
        }

        .pricing-card {
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            padding: 28px 24px;
            position: relative;
            display: flex;
            flex-direction: column;
            transition: box-shadow 0.25s;
        }

        .pricing-card:hover {
            box-shadow: 0 8px 32px rgba(45,71,145,0.08);
        }

        /* Save badge — floats above card top border */
        .offer-badge {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            width: max-content;
            font-size: 11px;
            font-weight: 700;
            padding: 5px 14px;
            border-radius: 20px;
            background: #dcfce7;
            color: #16a34a;
            white-space: nowrap;
            box-shadow: 0 2px 8px rgba(22,163,74,0.15);
            z-index: 2;
        }

        /* Card header: period name */
        .pricing-header {
            padding-bottom: 16px;
            margin-bottom: 16px;
            border-bottom: 1px solid #f1f5f9;
        }

        .pricing-badge {
            font-size: 18px;
            font-weight: 700;
            color: #0f172a;
            line-height: 1.2;
            margin-bottom: 6px;
            display: block;
        }

        /* Price block */
        .pricing-usd {
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .pricing-price {
            font-size: 38px;
            font-weight: 700;
            color: #0f172a;
            line-height: 1;
            letter-spacing: -1px;
            margin-bottom: 4px;
        }

        .pricing-usd p {
            font-size: 11px;
            color: #94a3b8;
            margin: 0;
        }

        .pricing-usd strong { color: #94a3b8; font-weight: 500; }

        /* Features section */
        .pricing-features {
            margin-top: 12px;
            margin-bottom: 16px;
        }

        .features-badge {
            font-size: 12px;
            font-weight: 600;
            color: #64748b;
            display: block;
            margin-bottom: 8px;
        }

        .pricing-features ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .pricing-features ul li {
            display: flex;
            align-items: flex-start;
            gap: 9px;
            padding: 6px 0;
            font-size: 13px;
            color: #374151;
            line-height: 1.4;
        }

        .pricing-features ul li::before {
            content: "✓";
            flex-shrink: 0;
            width: 16px;
            text-align: center;
            color: #2d4791;
            font-size: 13px;
            font-weight: 700;
            line-height: 1.4;
        }

        /* Modules & Addons */
        .pricing-modules {
            font-size: 13px;
            color: #374151;
            line-height: 1.7;
            margin-top: 4px;
            margin-bottom: 16px;
        }

        .pricing-modules p { margin: 0; }

        .pricing-modules p strong {
            font-size: 12px;
            font-weight: 600;
            color: #64748b;
        }

        .pricing-modules ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .pricing-modules ul li {
            display: flex;
            align-items: flex-start;
            gap: 9px;
            padding: 5px 0;
            font-size: 13px;
            color: #374151;
            line-height: 1.4;
        }

        .pricing-modules ul li::before {
            content: "•";
            flex-shrink: 0;
            width: 16px;
            text-align: center;
            color: #2d4791;
            font-size: 13px;
            font-weight: 700;
            line-height: 1.4;
        }

        .addons-modules {
            font-size: 13px;
            color: #374151;
            line-height: 1.7;
            margin-top: auto;
            margin-bottom: 20px;
        }

        .addons-modules p { margin: 0; }

        .addons-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 4px;
        }

        .addons-header p {
            font-size: 12px;
            font-weight: 600;
            color: #64748b;
            margin: 0;
        }

        .addon-badge {
            display: inline-block;
            background: #fef3c7;
            color: #92400e;
            font-size: 10px;
            font-weight: 600;
            padding: 2px 10px;
            border-radius: 20px;
            white-space: nowrap;
        }

        /* Choose Now button — matches ppc-cta */
        .pricing-card .btn-primary {
            display: block;
            width: 100%;
            padding: 13px 24px;
            background: #2d4791;
            border: 1.5px solid #2d4791;
            border-radius: 10px;
            color: #fff;
            font-family: "Poppins", sans-serif;
            font-size: 14px;
            font-weight: 600;
            text-align: center;
            text-decoration: none;
            transition: background 0.2s, box-shadow 0.2s;
            box-sizing: border-box;
        }

        .pricing-card .btn-primary:hover {
            background: #1e3370;
            border-color: #1e3370;
            box-shadow: 0 4px 16px rgba(45,71,145,0.30);
            color: #fff;
        }

        @media (min-width: 601px) and (max-width: 900px) {
            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
                max-width: 700px;
                gap: 24px;
            }
        }

        @media (max-width: 600px) {
            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 420px;
                gap: 32px;
            }
        }

        @media (max-width: 575px) {
            .pricing-grid {
                max-width: 100%;
                padding: 0 4px;
            }

            .pricing-toggle {
                display: flex;
                width: 100%;
                max-width: 360px;
                margin-left: auto;
                margin-right: auto;
            }

            .toggle-btn {
                padding: 9px 10px;
                font-size: 13px;
                min-width: 0;
                flex: 1;
            }
        }

        /* =========================================================
           RESPONSIVE TYPOGRAPHY — Bootstrap breakpoints (mobile-first)
           XS <576 · SM ≥576 · MD ≥768 · LG ≥992 · XL ≥1200 · XXL ≥1400
           Smooth font scaling so every device (Windows/Mac, any DPI) is covered.
           ========================================================= */

        /* XS — base (<576px) */
        .hero h1 { font-size: 28px; }
        .hero p, .hero .sub-hero-content2 { font-size: 14.5px; }
        .section-title h2 { font-size: 23px; }
        .section-title p { font-size: 14px; }

        /* SM ≥576px */
        @media (min-width: 576px) {
            .hero h1 { font-size: 34px; }
            .hero p, .hero .sub-hero-content2 { font-size: 15px; }
            .section-title h2 { font-size: 25px; }
            .section-title p { font-size: 15px; }
        }

        /* MD ≥768px */
        @media (min-width: 768px) {
            .hero h1 { font-size: 40px; }
            .hero p, .hero .sub-hero-content2 { font-size: 16px; }
            .section-title h2 { font-size: 28px; }
            .section-title p { font-size: 16px; }
        }

        /* LG ≥992px */
        @media (min-width: 992px) {
            .hero h1 { font-size: 46px; }
            .hero p, .hero .sub-hero-content2 { font-size: 17px; }
            .section-title h2 { font-size: 30px; }
            .section-title p { font-size: 16px; }
        }

        /* XL ≥1200px */
        @media (min-width: 1200px) {
            .hero h1 { font-size: 52px; }
            .hero p, .hero .sub-hero-content2 { font-size: 18px; }
            .section-title h2 { font-size: 34px; }
            .section-title p { font-size: 17px; }
        }

        /* XXL ≥1400px */
        @media (min-width: 1400px) {
            .hero h1 { font-size: 56px; }
            .hero p, .hero .sub-hero-content2 { font-size: 18px; }
            .section-title h2 { font-size: 38px; }
            .section-title p { font-size: 18px; }
        }

        @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); }
