:root {
   /* Couleurs principales */
   --primary: #0077cc;
   --primary-dark: #0077cc;
   --primary-light: #C7D2FE;
   
   /* Couleurs d'accent */
   --accent-blue: #4285F4;
   --accent-green: #34A853;
   --accent-yellow: #FBBC05;
   --accent-red: #EA4335;
   
   /* Couleurs neutres */
   --white: #ffffff;
   --off-white: #F9FAFC;
   --light: #F5F7FA;
   --light-gray: #E5E9F2;
   --gray: #8492A6;
   --dark-gray: #3C4858;
   --dark: #273444;
   --deep-blue: #1E2D4A;
   
   /* Espacement */
   --spacing-xs: 0.25rem;
   --spacing-sm: 0.5rem;
   --spacing-md: 1rem;
   --spacing-lg: 1.5rem;
   --spacing-xl: 2rem;
   --spacing-xxl: 3rem;
   
   /* Ombres */
   --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
   --shadow-md: 0 4px 8px rgba(0,0,0,0.1);
   --shadow-lg: 0 8px 16px rgba(0,0,0,0.1);
   --shadow-xl: 0 16px 32px rgba(108, 99, 255, 0.15);
   
   /* Border radius */
   --radius-sm: 4px;
   --radius-md: 8px;
   --radius-lg: 12px;
   --radius-xl: 24px;
   --radius-full: 9999px;
   
   /* Transitions */
   --transition-fast: 0.15s ease;
   --transition-normal: 0.25s ease;
   --transition-slow: 0.4s ease;
}

/* Reset & Base Styles */
* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

body {
   font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
   color: var(--dark);
   background-color: var(--white);
   line-height: 1.7;
   font-size: 16px;
   font-weight: 400;
}

a {
   text-decoration: none;
   transition: all var(--transition-normal);
}

h1, h2, h3, h4, h5, h6 {
   font-weight: 600;
   line-height: 1.3;
   margin-bottom: var(--spacing-md);
   color: var(--deep-blue);
}

.container {
   width: 100%;
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 var(--spacing-md);
}

.login-btn {
   background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
   color: white !important;
   padding: 0.7rem 1.5rem;
   border-radius: var(--radius-full);
   font-size: 0.9rem;
   font-weight: 500;
   transition: all 0.3s ease;
   box-shadow: 0 3px 10px rgba(99, 102, 241, 0.25);
   display: flex;
   align-items: center;
}

.login-btn:hover {
   background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
   transform: translateY(-2px);
   box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
   color: white !important;
}




/* Background animé plus visible */
.hero-section {
	padding: var(--spacing-xxl) 0;
    position: relative;
    overflow: hidden;
    background-color: white;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
        linear-gradient(45deg, rgba(52, 211, 153, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.animated-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -2;
}

.animated-bg .shape {
    position: absolute;
    background: linear-gradient(45deg, rgba(99, 102, 241, 0.1), rgba(52, 211, 153, 0.1));
    border-radius: 50%;
}

.animated-bg .shape:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -50px;
    opacity: 0.7;
    animation: float-shape-1 20s linear infinite;
}

.animated-bg .shape:nth-child(2) {
    width: 250px;
    height: 250px;
    bottom: -50px;
    right: 10%;
    opacity: 0.6;
    animation: float-shape-2 25s linear infinite;
}

.animated-bg .shape:nth-child(3) {
    width: 200px;
    height: 200px;
    top: 40%;
    right: -50px;
    opacity: 0.5;
    animation: float-shape-3 17s linear infinite;
}

@keyframes float-shape-1 {
    0% { transform: translate(0, 0); }
    25% { transform: translate(20px, 20px); }
    50% { transform: translate(0, 40px); }
    75% { transform: translate(-20px, 20px); }
    100% { transform: translate(0, 0); }
}

@keyframes float-shape-2 {
    0% { transform: translate(0, 0); }
    25% { transform: translate(-30px, -20px); }
    50% { transform: translate(-60px, 0); }
    75% { transform: translate(-30px, 20px); }
    100% { transform: translate(0, 0); }
}

@keyframes float-shape-3 {
    0% { transform: translate(0, 0); }
    25% { transform: translate(10px, -30px); }
    50% { transform: translate(30px, -15px); }
    75% { transform: translate(10px, 15px); }
    100% { transform: translate(0, 0); }
}

.hero-content {
   position: relative;
   z-index: 10;
   padding: 2rem 0;
}

.hero-title {
   font-size: 3.5rem;
   line-height: 1.4;
   margin-bottom: 1.5rem;
   font-weight: 800;
   color: var(--deep-blue);
}

.hero-title span {
   color: var(--primary);
   display: block;
   font-weight: 700;
}

.hero-subtitle {
   font-size: 1.15rem;
   color: var(--dark-gray);
   margin-bottom: 2rem;
   max-width: 90%;
}

.input-group {
   display: flex;
   align-items: center;
   max-width: 430px;
   margin-bottom: 1.5rem;
   background-color: white;
   border-radius: var(--radius-full);
   box-shadow: var(--shadow-lg);
   overflow: hidden;
   border: 1px solid var(--light-gray);
   padding: 8px;
}

.input-group-text {
   display: flex;
   align-items: center;
   padding: 0.8rem 1rem;
   background-color: var(--white);
   border: none;
   font-weight: 500;
}

.flag-icon {
   width: 24px;
   height: 18px;
   margin-right: 8px;
   border-radius: 2px;
   box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.form-control {
   flex: 1;
   border: none;
   padding: 0.8rem 0.5rem;
   font-size: 1rem;
   background: var(--white);
   width: 100%;
}

#emailGroup {
   transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
               transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
   opacity: 0;
   transform: translateY(-20px);
}

#emailGroup[style*="display: flex"] {
   opacity: 1;
   transform: translateY(0);
   animation: slideDown 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes slideDown {
   0% {
       transform: translateY(-20px) scale(0.9);
       opacity: 0;
   }
   60% {
       transform: translateY(5px) scale(1.02);
   }
   100% {
       transform: translateY(0) scale(1);
       opacity: 1;
   }
}

#emailGroup .input-group-text {
   background: var(--white);
   border: none;
   padding: 0.8rem 1rem;
}

