:root {
            --primary-color: #0d6efd;
            --secondary-color: #1e293b;
            --whatsapp-color: #25D366;
            --bg-gradient: linear-gradient(135deg, #f8f9fa 0%, #eef2f6 100%);
            --text-dark: #1e293b;
            --text-muted: #64748b;
            --primary-emerald: #10b981;
            --dark-slate: #0f172a;
            --mid-slate: #1e293b;
        }

        body {
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            /*background: var(--bg-gradient);*/
            color: var(--text-dark);
        }

        h1, h2, h3, h4, h5, h6, .navbar-brand {
            font-family: 'Poppins', sans-serif;
        }

        /* Navbar Styling */
        .navbar {
            padding: 1.5rem 0;
            background-color: transparent;
            transition: all 0.3s ease;
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--secondary-color);
        }

        .navbar-brand span {
            color: var(--primary-color);
        }

        .nav-link {
            font-weight: 500;
            color: var(--text-dark);
            margin-left: 1.5rem;
            transition: color 0.2s;
        }

        .nav-link:hover {
            color: var(--primary-color);
        }

        .btn-nav-cta {
            background-color: transparent;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            font-weight: 600;
            padding: 0.5rem 1.2rem;
            border-radius: 8px;
            margin-left: 1rem;
            transition: all 0.3s;
        }

        .btn-nav-cta:hover {
            background-color: var(--primary-color);
            color: white;
        }

        /* Hero Section Styling */
        .hero-section {
            padding: 7rem 0 6rem 0;
            position: relative;
            overflow: hidden;
            min-height: 90vh;
            display: flex;
            align-items: center;
        }

        /* Background Shapes */
        .bg-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            z-index: -1;
            opacity: 0.6;
        }

        .shape-1 {
            width: 400px;
            height: 400px;
            background-color: rgba(37, 211, 102, 0.15); /* WhatsApp Green tint */
            top: -100px;
            right: -100px;
        }

        .shape-2 {
            width: 300px;
            height: 300px;
            background-color: rgba(13, 110, 253, 0.1);
            bottom: 50px;
            left: -50px;
        }

        /* Left Content */
        .hero-badge {
            display: inline-flex;
            align-items: center;
            padding: 0.5rem 1rem;
            background-color: rgba(37, 211, 102, 0.1);
            color: #128c7e;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.875rem;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(37, 211, 102, 0.2);
        }

        .hero-badge i {
            margin-right: 0.5rem;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: var(--secondary-color);
        }

        .hero-title span {
            background: linear-gradient(120deg, var(--whatsapp-color), #128c7e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-text {
            font-size: 1.125rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 2.5rem;
            max-width: 540px;
        }

        /* Buttons */
        .btn-lg-custom {
            padding: 0.8rem 2rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 10px;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .btn-primary-custom {
            background: var(--secondary-color);
            border: none;
            color: white;
            box-shadow: 0 10px 20px -10px rgba(30, 41, 59, 0.5);
        }

        .btn-primary-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 25px -10px rgba(30, 41, 59, 0.6);
            background-color: #0f172a;
            color: white;
        }

        .btn-outline-custom {
            background: white;
            border: 1px solid #e2e8f0;
            color: var(--text-dark);
            margin-left: 1rem;
        }

        .btn-outline-custom:hover {
            background: #f8fafc;
            border-color: #cbd5e1;
            transform: translateY(-2px);
            color: var(--text-dark);
        }

        /* Trust Signals */
        .trust-area {
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid #e2e8f0;
        }
        .trust-text {
            font-size: 0.9rem;
            color: var(--text-muted);
            font-weight: 500;
            margin-bottom: 0.5rem;
        }
        .trust-stars {
            color: #fbbf24;
            margin-right: 0.5rem;
        }

        /* Right Side Interactive Visual */
        .visual-container {
            position: relative;
            height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            perspective: 1000px; /* For 3D effect */
        }

        .interactive-group {
            position: relative;
            width: 100%;
            height: 100%;
            transform-style: preserve-3d;
            transition: transform 0.1s ease-out;
        }

        /* Phone Mockup */
        .phone-mockup {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 300px;
            height: 580px;
            background: white;
            border-radius: 40px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            border: 8px solid #1e293b;
            overflow: hidden;
            z-index: 2;
        }

        .phone-header {
            background: #075e54;
            padding: 15px;
            color: white;
            display: flex;
            align-items: center;
            font-size: 0.9rem;
        }

        .phone-header img {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            margin-right: 10px;
            background: #fff;
        }

        .phone-body {
            padding: 15px;
            background: #e5ddd5;
            height: 100%;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .chat-bubble {
            max-width: 80%;
            padding: 8px 12px;
            border-radius: 8px;
            font-size: 0.85rem;
            position: relative;
            opacity: 0; /* Hidden initially */
            transform: translateY(10px);
            animation: fadeInMessage 0.5s forwards;
            box-shadow: 0 1px 2px rgba(0,0,0,0.1);
        }

        .chat-left {
            background: white;
            align-self: flex-start;
            border-top-left-radius: 0;
        }

        .chat-right {
            background: #dcf8c6;
            align-self: flex-end;
            border-top-right-radius: 0;
        }

        /* CRM Floating Card */
        .crm-card {
            position: absolute;
            background: white;
            padding: 1.5rem;
            border-radius: 16px;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            width: 280px;
            z-index: 3;
            top: 55%;
            right: 0;
            opacity: 0;
            animation: slideInCard 0.5s 1.5s forwards; /* Delays until after 1st message */
        }
        
        .crm-card-header {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .icon-box {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: #eff6ff;
            color: var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
        }

        .crm-stat-value {
            font-weight: 700;
            font-size: 1.25rem;
            color: var(--text-dark);
        }

        .crm-stat-label {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        /* Floating Element 2 */
        .floating-badge {
            position: absolute;
            bottom: 25%;
            left: 40px;
            background: white;
            padding: 10px 20px;
            border-radius: 50px;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            z-index: 4;
            display: flex;
            align-items: center;
            gap: 10px;
            opacity: 0;
            animation: popIn 0.5s 3s forwards;
        }

        .check-circle {
            width: 24px;
            height: 24px;
            background: var(--whatsapp-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 12px;
        }

        /* Animation Keyframes */
        @keyframes fadeInMessage {
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes slideInCard {
            from { opacity: 0; transform: translateX(20px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes popIn {
            from { opacity: 0; transform: scale(0.8); }
            to { opacity: 1; transform: scale(1); }
        }

        /* Helper animation classes applied by JS loop */
        .anim-delay-1 { animation-delay: 0.5s; }
        .anim-delay-2 { animation-delay: 2.5s; }

        @media (max-width: 991px) {
            .hero-title { font-size: 2.5rem; }
            .visual-container { height: 450px; margin-top: 3rem; }
            .hero-section { text-align: center; padding-top: 4rem; }
            .hero-text { margin: 0 auto 2rem auto; }
            .hero-badge { margin: 0 auto 1.5rem auto; }
            .trust-area { justify-content: center; display: flex; flex-direction: column; align-items: center; }
            .floating-badge{bottom:5px;}
        }
        
        /* * BENEFITS SECTION STYLES
         */
        .benefits-section {
            padding: 6rem 0;
            background-color: white;
            position: relative;
        }

        .section-title {
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 1rem;
            text-align: center;
        }

        .section-subtitle {
            color: var(--text-muted);
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem auto;
            font-size: 1.1rem;
        }

        .benefit-card {
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            padding: 2.5rem 2rem;
            height: 100%;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px -15px rgba(13, 110, 253, 0.15);
            border-color: rgba(13, 110, 253, 0.2);
        }

        /* Subtle gradient background on hover */
        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(248,250,252,0) 0%, rgba(239,246,255,0.5) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .benefit-card:hover::before {
            opacity: 1;
        }

        .benefit-icon-wrapper {
            width: 60px;
            height: 60px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.75rem;
            transition: transform 0.3s ease;
        }

        /* Color variants for icons */
        .icon-blue { background: rgba(13, 110, 253, 0.1); color: var(--primary-color); }
        .icon-green { background: rgba(37, 211, 102, 0.1); color: var(--whatsapp-color); }
        .icon-purple { background: rgba(111, 66, 193, 0.1); color: #6f42c1; }
        .icon-orange { background: rgba(253, 126, 20, 0.1); color: #fd7e14; }
        .icon-cyan { background: rgba(13, 202, 240, 0.1); color: #0dcaf0; }
        .icon-red { background: rgba(220, 53, 69, 0.1); color: #dc3545; }

        .benefit-card:hover .benefit-icon-wrapper {
            transform: scale(1.1) rotate(5deg);
        }

        .benefit-title {
            font-weight: 700;
            font-size: 1.25rem;
            margin-bottom: 1rem;
            color: var(--secondary-color);
        }

        .benefit-desc {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* Scroll Animation Class */
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }
        /* * DETAILED FEATURES (Zig Zag) Styles
         */
        .feature-stripe {
            padding: 5rem 0;
            background-color: white;
            border-bottom: 1px solid #f1f5f9;
        }

        .feature-stripe:nth-of-type(even) {
            background-color: #f8fafc; /* Light gray for alternating rows */
        }

        .feature-stripe h3 {
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 1rem;
            font-size: 2rem;
        }

        .feature-stripe .lead-text {
            font-size: 1.1rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .feature-list {
            list-style: none;
            padding-left: 0;
            margin-top: 1.5rem;
            display: none; /* Hidden by default for interactive reveal */
        }

        .feature-list li {
            position: relative;
            padding-left: 1.5rem;
            margin-bottom: 0.75rem;
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .feature-list li::before {
            content: '\f00c'; /* FontAwesome check */
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 2px;
            color: var(--whatsapp-color);
        }

        .feature-list li strong {
            color: var(--secondary-color);
        }

        .feature-img {
            border-radius: 20px;
            box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            width: 100%;
            height: auto;
        }

        .feature-stripe:hover .feature-img {
            transform: translateY(-5px);
        }

        .read-more-btn {
            background: transparent;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            margin-top: 1rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
        }

        .read-more-btn i {
            margin-left: 0.5rem;
            transition: transform 0.3s ease;
        }

        .read-more-btn:hover {
            background: var(--primary-color);
            color: white;
        }

        .read-more-btn:hover i {
            transform: translateY(3px);
        }
        
        .read-more-btn.active i {
            transform: rotate(180deg);
        }
        
        /* --- ADDED BOTTOM ROI SECTION STYLES --- */
        /* Renamed duplicate classes to avoid conflicts */
        .roi-hero-section {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #064e3b 100%);
            padding-top: 5rem;
            padding-bottom: 8rem;
            border-bottom-left-radius: 3rem;
            border-bottom-right-radius: 3rem;
            position: relative;
            overflow: hidden;
            color: white;
            margin-top: 2rem;
        }

        .blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.15;
            z-index: 1;
        }

        .blob-1 {
            top: 0;
            right: 0;
            width: 400px;
            height: 400px;
            background-color: #22c55e; /* Green */
            transform: translate(30%, -20%);
        }

        .blob-2 {
            bottom: 0;
            left: 0;
            width: 300px;
            height: 300px;
            background-color: #3b82f6; /* Blue */
            transform: translate(-30%, 20%);
        }

        .roi-hero-content {
            position: relative;
            z-index: 2;
        }

        .badge-custom {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #86efac;
            padding: 0.5rem 1rem;
            border-radius: 50rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .gradient-text-emerald {
            background: linear-gradient(to right, #4ade80, #a7f3d0);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        /* Stats Cards - Negative Margin overlap */
        .stats-container {
            margin-top: -5rem;
            position: relative;
            z-index: 10;
        }

        .stat-card {
            background: white;
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            border-bottom: 4px solid transparent;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
        }

        .stat-card.blue { border-color: #3b82f6; }
        .stat-card.green { border-color: #22c55e; }
        .stat-card.purple { border-color: #a855f7; }

        .roi-icon-box {
            width: 3rem;
            height: 3rem;
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.25rem;
        }

        /* ROI Calculator */
        .roi-section {
            background-color: #0f172a;
            border-radius: 1.5rem;
            padding: 3rem;
            color: white;
            position: relative;
            overflow: hidden;
            margin-bottom: 4rem;
        }

        .roi-bg-pattern {
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            opacity: 0.05;
            background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
            pointer-events: none;
        }

        input[type=range] {
            height: 0.5rem;
            border-radius: 0.5rem;
            background: #334155;
            outline: none;
            width: 100%;
            cursor: pointer;
        }
        
        /* Benefits Grid Scoped */
        #category-tabs .nav-link {
            color: #475569;
            background-color: white;
            border: 1px solid #e2e8f0;
            margin: 0 0.25rem 0.5rem;
            border-radius: 50rem;
            padding: 0.5rem 1.5rem;
            font-weight: 500;
            transition: all 0.2s;
        }

        #category-tabs .nav-link:hover {
            background-color: #f1f5f9;
        }

        #category-tabs .nav-link.active {
            background-color: #0f172a;
            color: white;
            border-color: #0f172a;
            transform: scale(1.05);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .filtered-benefit-card {
            background: white;
            border-radius: 1rem;
            padding: 1.5rem;
            border: 1px solid #f1f5f9;
            transition: all 0.3s;
            height: 100%;
        }

        .filtered-benefit-card:hover {
            border-color: #bbf7d0;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        .filtered-benefit-card h5 {
            transition: color 0.3s;
        }

        .filtered-benefit-card:hover h5 {
            color: #15803d;
        }

		 #detailed-features-wrapper {
            width: 100%;
            overflow: hidden;
            background-color: #fff;
            padding: 5rem 0;
        }

        #detailed-features-wrapper .container {
            width: 100%;
            max-width: 1280px; /* Slightly wider for modern feel */
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        #detailed-features-wrapper .row {
            display: flex;
            flex-wrap: wrap;
            margin-left: -20px;
            margin-right: -20px;
        }

        #detailed-features-wrapper .align-items-center {
            align-items: center;
        }

        #detailed-features-wrapper .col-lg-6 {
            flex: 0 0 100%;
            max-width: 100%;
            padding: 0 20px;
            position: relative;
        }

        @media (min-width: 992px) {
            #detailed-features-wrapper .col-lg-6 {
                flex: 0 0 50%;
                max-width: 50%;
            }
            #detailed-features-wrapper .ps-lg-5 { padding-left: 4rem !important; }
            #detailed-features-wrapper .pe-lg-5 { padding-right: 4rem !important; }
            #detailed-features-wrapper .mb-lg-0 { margin-bottom: 0 !important; }
            #detailed-features-wrapper .order-lg-1 { order: 1; }
            #detailed-features-wrapper .order-lg-2 { order: 2; }
        }

        #detailed-features-wrapper .mb-4 { margin-bottom: 2rem; }
        
        /* FEATURE STRIPE 
        */
        #detailed-features-wrapper .feature-stripe {
            padding: 5rem 0;
            position: relative;
        }
        
        /* Add subtle separator lines that aren't full width */
        #detailed-features-wrapper .feature-stripe::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 10%;
            width: 80%;
            height: 1px;
            background: linear-gradient(90deg, transparent, #eaeaea, transparent);
        }

        #detailed-features-wrapper .feature-stripe:last-child::after {
            display: none;
        }

        /* Images with "Blob" Effect backing */
        #detailed-features-wrapper .img-wrapper {
            position: relative;
            z-index: 1;
            padding: 1rem;
        }

        #detailed-features-wrapper .feature-img {
            width: 100%;
            height: auto;
            border-radius: 24px; /* More rounded */
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            display: block;
            background: #fff;
        }

        #detailed-features-wrapper .feature-stripe:hover .feature-img {
            transform: scale(1.02);
            box-shadow: 0 25px 50px rgba(0,0,0,0.12);
        }

        /* Typography */
        #detailed-features-wrapper h3 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #111;
            margin-bottom: 1rem;
            letter-spacing: -1px;
            line-height: 1.1;
        }

        #detailed-features-wrapper .lead-text {
            font-size: 1.15rem;
            color: #666;
            margin-bottom: 2.5rem;
            font-weight: 400;
            line-height: 1.7;
        }

        /* ABSTRACT FEATURE GRID (Replacements for List) */
        #detailed-features-wrapper .feature-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.25rem;
        }

        @media (min-width: 768px) {
            #detailed-features-wrapper .feature-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        #detailed-features-wrapper .feature-card {
            background: #fcfcfc;
            border: 1px solid #f0f0f0;
            border-radius: 16px;
            padding: 1.25rem;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        #detailed-features-wrapper .feature-card:hover {
            background: #fff;
            border-color: #25D366;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(37, 211, 102, 0.1);
        }

        #detailed-features-wrapper .card-icon {
            width: 32px;
            height: 32px;
            background: rgba(37, 211, 102, 0.1);
            color: #25D366;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            margin-bottom: 0.25rem;
        }

        #detailed-features-wrapper .feature-card h4 {
            font-size: 1rem;
            font-weight: 600;
            color: #222;
            margin: 0;
        }

        #detailed-features-wrapper .feature-card p {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.5;
            margin: 0;
        }

        /* ANIMATIONS */
        #detailed-features-wrapper .fade-up {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        #detailed-features-wrapper .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mobile Adjustments */
        @media (max-width: 991px) {
            #detailed-features-wrapper h3 { font-size: 2rem; }
            #detailed-features-wrapper .feature-stripe { padding: 3rem 0; }
            #detailed-features-wrapper .img-wrapper { margin-bottom: 2rem; padding: 0; }
        }