:root {
            --bg: #f5f9fc;
            --bg2: #edf5fb;
            --white: #ffffff;
            --surface: #ffffff;
            --surface2: #f0f7fc;
            --border: rgba(0, 140, 170, 0.1);
            --border2: rgba(0, 140, 170, 0.18);
            --teal: #009faf;
            --teal-dark: #007a8a;
            --teal-light: #e0f5f7;
            --teal-mid: #c2edf2;
            --blue: #1a6fa8;
            --blue-dark: #125384;
            --blue-light: #deeef9;
            --text: #0f2638;
            --text2: #2e4a60;
            --muted: #6e8ea3;
            --muted2: #8faab9;
            --fs-xs: 11px;
            --fs-sm: 12.5px;
            --fs-base: 13.5px;
            --fs-md: 14.5px;
            --fs-lg: 17px;
            --fs-xl: 21px;
            --fs-2xl: 27px;
            --fs-3xl: 36px;
            --fs-4xl: 48px;
            --fs-5xl: 62px;
            --r: 14px;
            --r-lg: 20px;
            --shadow-sm: 0 2px 12px rgba(0, 100, 130, 0.07);
            --shadow: 0 8px 32px rgba(0, 100, 130, 0.1);
            --shadow-lg: 0 20px 60px rgba(0, 100, 130, 0.12);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background: var(--bg);
            color: var(--text);
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: var(--fs-base);
            overflow-x: hidden;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            width: 90%;
            max-width: 1180px;
            margin: auto;
        }

        nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
        }

        .nav-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 11px 0;
            border-bottom: 1px solid var(--border);
            backdrop-filter: blur(18px);
        }

        .logo img {
            height: 42px;
            object-fit: contain;
            display: block;
        }

        .nav-links {
            display: flex;
            gap: 26px;
            align-items: center;
        }

        .nav-links a {
            font-size: var(--fs-sm);
            color: var(--text2);
            font-weight: 500;
            transition: .2s;
        }

        .nav-links a:hover {
            color: var(--teal);
        }

        .nav-cta {
            padding: 9px 20px;
            border-radius: 8px;
            background: linear-gradient(135deg, var(--teal), var(--blue));
            color: #fff;
            font-size: var(--fs-sm);
            font-weight: 600;
            transition: .2s;
            box-shadow: 0 4px 16px rgba(0, 140, 170, 0.25);
        }

        .nav-cta:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 22px rgba(0, 140, 170, 0.32);
        }

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 80px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(160deg, #f5f9fc 0%, #eaf5fb 40%, #e2f1f8 100%);
        }

        .hero-blob1 {
            position: absolute;
            top: -180px;
            right: -120px;
            width: 700px;
            height: 700px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 159, 175, 0.12) 0%, rgba(26, 111, 168, 0.06) 50%, transparent 70%);
            pointer-events: none;
        }

        .hero-blob2 {
            position: absolute;
            bottom: -200px;
            left: -150px;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(26, 111, 168, 0.08) 0%, transparent 65%);
            pointer-events: none;
        }

        .hero-dots {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background-image: radial-gradient(rgba(0, 140, 170, 0.12) 1.5px, transparent 1.5px);
            background-size: 28px 28px;
            mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.5) 0%, transparent 80%);
            pointer-events: none;
        }

        .hero-wrap {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            padding-top: 40px;
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 5px 13px;
            border-radius: 100px;
            border: 1px solid rgba(0, 159, 175, 0.25);
            background: rgba(0, 159, 175, 0.08);
            font-size: var(--fs-xs);
            color: var(--teal-dark);
            font-weight: 600;
            letter-spacing: .06em;
            text-transform: uppercase;
            margin-bottom: 22px;
            animation: fadeUp .5s ease both;
        }

        .hero-left h1 {
            font-size: var(--fs-5xl);
            font-weight: 800;
            line-height: 1.05;
            letter-spacing: -0.03em;
            margin-bottom: 18px;
            color: var(--text);
            animation: fadeUp .5s ease .08s both;
        }

        .hero-left h1 em {
            font-style: normal;
            background: linear-gradient(110deg, var(--teal), var(--blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-sub {
            font-size: var(--fs-md);
            color: var(--muted);
            max-width: 430px;
            margin-bottom: 32px;
            line-height: 1.8;
            font-weight: 400;
            animation: fadeUp .5s ease .16s both;
        }

        .hero-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            animation: fadeUp .5s ease .24s both;
        }

        .btn-primary {
            padding: 12px 24px;
            border-radius: 9px;
            background: linear-gradient(135deg, var(--teal), var(--blue));
            color: #fff;
            font-size: var(--fs-sm);
            font-weight: 600;
            transition: .2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 6px 20px rgba(0, 140, 170, 0.28);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(0, 140, 170, 0.36);
        }

        .btn-ghost {
            padding: 12px 24px;
            border-radius: 9px;
            border: 1.5px solid var(--border2);
            color: var(--text2);
            font-size: var(--fs-sm);
            font-weight: 500;
            transition: .2s;
            background: var(--white);
        }

        .btn-ghost:hover {
            border-color: var(--teal);
            color: var(--teal);
        }

        .hero-trust {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 20px;
            animation: fadeUp .5s ease .32s both;
        }

        .trust-avatars {
            display: flex;
        }

        .trust-avatars span {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: 2px solid var(--bg);
            background: linear-gradient(135deg, var(--teal-light), var(--blue-light));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            font-weight: 700;
            color: var(--teal-dark);
            margin-left: -8px;
        }

        .trust-avatars span:first-child {
            margin-left: 0;
        }

        .trust-text {
            font-size: var(--fs-xs);
            color: var(--muted);
        }

        .trust-text strong {
            color: var(--text2);
            font-weight: 600;
        }

        .hero-right {
            animation: fadeUp .6s ease .3s both;
        }

        .hero-card {
            background: var(--white);
            border-radius: var(--r-lg);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-lg);
            overflow: hidden;
        }

        .hero-card-bar {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px;
            border-bottom: 1px solid var(--border);
            background: var(--surface2);
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }

        .dot.r {
            background: #ff6058;
        }

        .dot.y {
            background: #ffbd2e;
        }

        .dot.g {
            background: #28ca41;
        }

        .hero-card img {
            width: 100%;
            display: block;
        }

        .stats-band {
            background: var(--white);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .stats-row {
            display: flex;
        }

        .stat-item {
            flex: 1;
            padding: 26px 24px;
            text-align: center;
            position: relative;
        }

        .stat-item:not(:last-child)::after {
            content: "";
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            height: 32px;
            width: 1px;
            background: var(--border);
        }

        .stat-item h3 {
            font-size: var(--fs-2xl);
            font-weight: 800;
            letter-spacing: -0.03em;
            background: linear-gradient(120deg, var(--teal), var(--blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-item p {
            font-size: var(--fs-xs);
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: .07em;
            margin-top: 3px;
            font-weight: 500;
        }

        section {
            padding: 80px 0;
        }

        .tag {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            font-size: var(--fs-xs);
            color: var(--teal-dark);
            font-weight: 700;
            letter-spacing: .08em;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .tag-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--teal);
        }

        .sec-h {
            font-size: var(--fs-3xl);
            font-weight: 800;
            letter-spacing: -0.03em;
            margin-bottom: 10px;
            line-height: 1.1;
            color: var(--text);
        }

        .sec-h em {
            font-style: normal;
            background: linear-gradient(110deg, var(--teal), var(--blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .sec-p {
            font-size: var(--fs-sm);
            color: var(--muted);
            max-width: 480px;
            line-height: 1.85;
            font-weight: 400;
        }

        .sec-head {
            margin-bottom: 48px;
        }

        .sec-head.center {
            text-align: center;
        }

        .sec-head.center .sec-p {
            margin: 0 auto;
        }

        .feat-bg {
            background: var(--bg2);
        }

        .feat-layout {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .feat-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--r);
            padding: 26px;
            transition: .25s;
            position: relative;
            overflow: hidden;
        }

        .feat-card::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--teal), var(--blue));
            transform: scaleX(0);
            transform-origin: left;
            transition: .3s;
        }

        .feat-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow);
            border-color: rgba(0, 159, 175, 0.2);
        }

        .feat-card:hover::after {
            transform: scaleX(1);
        }

        .feat-card.span2 {
            grid-column: span 2;
        }

        .feat-icon {
            width: 42px;
            height: 42px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--teal-light), var(--blue-light));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            margin-bottom: 16px;
            color: var(--teal-dark);
        }

        .feat-card h3 {
            font-size: var(--fs-lg);
            font-weight: 700;
            margin-bottom: 7px;
            letter-spacing: -0.02em;
            color: var(--text);
        }

        .feat-card p {
            font-size: var(--fs-sm);
            color: var(--muted);
            line-height: 1.8;
        }

        .feat-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 3px 10px;
            border-radius: 100px;
            background: var(--teal-light);
            color: var(--teal-dark);
            font-size: var(--fs-xs);
            font-weight: 600;
            margin-top: 12px;
        }

        .modules-section {
            background: var(--white);
        }

        .mod-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .mod-card {
            border: 1.5px solid var(--border);
            border-radius: var(--r);
            padding: 28px;
            background: var(--bg);
            transition: .2s;
        }

        .mod-card:hover {
            border-color: rgba(0, 159, 175, 0.25);
            background: var(--white);
            box-shadow: var(--shadow-sm);
        }

        .mod-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
        }

        .mod-card h3 {
            font-size: var(--fs-xl);
            font-weight: 700;
            letter-spacing: -0.02em;
            color: var(--text);
        }

        .mod-badge {
            padding: 4px 10px;
            border-radius: 6px;
            background: linear-gradient(135deg, var(--teal-light), var(--blue-light));
            color: var(--teal-dark);
            font-size: var(--fs-xs);
            font-weight: 600;
            letter-spacing: .04em;
        }

        .mod-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 9px;
        }

        .mod-list li {
            list-style: none;
            font-size: var(--fs-sm);
            color: var(--text2);
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 400;
        }

        .mod-list li i {
            color: var(--teal);
            font-size: 10px;
        }

        .why-section {
            background: var(--bg2);
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .why-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--r);
            padding: 28px;
            transition: .25s;
        }

        .why-card:hover {
            box-shadow: var(--shadow);
            transform: translateY(-3px);
        }

        .why-num {
            font-size: var(--fs-xs);
            color: var(--muted2);
            font-weight: 600;
            letter-spacing: .1em;
            margin-bottom: 16px;
        }

        .why-icon-wrap {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            margin-bottom: 16px;
            background: linear-gradient(135deg, var(--teal), var(--blue));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
            box-shadow: 0 6px 16px rgba(0, 140, 170, 0.22);
        }

        .why-card h3 {
            font-size: var(--fs-lg);
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 7px;
            color: var(--text);
        }

        .why-card p {
            font-size: var(--fs-sm);
            color: var(--muted);
            line-height: 1.8;
        }

        .cta-section {
            padding: 80px 0;
        }

        .cta-box {
            border-radius: 24px;
            padding: 64px;
            text-align: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--teal-dark) 0%, var(--blue-dark) 100%);
            box-shadow: 0 24px 64px rgba(0, 100, 140, 0.25);
        }

        .cta-box::before {
            content: "";
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 65%);
            pointer-events: none;
        }

        .cta-box::after {
            content: "";
            position: absolute;
            bottom: -80px;
            left: -80px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 60%);
            pointer-events: none;
        }

        .cta-tag {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            font-size: var(--fs-xs);
            color: rgba(255, 255, 255, 0.7);
            font-weight: 600;
            letter-spacing: .1em;
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        .cta-tag-dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.6);
        }

        .cta-box h2 {
            font-size: var(--fs-4xl);
            font-weight: 800;
            letter-spacing: -0.03em;
            margin-bottom: 12px;
            line-height: 1.1;
            color: #fff;
        }

        .cta-box p {
            font-size: var(--fs-sm);
            color: rgba(255, 255, 255, 0.72);
            max-width: 420px;
            margin: 0 auto 32px;
            line-height: 1.85;
        }

        .cta-btns {
            display: flex;
            gap: 12px;
            justify-content: center;
            position: relative;
            z-index: 1;
        }

        .btn-white {
            padding: 12px 26px;
            border-radius: 9px;
            background: #fff;
            color: var(--teal-dark);
            font-size: var(--fs-sm);
            font-weight: 600;
            transition: .2s;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        }

        .btn-outline-white {
            padding: 12px 26px;
            border-radius: 9px;
            border: 1.5px solid rgba(255, 255, 255, 0.35);
            color: #fff;
            font-size: var(--fs-sm);
            font-weight: 500;
            transition: .2s;
        }

        .btn-outline-white:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.55);
        }

        footer {
            background: var(--white);
            border-top: 1px solid var(--border);
            padding: 24px 0;
        }

        .foot-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .foot-logo img {
            height: 30px;
            object-fit: contain;
        }

        .foot-right {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .foot-links {
            display: flex;
            gap: 18px;
        }

        .foot-links a {
            font-size: var(--fs-xs);
            color: var(--muted);
            transition: .2s;
            font-weight: 500;
        }

        .foot-links a:hover {
            color: var(--teal);
        }

        .foot-copy {
            font-size: var(--fs-xs);
            color: var(--muted2);
        }

        .divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--border2), transparent);
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        ::-webkit-scrollbar {
            width: 4px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--teal-mid);
            border-radius: 4px;
        }

        @media(max-width:960px) {
            .hero-wrap {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            /* .hero-right {
                order: -1;
            } */

            .hero-left h1 {
                font-size: var(--fs-4xl);
            }

            .feat-layout {
                grid-template-columns: 1fr 1fr;
            }

            .feat-card.span2 {
                grid-column: span 1;
            }

            .mod-grid,
            .why-grid {
                grid-template-columns: 1fr;
            }
        }

        @media(max-width:640px) {
            .nav-links {
                display: none;
            }

            .hero-left h1 {
                font-size: var(--fs-3xl);
            }

            .stats-row {
                flex-wrap: wrap;
            }

            .stat-item {
                flex: 0 0 50%;
            }

            .stat-item:nth-child(2)::after,
            .stat-item:nth-child(3)::after {
                display: none;
            }

            .cta-box {
                padding: 36px 24px;
            }

            .cta-box h2 {
                font-size: var(--fs-2xl);
            }

            .feat-layout {
                grid-template-columns: 1fr;
            }

            .mod-list {
                grid-template-columns: 1fr;
            }

            .foot-inner {
                flex-direction: column;
                gap: 14px;
                text-align: center;
            }

            .foot-right {
                flex-direction: column;
                gap: 10px;
            }
        }

        .feat-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.feat-card {
    flex: 1 1 calc(33.333% - 14px);
    min-width: 280px;

    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 22px;

    padding: 32px;
    position: relative;
    overflow: hidden;

    transition: all .35s ease;

    box-shadow:
        0 10px 30px rgba(0, 80, 120, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.feat-card.span2 {
    flex: 1 1 calc(66.666% - 10px);
}

.feat-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(0, 159, 175, 0.08),
            rgba(26, 111, 168, 0.04),
            transparent 65%);
    opacity: 0;
    transition: .35s ease;
}

.feat-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}

