        /* =========================================================
           GLOBAL
        ========================================================= */

        * {
            box-sizing: border-box;
        }

        html,
        body {
            margin: 0;
            padding: 0;
            width: 100%;
            min-height: 100%;
        }

        body {
            background: #201335;
            color: #ffffff;
            font-family:
                -apple-system,
                BlinkMacSystemFont,
                "Segoe UI",
                Roboto,
                Helvetica,
                Arial,
                sans-serif;
            overflow-x: hidden;
        }
		
		.demo-modal-header h2,.demo-modal-header p{
			color:#fff;
		}
		
		header.container-fluid.px-0 {
            background: green;
        }


        header.container-fluid.px-0.background_1dac4b {
            background: #1dac4b;
        }
		

        .close-icon {
            display: none;
            font-size: 32px;
            line-height: 1;
            color: #fff;
        }

        .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
            display: none;
        }

        .navbar-toggler[aria-expanded="true"] .close-icon {
            display: inline-block;
        }

        .navbar-toggler[aria-expanded="false"] .navbar-toggler-icon {
            display: inline-block;
        }

        .navbar-toggler[aria-expanded="false"] .close-icon {
            display: none;
        }

        .demo-center-btn {
            display: block !important;
            width: fit-content;
            margin: 30px auto 0;
        }

        .demo-modal {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 9999;
        }

        .demo-modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .demo-modal-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.65);
            backdrop-filter: blur(4px);
        }

        .demo-modal-content {
            position: relative;
            z-index: 2;
            width: min(600px, calc(100% - 30px));
            max-height: 90vh;
            overflow-y: auto;
            padding: 35px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
            animation: demoModalOpen 0.25s ease;
            background: black;
            border-radius: 10px;
        }

        .demo-modal-close {
            position: absolute;
            top: 12px;
            right: 16px;
            width: 36px;
            height: 36px;
            border: 0;
            background: transparent;
            font-size: 30px;
            line-height: 1;
            cursor: pointer;
            color: white;
        }



        .demo-modal-header {
            margin-bottom: 25px;
            text-align: center;
        }

        .demo-modal-header h2 {
            margin: 0 0 8px;
        }

        .demo-modal-header p {
            margin: 0;
            color: #fff;
        }

        body.demo-modal-open {
            overflow: hidden;
        }

        @keyframes demoModalOpen {
            from {
                opacity: 0;
                transform: translateY(20px) scale(0.98);
            }

            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @media (max-width: 600px) {
            .demo-modal-content {
                padding: 25px 20px;
                max-height: 92vh;
            }
        }

        /* Navbar */
        .logo-img {
            height: 85px;
            width: auto;
            max-width: 220px;
            object-fit: contain;
			border: 1px solid #fff;
			border-radius: 10px;
			padding: 1px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
        }

        .footer-logo-link {
            display: flex;
            align-items: center;
            gap: 5px;
            text-decoration: none;
        }

        .footer-logo-image {
            width: 49px;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;

        }

        .footer-logo-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }

        .footer-logo-text {
            font-size: 22px;
            font-weight: 700;
            color: #fff;
        }

        .footer-logo-text span {
            color: #9b5cff;
        }

        .navbar {
            position: relative;
            z-index: 1;
        }

        .navbar .nav-link {
            color: #e0e0e0 !important;
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            white-space: nowrap;
        }

        .navbar .nav-link:hover {
            color: #fff !important;
        }

        .chevron {
            width: 16px;
            height: 16px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .chevron svg {
            width: 100%;
            height: 100%;
            fill: #ccc;
            transition: transform .2s ease;
        }

        /* Submenu */
        .custom-dropdown {
            position: relative;
        }

        .submenu {
            position: absolute;
            top: calc(100% + 12px);
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            min-width: 190px;
            padding: 8px;
            background: #131211;
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 12px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, .35);
            display: flex;
            flex-direction: column;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition:
                opacity .2s ease,
                transform .2s ease,
                visibility .2s ease;
            z-index: 9999;
        }

        .submenu::before {
            content: "";
            position: absolute;
            top: -6px;
            left: 50%;
            width: 12px;
            height: 12px;
            background: #131211;
            border-left: 1px solid rgba(255, 255, 255, .08);
            border-top: 1px solid rgba(255, 255, 255, .08);
            transform: translateX(-50%) rotate(45deg);
        }

        .submenu a {
            display: block;
            padding: 11px 14px;
            color: #dcdcdc;
            text-decoration: none;
            font-size: 13px;
            font-weight: 500;
            border-radius: 8px;
            white-space: nowrap;
            transition:
                background .2s ease,
                color .2s ease;
        }

        .submenu a:hover {
            background: rgba(197, 249, 104, .1);
            color: #c5f968;
        }

        @media (min-width: 992px) {

            .custom-dropdown:hover .submenu {
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
                transform: translateX(-50%) translateY(0);
            }

            .custom-dropdown:hover .chevron svg {
                transform: rotate(180deg);
            }

        }

        /* Buttons */
        .btn-primary-custom {
            background: #1DAC4B;
            text-decoration: none !important;

            color: white;
            border: 0;
            border-radius: 9999px;
            padding: 10px 24px;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition:
                background .2s ease,
                transform .1s ease;
        }
		.btn-primary-custom.white_br {
			border: 1px solid #fff;
		}

        .btn-primary-custom:hover {
            background: white;
            color: #121212;
        }

        .btn-primary-custom:active {
            transform: scale(.98);
        }

        .btn-outline-custom {
            color: #fff;
            border: 1px solid #fff;
            background: #1DAC4B;
            border-radius: 9999px;
            padding: 10px 24px;
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            transition: .2s ease;
        }

        .btn-outline-custom:hover {
            color: #000;
            border-color: #fff;
            background: #fff;
        }


        /* =========================================================
           HERO
        ========================================================= */

        .hero-section {
            width: 100%;
            /* min-height: 90vh; */
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background: white;
        }

        .hero-section::before {
            content: "";

            position: absolute;

            width: 500px;
            height: 500px;

            top: -200px;
            right: -150px;

            border-radius: 50%;

            background: rgba(130, 67, 220, 0.12);

            filter: blur(100px);

            pointer-events: none;
        }

        .hero-section .container {
            position: relative;
            z-index: 2;

            width: 100%;
            max-width: 1200px;
        }

        .hero-row {
            min-height: 90vh;
            display: flex;
            align-items: center;
        }


        /* Hero Left */

        .hero-content {
            margin-top: -80px;
            margin-bottom: -80px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .mobile-cta-button {
            display: none !important;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            width: fit-content;
            padding: 7px 15px;
            opacity: 0.8;
            margin-bottom: 18px;
            border-radius: 100px;
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid #212d3a;
            color: black;
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 0.2px;
        }

        .hero-title {
            margin: 0 0 22px;
            max-width: 650px;
            color: black;
            font-size: clamp(38px, 5vw, 56px);
            font-weight: 700;
            line-height: 1.08;
            letter-spacing: -2.5px;
        }

        .hero-description {
            max-width: 560px;
            margin-bottom: 28px;
            color: black;
            font-size: 16px;
            line-height: 1.7;
        }

        .btn-primary-custom {
            display: inline-flex;
            align-items: center;
            justify-content: center;

            width: fit-content;

            padding: 13px 25px;

            border: 0;
            border-radius: 10px;

            background: #1DAC4B;

            color: white;

            font-size: 14px;
            font-weight: 650;

            text-decoration: none;

            box-shadow:
                0 5px 25px rgba(62, 240, 154, 0.20);

            transition: all 0.25s ease;
        }

        .btn-primary-custom:hover {
            background: white;

            color: black;

            transform: translateY(-2px);

            box-shadow:
                0 8px 30px rgba(62, 240, 154, 0.35);
        }


        /* Hero Image */

        .hero-graphic-wrapper {
            width: 100%;
            max-width: 560px;

            margin: 0 auto;

            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-image {
            width: 140%;
            height: auto;
            object-fit: contain;

            display: block;
        }


        /* =========================================================
           AI MARQUEE
        ========================================================= */

        .ai-marquee-section {
            width: 100%;

            padding: 25px 0;

            margin: 10px 0 0px;

            overflow: hidden;

            background: #201335;
        }

        .ai-marquee-wrapper {
            width: 100%;

            overflow: hidden;

            position: relative;
        }

        .ai-marquee-track {
            display: flex;
            align-items: center;

            gap: 18px;

            width: max-content;

            animation:
                aiMarquee 28s linear infinite;
        }

        /* Pause when mouse enters */

        .ai-marquee-wrapper:hover .ai-marquee-track {
            animation-play-state: paused;
        }


        /* Marquee Card */

        .ai-agent-card {
            min-width: 270px;
            height: 78px;

            padding: 14px 20px;

            display: flex;
            align-items: center;

            gap: 14px;

            border-radius: 16px;

            background:
                linear-gradient(145deg,
                    rgba(255, 255, 255, 0.075),
                    rgba(255, 255, 255, 0.025));

            border: 1px solid rgba(255, 255, 255, 0.10);

            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);

            transition:
                background 0.25s ease,
                border-color 0.25s ease,
                transform 0.25s ease,
                box-shadow 0.25s ease;
        }

        .ai-agent-card:hover {
            background:
                rgba(255, 255, 255, 0.09);

            border-color:
                rgba(62, 240, 154, 0.35);

            transform:
                translateY(-3px);

            box-shadow:
                0 12px 35px rgba(0, 0, 0, 0.2),
                0 0 25px rgba(62, 240, 154, 0.08);
        }


        /* Marquee Icon */

        .ai-agent-icon {
            width: 42px;
            height: 42px;

            flex-shrink: 0;

            display: flex;
            align-items: center;
            justify-content: center;

            border-radius: 12px;

            color: #1DAC4B;

            background:
                rgba(62, 240, 154, 0.09);

            border:
                1px solid rgba(62, 240, 154, 0.18);
        }

        .ai-agent-icon svg {
            width: 20px;
            height: 20px;
        }

        .ai-agent-label {
            display: block;

            margin-bottom: 3px;

            color: #1DAC4B;

            font-size: 9px;

            font-weight: 700;

            letter-spacing: 1.4px;
        }

        .ai-agent-card h6 {
            margin: 0;

            color: #ffffff;

            font-size: 14px;

            font-weight: 500;

            white-space: nowrap;
        }


        @keyframes aiMarquee {

            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }

        }


        /* =========================================================
           AGENT LIBRARY
        ========================================================= */

        .agents-section {
            padding-bottom: 100px;

            background: #201335;

            overflow: hidden;
        }

        .agents-header {
            max-width: 720px;

            margin-bottom: 55px;
        }

        .agents-eyebrow {
            display: inline-flex;
            align-items: center;

            gap: 8px;

            padding: 7px 13px;

            margin-bottom: 18px;

            border:
                1px solid rgba(62, 240, 154, 0.18);

            border-radius: 100px;

            background:
                rgba(62, 240, 154, 0.06);

            color: #1DAC4B;

            font-size: 10px;

            font-weight: 700;

            letter-spacing: 1.5px;
        }

        .eyebrow-dot {
            width: 6px;
            height: 6px;

            border-radius: 50%;

            background: #1DAC4B;

            box-shadow:
                0 0 10px rgba(62, 240, 154, 0.8);
        }

        .agents-title {
            margin: 0;

            color: #ffffff;

            font-size: clamp(36px, 4vw, 52px);

            font-weight: 700;

            letter-spacing: -1.8px;
        }

        .agents-title span {
            color: #1DAC4B;
        }

        .agents-description {
            max-width: 650px;

            margin-left: auto;
            margin-right: auto;

            color: #a99fbb;

            font-size: 16px;

            line-height: 1.7;
        }


        /* Explore Button */

        .btn-outline-custom {
            display: inline-flex;
            align-items: center;

            gap: 10px;

            padding: 11px 20px;

            border:
                1px solid rgba(255, 255, 255, 0.18);

            border-radius: 10px;

            background: #1DAC4B;

            color: white;

            font-size: 14px;

            font-weight: 600;

            text-decoration: none;

            transition: all 0.25s ease;
        }

        .btn-outline-custom:hover {
            background: white;



            color: black;

            transform: translateY(-2px);
        }

        .btn-arrow {
            font-size: 18px;

            line-height: 0;
        }


        /* =========================================================
           SLIDER
        ========================================================= */

        .agents-slider {
            position: relative;

            width: 100%;
        }

        .slider-wrapper {
            width: 100%;

            overflow: hidden;
        }

        .cards-container {
            display: flex;

            gap: 24px;

            transition:
                transform 0.5s cubic-bezier(0.22,
                    0.61,
                    0.36,
                    1);

            will-change: transform;
        }


        /* Agent Card */

        .agent-card {
            position: relative;

            flex: 0 0 calc((100% - 48px) / 3);

            min-height: 350px;

            padding: 26px;

            display: flex;

            flex-direction: column;

            border-radius: 20px;

            background:
                linear-gradient(145deg,
                    rgba(255, 255, 255, 0.075),
                    rgba(255, 255, 255, 0.025));

            border:
                1px solid rgba(255, 255, 255, 0.10);

            box-shadow:
                0 15px 45px rgba(0, 0, 0, 0.15);

            transition:
                transform 0.3s ease,
                border-color 0.3s ease,
                box-shadow 0.3s ease;
        }

        .agent-card::before {
            content: "";

            position: absolute;

            top: 0;
            left: 20%;

            width: 60%;
            height: 1px;

            background:
                linear-gradient(90deg,
                    transparent,
                    rgba(62, 240, 154, 0.5),
                    transparent);
        }

        .agent-card:hover {
            transform: translateY(-7px);

            border-color:
                rgba(62, 240, 154, 0.25);

            box-shadow:
                0 20px 55px rgba(0, 0, 0, 0.25),
                0 0 30px rgba(62, 240, 154, 0.05);
        }


        /* Card Top */

        .card-top {
            display: flex;
            align-items: center;

            gap: 12px;
        }

        .agent-icon {
            width: 42px;
            height: 42px;

            flex-shrink: 0;

            display: flex;
            align-items: center;
            justify-content: center;

            border-radius: 12px;

            color: #1DAC4B;

            background:
                rgba(62, 240, 154, 0.08);

            border:
                1px solid rgba(62, 240, 154, 0.15);
        }

        .agent-icon svg {
            width: 20px;
            height: 20px;
        }

        .card-subtitle {
            color: #80768f;

            font-size: 9px;

            font-weight: 700;

            letter-spacing: 1.3px;
        }


        /* Card Content */

        .card-title {
            margin:
                34px 0 12px;

            color: #ffffff;

            font-size: 24px;

            line-height: 1.2;

            letter-spacing: -0.6px;

            font-weight: 650;
        }

        .card-description {
            margin-bottom: 30px;

            color: #968ca5;

            font-size: 13px;

            line-height: 1.6;
        }


        /* Stats */

        .stats-container {
            display: flex;

            gap: 10px;

            margin-top: auto;
        }

        .stat-box {
            flex: 1;

            padding: 14px;

            border-radius: 12px;

            background:
                rgba(255, 255, 255, 0.035);

            border:
                1px solid rgba(255, 255, 255, 0.07);
        }

        .stat-value {
            color: #ffffff;

            font-size: 19px;

            font-weight: 650;
        }

        .stat-label {
            margin-top: 3px;

            color: #746a82;

            font-size: 10px;

            letter-spacing: 0.3px;
        }


        /* =========================================================
           NAVIGATION
        ========================================================= */

        .agents-navigation {
            display: flex;

            align-items: center;

            justify-content: center;

            gap: 22px;

            margin-top: 35px;
        }

        .slider-arrow {
            width: 44px;
            height: 44px;

            padding: 0;

            display: flex;

            align-items: center;

            justify-content: center;

            border-radius: 50%;

            border:
                1px solid rgba(255, 255, 255, 0.14);

            background:
                rgba(255, 255, 255, 0.04);

            color: #ffffff;

            cursor: pointer;

            transition: all 0.25s ease;
        }

        .slider-arrow svg {
            width: 18px;
            height: 18px;
        }

        .slider-arrow:hover {
            color: #201335;

            background: #1DAC4B;

            border-color: #1DAC4B;

            transform: scale(1.05);
        }

        .slider-arrow:disabled {
            opacity: 0.35;

            cursor: not-allowed;

            transform: none;
        }

        .slider-counter {
            display: flex;

            align-items: center;

            gap: 10px;

            color: #8d8399;

            font-size: 11px;

            font-weight: 600;

            letter-spacing: 1px;
        }

        .slider-counter .current {
            color: #1DAC4B;
        }

        .counter-line {
            width: 28px;
            height: 1px;

            background:
                rgba(255, 255, 255, 0.18);
        }


        /* =========================================================
           TABLET
        ========================================================= */

        @media (max-width: 991px) {

            .hero-section {
                padding: 80px 0;
            }

            .hero-row {
                min-height: auto;

                text-align: center;
            }

            .hero-image {
                width: 100%;
            }

            .hero-graphic-wrapper {
                max-width: 500px;
            }

            .hero-content {
                align-items: center;
                margin: 0;
            }

            .hero-title {
                max-width: 750px;
            }

            .hero-description {
                margin-left: auto;
                margin-right: auto;
            }



            .agent-card {
                flex-basis:
                    calc((100% - 24px) / 2);
            }

        }


        /* =========================================================
           MOBILE
        ========================================================= */

        @media (max-width: 767px) {

            .hero-section {
                min-height: auto;

                padding:
                    80px 20px 60px;
            }

            .hero-title {
                font-size: 38px;

                letter-spacing: -1.5px;
            }

            .hero-description {
                font-size: 14px;
            }

            .ai-marquee-section {
                margin:
                    25px 0 60px;
            }

            .ai-marquee-track {
                gap: 12px;

                animation-duration: 22s;
            }

            .ai-agent-card {
                min-width: 225px;

                height: 70px;

                padding:
                    12px 16px;
            }

            .ai-agent-icon {
                width: 38px;
                height: 38px;
            }

            .ai-agent-card h6 {
                font-size: 13px;
            }

            .agents-section {
                padding:
                    60px 20px 80px;
            }

            .agents-title {
                font-size: 36px;
            }

            .agents-description {
                font-size: 14px;
            }

            .agent-card {
                flex: 0 0 100%;

                min-height: 330px;

                padding: 22px;
            }

        }

        /* =====================================
   PROCESS SECTION
===================================== */

        .process-section {
            position: relative;
            z-index: 1;
            padding: 140px 0;
            background: white;
            color: black;
            overflow: hidden;
        }


        /* =====================================
   HEADER
===================================== */

        .process-header {
            max-width: 720px;

            margin-bottom: 110px;
        }

        .process-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 9px;

            padding: 7px 14px;

            margin-bottom: 22px;

            border: 1px solid rgba(62, 240, 154, 0.18);

            border-radius: 100px;

            background: rgba(62, 240, 154, 0.06);

            color: #1DAC4B;

            font-size: 10px;
            font-weight: 700;

            letter-spacing: 1.6px;
        }

        .eyebrow-pulse {
            width: 6px;
            height: 6px;

            border-radius: 50%;

            background: #1DAC4B;

            box-shadow:
                0 0 0 4px rgba(62, 240, 154, 0.08),
                0 0 14px rgba(62, 240, 154, 0.8);
        }

        .process-title {
            margin: 0 0 20px;

            font-size: clamp(38px, 5vw, 58px);

            line-height: 1.08;

            letter-spacing: -2px;

            font-weight: 700;
        }

        .process-title span {
            color: #1DAC4B;
        }

        .process-description {
            max-width: 620px;

            margin: 0 auto;

            color: black;
            opacity: 0.8;

            font-size: 16px;

            line-height: 1.7;
        }


        /* =====================================
   TIMELINE
===================================== */

        .process-timeline {

            position: relative;

            max-width: 1000px;

            margin: 0 auto;

            padding: 20px 0 40px;
        }


        /* Background Line */

        .timeline-line,
        .timeline-progress {

            position: absolute;

            top: 0;

            left: 50%;

            width: 5px;

            transform: translateX(-50%);

            border-radius: 10px;
        }


        /* Grey / inactive line */

        .timeline-line {
            height: 86%;
            background: radial-gradient(circle, rgba(62, 240, 154, 0.12), rgba(32, 19, 53, 0.95) 65%);
            border: 1px solid rgba(255, 255, 255, 0.14);
            /* box-shadow: 0 0 0 8px rgba(32, 19, 53, 0.75), 0 10px 30px rgba(0, 0, 0, 0.25); */
        }


        /* Green scrolling progress */

        .timeline-progress {

            height: 0%;

            background:
                linear-gradient(to bottom,
                    #1DAC4B,
                    #22c77c);

            box-shadow:
                0 0 12px rgba(62, 240, 154, 0.55),
                0 0 30px rgba(62, 240, 154, 0.15);

            transition: height 0.15s linear;

            z-index: 2;
        }


        /* =====================================
   STEP
===================================== */

        .process-step {

            position: relative;

            display: grid;

            grid-template-columns: 1fr 80px 1fr;

            align-items: center;

            min-height: 260px;

            z-index: 3;
        }


        /* =====================================
   CONTENT
===================================== */

        .process-content {

            position: relative;

            width: 100%;

            max-width: 370px;

            padding: 28px;

            border-radius: 18px;

            background:
                linear-gradient(145deg,
                    rgba(255, 255, 255, 0.075),
                    rgba(255, 255, 255, 0.025));

            border: 1px solid rgba(255, 255, 255, 0.09);

            box-shadow:
                0 20px 55px rgba(0, 0, 0, 0.15);

            backdrop-filter: blur(12px);

            transition:
                transform .3s ease,
                border-color .3s ease,
                box-shadow .3s ease;
        }

        .process-content:hover {

            transform: translateY(-6px);

            border-color: rgba(62, 240, 154, 0.28);

            box-shadow:
                0 25px 65px rgba(0, 0, 0, 0.22),
                0 0 30px rgba(62, 240, 154, 0.05);
        }


        /* Left */

        .step-left .process-content {

            grid-column: 1;




        }


        /* Right */

        .step-right .process-content {

            grid-column: 3;

            justify-self: end;

            text-align: left;
        }


        /* =====================================
   STEP NUMBER
===================================== */

        .step-number {
            display: block;
            margin-bottom: 9px;
            color: white;
            font-size: 11px;
            text-align: left;
            font-weight: 700;
            letter-spacing: 1.5px;
            border-radius: 50%;
            padding: 12px 14px;
            width: fit-content;
            background: #201335;
        }


        /* =====================================
   TITLES
===================================== */

        .process-content h3 {

            margin: 0 0 12px;

            color: black;

            font-size: 25px;

            line-height: 1.2;

            letter-spacing: -0.6px;

            font-weight: 650;
        }

        .process-content p {

            margin: 0;

            color: black;

            opacity: 0.8;
            font-size: 14px;

            line-height: 1.7;
        }


        /* =====================================
   CENTER NODE
===================================== */

        .step-node {

            grid-column: 2;

            grid-row: 1;

            justify-self: center;

            width: 62px;

            height: 62px;

            display: flex;

            align-items: center;

            justify-content: center;

            border-radius: 50%;

            color: #8e849d;

            background:
                radial-gradient(circle,
                    rgba(62, 240, 154, 0.12),
                    rgba(32, 19, 53, 0.95) 65%);

            border: 1px solid rgba(255, 255, 255, 0.14);

            box-shadow:
                0 0 0 8px rgba(32, 19, 53, 0.75),
                0 10px 30px rgba(0, 0, 0, 0.25);

            transition:
                color .3s ease,
                border-color .3s ease,
                box-shadow .3s ease,
                background .3s ease;

            z-index: 5;
        }

        .step-node svg {

            width: 23px;
            height: 23px;
        }


        /* Active node */

        .process-step.active .step-node {

            color: #1DAC4B;

            border-color: rgba(62, 240, 154, 0.55);

            background:
                radial-gradient(circle,
                    rgba(62, 240, 154, 0.20),
                    rgba(32, 19, 53, 0.98) 65%);

            box-shadow:
                0 0 0 8px rgba(32, 19, 53, 0.85),
                0 0 25px rgba(62, 240, 154, 0.35),
                0 0 50px rgba(62, 240, 154, 0.10);
        }


        /* =====================================
   CTA
===================================== */

        .process-cta {

            margin-top: 55px;
        }

        .process-button {

            display: inline-flex;

            align-items: center;

            gap: 12px;

            padding: 13px 22px;

            border-radius: 10px;

            color: white;

            background: #1DAC4B;

            text-decoration: none;

            font-size: 14px;

            font-weight: 650;

            box-shadow:
                0 5px 25px rgba(62, 240, 154, 0.20);

            transition: .25s ease;
        }

        .process-button span {

            font-size: 19px;

            line-height: 1;
        }

        .process-button:hover {

            color: black;

            transform: translateY(-3px);

            background: white;

            box-shadow:
                0 10px 35px rgba(62, 240, 154, 0.32);
        }


        /* =====================================
   TABLET
===================================== */

        @media (max-width: 767px) {

            .process-section {

                padding: 90px 20px;
            }

            .process-header {

                margin-bottom: 70px;
            }

            .process-title {

                font-size: 38px;

                letter-spacing: -1.2px;
            }

            .process-description {

                font-size: 14px;
            }


            /* Move timeline to left */

            .process-timeline {

                padding-left: 48px;
            }

            .timeline-line,
            .timeline-progress {

                left: 20px;

                transform: none;
            }


            .process-step {

                display: grid;

                grid-template-columns: 40px 1fr;

                min-height: 230px;

                align-items: center;
            }


            .step-node {

                grid-column: 1;

                width: 42px;

                height: 42px;

                box-shadow:
                    0 0 0 6px #201335,
                    0 8px 20px rgba(0, 0, 0, .25);
            }

            .step-node svg {

                width: 18px;
                height: 18px;
            }


            .step-left .process-content,
            .step-right .process-content {

                grid-column: 2;

                grid-row: 1;

                justify-self: start;

                text-align: left;

                max-width: none;

                margin-left: 22px;

                padding: 22px;
            }


            .process-content h3 {

                font-size: 21px;
            }

            .process-content p {

                font-size: 13px;
            }

        }


        /* =====================================
   SMALL MOBILE
===================================== */

        @media (max-width: 480px) {

            .process-section {

                padding-left: 15px;
                padding-right: 15px;
            }

            .process-title {

                font-size: 34px;
            }

            .process-content {

                padding: 19px;
            }

            .process-content h3 {

                font-size: 19px;
            }

        }

        .ai-stats-section {
            position: relative;
            padding: 110px 20px;
            overflow: hidden;
            z-index: 1;
            background:
                radial-gradient(circle at 50% 0%,
                    rgba(76, 27, 122, 0.45),
                    transparent 55%),
                #201335;
        }


        /* Subtle background glow */

        .ai-stats-section::before {
            content: "";
            position: absolute;
            width: 500px;
            height: 500px;
            left: 50%;
            top: 20%;
            transform: translateX(-50%);
            background: rgba(62, 240, 154, 0.035);
            filter: blur(100px);
            border-radius: 50%;
            pointer-events: none;
        }


        /* Header */

        .ai-stats-header {
            position: relative;
            z-index: 2;
            max-width: 700px;
            margin-bottom: 65px;
        }


        .ai-stats-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;

            padding: 7px 14px;

            border-radius: 50px;

            background: rgba(62, 240, 154, 0.06);
            border: 1px solid rgba(62, 240, 154, 0.18);

            color: #1DAC4B;

            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.5px;
        }


        .ai-stats-dot {
            width: 6px;
            height: 6px;

            border-radius: 50%;

            background: #1DAC4B;

            box-shadow:
                0 0 8px rgba(62, 240, 154, 0.8);
        }


        .ai-stats-title {
            margin-top: 22px;

            color: #ffffff;

            font-size: clamp(36px, 4vw, 52px);

            line-height: 1.08;

            font-weight: 700;

            letter-spacing: -1.8px;
        }


        .ai-stats-title span {
            color: #1DAC4B;
        }


        .ai-stats-description {
            max-width: 620px;

            margin: 20px auto 0;

            color: #a99fbb;

            font-size: 16px;

            line-height: 1.7;
        }


        /* Stats Grid */

        .ai-stats-grid {
            position: relative;
            z-index: 2;
        }


        /* Card */

        .ai-stat-card {
            position: relative;

            height: 100%;

            padding: 20px 24px;

            text-align: center;

            border-radius: 20px;

            background:
                linear-gradient(145deg,
                    rgba(255, 255, 255, 0.075),
                    rgba(255, 255, 255, 0.025));

            border: 1px solid rgba(255, 255, 255, 0.09);

            backdrop-filter: blur(12px);

            transition:
                transform 0.3s ease,
                border-color 0.3s ease,
                box-shadow 0.3s ease;
        }


        /* Top glow */

        .ai-stat-card::before {
            content: "";

            position: absolute;

            top: 0;
            left: 20%;

            width: 60%;
            height: 1px;

            background:
                linear-gradient(90deg,
                    transparent,
                    rgba(62, 240, 154, 0.55),
                    transparent);
        }


        .ai-stat-card:hover {
            transform: translateY(-7px);

            border-color: rgba(62, 240, 154, 0.28);

            box-shadow:
                0 20px 50px rgba(0, 0, 0, 0.25),
                0 0 30px rgba(62, 240, 154, 0.06);
        }


        /* Icon */

        .ai-stat-icon {
            width: 46px;
            height: 46px;

            margin: 0 auto 22px;

            display: flex;
            align-items: center;
            justify-content: center;

            border-radius: 13px;

            color: #1DAC4B;

            background: rgba(62, 240, 154, 0.08);

            border: 1px solid rgba(62, 240, 154, 0.16);
        }


        .ai-stat-icon svg {
            width: 22px;
            height: 22px;
        }


        /* Number */

        .ai-stat-number {
            color: #ffffff;

            font-size: clamp(38px, 4vw, 52px);

            line-height: 1;

            font-weight: 700;

            letter-spacing: -2px;
        }


        .ai-stat-number>span:last-child {
            color: #1DAC4B;
        }


        .ai-stat-number .stat-suffix {
            color: #1DAC4B;

            font-size: 25px;

            letter-spacing: -0.5px;

            margin-left: -12px;
        }


        /* Label */

        .ai-stat-label {
            max-width: 180px;

            margin: 15px auto 0;

            color: #8f849f;

            font-size: 12px;

            line-height: 1.5;
        }


        /* Mobile */

        @media (max-width: 767px) {

            .ai-stats-section {
                padding: 80px 20px;
            }

            .ai-stats-header {
                margin-bottom: 45px;
            }

            .ai-stats-title {
                font-size: 36px;
            }

            .ai-stats-description {
                font-size: 14px;
            }

            .ai-stat-card {
                padding: 25px 15px;
            }

            .ai-stat-number {
                font-size: 38px;
            }

            .ai-stat-label {
                font-size: 11px;
            }

        }

        .ai-pricing-section {

            position: relative;

            padding: 120px 20px;

            z-index: 1;
            overflow: hidden;

            /* background:
                radial-gradient(circle at 50% 0%,
                    rgba(76, 27, 122, .40),
                    transparent 50%),
                #201335; */
            background: white;

            color: black;
        }


        /* Background glow */

        .ai-pricing-section::before {

            content: "";

            position: absolute;

            width: 500px;
            height: 500px;

            left: 50%;
            top: 250px;

            transform: translateX(-50%);

            background:
                rgba(62, 240, 154, .035);

            filter: blur(100px);

            border-radius: 50%;

            pointer-events: none;
        }



        /* HEADER */

        .pricing-header {

            position: relative;

            max-width: 760px;

            margin: 0 auto 65px;

        }


        .pricing-eyebrow {

            display: inline-flex;

            align-items: center;

            gap: 8px;

            padding: 7px 14px;

            border-radius: 50px;

            border:
                1px solid rgba(62, 240, 154, .18);

            background:
                rgba(62, 240, 154, .06);

            color: #1DAC4B;

            font-size: 10px;

            font-weight: 700;

            letter-spacing: 1.5px;
        }


        .pricing-eyebrow-dot {

            width: 6px;
            height: 6px;

            border-radius: 50%;

            background: #1DAC4B;

            box-shadow:
                0 0 10px rgba(62, 240, 154, .8);
        }


        .pricing-title {

            margin-top: 22px;

            font-size:
                clamp(38px, 4vw, 54px);

            line-height: 1.08;

            letter-spacing: -2px;

            font-weight: 700;
        }


        .pricing-title span {

            color: #1DAC4B;
        }


        .pricing-description {

            max-width: 620px;

            margin: 20px auto 0;

            color: black;

            font-size: 16px;

            opacity: 0.8;
            line-height: 1.7;
        }



        /* =========================================================
   PRICING CARDS
========================================================= */

        .pricing-cards-row {

            position: relative;

            z-index: 2;

            max-width: 1150px;

            margin: 0 auto;
        }


        .pricing-card {
            position: relative;
            height: 100%;
            min-height: 560px;
            padding: 34px;
            display: flex;
            flex-direction: column;
            border-radius: 22px;
            background: linear-gradient(145deg, rgba(255, 255, 255, .075), #dee2e6);
            border: 1px solid rgba(255, 255, 255, .10);
            backdrop-filter: blur(15px);
            transition: .3s ease;
        }

        .pricing-card:hover {

            transform:
                translateY(-7px);

            border-color:
                rgba(62, 240, 154, .25);

            box-shadow:
                0 25px 60px rgba(0, 0, 0, .25);
        }



        /* FEATURED */

        .pricing-card-featured {

            border-color:
                rgba(62, 240, 154, .35);

            background:
                linear-gradient(145deg,
                    rgba(62, 240, 154, .09),
                    rgba(255, 255, 255, .035));

            box-shadow:
                0 20px 60px rgba(0, 0, 0, .18),
                0 0 45px rgba(62, 240, 154, .05);
        }


        .popular-badge {

            position: absolute;

            top: -13px;

            left: 50%;

            transform:
                translateX(-50%);

            padding: 6px 14px;

            border-radius: 50px;

            background: #1DAC4B;

            color: #102017;

            font-size: 9px;

            font-weight: 800;

            letter-spacing: 1px;

            white-space: nowrap;
        }



        /* CARD TOP */

        .pricing-card-top {

            display: flex;

            align-items: center;

            gap: 12px;

            margin-bottom: 25px;
        }


        .pricing-plan-icon {

            width: 44px;
            height: 44px;

            display: flex;

            align-items: center;
            justify-content: center;

            border-radius: 13px;

            color: #1DAC4B;

            background:
                rgba(62, 240, 154, .08);

            border:
                1px solid rgba(62, 240, 154, .16);
        }


        .pricing-plan-icon svg {

            width: 21px;
            height: 21px;
        }


        .pricing-plan-label {
            color: black;
            font-size: 9px;
            font-weight: 900;
            letter-spacing: 1.4px;
        }



        /* PLAN */

        .pricing-plan-name {

            margin: 0 0 10px;

            font-size: 27px;

            font-weight: 650;

            letter-spacing: -.7px;
        }


        .pricing-plan-description {
            min-height: 48px;
            margin: 0;
            color: black;
            font-size: 13px;
            line-height: 1.6;
            opacity: 0.8;
        }



        /* PRICE */

        .pricing-price {

            display: flex;

            align-items: baseline;

            margin-top: 28px;
        }


        .price-value {

            font-size: 42px;

            line-height: 1;

            font-weight: 700;

            letter-spacing: -2px;
        }


        .price-period {
            margin-left: 5px;
            color: black;
            font-size: 12px;
            font-weight: 600;
        }


        .price-custom {

            color: #1DAC4B;

            font-size: 38px;

            letter-spacing: -1px;
        }



        /* DIVIDER */

        .pricing-divider {

            height: 1px;

            margin: 28px 0;

            background:
                rgba(255, 255, 255, .08);
        }



        /* FEATURES */

        .pricing-features {

            list-style: none;

            padding: 0;

            margin: 0;

            display: flex;

            flex-direction: column;

            gap: 15px;
        }


        .pricing-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            color: black;
            font-size: 13px;
            font-weight: 600;
        }


        .feature-check {

            width: 20px;
            height: 20px;

            display: inline-flex;

            align-items: center;
            justify-content: center;

            flex-shrink: 0;

            border-radius: 50%;

            color: #1DAC4B;

            background:
                rgba(62, 240, 154, .08);

            font-size: 11px;
        }



        /* BUTTON */

        .pricing-button {

            width: 100%;

            margin-top: auto;

            padding: 13px 18px;

            display: flex;

            align-items: center;

            justify-content: center;

            gap: 10px;

            border-radius: 11px;

            text-decoration: none;

            font-size: 13px;

            font-weight: 650;

            transition: .25s ease;
        }


        .pricing-button span {

            font-size: 17px;

            transition: .25s ease;
        }


        .pricing-button:hover span {

            transform:
                translateX(4px);
        }

        .pricing-button-outline {
            color: black;
            background: #f8f9fa;
            border: 1px solid rgba(0, 0, 0, 0.125);
        }


        .pricing-button-outline:hover {

            color: white;

            background: #1DAC4B;

            border-color: #1DAC4B;
        }


        .pricing-button-primary {

            color: white;

            background: #1DAC4B;

            border:
                1px solid #1DAC4B;

            box-shadow:
                0 8px 25px rgba(62, 240, 154, .16);
        }


        .pricing-button-primary:hover {

            color: black;
            background: white;


            transform:
                translateY(-2px);

            box-shadow:
                0 12px 30px rgba(62, 240, 154, .25);
        }



        /* =========================================================
   COMPARISON
========================================================= */

        .pricing-comparison {

            position: relative;

            z-index: 2;

            max-width: 1100px;

            margin: 120px auto 0;
        }


        .comparison-header {

            max-width: 650px;

            margin: 0 auto 45px;
        }


        .comparison-eyebrow {

            color: #1DAC4B;

            font-size: 10px;

            font-weight: 700;

            letter-spacing: 1.5px;
        }


        .comparison-header h2 {

            margin-top: 14px;

            font-size:
                clamp(30px, 3vw, 42px);

            letter-spacing: -1.4px;
        }


        .comparison-header h2 span {

            color: #1DAC4B;
        }


        .comparison-header p {
            margin-top: 15px;
            color: black;
            font-size: 14px;
            line-height: 1.7;
            opacity: 0.8;
        }



        /* TABS */

        .comparison-tabs {
            display: flex;
            width: fit-content;
            margin: 0 auto 25px;
            padding: 5px;
            border-radius: 13px;
            background: rgba(62, 240, 154, 0.08);
            border: 1px solid rgba(255, 255, 255, .08);
        }


        .comparison-tab {

            position: relative;

            min-width: 150px;

            padding: 11px 18px;

            border: 0;

            border-radius: 9px;

            background: transparent;

            color: black;

            cursor: pointer;

            font-size: 12px;

            font-weight: 600;

            transition: .25s ease;
        }


        .comparison-tab small {
            display: block;
            margin-top: 3px;
            color: #1DAC4B;
            font-weight: 600;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: .7px;
        }


        .comparison-tab.active {
            color: black;
            /* background: rgba(62, 240, 154, 0.18);
        box-shadow: inset 0 0 0 1px rgba(62, 240, 154, .18); */
            font-weight: 600;
        }



        /* TABLE */

        .comparison-table-wrapper {
            overflow-x: auto;
            border-radius: 18px;
            border: 1px solid rgba(62, 240, 154, 0.08);
            background: rgba(62, 240, 154, 0.08);
            padding: 29px 20px;
        }


        .comparison-table {

            width: 100%;

            min-width: 700px;

            border-collapse: collapse;
        }


        .comparison-table th,
        .comparison-table td {
            padding: 17px 22px;
            border-bottom: 1px solid rgb(61 227 147 / 25%);
            text-align: center;
            font-size: 15px;
        }


        .comparison-table th:first-child,
        .comparison-table td:first-child {

            width: 30%;

            text-align: left;
        }


        .comparison-table th {

            padding-top: 22px;

            padding-bottom: 22px;

            color: black;

            font-size: 20px;
        }


        .comparison-table td:first-child {
            color: black;

        }


        .comparison-table td {

            color: black;

        }


        .starter-column {

            background:
                rgba(62, 240, 154, .025);
        }


        .feature-category td {
            padding-top: 25px;
            padding-bottom: 10px;
            color: #1DAC4B !important;
            background: rgba(62, 240, 154, 0.08);
            border-bottom: 0;
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 1.4px;
        }

        .no svg path {
            stroke: #198754;
        }

        .yes {

            display: inline-flex;

            align-items: center;

            justify-content: center;

            min-width: 35px;
            height: 34px;

            padding: 0 7px;

            border-radius: 50px;

            color: #1DAC4B;

            background:
                rgba(62, 240, 154, .08);

            font-weight: 700;

            font-size: 16px;
        }


        .no {

            color: #5e5669;

            font-size: 17px;
        }

        .hero-graphic-wrapper {
            position: relative;
        }

        .hero-image {
            width: 100%;
            display: none;
        }

        .hero-form-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);

            width: 85%;
            max-width: 430px;

            padding: 13px 27px;

            background: rgba(255, 255, 255, 0.96);

            border-radius: 18px;

            box-shadow:
                0 5px 5px rgba(0, 0, 0, 0.10);

            z-index: 5;
        }

        .hero-form-header {
            text-align: center;
            margin-bottom: 12px;
        }

        .hero-form-header h2 {
            margin: 0 0 5px;
            font-size: 25px;
            font-weight: 650;
            color: #111;
        }

        .hero-form-header p {
            margin: 0;
            font-size: 14px;
            line-height: 1.5;
            color: #555;
        }

        @media (max-width: 767px) {

            .hero-form-overlay {
                position: relative;

                top: auto;
                left: auto;

                transform: none;

                width: 100%;
                max-width: none;

                margin-top: 25px;

                padding: 22px;
            }

        }



        /* =========================================================
   RESPONSIVE
========================================================= */

        @media (max-width: 991px) {

            .ai-pricing-section {

                padding:
                    90px 20px;
            }

            .pricing-card {

                min-height:
                    auto;
            }

        }


        @media (max-width: 767px) {

            .pricing-title {

                font-size: 36px;
            }

            .pricing-description {

                font-size: 14px;
            }

            .pricing-card {

                padding: 27px;

            }

            .comparison-tabs {

                width: 100%;

            }

            .comparison-tab {

                min-width: 0;

                flex: 1;

                padding:
                    10px 8px;

                font-size: 10px;
            }

            .comparison-tab small {

                font-size: 7px;
            }

        }

        /* =========================
   AI FOOTER
========================= */

        .ai-footer {
            position: relative;
            overflow: hidden;
            background:
                radial-gradient(circle at 80% 20%,
                    rgba(76, 27, 122, 0.28),
                    transparent 35%),
                #150927;

            border-top: 1px solid rgba(255, 255, 255, 0.08);
            color: #fff;
        }


        /* Subtle AI glow */

        .ai-footer::before {
            content: "";
            position: absolute;
            top: 0;
            left: 15%;
            width: 70%;
            height: 1px;

            background: linear-gradient(90deg,
                    transparent,
                    rgba(62, 240, 154, 0.5),
                    transparent);
        }


        /* Main */

        .footer-main {
            display: flex;
            justify-content: space-between;
            gap: 80px;

            padding: 35px 0 35px;
        }


        /* Brand */

        .footer-brand {
            max-width: 360px;
        }


        /* Logo */

        .footer-logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 14px;
            color: #fff;
            text-decoration: none;

            font-size: 22px;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        .footer-logo>span:last-child span {
            color: #1DAC4B;
        }

        .logo-mark {
            width: 34px;
            height: 34px;

            display: flex;
            align-items: center;
            justify-content: center;

            color: #1DAC4B;

            border-radius: 10px;

            background: rgba(62, 240, 154, 0.08);
            border: 1px solid rgba(62, 240, 154, 0.18);

            box-shadow:
                0 0 25px rgba(62, 240, 154, 0.08);
        }

        .logo-mark svg {
            width: 21px;
            height: 21px;
        }


        /* Description */

        .footer-description {
            margin: 20px 0 25px;

            max-width: 330px;

            color: white;

            font-size: 14px;
            line-height: 1.7;
        }


        /* Social */

        .footer-socials {
            display: flex;
            gap: 10px;
        }

        .footer-socials a {
            width: 38px;
            height: 38px;

            display: flex;
            align-items: center;
            justify-content: center;

            color: white;

            border: 1px solid rgba(255, 255, 255, 0.09);
            border-radius: 10px;

            background: rgba(255, 255, 255, 0.025);

            transition: all .25s ease;
        }

        .footer-socials svg {
            width: 17px;
            height: 17px;
        }

        .footer-socials a:hover {
            color: #201335;

            background: #1DAC4B;
            border-color: #1DAC4B;

            transform: translateY(-3px);

            box-shadow:
                0 8px 25px rgba(62, 240, 154, 0.18);
        }


        /* Navigation */

        .footer-nav {
            display: grid;

            align-items: center;
            grid-template-columns:
                repeat(4, minmax(120px, 1fr));

            gap: 70px;
        }


        /* Columns */

        .footer-column {
            display: flex;
            flex-direction: column;
            gap: 13px;
        }

        .footer-column h6 {
            margin: 0 0 10px;

            color: white;

            font-size: 14px;
            font-weight: 700;

            letter-spacing: 1.5px;
        }

        .footer-column a {
            color: white;


            text-decoration: none !important;

            font-size: 13px;

            transition: all .2s ease;
        }

        .footer-column a:hover {
            color: #1DAC4B;
            transform: translateX(3px);
        }



        /* Bottom */

        .footer-bottom {
            display: flex;

            align-items: center;
            justify-content: space-between;

            padding: 22px 0;

            border-top: 1px solid rgba(255, 255, 255, 0.07);

            color: white;

            font-size: 11px;
        }


        /* Legal */

        .footer-legal {
            display: flex;
            gap: 25px;
        }

        .footer-legal a {
            color: white;
            text-decoration: none;

            transition: color .2s ease;
        }

        .footer-legal a:hover {
            color: #1DAC4B;
        }


        /* =========================
   RESPONSIVE
========================= */

        @media (max-width: 991px) {

            .footer-main {
                flex-direction: column;
                gap: 55px;

                padding: 60px 0 50px;
            }

            .footer-brand {
                max-width: 500px;
            }

            .footer-nav {
                width: 100%;
                gap: 40px;
            }
        }


        @media (max-width: 575px) {

            .footer-main {
                padding: 50px 20px 40px;
            }

            .footer-nav {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px 25px;
            }

            .footer-bottom {
                margin: 0 20px;

                flex-direction: column;
                align-items: flex-start;

                gap: 15px;

                line-height: 1.6;
            }

            .footer-legal {
                flex-wrap: wrap;
                gap: 12px 20px;
            }
        }
		
		
		
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background: white;
            color: black;
            font-family:
                -apple-system,
                BlinkMacSystemFont,
                "Segoe UI",
                Roboto,
                Helvetica,
                Arial,
                sans-serif;
            overflow-x: hidden;
        }



        .header-inner {
            max-width: 1100px;
            margin: 0 auto;
        }

        .brand {
            color: white;
            text-decoration: none;
            font-size: 24px;
            font-weight: 700;
        }

        .privacy-container {
            max-width: 1000px;
            margin: 50px auto;
            padding: 0 20px;
        }

        .privacy-card {

            padding: 50px;
            border-radius: 14px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
        }

        h1 {
            font-size: 42px;
            line-height: 1.2;

            margin-bottom: 35px;
        }

        h2 {
            font-size: 25px;
            line-height: 1.3;

            margin-top: 38px;
            margin-bottom: 15px;
        }

        p {
            margin-bottom: 16px;
        }

        ul {
            margin: 0 0 20px 25px;
        }

        li {
            margin-bottom: 10px;
        }

        a {
            color: #2563eb;
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }

        .privacy-footer {
            text-align: center;
            padding: 30px 20px 45px;
            color: #6b7280;
            font-size: 14px;
        }

        @media (max-width: 700px) {
            .privacy-container {
                margin: 25px auto;
                padding: 0 14px;
            }

            .privacy-card {
                padding: 28px 20px;
                border-radius: 10px;
            }

            h1 {
                font-size: 32px;
                margin-bottom: 25px;
            }

            h2 {
                font-size: 21px;
                margin-top: 30px;
            }

            body {
                font-size: 15px;
            }
        }

