 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 html,
 body {
     width: 100%;
     overflow-x: hidden;
     /* bloque le scroll horizontal */
 }

 body {
     font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
     background: white;
     color: #1e293b;
     line-height: 1.6;
 }

 .container {
     max-width: 1280px;
     margin: 0 auto;
     padding: 0 1.5rem;
 }

 .container-hero {
     width: 80%;
     margin: 0 auto;
 }

 /* Navigation */
 nav {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 1000;
     background: rgba(255, 255, 255, 0.8);
     backdrop-filter: blur(20px);
     border-bottom: 1px solid #f1f5f9;
 }

 .nav-content {
     display: flex;
     justify-content: space-between;
     align-items: center;
     height: 80px;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 1.5rem;
     position: relative;
 }

 .logo {
     display: flex;
     align-items: center;
     gap: 0.75rem;
     text-decoration: none;
     z-index: 1001;
 }

 /* Menu toggle (burger) */
 .menu-toggle {
     display: none;
     background: none;
     border: none;
     cursor: pointer;
     padding: 0.5rem;
     z-index: 1001;
     color: #1e3a8a;
 }

 .menu-toggle .close-icon {
     display: none;
 }

 .menu-toggle.active .menu-icon {
     display: none;
 }

 .menu-toggle.active .close-icon {
     display: block;
 }

 .nav-buttons {
     display: flex;
     gap: 1rem;
     align-items: center;
 }

 .btn {
     padding: 0.4rem 15px;
     border-radius: 9999px;
     font-weight: 500;
     text-decoration: none;
     transition: all 0.3s;
     cursor: pointer;
     border: none;
     font-size: 1rem;
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
 }

 .btn-outline {
     border: 1px solid #93c5fd;
     background: transparent;
     color: #1e3a8a;
 }

 .btn-outline:hover {
     background: #eff6ff;
 }

 .btn-primary {
     background: #1e3a8a;
     color: white;
 }

 .btn-primary:hover {
     background: #1e40af;
 }

 .btn-lg {
     padding: 1rem 2rem;
     height: 56px;
 }

 /* Responsive */
 @media (max-width: 768px) {
     .menu-toggle {
         display: flex;
         align-items: center;
         justify-content: center;
     }

     .nav-buttons {
         position: fixed;
         top: 80px;
         left: 0;
         right: 0;
         background: rgba(255, 255, 255, 0.95);
         backdrop-filter: blur(20px);
         flex-direction: column;
         padding: 1rem 1.5rem;
         gap: 1.5rem;
         box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
         transform: translateY(-100%);
         opacity: 0;
         visibility: hidden;
         transition: all 0.3s ease-in-out;
         z-index: 999;
     }

     .nav-buttons.active {
         transform: translateY(0);
         opacity: 1;
         visibility: visible;
     }

     .nav-buttons a {
         width: 100%;
         justify-content: center;
         padding: 12px 1rem;
         font-size: 1.1rem;
     }

     .nav-content {
         padding: 0 1rem;
     }

     .logo svg {
         width: 285px;
         height: auto;
     }
 }

 @media (max-width: 480px) {
     .logo svg {
         width: 285px;
     }

     .nav-content {
         height: 70px;
     }

     .nav-buttons {
         top: 70px;
     }
 }

 /* Hero Section */
 .hero {
     position: relative;
     padding: 8rem 0 6rem;
     overflow: hidden;
     min-height: 100vh;
     display: flex;
     align-items: center;
 }

 .hero-bg {
     position: absolute;
     inset: 0;
     background: linear-gradient(to bottom right, #f8fafc, white, rgba(239, 246, 255, 0.3));
 }

 .hero-blur-1 {
     position: absolute;
     top: 5rem;
     right: 0;
     width: min(600px, 80vw);
     /* jamais plus que 80% de l'écran */
     height: min(600px, 80vw);
     background: linear-gradient(to bottom right, rgba(191, 219, 254, 0.4), rgba(199, 210, 254, 0.3));
     border-radius: 50%;
     filter: blur(80px);
     pointer-events: none;
     /* optionnel : pour ne pas interférer */
 }

 .hero-blur-2 {
     position: absolute;
     bottom: 0;
     left: 0;
     width: min(400px, 60vw);
     /* jamais plus que 60% de l'écran */
     height: min(400px, 60vw);
     background: linear-gradient(to top right, rgba(241, 245, 249, 0.5), transparent);
     border-radius: 50%;
     filter: blur(80px);
     pointer-events: none;
 }


 .hero-content {
     position: relative;
     /*max-width: 56rem;*/
 }

 .badge {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     padding: 0.5rem 1rem;
     background: #f1f5f9;
     border-radius: 9999px;
     margin-bottom: 2rem;
 }

 .pulse-dot {
     width: 8px;
     height: 8px;
     background: #10b981;
     border-radius: 50%;
     animation: pulse 2s infinite;
 }

 @keyframes pulse {

     0%,
     100% {
         opacity: 1;
     }

     50% {
         opacity: 0.5;
     }
 }

 .badge-text {
     font-size: 0.875rem;
     color: #475569;
     font-weight: 500;
 }

 h1 {
     /*font-size: clamp(2rem, 5vw, 3.75rem);
     font-weight: 700;
     line-height: 1.1;
     letter-spacing: -0.02em;
     margin-bottom: 1.5rem;
     color: #1e293b;*/

     width: 66%;
     font-size: clamp(2rem, 5vw, 3.75em);
     font-weight: 700;
     line-height: 52px;
     letter-spacing: -0.02em;
     margin-bottom: 1.5rem;
     color: #1e293b;
 }

 .gradient-text {
     display: block;
     background: linear-gradient(to right, #1e3a8a, #1e40af, #1e3a8a);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .hero-description {
     font-size: 1.25rem;
     color: #475569;
     line-height: 1.8;
     margin-bottom: 2.5rem;
     max-width: 48rem;
 }

 .hero-buttons {
     display: flex;
     flex-wrap: wrap;
     gap: 1rem;
     margin-bottom: 4rem;
 }

 .hero-features {
     display: flex;
     flex-wrap: wrap;
     gap: 2rem;
     align-items: center;
 }

 .feature-item {
     display: flex;
     align-items: center;
     gap: 0.5rem;
 }

 /* Sections */
 section {
     padding: 6rem 0;
 }

 .section-bg-gray {
     background: #f8fafc;
 }

 .section-bg-blue {
     background: #1e3a8a;
 }

 h2 {
     font-size: clamp(1.875rem, 4vw, 2.25rem);
     font-weight: 700;
     color: #1e3a8a;
     margin-bottom: 1rem;
 }

 .section-header {
     text-align: center;
     margin-bottom: 4rem;
 }

 .section-description {
     font-size: 1.125rem;
     color: #475569;
     max-width: 42rem;
     margin: 0 auto;
 }

 /* Grid */
 .grid {
     display: grid;
     gap: 1.5rem;
 }

 .grid-2 {
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 }

 .grid-3 {
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 }

 .grid-4 {
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 }

 .grid-5 {
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
 }

 @media (min-width: 1024px) {
     .grid-2-lg {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 /* Cards */
 .card {
     background: white;
     border: 1px solid #cbd5e1;
     border-radius: 1rem;
     padding: 2rem;
     transition: all 0.3s;
     height: 100%;
 }

 .card:hover {
     box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
 }

 .card-icon {
     width: 56px;
     height: 56px;
     background: linear-gradient(to bottom right, #1e3a8a, #1e40af);
     border-radius: 1rem;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 1.5rem;
     transition: transform 0.3s;
 }

 .card:hover .card-icon {
     transform: scale(1.1);
 }

 .card-title {
     font-size: 1.25rem;
     font-weight: 600;
     color: #1e3a8a;
     margin-bottom: 0.75rem;
 }

 .card-description {
     color: #475569;
     margin-bottom: 1.5rem;
     line-height: 1.7;
 }

 .card-details {
     display: flex;
     flex-direction: column;
     gap: 0.5rem;
 }

 .card-detail-item {
     display: flex;
     align-items: center;
     gap: 0.5rem;
     font-size: 0.875rem;
     color: #64748b;
 }

 .detail-dot {
     width: 6px;
     height: 6px;
     background: #94a3b8;
     border-radius: 50%;
     flex-shrink: 0;
 }

 /* Profile Section */
 .profile-grid {
     display: grid;
     grid-template-columns: 1fr;
     gap: 4rem;
     align-items: center;
 }

 @media (min-width: 1024px) {
     .profile-grid {
         grid-template-columns: 1fr 1fr;
     }
 }

 .feature-list {
     display: flex;
     flex-direction: column;
     gap: 1rem;
 }

 .feature-list-item {
     display: flex;
     align-items: flex-start;
     gap: 0.75rem;
 }

 .feature-icon-wrapper {
     width: 24px;
     height: 24px;
     background: #f1f5f9;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
     margin-top: 2px;
 }

 .stat-card {
     background: linear-gradient(to bottom right, #eff6ff, white);
     border: 1px solid #bfdbfe;
 }

 .stat-icon-wrapper {
     width: 48px;
     height: 48px;
     background: #1e3a8a;
     border-radius: 0.75rem;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 1rem;
 }

 .stat-label {
     font-size: 0.875rem;
     color: #64748b;
     margin-bottom: 0.25rem;
 }

 .stat-value {
     font-size: 1.125rem;
     font-weight: 600;
     color: #1e3a8a;
 }

 /* Methodology */
 .methodology-wrapper {
     position: relative;
 }

 .methodology-line {
     position: absolute;
     top: 50%;
     left: 0;
     right: 0;
     height: 2px;
     background: #e2e8f0;
     transform: translateY(-50%);
     display: none;
 }

 @media (min-width: 1024px) {
     .methodology-line {
         display: block;
     }
 }

 .methodology-item {
     position: relative;
     background: white;
     padding-top: 2rem;
 }

 .step-number {
     width: 64px;
     height: 64px;
     background: #1e3a8a;
     border-radius: 1rem;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.5rem;
     font-weight: 700;
     color: white;
     margin-bottom: 1.5rem;
     position: relative;
     z-index: 10;
 }

 .step-title {
     font-size: 1.125rem;
     font-weight: 600;
     color: #1e3a8a;
     margin-bottom: 0.5rem;
 }

 .step-description {
     font-size: 0.875rem;
     color: #475569;
     line-height: 1.7;
 }

 /* Services - Blue Section */
 .services-section {
     background: #1e3a8a;
 }

 .services-section h2 {
     color: white;
 }

 .services-section .section-description {
     color: #cbd5e1;
 }

 .service-card {
     background: rgba(30, 64, 175, 0.5);
     border: 1px solid #1e40af;
 }

 .service-card:hover {
     background: #1e40af;
 }

 .service-card .card-icon {
     background: rgba(255, 255, 255, 0.1);
 }

 .service-card .card-title {
     color: white;
 }

 .service-card .card-description {
     color: #dbeafe;
 }

 /* Compliance */
 .compliance-card {
     text-align: center;
     border: 1px solid #bfdbfe;
 }

 .compliance-icon {
     width: 56px;
     height: 56px;
     background: #dbeafe;
     border-radius: 1rem;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 1rem;
 }

 .note-box {
     margin-top: 3rem;
     padding: 2rem;
     background: white;
     border: 1px solid #e2e8f0;
     border-radius: 1rem;
     text-align: center;
 }

 /* Footer */
 footer {
     background: #1e3a8a;
     padding: 4rem 0;
 }

 .footer-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 3rem;
     margin-bottom: 3rem;
 }

 .footer-brand {
     grid-column: span 2;
 }

 footer h4 {
     font-size: 1rem;
     font-weight: 600;
     color: white;
     margin-bottom: 1rem;
 }

 footer ul {
     list-style: none;
 }

 footer ul li {
     margin-bottom: 0.75rem;
 }

 footer a {
     color: #94a3b8;
     text-decoration: none;
     transition: color 0.3s;
 }

 footer a:hover {
     color: white;
 }

 .footer-text {
     color: #94a3b8;
 }

 .footer-bottom {
     padding-top: 2rem;
     border-top: 1px solid #1e40af;
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     gap: 1rem;
 }

 .footer-copyright {
     font-size: 0.875rem;
     color: #64748b;
 }

 /* Animations */
 .fade-in {
     opacity: 0;
     transform: translateY(30px);
     animation: fadeInUp 0.6s ease-out forwards;
 }

 @keyframes fadeInUp {
     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .stagger-1 {
     animation-delay: 0.1s;
 }

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

 .stagger-3 {
     animation-delay: 0.3s;
 }

 .stagger-4 {
     animation-delay: 0.4s;
 }

 .stagger-5 {
     animation-delay: 0.5s;
 }

 .stat-grid {
     grid-template-columns: repeat(2, 1fr) !important;
 }


 /* Responsive */
 @media (max-width: 768px) {
     .hero {
         padding: 6rem 0 4rem;
     }

     .hero-buttons {
         flex-direction: column;
     }

     .container-hero {
         width: 90%;
         margin: 0 auto;
     }

     h1 {
         width: 95%;
         font-size: clamp(2rem, 5vw, 3.75rem);
         font-weight: 700;
         line-height: 38px;
         letter-spacing: -0.02em;
         margin-bottom: 1.5rem;
         color: #1e293b;
     }

     .btn {
         width: 100%;
         justify-content: center;
     }

     .footer-brand {
         grid-column: span 1;
     }

     .nav-buttons {
         gap: 0.7rem;
     }

     .footer-bottom {
         flex-direction: column;
         text-align: center;
     }

     .stat-grid {
         grid-template-columns: repeat(1, 1fr) !important;
     }

 }

 @media (min-width: 1024px) {
     .container {
         padding: 0 2rem;
     }
 }