       :root {
            --primary-blue: #1976D2;
            --dark-blue: #0D47A1;
            --light-blue: #42A5F5;
            --green: #10B981;
            --dark-green: #059669;
            --purple: #8B5CF6;
            --yellow: #F59E0B;
            --gray-50: #F9FAFB;
            --gray-100: #F3F4F6;
            --gray-200: #E5E7EB;
            --gray-300: #D1D5DB;
            --gray-600: #4B5563;
            --gray-700: #374151;
            --gray-800: #1F2937;
            --gray-900: #111827;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--gray-700);
            background-color: #23153c;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        
        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            /*background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);*/
            background: rgba(35, 21, 60, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
            z-index: 1000;
            transition: all 0.3s ease;
        }


        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-icon {
            width: 2.75rem;
            height: 2.75rem;
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .logo-text {
            font-size: 1.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .nav-links {
            display: flex;
            align-items: center;
            gap: 2rem;
        }
        
        .nav-links a {
            color: var(--gray-50);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--primary-blue);
        }
        
        .language-toggle {
            color: var(--gray-50);
            padding: 0.5rem 1rem;
            border: 2px solid var(--gray-200);
            border-radius: 0.5rem;
            font-weight: 500;
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .language-toggle:hover {
            border-color: var(--primary-blue);
            color: var(--primary-blue);
        }
        
        .demo-btn {
            padding: 0.75rem 1.5rem;
            box-shadow: 0 0 20px rgba(79, 172, 254, 0.5), 0 0 40px rgba(79, 172, 254, 0.3), inset 0 0 20px rgba(79, 172, 254, 0.1);
/*            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));*/
            background: linear-gradient(135deg, rgb(102, 126, 234), rgb(118, 75, 162));
            transform: translate(0px, 0px);
            color: white;
            border: none;
            border-radius: 0.5rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .demo-btn:hover {
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
            transform: scale(1.05);
        }
        
        .mobile-menu-btn {
            display: none;
            padding: 0.5rem;
            background: transparent;
            border: none;
            cursor: pointer;
            color:  var(--gray-50);
        }
        
        .mobile-menu {
            display: none;
            background-color: transparent;
            border-top: 1px solid var(--gray-200);
            padding: 1.5rem 1rem;
        }
        
        .mobile-menu.active {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        /* Hero Section */
        .hero {
            position: relative;
            padding-top: 8rem;
            padding-bottom: 5rem;
            overflow: hidden;
            z-index: 1;
        }

        #homeHero {
          min-height: 300px;  /* or your hero height */
          width: 100%;
          
        }
        
        .hero-bg {
            position: absolute;
            inset: 0;
/*            background: linear-gradient(135deg, #EFF6FF, white, #F3E8FF);*/
/*            background: #3F5EFB;*/
/*            background: linear-gradient(160deg,rgba(63, 94, 251, 1) 0%, rgba(252, 70, 107, 1) 100%);*/
            background: linear-gradient(-45deg, #667eea, #764ba2, #f093fb, #4facfe);
            opacity: 0.5;
        }
        
        .hero-bg-circle-1 {
            position: absolute;
            top: 5rem;
            right: 2.5rem;
            width: 18rem;
            height: 18rem;
            background-color: var(--light-blue);
            border-radius: 50%;
            filter: blur(3rem);
            opacity: 0.2;
            animation: float 3s ease-in-out infinite;
        }
        
        .hero-bg-circle-2 {
            position: absolute;
            bottom: 5rem;
            left: 2.5rem;
            width: 24rem;
            height: 24rem;
            background-color: var(--purple);
            border-radius: 50%;
            filter: blur(3rem);
            opacity: 0.2;
            animation: float 3s ease-in-out infinite 1s;
        }
        
        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
        }
        
        .hero-badge {
            display: inline-block;
            padding: 0.5rem 1.25rem;
/*            background: linear-gradient(135deg, #EFF6FF, #F3E8FF);*/
            color: var(--gray-50);
            font-weight: 600;
            font-size: 0.875rem;
            border-radius: 9999px;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
            border: 1px solid #DBEAFE;
            margin-bottom: 2rem;
            animation: fadeIn 0.5s ease-out;
        }
        
        .hero-title {
            font-size: 3rem;
            font-weight: 800;
/*            color: var(--gray-900);*/
            line-height: 1.1;
            margin-bottom: 1.5rem;
/*            animation: fadeInUp 1s ease-out 0.2s both;*/

            color: transparent;
/*            background-image: linear-gradient(to right ,#553c9a, #ee4b2b, #00c2cb, #ff7f50, #553c9a);*/
            background-image: linear-gradient(to right ,#553c9a, #ee4b2b, #ffffff, #ff7f50, #553c9a);
            -webkit-background-clip: text;
            background-clip: text;    
            background-size: 200%;
            background-position: -200%;
            animation: animated-gradient 6s infinite alternate-reverse;      
        }
        @keyframes animated-gradient{
          to{
            background-position: 200%;
          }
        }
                    
        
        .hero-subtitle {
            font-size: 1.25rem;
/*            color: var(--gray-600);*/
            color:#FFFFFF;
            max-width: 66rem;
            margin: 0 auto 2rem;
            line-height: 1.6;
            animation: fadeInUp 1s ease-out 0.4s both;
        }
        
        .hero-mission {
            background: linear-gradient(135deg, #EFF6FF, #F3E8FF);
            border-radius: 1rem;
            padding: 1.5rem;
            max-width: 66rem;
            margin: 0 auto 2rem;
            border: 1px solid #DBEAFE;
            animation: fadeInUp 1s ease-out 0.6s both;
        }
        
        .hero-mission p {
            font-size: 1.125rem;
            color: var(--gray-700);
            font-weight: 500;
            margin: 0;
        }
        
        .hero-cta {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            justify-content: center;
            align-items: center;
            margin-top: 1rem;
            animation: fadeInUp 1s ease-out 0.8s both;
        }
        
        @media (min-width: 640px) {
            .hero-cta {
                flex-direction: row;
            }
        }
        
        .cta-primary {
            padding: 1rem 2rem;
/*            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));*/
            color: white;
            border: none;
            border-radius: 0.75rem;
            font-weight: 600;
            font-size: 1.125rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.5rem;
/*            transition: all 0.3s ease;*/
            background: linear-gradient(-90deg, #007cf0, #00dfd8, #ff0080, #007cf0);
            background-size: 400% 100%;
            animation: backgroundAnimation 8s ease-in-out infinite
        }
        
        .cta-primary:hover {
            box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
            transform: scale(1.05);
        }
        
        .cta-secondary {
            padding: 1rem 2rem;
            border: 2px solid var(--gray-300);
            color: var(--gray-50);
            background: transparent;
            border-radius: 0.75rem;
            font-weight: 600;
            font-size: 1.125rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;


        }

        @keyframes backgroundAnimation {
            50% {
                background-position: 140% 50%;
                transform: skew(-2deg)
            }
        }
        
        .cta-secondary:hover {
            border-color: var(--primary-blue);
            color: var(--primary-blue);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
        }
        
        /* iPhone Mockup */
        .iphone-mockup {
            margin-top: 5rem;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            animation: scaleIn 1s ease-out 1s both;
        }
        
        .iphone-container {
            position: relative;
            perspective: 1000px;
        }
        
        .iphone {
            position: relative;
            width: 360px;
            transform: rotateY(-5deg) rotateX(5deg);
            transform-style: preserve-3d;
            margin: auto;
        }
        
        .iphone-body {
            position: relative;
            border-radius: 55px;
            overflow: hidden;
            background: linear-gradient(145deg, #2c3e50, #34495e, #2c3e50);
            padding: 12px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 
                        inset 0 2px 4px rgba(255, 255, 255, 0.1);
        }
        
        .iphone-screen-bezel {
            position: relative;
            border-radius: 45px;
            overflow: hidden;
            background: #000;
            padding: 4px;
        }
        
        .iphone-screen {
            position: relative;
            background: white;
            border-radius: 42px;
            overflow: hidden;
            height: 740px;
        }
        
        .dynamic-island {
            position: absolute;
            top: 1rem;
            left: 50%;
            transform: translateX(-50%);
            width: 7rem;
            height: 1.75rem;
            background: black;
            border-radius: 9999px;
            z-index: 50;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .dynamic-island-dot {
            width: 0.5rem;
            height: 0.5rem;
            background: var(--primary-blue);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }
        
        .dynamic-island-notch {
            width: 2.5rem;
            height: 0.625rem;
            background: var(--gray-900);
            border-radius: 9999px;
        }
        
        .whatsapp-ui {
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .whatsapp-header {
            background: linear-gradient(135deg, var(--green), #22C55E);
            padding: 0.875rem 1.25rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            padding-top: 3rem;
        }
        
        .whatsapp-avatar {
            width: 2.75rem;
            height: 2.75rem;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }
        
        .whatsapp-avatar-text {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--green);
        }
        
        .whatsapp-info {
            flex: 1;
        }
        
        .whatsapp-name {
            color: white;
            font-weight: 700;
            font-size: 1rem;
        }
        
        .whatsapp-status {
            color: #BBF7D0;
            font-size: 0.75rem;
        }
        
        .whatsapp-chat {
            flex: 1;
            background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
            padding: 1rem 0.75rem;
            overflow-y: auto;
            background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0,0,0,0.02) 10px, rgba(0,0,0,0.02) 20px);
            scrollbar-width: none;
        }

       /* @keyframes autoScroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
  }*/
        
        .date-badge {
            display: flex;
            justify-content: center;
            margin-bottom: 1rem;
        }
        
        .date-badge-inner {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(4px);
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            color: var(--gray-600);
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
        }
        
        .message-container {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
/*            animation: autoScroll 10s linear infinite alternate;*/
        }
        
        .message {
            max-width: 85%;
            padding: 0.625rem 0.875rem;
            border-radius: 1.25rem;
            font-size: 0.875rem;
            line-height: 1.5;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
            position: relative;
        }
        
        .message-time {
            font-size: 0.625rem;
            text-align: right;
            margin-top: 0.25rem;
            opacity: 0.7;
        }
        
        .message-received {
            align-self: flex-start;
            background: white;
            border-radius: 1.25rem 1.25rem 1.25rem 0.25rem;
            color: var(--gray-800);
        }
        
        .message-sent {
            align-self: flex-end;
            background: linear-gradient(135deg, #4ADE80, #22C55E);
            border-radius: 1.25rem 1.25rem 0.25rem 1.25rem;
            color: white;
        }
        
        .typing-indicator {
            display: flex;
            gap: 0.25rem;
            align-self: flex-start;
            background: white;
            padding: 0.625rem 1rem;
            border-radius: 1.25rem 1.25rem 1.25rem 0.25rem;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        }
        
        .typing-dot {
            width: 0.5rem;
            height: 0.5rem;
            background: var(--gray-400);
            border-radius: 50%;
            animation: bounce 1.4s infinite ease-in-out;
        }
        
        .typing-dot:nth-child(1) {
            animation-delay: -0.32s;
        }
        
        .typing-dot:nth-child(2) {
            animation-delay: -0.16s;
        }
        
        .video-card {
            background: linear-gradient(135deg, #FAF5FF, #F3E8FF);
            border-radius: 0.75rem;
            padding: 0.625rem;
            border: 1px solid #E9D5FF;
            margin-top: 0.5rem;
        }
        
        .video-preview {
            height: 6rem;
            background: linear-gradient(135deg, var(--purple), #EC4899);
            border-radius: 0.5rem;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .video-overlay {
           /* position: absolute;
            inset: 0;
/*            background: rgba(0, 0, 0, 0.2);*/
                 /*background: rgba(29, 78, 216, 1);
                 color:#fff !important;*/
        }
        
        .video-title {
            font-weight: 700;
            font-size: 0.75rem;
           /* color: var(--gray-900);*/
        }
        
        .video-duration {
            font-size: 0.75rem;
            color: var(--gray-600);
            margin-top: 0.125rem;
        }
        
        .whatsapp-input {
            background: white;
            padding: 0.625rem 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            border-top: 1px solid var(--gray-200);
        }
        
        .input-field {
            flex: 1;
            background: var(--gray-100);
            border-radius: 9999px;
            padding: 0.5rem 0.875rem;
        }
        
        .input-field p {
            color: var(--gray-400);
            font-size: 0.75rem;
            margin: 0;
        }
        
        .send-btn {
            width: 2.25rem;
            height: 2.25rem;
            background: var(--green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }
        
        .send-btn i {
            color: white;
            font-size: 1.125rem;
        }
        
        .iphone-buttons {
            position: absolute;
            left: 0;
            top: 8rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .iphone-button {
            width: 0.25rem;
            height: 3rem;
            background: var(--gray-700);
            border-radius: 0 0.125rem 0.125rem 0;
            transform: translateX(-12px);
        }
        
        .iphone-button-long {
            height: 4rem;
        }
        
        .iphone-button-right {
            position: absolute;
            right: 0;
            top: 10rem;
            width: 0.25rem;
            height: 5rem;
            background: var(--gray-700);
            border-radius: 0.125rem 0 0 0.125rem;
            transform: translateX(12px);
        }
        
        .speaker-grills {
            position: absolute;
            bottom: 0.75rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.75rem;
        }
        
        .speaker-grill {
            width: 3rem;
            height: 0.25rem;
            background: rgba(55, 65, 81, 0.4);
            border-radius: 9999px;
        }
        
        .iphone-shadow {
            position: absolute;
            inset: 0;
            border-radius: 55px;
            box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.4);
            z-index: -1;
        }
        
        .floating-stats {
            position: absolute;
            background: white;
            border-radius: 1rem;
            padding: 1rem 1.5rem;
            box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .floating-stats:hover {
            transform: rotate(0);
        }
        
        .floating-stats-1 {
            top: 6rem;
            right: -3rem;
            transform: rotate(6deg);
            animation: fadeIn 0.5s ease-out 3.8s both;
        }
        
        .floating-stats-2 {
            bottom: 9rem;
            left: -3rem;
            transform: rotate(-6deg);
            animation: fadeIn 0.5s ease-out 4s both;
        }
        
        .floating-stats-3 {
            bottom: 6rem;
            right: -4rem;
            transform: rotate(3deg);
            animation: fadeIn 0.5s ease-out 4.2s both;
        }
        
        .stats-value {
            font-size: 1.875rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .stats-value-green {
            background: linear-gradient(135deg, var(--green), var(--dark-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .stats-value-purple {
            background: linear-gradient(135deg, var(--purple), #7C3AED);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .stats-label {
            font-size: 0.75rem;
            color: var(--gray-600);
            font-weight: 500;
        }
        
        /* Section Styles */
        section {
            padding: 6rem 1rem;
        }
        
        .section-title {
            font-size: 3rem;
            font-weight: 800;
            color: var(--gray-50);
            text-align: center;
            margin-bottom: 1.5rem;
        }
        
        .section-subtitle {
            font-size: 1.5rem;
            color: var(--gray-50);
            text-align: center;
            max-width: 66rem;
            margin: 0 auto 1rem;
            font-weight: 600;
        }
        
        .section-description {
            font-size: 1.125rem;
            color: var(--gray-50);
            text-align: center;
            max-width: 48rem;
            margin: 0 auto;
        }
        
        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .badge-blue {
            background: #DBEAFE;
            color: var(--primary-blue);
        }
        
        .badge-green {
            background: #D1FAE5;
            color: var(--green);
        }
        
        .badge-yellow {
            background: rgba(245, 158, 11, 0.1);
            color: var(--yellow);
            border: 1px solid rgba(245, 158, 11, 0.3);
        }
        
        /* Grid Layouts */
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        .grid-4 {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        
        @media (min-width: 768px) {
            .grid-2 {
/*                grid-template-columns: 1fr 1fr;*/
                gap: 2rem;
            }
            
            .grid-4 {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
        }
        
        @media (min-width: 1024px) {
            .grid-4 {
                grid-template-columns: 1fr 1fr 1fr 1fr;
                gap: 2rem;
            }
        }
        
        /* Feature Cards */
        .feature-card {
/*            background: white;*/
            background: transparent;    
            border-radius: 1.5rem;
            padding: 2rem;
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
            border: 1px solid var(--gray-200);
            transition: all 0.5s ease;
        }
        
        .feature-card:hover {
            box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
            transform: scale(1.05);
        }
        
        .feature-card-blue {
/*            background: linear-gradient(135deg, white, #EFF6FF);*/
            border-color: #DBEAFE;
        }
        
        .feature-card-green {
/*            background: linear-gradient(135deg, white, #F0FDF4);*/
            border-color: #D1FAE5;
        }
        
        .feature-card-purple {
/*            background: linear-gradient(135deg, white, #FAF5FF);*/
            border-color: #E9D5FF;
        }
        
        .feature-icon {
            width: 3.5rem;
            height: 3.5rem;
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .icon-blue {
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
        }
        
        .icon-green {
            background: linear-gradient(135deg, var(--green), var(--dark-green));
        }
        
        .icon-purple {
            background: linear-gradient(135deg, var(--purple), #7C3AED);
        }
        
        .feature-icon i {
            color: white;
            font-size: 1.75rem;
        }
        
        .feature-title {
            font-size: 1.5rem;
            font-weight: 700;
/*            color: var(--gray-900);*/
                color: var(--gray-50);
            margin-bottom: 1rem;
            line-height: 1.4;
        }
        
        .feature-description {
/*            color: var(--gray-600);*/
                color: var(--gray-50);
            line-height: 1.6;
        }
        
        /* Video Demo */
        .video-demo {
            max-width: 56rem;
            margin: 0 auto 4rem;
        }
        
        .video-container {
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
            background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
            transition: all 0.5s ease;
            text-decoration: none;
        }
        
        .video-container:hover {
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            transform: scale(1.02);
        }
        
        .video-placeholder {
            aspect-ratio: 16/9;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            flex-direction: column;
             border-radius: 20px;
             overflow: hidden;
        }
        
        .video-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.40);
            /*background: linear-gradient(135deg,rgba(37, 99, 235, 1) 0%, rgba(30, 64, 175, 1) 50%);*/
            transition: background 0.3s ease;
             z-index: 2;
           
    
        }
        /*.green-bg-overlay{
            background: linear-gradient(135deg,rgba(22, 163, 74, 1) 0%, rgba(22, 101, 52, 1) 50%);
            transition: 0.5s ease-in-out;
          
        }*/
        
        .video-container:hover .video-overlay {
            background: rgba(0,0,0,0.55);
/*            background: linear-gradient(135deg,rgba(42, 103, 235, 1) 0%, rgba(34, 70, 189, 1) 50%);*/
        }

        /* .video-container:hover .green-bg-overlay{
            background: linear-gradient(135deg,rgba(28, 184, 85, 1) 0%, rgba(27, 128, 65, 1) 50%);
        }*/
        
        .play-button {
            width: 6rem;
            height: 6rem;
            top: 50%;
            left: 50%;
            position: absolute;
            background: rgba(255, 255, 255, 0.8);
/*            backdrop-filter: blur(4px);*/
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            transform: translate(-50%, -50%);
            z-index: 5;

        }

        .video-poster {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        
        .video-container:hover .play-button {
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%) scale(1.1);
        }
        
        .play-button i {
            color: white;
            font-size: 2.5rem;
            margin-left: 0.25rem;
        }
        
        .video-info {
           text-align: center;
            color: #fff !important;
            position: absolute;
            z-index: 4;
            bottom: 8em;
        }
        
        .video-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .video-btn-content{
            position: absolute;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        
        /* Steps */
        .steps-container {
            max-width: 80rem;
            margin: 0 auto;
        }
        
        .step {
            display: flex;
            gap: 1.5rem;
            align-items: flex-start;
/*            background: white;*/
            background: linear-gradient(-135deg, #667eea, #764ba2, #f093fb, #4facfe);
    background-size: 400% 400%;
    animation: gradient-shift 15s 
ease infinite;
            border-radius: 1rem;
            padding: 1.5rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            margin-bottom: 1.5rem;
            border-left: 4px solid var(--purple);
            transition: all 0.5s ease;
        }
        
        .step:hover {
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
            transform: scale(1.02);
        }
        
        .step-number {
            flex-shrink: 0;
            width: 3.5rem;
            height: 3.5rem;
/*            background: linear-gradient(135deg, var(--green), var(--dark-green));*/
background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .step-number span {
            color: white;
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .step-content {
            flex: 1;
        }
        
        .step-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--gray-50);
            margin-bottom: 0.5rem;
        }
        
        .step-description {
            color: var(--gray-50);
            line-height: 1.6;
        }
        
        .step-icon {
            flex-shrink: 0;
            width: 4rem;
            height: 4rem;
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .step-icon-blue {
            background: #DBEAFE;
        }
        
        .step-icon-green {
            background: #D1FAE5;
        }
        
        .step-icon i {
            font-size: 2rem;
        }
        
        .step-icon-blue i {
            color: var(--primary-blue);
        }
        
        .step-icon-green i {
            color: var(--green);
        }
        
        /* Flow Diagram */
        .flow-diagram {
            background: transparent;
            border-radius: 1.5rem;
            padding: 2rem;
            box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
            border: 2px solid #D1FAE5;
            margin-top: 4rem;
        }
        
        .flow-steps {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
        }
        
        @media (min-width: 768px) {
            .flow-steps {
                flex-direction: row;
            }
        }
        
        .flow-step {
            text-align: center;
            flex: 1;
        }
        
        .flow-icon {
            width: 5rem;
            height: 5rem;
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .flow-icon-blue {
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
        }
        
        .flow-icon-green {
            background: linear-gradient(135deg, var(--green), var(--dark-green));
        }
        
        .flow-icon-purple {
            background: linear-gradient(135deg, var(--purple), #7C3AED);
        }
        
        .flow-icon i {
            color: white;
            font-size: 2.25rem;
        }
        
        .flow-title {
            font-weight: 700;
            color: var(--gray-50);
        }
        
        .flow-subtitle {
            font-size: 0.875rem;
            color: var(--gray-50);
        }
        
        .flow-arrow {
            display: none;
            color: var(--gray-50);
        }
        
        @media (min-width: 768px) {
            .flow-arrow {
                display: block;
            }
        }
        
        .flow-arrow i {
            color: var(--green);
            font-size: 2rem;
        }
        
        /* Pioneer Members */
        .pioneers-section {
/*            background: linear-gradient(135deg, var(--gray-900), var(--dark-blue), var(--purple));*/
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .pioneers-bg {
            position: absolute;
            inset: 0;
            opacity: 0.2;
        }
        
        .pioneers-bg-circle-1 {
            position: absolute;
            top: 0;
            left: 0;
            width: 24rem;
            height: 24rem;
            background: var(--primary-blue);
            border-radius: 50%;
            filter: blur(3rem);
            animation: float 3s ease-in-out infinite;
        }
        
        .pioneers-bg-circle-2 {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 24rem;
            height: 24rem;
            background: var(--purple);
            border-radius: 50%;
            filter: blur(3rem);
            animation: float 3s ease-in-out infinite 1s;
        }
        
        .pioneers-content {
            position: relative;
            z-index: 10;
        }
        
        .pioneer-card {
            position: relative;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.5s ease;
        }
        
        .pioneer-card:hover {
            border-color: rgba(245, 158, 11, 0.5);
            transform: scale(1.05);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
        }
        
        .pioneer-image {
            position: relative;
            height: 16rem;
            overflow: hidden;
        }
        
        .pioneer-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .pioneer-card:hover .pioneer-image img {
            transform: scale(1.1);
        }
        
        .pioneer-image-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3), transparent);
        }
        
        .pioneer-placeholder {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
/*            background: linear-gradient(135deg, var(--yellow), #F59E0B);*/
            flex-direction: column;
            z-index: 1;
        }
        
        .pioneer-placeholder-icon {
            width: 8rem;
            height: 8rem;
/*            background: rgba(255, 255, 255, 0.8);*/
            background: rgba(234, 179, 8, 1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
        }
        .pioneer-placeholder-icon svg{
            width: 60px;
            height: 60px;
        }
        
        .pioneer-placeholder-icon i {
            font-size: 4rem;
            color: var(--yellow);
        }
        
        .pioneer-placeholder-text {
            text-align: center;
            color: white;
            font-weight: 700;
            font-size: 1.5rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .pioneer-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            z-index: 10;
            background: linear-gradient(135deg, var(--yellow), #F59E0B);
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            color: var(--gray-900);
            font-weight: 700;
            font-size: 0.75rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }
        
        .pioneer-badge i {
            font-size: 0.875rem;
        }
        
        .pioneer-content {
            padding: 1.5rem;
        }
        
        .pioneer-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            transition: color 0.3s ease;
        }
        
        .pioneer-card:hover .pioneer-name {
            color: var(--yellow);
        }
        
        .pioneer-description {
            color: #BFDBFE;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        
        .pioneer-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            color: white;
            border-radius: 0.75rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .pioneer-link:hover {
            background: linear-gradient(135deg, var(--dark-blue), #1E3A8A);
            transform: scale(1.05);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .pioneer-glow {
            position: absolute;
            inset: 0;
            border-radius: 1.5rem;
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: -1;
        }
        
        .pioneer-card:hover .pioneer-glow {
            opacity: 0.2;
        }
        
        .glow-yellow {
            background: linear-gradient(135deg, var(--yellow), #F59E0B);
        }
        
        .glow-purple {
            background: linear-gradient(135deg, var(--purple), #7C3AED);
        }
        
        .glow-cyan {
            background: linear-gradient(135deg, #06B6D4, #0EA5E9);
        }
        
        /* FAQ */
        .faq-container {
            max-width: 72rem;
            margin: 0 auto;
        }
        
        .faq-item {
            background: white;
            border-radius: 1rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            margin-bottom: 1rem;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        }
        
        
        .faq-question {
            cursor: pointer;
            padding: 1.5rem;
            font-weight: 600;
            font-size: 1.125rem;
            color: var(--gray-900);
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: color 0.3s ease;
        }
        
        .faq-question:hover {
            color: var(--primary-blue);
        }


        .faq-answer {
            padding: 0 1.5rem 1.5rem;
            color: var(--gray-600);
            line-height: 1.6;
        }
        
        .faq-arrow {
            transition: transform 0.3s ease;
            color: var(--primary-blue);
        }
        
        .faq-item[open] .faq-arrow {
            transform: rotate(90deg);
        }
        
        .faq-green {
            background: linear-gradient(135deg, white, #F0FDF4);
            border: 1px solid #D1FAE5;
        }
        
        .faq-green .faq-question:hover {
            color: var(--green);
        }
        
        .faq-green .faq-arrow {
            color: var(--green);
        }
        
        /* Footer */
        footer {
/*            background: var(--gray-900);*/
            color: white;
            padding: 4rem 1rem;
        }

        #homeHero,
        #solution,
        #videoDemo,
        #videoDemo2,
        #rippleSection,
        #MembresPionniers,
        #faqEtab,
        #faqAgen,
        #contact,
        #footerS{
        position: relative;
        z-index: 2;
        }
        canvas{
            width: 100%;
            height: 100%;
            position: fixed;

            z-index: 1;
            top: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr 1fr 1fr;
                gap: 3rem;
            }
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }
        
        .footer-tagline {
            color: var(--gray-400);
            line-height: 1.6;
        }
        
        .footer-heading {
            font-weight: 700;
            font-size: 1.125rem;
            margin-bottom: 1rem;
        }
        
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            color: #fff;
            text-decoration: none;
        }
        #mobileMenu a{
                color: var(--gray-50);
                transition: 0.3s ease-in-out;
                text-decoration: none;
        }
          #mobileMenu a:hover{
                color: var(--primary-blue);
        }
        
        .footer-links a {
            color: var(--gray-400);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .social-links a {
            color: var(--gray-400);
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            color: white;
            transform: scale(1.1);
        }
        
        .footer-bottom {
            border-top: 1px solid var(--gray-800);
            padding-top: 2rem;
            text-align: center;
            color: var(--gray-400);
        }
        
        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        }
        
        @keyframes bounce {
            0%, 80%, 100% {
                transform: scale(0);
            }
            40% {
                transform: scale(1);
            }
        }
        
        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }
        
        .scroll-animate {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .scroll-animate.animate-in {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero-title {
                font-size: 2.25rem;
            }
            
            .section-title {
                font-size: 2.25rem;
            }
            
            .section-subtitle {
                font-size: 1.25rem;
            }
            
            .iphone {
                width: 300px;
            }
            
            .iphone-screen {
                height: 620px;
            }
            
            .floating-stats {
                display: none;
            }
        }
        
        /* Utility Classes */
        .text-center {
            text-align: center;
        }
        
        .mx-auto {
            margin-left: auto;
            margin-right: auto;
        }
        
        .mb-4 {
            margin-bottom: 1rem;
        }
        
        .mb-6 {
            margin-bottom: 1.5rem;
        }
        
        .mb-8 {
            margin-bottom: 2rem;
        }
        
        .mb-12 {
            margin-bottom: 3rem;
        }
        
        .mb-16 {
            margin-bottom: 4rem;
        }
        
        .mt-4 {
            margin-top: 1rem;
        }
        
        .mt-8 {
            margin-top: 2rem;
        }
        
        .mt-12 {
            margin-top: 3rem;
        }
        
        .mt-16 {
            margin-top: 4rem;
        }
        
        .hidden {
            display: none;
        }
        .white-text{
            color: #fff !important;
        }
        
        @media (min-width: 768px) {
            .md\\:flex {
                display: flex;
            }
            
            .md\\:hidden {
                display: none;
            }
        }

        /* Fallback for when JavaScript doesn't load */
        .scroll-animate {
            opacity: 1 !important;
            transform: translateY(0) !important;
        }

        /* Ensure all sections are visible */
        section {
            opacity: 1 !important;
            visibility: visible !important;
        }

        .scroll-animate {
            opacity: 1 !important;
            transform: translateY(0) !important;
        }


    /* makes lucide icon stroke white */

    .icon-white {
        color: white; 
    }

    @media (max-width: 576px){
        .video-placeholder {
            padding: 0;
            height: 300px;
            width: 100%;
        }
        .section-title {
            font-size: 2rem;
            line-height: 1.4;
        }
        .step{
            flex-direction: column;
        }
        .play-button {
            width: 6rem;
            height: 6rem;
            top: 30%;
        }
        .video-info {
            text-align: center;
            color: #fff !important;
            position: absolute;
            z-index: 4;
            bottom: 2em;
        }
    }



/* Ripple Animation */


.ripple {
    position: absolute;
    max-width: 600px;
    height: 600px;
    overflow: hidden;
    top: -50%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    z-index: -1;
}

/* Base ring */
.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2vmin;     /* start size responsive */
    height: 2vmin;    /* start size responsive */
    border-radius: 50%;
    border: 0.4vmin solid #dedede;
    background: transparent;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    animation: expand 6s linear infinite;
    opacity: 0;
}

/* Staggered negative delays */
    .ring:nth-child(1) { animation-delay: -9s; }
    .ring:nth-child(2) { animation-delay: -8s; }
    .ring:nth-child(3) { animation-delay: -7s; }
    .ring:nth-child(4) { animation-delay: -6s; }
    .ring:nth-child(5) { animation-delay: -5s; }
    .ring:nth-child(6) { animation-delay:  -4s; }
    .ring:nth-child(7) { animation-delay:  -3s; }
    .ring:nth-child(8) { animation-delay:  -2s; }
    .ring:nth-child(9) { animation-delay:  -1s; }
    .ring:nth-child(10) { animation-delay:  0s; }



/* KEYFRAMES — responsive ripple */
@keyframes expand {
    0% {
      width: 2vmin;
      height: 2vmin;
      opacity: 1;
      border-width: 0.5min;
    }
    100% {

        width: 100vmin;     /* <<< increase ripple size here */
        height: 100vmin;    /* <<< increase ripple size here */
        opacity: 0;
        border-width: 0.5vmin;
    }
}
@media (max-width: 768px){
    .ripple{
        top: -85%;
    }
    
} 



.text-6xl {
    font-size: 3.75rem;
    line-height: 1;
}

.mb-8 {
    margin-bottom: 2rem;
}

/* Scroll reveal animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger */
.stagger-2 {
    animation-delay: 0.2s;
}

/* Text reveal animation */
.text-reveal {
    animation: text-reveal 0.8s ease-out forwards;
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #43e97b 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s linear infinite;
}

@keyframes gradient-shift {
/*    to { background-position: 200%; }*/

    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Neon text effect */
.neon-text {
    text-shadow: 
        0 0 10px rgba(79, 172, 254, 0.8),
        0 0 20px rgba(79, 172, 254, 0.6),
        0 0 30px rgba(79, 172, 254, 0.4);
}

/* Text white */
.text-white {
    color: rgb(255 255 255 / 1);
}

/* Media queries */
@media (min-width: 768px) {
    .md\:text-8xl {
        font-size: 6rem;
        line-height: 1;
    }
    .md\:text-6xl {
        font-size: 6rem;
        line-height: 1;
    }
}

@media (max-width: 768px){
    .text-6xl {
        font-size: 3.4rem;
        line-height: 1;
    }
}



#solution, #videoDemo, #videoDemo2, #rippleSection, #MembresPionniers, #faqEtab, #faqAgen, #contact{
    border-top: 1px solid rgba(31, 38, 135, 1);
    box-shadow: 0 8px 32px 15px rgba(31, 38, 135, 1);
        
}


/*Legal Pages CSS*/


/* Page wrapper */
.legal-page {
    padding-top: 10rem;
    padding-bottom: 5rem;
}

/* Section title */
.legal-section-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-50);
    text-align: left;
    margin-bottom: 0.75rem;
}

/* Section text */
.legal-section-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-50);
    text-align: left;
    margin-bottom: 0.75rem;
}

/* Each legal block */
.sub-section {
    padding: 2rem 0 0; /* reduced gap */

}

/* Lists */
.legal-list {
    margin: 0.5rem 0 0.75rem 1.5rem;
    padding: 0;
    list-style-type: disc;
    color: var(--gray-50);
}

.legal-list li {
    margin-bottom: 6px;
    line-height: 1.5;
    text-align: left;
}

/* Links */
.legal-page a {
    color: inherit;
    text-decoration: underline;
}

.legal-page a:hover {
    opacity: 0.85;
}


@media (max-width: 992px) {
    .legal-page {
        padding-top: 8rem;
    }

    .legal-section-subtitle {
        font-size: 1.35rem;
    }

    .legal-section-description {
        font-size: 1.05rem;
    }

    .sub-section {
        padding: 1.75rem 0 0;
    }
}


@media (max-width: 768px) {
    .legal-page {
        padding-top: 7rem;
    }

    .legal-section-subtitle {
        font-size: 1.2rem;
    }

    .legal-section-description {
        font-size: 1rem;
    }

    .legal-list {
        margin-left: 1.2rem;
    }
}


@media (max-width: 480px) {
    .legal-page {
        padding-top: 6rem;
    }

    .legal-section-subtitle {
        font-size: 1.1rem;
    }

    .legal-section-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}