#emailGroup .input-group-text i {
   font-size: 1.1rem;
   color: var(--primary);
   animation: pulse 2s infinite;
}

@keyframes pulse {
   0% {
       transform: scale(1);
   }
   50% {
       transform: scale(1.1);
   }
   100% {
       transform: scale(1);
   }
}


.btn-primary:disabled {
   background-color: var(--primary);
   opacity: 1;
   cursor: pointer;
}


.input-error {
   border: 2px solid #EA4335 !important;
   animation: shake 0.5s ease-in-out;
}

@keyframes shake {
   0%, 100% { transform: translateX(0); }
   10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
   20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.input-group.error .form-control {
   border-color: #EA4335;
}

.input-group.error .input-group-text {
   border-color: #EA4335;
   color: #EA4335;
}

.input-group.error .input-group-text i {
   color: #EA4335;
}

.form-control:focus {
    color: var(--dark);
    background-color: white;
    border-color: var(--light-gray);
    outline: none;
    box-shadow: none;
}

.btn:focus {
    box-shadow: none;
    outline: none;
}

.input-group .form-control:focus {
    border-color: var(--light-gray);
}

.btn-primary {
   background-color: var(--primary);
   color: white;
   border: none;
   padding: 1.1rem 1.5rem;
   border-radius: var(--radius-full);
   font-weight: 600;
   font-size: 1.15rem;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 0.5rem;
   cursor: pointer;
   transition: all 0.3s ease;
   max-width: 430px;
   width: 100%;
   box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}

.btn-primary i {
   margin-right: 0.5rem;
}

.btn-primary:hover {
   background-color: var(--primary-dark);
   transform: translateY(-2px);
   box-shadow: 0 6px 20px rgba(13, 110, 253, 0.25);
}

.security-features {
   display: flex;
   justify-content: center;
   align-items: center;
   margin-top: 1.5rem;
   max-width: 430px;
   background: rgba(249, 250, 252, 0.9);
   border-radius: var(--radius-full);
   padding: 0.5rem;
   box-shadow: 0 1px 3px rgba(0,0,0,0.03);
   position: relative;
}

.security-feature {
   flex: 1;
   display: flex;
   flex-direction: column;
   align-items: center;
   text-align: center;
   padding: 0 0.5rem;
   transition: all 0.2s ease;
   position: relative;
}

.security-feature:not(:last-child)::after {
   content: '';
   position: absolute;
   right: 0;
   top: 50%;
   transform: translateY(-50%);
   width: 1px;
   height: 70%;
   background: var(--light-gray);
}

.security-feature i {
   color: var(--primary);
   font-size: 0.9rem;
   margin-bottom: 0.3rem;
   transition: transform 0.3s ease;
}

.security-feature span {
   font-size: 0.8rem;
   color: var(--dark-gray);
   font-weight: 500;
   letter-spacing: 0.03em;
   text-transform: uppercase;
   opacity: 0.7;
   transition: opacity 0.3s ease;
   width: 100%;
}

.security-feature:hover i {
   transform: scale(1.15);
}

.security-feature:hover span {
   opacity: 1;
}

.phone-display {
   position: relative;
   z-index: 10;
   display: flex;
   justify-content: center;
   align-items: center;
}

.phone-img-wrapper {
   position: relative;
   padding: 1rem;
}

.phone-image {
   width: 80%;
   height: auto;
   border-radius: 1.5rem;
   display: block;
}

.phone-user {
   position: absolute;
   width: 50px;
   height: 50px;
   border-radius: 50%;
   background-color: var(--white);
   box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
   display: flex;
   align-items: center;
   justify-content: center;
   overflow: hidden;
}

.phone-user img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.user-1 {
   top: 20%;
   left: 30%;
}

.user-2 {
   top: 40%;
   right: 25%;
}

.user-3 {
   bottom: 30%;
   left: 20%;
}

.user-4 {
   bottom: 15%;
   right: 35%;
}

.battery-indicator {
   position: absolute;
   font-size: 0.7rem;
   background-color: rgba(52, 168, 83, 0.15);
   color: var(--accent-green);
   padding: 0.1rem 0.3rem;
   border-radius: 0.3rem;
   display: flex;
   align-items: center;
}

.battery-1 {
   top: 25%;
   right: 20%;
}

.battery-2 {
   bottom: 20%;
   left: 30%;
}

/* Search Box */
.search-box {
   max-width: 500px;
   margin: 0 auto;
   padding: 2rem;
   background: var(--white);
   border-radius: var(--radius-lg);
   box-shadow: var(--shadow-lg);
}

/* Styles communs pour les sections */
.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 0.8rem;
    color: var(--deep-blue);
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    margin: 0 auto 2rem;
    border-radius: var(--radius-full);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Section Pourquoi nous choisir */
.features-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--deep-blue);
}