.feat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 159, 175, 0.18);

    box-shadow:
        0 24px 60px rgba(0, 100, 130, 0.14),
        0 8px 20px rgba(0, 159, 175, 0.08);
}

.feat-card:hover::before {
    opacity: 1;
}

.feat-card:hover::after {
    transform: scaleX(1);
}

.feat-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;

    background:
        linear-gradient(135deg,
            rgba(0, 159, 175, 0.14),
            rgba(26, 111, 168, 0.14));

    border: 1px solid rgba(0, 159, 175, 0.12);

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.feat-icon::before {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--teal), var(--blue));
    opacity: .08;
}

.feat-icon i {
    position: relative;
    z-index: 1;
    font-size: 20px;
    color: var(--teal-dark);
}

.feat-card h3 {
    font-size: 22px;
    font-weight: 750;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
    color: var(--text);
    position: relative;
    z-index: 1;
}

.feat-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.9;
    position: relative;
    z-index: 1;
}

.feat-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-top: 18px;
    padding: 7px 14px;

    border-radius: 999px;

    background:
        linear-gradient(135deg,
            rgba(0, 159, 175, 0.12),
            rgba(26, 111, 168, 0.12));

    border: 1px solid rgba(0, 159, 175, 0.12);

    color: var(--teal-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .03em;

    position: relative;
    z-index: 1;
}

@media(max-width:960px) {
    .feat-card,
    .feat-card.span2 {
        flex: 1 1 calc(50% - 10px);
    }
}

@media(max-width:640px) {
    .feat-card,
    .feat-card.span2 {
        flex: 1 1 100%;
    }
}
.logo-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-img {
    height: 40px;
    object-fit: contain;
    display: block;
}

.crm-logo {
    height: 40px;
}

.logo-divider {
    width: 1px;
    height: 28px;
    background: rgba(0, 140, 170, 0.18);
}