.add_to_chrome{
	padding:10px 15px 10px 15px !important;
	border: 1px solid #fff !important;
}		

.background_section_green {
    position: relative;
    background: #1dac4b;
    color: #fff;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 0px 0 70px;
    overflow: hidden;
}

.background_section_green .container {
    width: 100%;
    position: relative;
}

.mx_width {
    max-width: 1050px;
    margin: 0 auto;
}

/* Left content */
.background_section_green .content {
    max-width: 560px;
}

.custom_section_h3 {
    color: #fff;
    font-size: 32px;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 40px;
}

.background_section_green .hero-description {
    color: #fff;
    font-size: 23px;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 27px;
}

.background_section_green .content > p:not(.hero-description) {
    color: #fff;
    font-size: 21px;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 27px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 25px;
}

.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 22px;
    border-radius: 3px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.download_ext {
    background: #201335;
    color: #fff;
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.2);
}

.download_ext:hover {
    color: #fff;
    background: #13a9c2;
}

.download_ext span {
    font-weight: 700;
}

.background_section_green .demoBtn {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.background_section_green .demoBtn:hover {
    background: #fff;
    color: #1dac4b;
}

/* Reviews */
.installa {
    color: #fff;
    opacity: .95;
    font-size: 17px;
    line-height: 1.8rem;
}

.review-line {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars_text{
	font-size: 15px;
}

.g-letter {
  font-weight: 600; /* Makes colors vibrant and readable */
}

.g-blue { color: #4285F4; }
.g-red { color: #EA4335; }
.g-yellow { color: #FBBC05; }
.g-green { color: #34A853; }

.stars {
    font-size: 20px;
    letter-spacing: 1px;
	color: #f5b900;
}

/* Right graphic */
.hero-graphic-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-graphic-wrapper img {
    display: block;
    width: 100%;
    max-width: 480px;
        height:auto;
}

/* Scroll icon */
.scroll-down {
    position: absolute;
    left: 50%;
    bottom: -70px;
    transform: translateX(-50%);
    width: 31px;
    height: 31px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    z-index: 10;
    transition: all 0.2s ease;
}

.scroll-down:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

.scroll-down i {
    line-height: 1;
}


@media (max-width: 991px) {

    .background_section_green {
        min-height: auto;
        padding: 60px 20px 100px;
    }

    .custom_section_h3 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .hero-description {
        font-size: 21px;
        margin-bottom: 25px;
    }

    .background_section_green .content > p:not(.hero-description) {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-wrap: wrap;
        gap: 12px;
    }

    .hero-graphic-wrapper {
        margin-top: 20px;
    }

    .hero-graphic-wrapper img {
        max-width: 420px;
        height: auto;
    }

    .scroll-down {
        bottom: -60px;
    }
	
	.add_to_chrome_div{
		display:none;
	}
}



@media (max-width: 576px) {

    .custom_section_h3 {
        font-size: 28px;
    }

    .hero-description {
        font-size: 19px;
    }

    .background_section_green .content > p:not(.hero-description) {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary-custom {
        width: 100%;
    }

    .installa {
        font-size: 15px;
    }

    .review-line {
        flex-wrap: wrap;
    }
}

.testimonials-section {
    background: #fff;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 32px 0 35px;
}

.testimonial-item {
    padding: 0 10px;
}

.testimonial-stars {
    color: #f5b900;
    font-size: 23px;
    line-height: 1;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.testimonial-text {
    color: #111;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 400;
    min-height: 30px;
    margin-bottom: 10px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-user img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    color: #111;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 500;
}

.testimonial-source {
    color: #777;
    font-size: 14px;
    line-height: 1.4;
}

/* Mobile */
@media (max-width: 767px) {
    .testimonials-section {
        padding: 30px 0;
    }

    .testimonial-item {
        padding: 0;
    }

    .testimonial-text {
        font-size: 17px;
        min-height: auto;
    }
}
/***header sticky*****/
header.container-fluid {
    position: sticky;
    top: 0;
    z-index: 1050;
}

header.container-fluid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
}

header.container-fluid {
    position: sticky;
    top: 0;
    z-index: 1050;
}

.agents-eyebrow_n{
	margin-top:20px;
}


/*internal page css*/

:root {
    --colix-green: #1dac4b;
    --colix-dark: #201335;
    --colix-text: #666666;
    --colix-light: #f7f9f7;
    --colix-border: #e5e5e5;
}


/* =========================================
   BASE
========================================= */

.sector-page {
    font-family: Arial, sans-serif;
    color: var(--colix-dark);
    background: #ffffff;
}

.sector-page p {
    line-height: 1.7;
}


/* =========================================
   HERO
========================================= */

.sector-hero {
    background: var(--colix-dark);
    color: #ffffff;
    padding: 120px 0;
}

.sector-hero .sector-eyebrow {
    color: var(--colix-green);
}

.sector-hero h1 {
    color: #ffffff;
    font-size: 58px;
    line-height: 1.1;
    font-weight: 700;
    max-width: 850px;
}

.sector-hero p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 19px;
    line-height: 1.7;
    max-width: 700px;
}


/* =========================================
   EYEBROW
========================================= */

.sector-eyebrow {
    color: var(--colix-green);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: 1.4;
}


/* =========================================
   SECTION HEADINGS
========================================= */

.sector-page h2 {
    color: var(--colix-dark);
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
}

.sector-page h4 {
    color: var(--colix-dark);
    font-size: 21px;
    line-height: 1.3;
    font-weight: 700;
}


/* =========================================
   SECTION TEXT
========================================= */

.sector-page .sector-text {
    color: var(--colix-text);
    font-size: 18px;
    line-height: 1.8;
}


/* =========================================
   LIGHT SECTION
========================================= */

.sector-section-light {
    background: var(--colix-light);
}


/* =========================================
   CHALLENGE LIST
========================================= */

.sector-page .sector-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sector-page .sector-list li {
    border-bottom: 1px solid var(--colix-border);
    padding: 18px 0;
    font-size: 17px;
    color: var(--colix-dark);
}

.sector-page .sector-list li:last-child {
    border-bottom: 0;
}

.sector-check {
    color: var(--colix-green);
    font-weight: 700;
    margin-right: 10px;
}


/* =========================================
   AI AGENT CARDS
========================================= */

.sector-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid var(--colix-border);
    border-radius: 10px;
    padding: 35px;
    transition: 0.25s ease;
}

.sector-card:hover {
    border-color: var(--colix-green);
    transform: translateY(-4px);
}

.sector-card .sector-number {
    color: var(--colix-green);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 25px;
}

.sector-card h4 {
    margin-bottom: 15px;
}

.sector-card p {
    color: var(--colix-text);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 0;
}


/* =========================================
   NUMBER
========================================= */

.sector-number {
    color: var(--colix-green);
    font-size: 15px;
    font-weight: 700;
}


/* =========================================
   DARK SECTION
========================================= */

.sector-dark {
    background: var(--colix-dark);
    color: #ffffff;
}

.sector-dark h2,
.sector-dark h3,
.sector-dark h4 {
    color: #ffffff;
}

.sector-dark p {
    color: rgba(255, 255, 255, 0.7);
}


/* =========================================
   DARK SECTION BENEFITS
========================================= */

.sector-benefit {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px 0;
}

.sector-benefit h4 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 12px;
}

.sector-benefit p {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 0;
}


/* =========================================
   WORKFLOW
========================================= */

.sector-workflow {
    border-top: 1px solid var(--colix-border);
    padding: 30px 0;
}

.sector-workflow h4 {
    margin-bottom: 10px;
}

.sector-workflow p {
    color: var(--colix-text);
    line-height: 1.7;
    margin-bottom: 0;
}


/* =========================================
   BUTTONS
========================================= */

.btn-colix {
    background: var(--colix-green);
    border: 1px solid var(--colix-green);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 5px;
    font-weight: 600;
}

.btn-colix:hover,
.btn-colix:focus {
    background: #168d3d;
    border-color: #168d3d;
    color: #ffffff;
}


.btn-colix-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 5px;
    font-weight: 600;
}

.btn-colix-outline:hover,
.btn-colix-outline:focus {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--colix-dark);
}


/* =========================================
   CTA
========================================= */

.sector-cta {
    background: var(--colix-light);
    padding: 100px 0;
}

.sector-cta h2 {
    font-size: 45px;
}

.sector-cta p {
    color: var(--colix-text);
    font-size: 18px;
    line-height: 1.7;
    max-width: 650px;
    margin: 20px auto 35px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .sector-hero {
        padding: 80px 0;
    }

    .sector-hero h1 {
        font-size: 44px;
    }

    .sector-page h2 {
        font-size: 34px;
    }

    .sector-cta h2 {
        font-size: 36px;
    }

}


@media (max-width: 575px) {

    .sector-hero {
        padding: 60px 0;
    }

    .sector-hero h1 {
        font-size: 38px;
    }

    .sector-hero p {
        font-size: 17px;
    }

    .sector-page h2 {
        font-size: 30px;
    }

    .sector-card {
        padding: 25px;
    }

}

.btn-primary-custom-blog{
	background-color:#1DAC4B !important;
	border:1px solid #1DAC4B !important;
}
.card-title a{
	color:#201335;
}
.btn-primary-custom-blog.active{
	background-color:#201335 !important;
	border:1px solid #201335 !important;
}

/* =========================================
   COLIXAI PLATFORMS SECTION
========================================= */

.colix-platforms-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #201335;
    color: #fff;
}


/* Subtle background glow */

.colix-platforms-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    left: 50%;
    top: 30%;
    transform: translate(-50%, -50%);
    background: #1dac4b;
    opacity: 0.06;
    filter: blur(120px);
    border-radius: 50%;
    pointer-events: none;
}