.feature-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Section Avis clients */
.testimonials-section {
    padding: 5rem 0;
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54.627 0l.83.828-1.415 1.415L51.8 0h2.827zM5.373 0l-.83.828L5.96 2.243 8.2 0H5.374zM48.97 0l3.657 3.657-1.414 1.414L46.143 0h2.828zM11.03 0L7.372 3.657 8.787 5.07 13.857 0H11.03zm32.284 0L49.8 6.485 48.384 7.9l-7.9-7.9h2.83zM16.686 0L10.2 6.485 11.616 7.9l7.9-7.9h-2.83zm20.97 0l9.315 9.314-1.414 1.414L34.828 0h2.83zM22.344 0L13.03 9.314l1.414 1.414L25.172 0h-2.83zM32 0l12.142 12.142-1.414 1.414L30 .828 17.272 13.556l-1.414-1.414L28 0h4zM.284 0l28 28-1.414 1.414L0 2.544v2.83L25.456 28l-1.414 1.414L0 5.373v2.83L22.627 28l-1.414 1.414L0 8.2v2.83L19.8 28l-1.414 1.414L0 11.03v2.828L16.97 28l-1.414 1.414L0 13.857v2.83L14.142 28l-1.414 1.414L0 16.686v2.83L11.314 28l-1.414 1.414L0 19.515v2.83L8.485 28 7.07 29.414 0 22.343v2.83L5.657 28l-1.414 1.414L0 25.172v2.828L2.828 28 1.414 29.414 0 28v2h2L0 27.172v2.828l1.414 1.414L0 30h4l-4-4v2.343l1.414 1.414L0 28l1.414 1.414L0 31.03v2.83l2.828-2.83L4.243 32 0 36.244v2.83l4.828-4.83L6.243 35.66 0 41.9v2.83l6.9-6.9 1.415 1.415L0 47.657v2.83L10.97 40.5l1.415 1.414L0 53.858v2.83L14.142 44.7l1.415 1.414L0 60h60L45.858 45.858l1.415-1.415L60 57.143v-2.83L46.142 42.29l1.415-1.413L60 53.858v-2.83L50.443 41.9l1.414-1.415L60 48.657v-2.83L48.03 35.66l1.414-1.414L60 44.244v-2.83l-9.9-9.9 1.415-1.414L60 39.03v-2.83l-7.07-7.07 1.414-1.415L60 33.657v-2.83l-4.243-4.242L57.172 25 60 27.828v-2.83l-1.414-1.413L60 22.344v-2.83L55.757 23.9l-1.414-1.415L60 16.686v-2.83L51.414 22.9l-1.414-1.414L60 11.03v-2.83l-7.071 7.07-1.414-1.414L60 5.373v-2.83L48.03 14.9l-1.414-1.414L60 0H0l32.142 32.142-1.414 1.414L0 2.544v2.83L28.556 32l-1.414 1.414L0 5.373v2.83L25.657 32l-1.414 1.414L0 8.2v2.83L22.8 32l-1.414 1.414L0 11.03v2.828L19.97 32l-1.414 1.414L0 13.857v2.83L17.142 32l-1.414 1.414L0 16.686v2.83L14.314 32l-1.414 1.414L0 19.515v2.83L11.485 32l-1.414 1.414L0 22.343v2.83L8.657 32l-1.414 1.414L0 25.172v2.828L5.828 32l-1.414 1.414L0 28v2h2L0 27.172v2.828l1.414 1.414L0 30h4l-4-4v2.343l1.414 1.414L0 28l1.414 1.414L0 31.03v2.83l2.828-2.83L4.243 32 0 36.244v2.83l4.828-4.83L6.243 35.66 0 41.9v2.83l6.9-6.9 1.415 1.415L0 47.657v2.83L10.97 40.5l1.415 1.414L0 53.858v2.83L14.142 44.7l1.415 1.414L0 60h60L45.858 45.858l1.415-1.415L60 57.143v-2.83L46.142 42.29l1.415-1.413L60 53.858v-2.83L50.443 41.9l1.414-1.415L60 48.657v-2.83L48.03 35.66l1.414-1.414L60 44.244v-2.83l-9.9-9.9 1.415-1.414L60 39.03v-2.83l-7.07-7.07 1.414-1.415L60 33.657v-2.83l-4.243-4.242L57.172 25 60 27.828v-2.83l-1.414-1.413L60 22.344v-2.83L55.757 23.9l-1.414-1.415L60 16.686v-2.83L51.414 22.9l-1.414-1.414L60 11.03v-2.83l-7.071 7.07-1.414-1.414L60 5.373v-2.83L48.03 14.9l-1.414-1.414L60 0H0l32.142 32.142-1.414 1.414L0 2.544v2.83L28.556 32l-1.414 1.414L0 5.373v2.83L25.657 32l-1.414 1.414L0 8.2v2.83L22.8 32l-1.414 1.414L0 11.03v2.828L19.97 32l-1.414 1.414L0 13.857v2.83L17.142 32l-1.414 1.414L0 16.686v2.83L14.314 32l-1.414 1.414L0 19.515v2.83L11.485 32l-1.414 1.414L0 22.343v2.83L8.657 32l-1.414 1.414L0 25.172v2.828L5.828 32l-1.414 1.414L0 28v2h2L0 27.172v2.828l1.414 1.414L0 30h4l-4-4v2.343l1.414 1.414L0 28l1.414 1.414L0 31.03v2.83l2.828-2.83L4.243 32 0 36.244v2.83l4.828-4.83L6.243 35.66 0 41.9v2.83l6.9-6.9 1.415 1.415L0 47.657v2.83L10.97 40.5l1.415 1.414L0 53.858v2.83L14.142 44.7l1.415 1.414L0 60h60L45.858 45.858l1.415-1.415L60 57.143v-2.83L46.142 42.29l1.415-1.413L60 53.858v-2.83L50.443 41.9l1.414-1.415L60 48.657v-2.83l-7.07-7.07 1.414-1.415L60 44.244v-2.83l-9.9-9.9 1.415-1.414L60 39.03v-2.83l-7.07-7.07 1.414-1.415L60 33.657v-2.83l-4.243-4.242L57.172 25 60 27.828v-2.83l-1.414-1.413L60 22.344v-2.83L55.757 23.9l-1.414-1.415L60 16.686v-2.83L51.414 22.9l-1.414-1.414L60 11.03v-2.83l-7.071 7.07-1.414-1.414L60 5.373v-2.83L48.03 14.9l-1.414-1.414L60 0H0l32.142 32.142-1.414 1.414L0 2.544v2.83L28.556 32l-1.414 1.414L0 5.373v2.83L25.657 32l-1.414 1.414L0 8.2v2.83L22.8 32l-1.414 1.414L0 11.03v2.828L19.97 32l-1.414 1.414L0 13.857v2.83L17.142 32l-1.414 1.414L0 16.686v2.83L14.314 32l-1.414 1.414L0 19.515v2.83L11.485 32l-1.414 1.414L0 22.343v2.83L8.657 32l-1.414 1.414L0 25.172v2.828L5.828 32l-1.414 1.414L0 28v2h2L0 27.172v2.828l1.414 1.414L0 30h4l-4-4v2.343l1.414 1.414L0 28l1.414 1.414L0 31.03v2.83l2.828-2.83L4.243 32 0 36.244v2.83l4.828-4.83L6.243 35.66 0 41.9v2.83l6.9-6.9 1.415 1.415L0 47.657v2.83L10.97 40.5l1.415 1.414L0 53.858v2.83L14.142 44.7l1.415 1.414L0 60h60L45.858 45.858l1.415-1.415L60 57.143v-2.83L46.142 42.29l1.415-1.413L60 53.858v-2.83L50.443 41.9l1.414-1.415L60 48.657v-2.83L48.03 35.66l1.414-1.414L60 44.244v-2.83l-9.9-9.9 1.415-1.414L60 39.03v-2.83l-7.07-7.07 1.414-1.415L60 33.657v-2.83l-4.243-4.242L57.172 25 60 27.828v-2.83l-1.414-1.413L60 22.344v-2.83L55.757 23.9l-1.414-1.415L60 16.686v-2.83L51.414 22.9l-1.414-1.414L60 11.03v-2.83l-7.071 7.07-1.414-1.414L60 5.373v-2.83L48.03 14.9l-1.414-1.414L60 0H0z' fill='%236366F1' fill-opacity='0.015' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stars {
    margin-bottom: 1.5rem;
    color: var(--accent-yellow);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    font-style: italic;
    min-height: 120px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    border: 2px solid var(--primary-light);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: var(--deep-blue);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Section Tarifs */
.pricing-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.pricing-container {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.benefits-box {
    flex: 1;
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

.benefits-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--deep-blue);
    position: relative;
    padding-bottom: 0.8rem;
}

.benefits-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.1rem;
    color: var(--primary);
}

