       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
            min-height: 100vh;
            color: #1e293b;
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 300;
            letter-spacing: -0.05em;
        }

        .glass-card {
            backdrop-filter: blur(16px);
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 1rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }

        .neomorphic-btn {
            position: relative;
            overflow: hidden;
            border-radius: 0.75rem;
            background: linear-gradient(to right, rgba(13, 74, 227, 0.5), rgba(124, 58, 237, 0.2));
            border: 1px solid rgba(147, 51, 234, 0.3);
            backdrop-filter: blur(8px);
            transition: all 0.3s ease;
            padding: 1rem 2rem;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            color: #6e17a9;;
            font-weight: 500;
        }

        .neomorphic-btn:hover {
            background: linear-gradient(to right, rgba(147, 51, 234, 0.3), rgba(124, 58, 237, 0.3));
            border-color: rgba(147, 51, 234, 0.5);
            box-shadow: 0 10px 25px rgba(147, 51, 234, 0.25);
            transform: scale(0.98);
        }

        .neomorphic-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: translateX(-100%);
            transition: transform 0.5s ease;
        }

        .neomorphic-btn:hover::before {
            transform: translateX(100%);
        }

        .scroll-animate {
            opacity: 0;
            transform: translateY(2rem) blur(2px);
            transition: all 0.7s ease;
        }

        .scroll-animate.in-view {
            opacity: 1;
            transform: translateY(0) blur(0);
        }

        /* Navigation */
        .navigation {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 50;
            transition: all 0.3s ease;
            padding: 0 1.5rem;
        }

        .navigation.scrolled {
            backdrop-filter: blur(16px);
            background: rgba(255, 255, 255, 0.9);
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 4rem;
        }

        .nav-logo {
            font-size: 1.25rem;
            font-weight: 500;
            color: #1e293b;
            text-decoration: none;
        }

        .nav-links {
            display: none;
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .nav-links {
                display: flex;
            }
        }

        .nav-link {
            color: rgba(30, 41, 59, 0.8);
            text-decoration: none;
            padding: 0.5rem 0.75rem;
            font-size: 0.875rem;
            font-weight: 300;
            transition: color 0.2s ease;
        }

        .nav-link:hover {
            color: #1e293b;
        }

        .mobile-menu-btn {
            display: block;
            background: none;
            border: none;
            color: rgba(30, 41, 59, 0.8);
            font-size: 1.25rem;
            cursor: pointer;
        }

        @media (min-width: 768px) {
            .mobile-menu-btn {
                display: none;
            }
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            width: 20rem;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(24px);
            border-left: 1px solid rgba(0, 0, 0, 0.1);
            transform: translateX(100%);
            transition: transform 0.3s ease;
            z-index: 60;
            padding: 5rem 1.5rem 1.5rem;
            display: flex;
            flex-direction: column;
        }

        .mobile-menu.open {
            transform: translateX(0);
        }

        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 55;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-menu-overlay.open {
            opacity: 1;
            visibility: visible;
        }

        .mobile-nav-link {
            color: rgba(30, 41, 59, 0.8);
            text-decoration: none;
            padding: 1rem 0;
            font-size: 1.125rem;
            font-weight: 300;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: color 0.2s ease;
        }

        .mobile-nav-link:hover {
            color: #1e293b;
        }

        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 0 1.5rem;
        }

        .hero-bg {
            position: absolute;
            top: 5rem;
            left: 2.5rem;
            width: 18rem;
            height: 18rem;
            background: rgba(13, 74, 227, 0.5);
            border-radius: 50%;
            filter: blur(60px);
            animation: pulse 2s ease-in-out infinite;
        }

        .hero-bg-2 {
            position: absolute;
            bottom: 5rem;
            right: 2.5rem;
            width: 24rem;
            height: 24rem;
            background: rgba(124, 58, 237, 0.15);
            border-radius: 50%;
            filter: blur(60px);
            animation: pulse 2s ease-in-out infinite;
            animation-delay: 1s;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 0.8; }
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 64rem;
        }

        .hero-title {
            font-size: 3rem;
            font-weight: 300;
            color: #1e293b;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }

        @media (min-width: 768px) {
            .hero-title {
                font-size: 4.5rem;
            }
        }

        .hero-gradient-text {
            display: block;
            background: linear-gradient(to right, #a855f7, #8b5cf6, #a855f7);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: rgba(30, 41, 59, 0.7);
            margin-bottom: 3rem;
            max-width: 48rem;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        @media (min-width: 768px) {
            .hero-subtitle {
                font-size: 1.5rem;
            }
        }

        /* Sections */
       .section {
  padding: 3rem 1.5rem;
}

        .section-container {
            max-width: 1280px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 2.5rem;
            color: #1e293b;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }

        @media (min-width: 768px) {
            .section-title {
                font-size: 3rem;
            }
        }

        .section-subtitle {
            font-size: 1.25rem;
            color: rgba(30, 41, 59, 0.7);
            max-width: 48rem;
            margin: 0 auto;
			text-align: center;
  margin-bottom: 20px;
        }

        /* Cards Grid */
        .cards-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .cards-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .card {
            padding: 2rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .card:hover {
            background: rgba(147, 51, 234, 0.1);
            transform: translateY(-2px);
        }

        .card.active {
            border: 2px solid rgba(147, 51, 234, 0.5);
            background: rgba(147, 51, 234, 0.1);
        }

        .card-icon {
            width: 4rem;
            height: 4rem;
            margin: 0 auto 1.5rem;
            border-radius: 50%;
            background: rgba(255,255,255,0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #a855f7;
        }

        .card-title {
            font-size: 1.5rem;
            color: #1e293b;
            margin-bottom: 1rem;
        }

        .use-cases-carousel {
            margin-top: 3rem;
            padding: 2rem;
        }

        .use-cases-grid {
			margin-bottom: 40px;
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        @media (min-width: 576px) {
            .use-cases-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .use-case-item {
            background: rgba(147, 51, 234, 0.05);
            border-radius: 0.5rem;
            padding: 1rem;
            text-align: center;
            border: 1px solid rgba(147, 51, 234, 0.1);
            transition: all 0.3s ease;
            color: #1e293b;
        }

        .use-case-item:hover {
            background: rgba(147, 51, 234, 0.1);
        }

        /* Features Section */
        .features-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
		
		.solutions_plus {
		  position: absolute;
		  left: calc(50% - 34px);
  			top: -55px;
		  font-size: 3rem;
		  background: #e4d2f9;
		  padding: 2px 20px;
		  color: #6e17b2;
		  border-radius: 3rem;
		  height: 72px;
		  line-height: 59px;
		}



        @media (min-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(3, 1fr);
            }
			.solutions_plus {
			  left: -57px;
			  top: 50%;
			}
        }

        .feature-card, .demo-card {
            padding: 2rem;
        }


		
        .feature-icon-wrapper {
            width: 5rem;
            height: 5rem;
            margin: 0 auto 1.5rem;
            border-radius: 1rem;
            background: linear-gradient(to right, rgba(13, 74, 227, 0.5), rgba(124, 58, 237, 0.2));
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .feature-icon {
            font-size: 2rem;
            color: #a855f7;
        }

        .feature-title {
            font-size: 1.5rem;
            color: #1e293b;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .feature-list {
            list-style: none;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 1rem;
            font-size: 0.875rem;
            line-height: 1.6;
            color: rgba(30, 41, 59, 0.8);
        }

        .feature-check {
            color: #a855f7;
            font-size: 1.125rem;
            margin-top: 0.125rem;
            flex-shrink: 0;
        }

        /* Clients Section */
        .clients-carousel {
            position: relative;
            overflow: hidden;
        }

        .clients-slides {
            display: flex;
            transition: transform 0.5s ease;
        }

        .clients-slide {
            width: 100%;
            flex-shrink: 0;
        }

        .clients-category {
            font-size: 1.5rem;
            color: #1e293b;
            margin-bottom: 2rem;
            text-align: center;
        }

        .clients-indicators {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 2rem;
			margin-bottom: 20px;
        }

        .indicator {
            width: 0.75rem;
            height: 0.75rem;
            border-radius: 50%;
            background: rgba(30, 41, 59, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: #a855f7;
        }

        /* Pricing Section */
        .pricing-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        @media (min-width: 1024px) {
            .pricing-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .pricing-card {
            padding: 2rem;
            position: relative;
        }

        .pricing-card.recommended {
            border: 2px solid rgba(147, 51, 234, 0.5);
            background: rgba(147, 51, 234, 0.1);
        }

        .recommended-badge {
            position: absolute;
            top: -1rem;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(to right, #9333ea, #7c3aed);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 500;
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .pricing-name {
            font-size: 1.5rem;
            color: #1e293b;
            margin-bottom: 1rem;
        }

        .pricing-price {
            font-size: 2.5rem;
            color: #a855f7;
            margin-bottom: 1rem;
            font-weight: 300;
        }

        .pricing-description {
            color: rgba(30, 41, 59, 0.7);
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .pricing-feature {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 1rem;
            font-size: 0.875rem;
            color: rgba(30, 41, 59, 0.8);
        }

        .pricing-cta {
          font-weight: 500;
  display: inline-block;
  margin: auto;
  width: auto;
  padding: 10px 50px;
        }
.feature-price {
  text-align: center;
  font-weight: bold;
  font-size: 1.3rem;
  margin-bottom: 20px;
}
        /* FAQ Section */
        .faq-container {
            max-width: 64rem;
            margin: 0 auto;
        }

        .faq-items {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .faq-item {
            padding: 1.5rem;
        }

        .faq-question {
            width: 100%;
            text-align: left;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: none;
            border: none;
            color: #1e293b;
            font-size: 1.125rem;
            font-weight: 500;
            cursor: pointer;
            padding-right: 2rem;
        }

        .faq-icon {
            color: #a855f7;
            font-size: 1.25rem;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .faq-item.open .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding-top: 0;
        }

        .faq-item.open .faq-answer {
            max-height: 200px;
            padding-top: 1.5rem;
        }

        .faq-text {
            color: rgba(30, 41, 59, 0.7);
            line-height: 1.6;
        }

        /* Footer */
        .footer {
            padding: 4rem 1.5rem;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-bottom: 3rem;
        }

        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: 2fr 1fr 1fr;
            }
        }

        .footer-company {
            margin-bottom: 1.5rem;
        }

        .footer-title {
            font-size: 1.5rem;
            color: #1e293b;
            margin-bottom: 1rem;
        }

        .footer-description {
            color: rgba(30, 41, 59, 0.7);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 50%;
            background: rgba(30, 41, 59, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1e293b;
            text-decoration: none;
            transition: background-color 0.2s ease;
        }

        .social-link:hover {
            background: rgba(30, 41, 59, 0.2);
        }

        .footer-section h4 {
            font-size: 1.125rem;
            color: #1e293b;
            margin-bottom: 1rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-link {
            color: rgba(30, 41, 59, 0.7);
            text-decoration: none;
            margin-bottom: 0.5rem;
            display: block;
            transition: color 0.2s ease;
        }

        .footer-link:hover {
            color: #1e293b;
        }

        .footer-bottom {
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            padding-top: 2rem;
            text-align: center;
            color: rgba(30, 41, 59, 0.6);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.6s ease-out;
        }

        /* Responsive adjustments */
        @media (max-width: 767px) {
            .section {
                padding: 4rem 1rem;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
		
.card {
  padding-top: 260px;
}		
.card-top-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 240px;
  background-size: cover;
  padding-top: 40px;
  border-top-left-radius: 0.9rem;
  border-top-right-radius: 0.9rem;
  background-position: center;
}

 @media (max-width: 1020px) {
 .card-top-img {
  background-position: center bottom;
}
 
 }
 
 h4.feature-subtitle {
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
}

.feature-infos {
  max-width: 580px;
  margin: auto;margin-top: 20px;
}
.avantages-infos {
  margin: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  
}
.contact-grid {
  grid-template-columns: repeat(2, 1fr);
  display: grid;
  gap: 2rem;
  max-width: 768px;
  margin: auto;
}
 @media (max-width: 768px) {
	 .contact-grid {
  grid-template-columns: 1fr;
	 }
	 
 }
  .avantages-grid {
    grid-template-columns: 1fr;
  }
  
 .avantages-grid .feature-card {
  margin-bottom: 40px;
} 
.avantages-infos { grid-template-columns: repeat(2, 1fr);}

 @media (max-width: 820px) {
.avantages-infos { grid-template-columns: 1fr;
}
 }
 
 .faq-item.open {
  background: linear-gradient(to right, rgba(13, 74, 227, 0.5), rgba(124, 58, 237, 0.2));
}

.text-gray-700 {
  --tw-text-opacity:1;
  color:rgb(55 65 81 / var(--tw-text-opacity, 1))
}

.border-gray-300 {
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}
.border {
  border-width: 1px;
}
.rounded-md {
  border-radius: 0.375rem;
}

.w-full {
  width: 100%;
}
.pl-4, .px-4 {
  padding-left: 1.5rem !important;
}
.pr-4, .px-4 {
  padding-right: 1.5rem !important;
}
.pb-2, .py-2 {
  padding-bottom: .5rem !important;
}
.pt-2, .py-2 {
  padding-top: .5rem !important;
}
.border {
  border: 1px solid #dee2e6 !important;
}

.text-gray-700 {
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}
.font-medium {
  font-weight: 500;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.block {
  display: block;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-1, .my-1 {
  margin-bottom: .25rem !important;
}

.feature-citation {
  text-align: center;
  margin-bottom: 20px;
}

#form_contact {
  border: 2px solid rgba(147, 51, 234, 0.5);
  background: rgba(147, 51, 234, 0.1);
  max-width: 768px;
  margin: auto;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.download-app
{
width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: inline-block;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #a855f7;
  text-decoration: none;
  text-align: center;
  line-height: 4.3rem;
  margin: 1rem;

}

.clients_logo {
  max-height: 20vh;
  height: 75px;
}

.contact-link
{
	color: rgba(30, 41, 59, 0.7);
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
  transition: color 0.2s ease;margin-top: 6px;
}

.card-select-cartouche
{
	display:none;
	position: absolute;
  width: 100%;
  text-align: center;
  bottom: -18px;
  left: 0;
}

.card-select-cartouche span
{
	background-color: rgb(17, 74, 124);;
  text-align: center;
  display: inline-block;
  padding: 8px 23px;
  color: #fff;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
	
}

.card.glass-card:hover .card-select-cartouche
{
	display:inline-block;
}