/* Eyebrow */

.colix-platforms-eyebrow {
    display: inline-block;
    margin-bottom: 15px;
    color: #1dac4b;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}


/* Heading */

.colix-platforms-title {
    position: relative;
    margin-bottom: 20px;
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 700;
    line-height: 1.1;
}

.colix-platforms-title span {
    color: #1dac4b;
}


/* Description */

.colix-platforms-description {
    max-width: 650px;
    margin: 0 auto;
    color: rgba(255,255,255,0.65);
    font-size: 17px;
    line-height: 1.7;
}


/* =========================================
   PLATFORM CARDS
========================================= */

.colix-platform-card {
    position: relative;
    height: 100%;
    padding: 35px 25px;
    text-align: center;

    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 20px;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;

    backdrop-filter: blur(10px);
}


/* Hover */

.colix-platform-card:hover {
    transform: translateY(-8px);
    border-color: rgba(29,172,75,0.6);
    background: rgba(29,172,75,0.06);

    box-shadow:
        0 20px 50px rgba(0,0,0,0.25),
        0 0 30px rgba(29,172,75,0.08);
}


/* Active Chrome Card */

.colix-platform-card.active {
    border-color: rgba(29,172,75,0.45);
}


/* Platform Icon */



/* 3. Keep hover effect subtle so it doesn't turn green */
.colix-platform-icon.chrome {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.08);
}