.benefit-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--deep-blue);
}

.benefit-content p {
    font-size: 0.9rem;
    color: var(--gray);
}

.price-box {
    flex: 1;
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-top: 4px solid var(--primary);
}

.price-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(99, 102, 241, 0.3);
}

.price-toggle {
    display: flex;
    background: var(--light-gray);
    border-radius: var(--radius-full);
    padding: 0.3rem;
    margin-bottom: 2rem;
}

.price-toggle span {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: var(--radius-full);
}

.price-toggle span.active {
    background: white;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.price-amount {
    margin-bottom: 2rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.currency {
    font-size: 2rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-right: 0.2rem;
}

.amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--deep-blue);
    line-height: 1;
}

.decimal {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--deep-blue);
}

.period {
    font-size: 1rem;
    color: var(--gray);
    margin-left: 0.5rem;
}

.price-feature {
    margin-bottom: 2rem;
    color: var(--gray);
    font-size: 1rem;
}

.price-feature i {
    color: var(--accent-green);
    margin-right: 0.5rem;
}

.btn-large {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.price-notes {
    margin-top: auto;
}

.price-notes p {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

/* Section Compatibilité */
.compatibility-section {
    padding: 5rem 0;
    background-color: var(--light);
    position: relative;
}

.compatibility-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.compatibility-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    width: 120px;
    transition: all 0.3s ease;
}

.compatibility-badge:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.compatibility-badge i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.compatibility-badge span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--deep-blue);
}

.compatibility-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.compatibility-feature {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.compatibility-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon-large i {
    font-size: 2.2rem;
    color: var(--primary);
}

.compatibility-feature h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--deep-blue);
}

.compatibility-feature p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}





/* Footer Styles */
.site-footer {
   background-color: var(--deep-blue);
   color: var(--light-gray);
   padding: var(--spacing-xl) 0;
   margin-top: var(--spacing-xxl);
}

.footer-bottom {
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.copyright p {
   margin-bottom: 0;
   font-size: 0.9rem;
   opacity: 0.7;
}

.footer-links {
   display: flex;
   gap: var(--spacing-lg);
}

.footer-links a {
   color: var(--light-gray);
   opacity: 0.8;
   transition: all var(--transition-fast);
   font-size: 0.9rem;
}

.footer-links a:hover {
   color: var(--white);
   opacity: 1;
}

