
        :root {
            --green: #007031;
            --green-lite: #1aa64b;
            --rs-accent-orange: #f97316;
            --rs-bg-light: #ffffff;
        }

        body {
            font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
            background-color: var(--rs-bg-light);
            margin: 0;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        .text-slate-900 { color: #0f172a !important; }
        .text-slate-600 { color: #475569 !important; }
        .text-slate-500 { color: #64748b !important; }
        .text-orange-custom { color: #f97316 !important; }
        .text-indigo-custom { color: #6366f1 !important; }
        .fw-extrabold { font-weight: 800 !important; }
        .fw-black { font-weight: 900 !important; }
        .tracking-tight { letter-spacing: -0.025em; }
        .tracking-tighter { letter-spacing: -0.05em; }
        .tracking-widest { letter-spacing: 0.1em; }
        .rounded-3xl { border-radius: 1.5rem !important; }
        .rounded-full-custom { border-radius: 9999px !important; }

        /* Social Icons Row */
        .social-row {
            display: flex;
            gap: 8px;
            padding: 0;
            list-style: none;
            margin-bottom: 25px !important;
        }

        .social-row li a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px !important;
            height: 32px !important;
            background-color: rgba(255, 255, 255, 0.08);
            border-radius: 50%;
            transition: all 0.3s ease;
            color: #fff !important;
            text-decoration: none;
        }

        .social-row li a:hover {
            background-color: var(--green-lite);
        }

        .social-row li a i {
            font-size: 15px !important;
            margin: 0 !important;
        }

        .store-badge .badge-icon {
            font-size: 17px !important;
            margin-right: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 35px;
        }

        .store-badge {
            display: flex;
            align-items: center;
            background-color: #000;
            color: #fff;
            padding: 8px 12px !important;
            border-radius: 8px;
            text-decoration: none !important;
            width: 175px !important;
            height: 55px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.2s, background-color 0.2s;
            margin-bottom: 10px;
            font-size: 14px;
        }

        .store-badge span {
            font-size: 10px;
            display: block;
            color: #a0aec0;
            text-align: left;
        }

        .store-badge strong {
            font-size: 13px;
            display: block;
            text-align: left;
        }

        .store-badge:hover {
            transform: translateY(-2px);
            background-color: #1a202c;
            color: #fff !important;
        }

        @media (max-width: 510px) {
            .store-badge .badge-icon {
                font-size: 15px !important;
                margin-right: 8px;
                width: 28px;
            }

            .store-badge {
                padding: 6px 10px !important;
                width: 150px !important;
                height: 50px;
                font-size: 12px;
            }

            .store-badge strong {
                font-size: 11px;
            }
        }

        .rs-hero {
            position: relative;
            padding: 150px 20px 0 20px !important;
            text-align: center;
            background-color: #fffff7;
            background-image: radial-gradient(at 50% 0%, #f0fdf4 0%, transparent 50%);
            overflow: hidden;
        }

        .rs-hero-title {
            font-size: 50px;
            font-weight: 800;
            letter-spacing: -0.04em;
            line-height: 1.3;
            color: #1e293b;
            margin-bottom: 24px;
        }

        .rs-hero-title span {
            color: var(--green-lite);
        }

        .rs-hero-mockup-wrapper {
            margin-top: 40px;
            display: flex;
            justify-content: center;
            width: 100%;
        }

        .rs-hero-display {
            width: 100%;
            max-width: 1000px;
            border-radius: 20px 20px 0 0;
            box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.05);
            border: 1px solid #e5e7eb;
            overflow: hidden;
        }

        .rs-hero-display img {
            width: 100%;
            height: auto;
            display: block;
        }

        @media (max-width: 768px) {
            .rs-hero-title {
                font-size: 32px;
                line-height: 1.2;
            }

            .rs-hero {
                padding-top: 30px;
            }
        }

        /* Brands Carousel Section */
        .rs-brands {
            padding: 40px 0;
            background: #fff;
            text-align: center;
            overflow: hidden;
        }

        .rs-brands-container {
            width: 100%;
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .rs-brands-track {
            display: flex;
            width: max-content;
            animation: rs-scroll-brands 30s linear infinite;
            gap: 40px;
            align-items: center;
        }

        .rs-brands-track img {
            height: 35px;
            filter: grayscale(100%);
            opacity: 0.8;
            transition: 0.3s;
        }

        .rs-brands-track img:hover {
            opacity: 1;
            filter: grayscale(0%);
        }

        @keyframes rs-scroll-brands {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-33.3333%);
            }
        }

        /* Sticky Navigation Feature Tabs */
        .rs-tools-nav-wrapper {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #e5e7eb;
            position: sticky;
            top: 75px !important;
            z-index: 100;
        }

        .rs-tools-tabs {
            display: flex;
            gap: 1rem;
            overflow-x: auto;
            scrollbar-width: none;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
            -webkit-overflow-scrolling: touch;
        }

        .rs-tools-tabs::-webkit-scrollbar {
            display: none;
        }

        .rs-tab-item {
            padding: 1rem 0.5rem;
            font-weight: 700;
            color: #64748b;
            cursor: pointer;
            white-space: nowrap;
            position: relative;
            font-size: 0.85rem;
            transition: 0.3s;
        }

        .rs-tab-item.active {
            color: #0f172a;
        }

        .rs-tab-item.active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--rs-accent-orange);
            border-radius: 4px 4px 0 0;
        }

        @media (min-width: 768px) {
            .rs-tools-tabs {
                justify-content: center;
                gap: 3rem;
            }

            .rs-tab-item {
                font-size: 0.95rem;
            }
        }

        .rs-feature-card {
            padding: 60px 0;
            border-bottom: 1px solid #f8fafc;
        }

        .rs-feature-preview {
            border-radius: 24px;
            padding: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            aspect-ratio: 4/3;
            width: 100%;
            overflow: hidden;
            box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.05);
            background-color: #f8fafc;
        }

        .rs-feature-preview img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .rs-carousel-section {
            padding: 80px 0;
            overflow: hidden;
            border-top: 1px solid #f1f5f9;
            background-color: #fafbfc;
        }

        .rs-carousel-container {
            position: relative;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .rs-carousel-wrapper {
            display: flex;
            overflow-x: auto;
            position: relative;
            width: 100%;
            scrollbar-width: none;
            -ms-overflow-style: none;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            padding: 20px 0;
        }

        .rs-carousel-wrapper::-webkit-scrollbar {
            display: none;
        }

        .rs-carousel-track {
            display: flex;
            gap: 24px;
            width: max-content;
        }

        .rs-carousel-nav {
            display: flex;
            gap: 12px;
            position: absolute;
            top: -85px;
            right: 24px;
            z-index: 10;
        }

        .rs-nav-btn {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: 1px solid #e2e8f0;
            background: white;
            color: #0f172a;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .rs-nav-btn:hover {
            background: var(--green);
            color: white;
            border-color: var(--green);
            transform: scale(1.1);
        }

        .rs-nav-btn:active {
            transform: scale(0.95);
        }

        @media (max-width: 768px) {
            .rs-carousel-nav {
                position: static;
                margin-top: 20px;
                justify-content: center;
                padding-bottom: 20px;
            }
        }

        .rs-cat-card {
            width: 280px;
            height: 380px;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            flex-shrink: 0;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            transition: 0.4s;
            background-color: #000;
        }

        @media (max-width: 768px) {
            .rs-cat-card {
                width: 240px;
                height: 320px;
            }
        }

        .rs-cat-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.9;
            transition: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .rs-cat-card:hover img {
            transform: scale(1.1);
            opacity: 1;
        }

        .rs-cat-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 24px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
            color: white;
            font-weight: 700;
            font-size: 1.1rem;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            transition: 0.3s;
        }

        .rs-cat-card:hover .rs-cat-overlay {
            color: var(--green-lite);
        }

        /* FAQ and general section updates */
        .rs-faq {
            padding: 80px 0;
        }

        .rs-faq-item {
            border-top: 1px solid #f1f5f9;
            margin-bottom: 0;
            overflow: hidden;
        }

        .rs-faq-trigger {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 24px 0;
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
            font-size: 1.1rem;
            font-weight: 700;
            color: #1e293b;
            transition: 0.3s;
        }

        @media (max-width: 768px) {
            .rs-faq-trigger {
                font-size: 1rem !important;
            }
        }

        .rs-faq-content {
            max-height: 0;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0, 1, 0, 1);
            color: #64748b;
            line-height: 1.6;
            margin-bottom: 0;
        }

        .rs-faq-item.active .rs-faq-content {
            max-height: 1000px;
            padding-bottom: 24px;
            transition: all 0.5s cubic-bezier(1, 0, 1, 0);
        }

        .rs-plus-icon {
            width: 20px;
            height: 20px;
            position: relative;
            flex-shrink: 0;
            transition: 0.3s transform;
        }

        .rs-plus-icon::before,
        .rs-plus-icon::after {
            content: '';
            position: absolute;
            background: #0f172a;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .rs-plus-icon::before {
            width: 100%;
            height: 2px;
        }

        .rs-plus-icon::after {
            height: 100%;
            width: 2px;
            transition: 0.3s opacity;
        }

        .rs-faq-item.active .rs-plus-icon {
            transform: rotate(180deg);
        }

        .rs-faq-item.active .rs-plus-icon::after {
            opacity: 0;
        }

        /* Video Section Custom Styles */
        .rs-video-box {
            max-width: 800px;
            height: 450px;
            margin: 0 auto;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
            position: relative;
            background: #fff;
            cursor: pointer;
        }

        @media (max-width: 768px) {
            .rs-video-box {
                height: 250px;
            }
        }

        .video-thumbnail {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 30px;
            color: white;
            background: rgba(0, 112, 49, 0.95);
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(0, 112, 49, 0.4);
            transition: transform 0.3s, background-color 0.3s;
        }

        .rs-video-box:hover .play-button {
            transform: translate(-50%, -50%) scale(1.1);
            background: var(--green-lite);
        }

        .footer {
            background: #1a3a6d;
            color: #fff;
            padding-top: 60px;
        }

        .desc {
            max-width: 600px;
            margin: auto;
            color: #cbd5e0;
        }

        .contact-box {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 30px 0;
            margin: 40px 0;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .contact-item i {
            font-size: 18px;
            color: var(--green-lite);
        }

        .footer h6 {
            color: #defbe1;
            font-size: 13px;
            margin-bottom: 20px;
            font-weight: 900;
        }

        .footer a {
            color: #fff;
            text-decoration: none;
            font-size: 14px;
        }

        .footer a:hover {
            color: var(--green-lite);
        }

        .footer ul {
            list-style: none;
            padding: 0;
        }

        .footer ul li {
            margin-bottom: 8px;
        }

        .bottom {
            background: var(--green);
            padding: 15px 0;
            font-size: 14px;
        }

        @media (max-width: 768px) {
            .contact-item {
                flex-direction: column;
                text-align: center;
            }

            .ras img {
                max-width: 220px;
            }

            .oran {
                display: flex;
                gap: 10px;
                margin: 20px;
                flex-wrap: wrap;
                justify-content: center;
            }
        }

        .ras {
            text-align: center !important;
        }

        .ras img {
            display: block;
            margin: 0 auto !important;
            max-height: 45px;
            width: auto;
        }

        .oran {
            display: flex;
            gap: 10px;
            margin: 10px;
        }

        .crm-hub-logo-img {
            max-height: 40px;
            width: auto;
            margin-top: 15px;
        }

        /* CUSTOM UTILITIES replacing Tailwind rules */
        .btn-rs-dark {
            background-color: #002b94 !important;
            color: #fff !important;
            padding: 10px 24px;
            border-radius: 50px;
            font-weight: 700;
            border: none;
            box-shadow: 0 10px 25px rgba(0, 43, 148, 0.2);
            transition: transform 0.2s ease, background-color 0.2s ease;
            text-decoration: none;
            display: inline-block;
        }
        .btn-rs-dark:hover {
            transform: scale(1.05);
            background-color: #001f6b !important;
            color: #fff !important;
        }
        #backToTopBtn {
            position: fixed;
            bottom: 24px;
            left: 24px;
            width: 44px;
            height: 44px;
            background-color: #00873c;
            color: #fff;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            border: none;
            z-index: 1050;
            transition: all 0.3s ease;
        }
        .whatsapp-float {
            position: fixed;
            bottom: 24px;
            right: 24px;
            background-color: #25d366;
            color: #fff !important;
            padding: 10px 20px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            text-decoration: none;
            z-index: 1050;
            transition: all 0.3s ease;
        }
        .whatsapp-float:hover {
            background-color: #128c7e;
            transform: scale(1.05);
            color: #fff !important;
        }