.colix-platform-icon.windows {
	color: #0078D4;
    border: 1px solid #0078D4;
}
.colix-platform-icon.mac {
	color: #A2AAAD;
    border: 1px solid #A2AAAD;
}
.colix-platform-icon.linux {
	background: #00FF41;
    border: 1px solid #00FF41;
}
.colix-platform-icon {
    width: 70px;
    height: 70px;

    margin: 0 auto 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: rgba(29,172,75,0.10);
    border: 1px solid rgba(29,172,75,0.25);

    font-size: 32px;

    transition:
        transform 0.35s ease,
        background 0.35s ease;
}


/* Icon Hover */

.colix-platform-card:hover .colix-platform-icon {
    transform: scale(1.08) rotate(-3deg);
    background: rgba(29,172,75,0.16);
}


/* Card Heading */

.colix-platform-card h3 {
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 600;
}


/* Card Description */

.colix-platform-card p {
    min-height: 52px;
    margin-bottom: 22px;

    color: rgba(255,255,255,0.55);

    font-size: 14px;
    line-height: 1.6;
}


/* =========================================
   STATUS
========================================= */

.colix-platform-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 7px 12px;

    border-radius: 50px;

    background: rgba(29,172,75,0.10);

    color: #1dac4b;

    font-size: 12px;
    font-weight: 600;
}


.colix-platform-status > span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #1dac4b;

    box-shadow: 0 0 8px #1dac4b;

    animation: colixPulse 2s infinite;
}


/* Coming Soon */

.colix-platform-status.coming {
    color: rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.06);
}


.colix-platform-status.coming > span {
    background: rgba(255,255,255,0.45);
    box-shadow: none;
    animation: none;
}


/* =========================================
   CTA
========================================= */

.colix-platforms-cta {
    position: relative;
    margin-top: 55px;
}


.colix-platform-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 14px 25px;

    border-radius: 50px;

    background: #1dac4b;
    color: #fff;

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


.colix-platform-btn:hover {
    transform: translateY(-3px);

    background: #22c956;

    color: #fff;

    box-shadow:
        0 10px 30px rgba(29,172,75,0.30);
}


.colix-platform-btn i {
    transition: transform 0.3s ease;
}


.colix-platform-btn:hover i {
    transform: translateX(4px);
}


/* =========================================
   BACKGROUND FLOATING ORBS
========================================= */

.colix-orb {
    position: absolute;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #1dac4b;

    opacity: 0.5;

    box-shadow: 0 0 15px #1dac4b;

    pointer-events: none;
}


.orb-one {
    left: 12%;
    top: 25%;
    animation: colixFloat 5s ease-in-out infinite;
}


.orb-two {
    right: 15%;
    top: 35%;
    animation: colixFloat 7s ease-in-out infinite reverse;
}


.orb-three {
    left: 20%;
    bottom: 20%;
    animation: colixFloat 6s ease-in-out infinite 1s;
}


/* =========================================
   ANIMATIONS
========================================= */

@keyframes colixPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.45;
        transform: scale(0.75);
    }

}


@keyframes colixFloat {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-20px) translateX(8px);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .colix-platforms-section {
        padding: 70px 0;
    }

    .colix-platforms-title {
        font-size: 38px;
    }

    .colix-platforms-description {
        font-size: 15px;
    }

    .colix-platform-card {
        padding: 30px 20px;
    }

}

.steps_tosetup{
	color:#fff;
}

#blog-posts article a img{
	height: 300px;
    object-fit: cover;
}