/* Style général */
:root {
    --primary-color: #2ecc71; /* Vert émeraude */
    --secondary-color: #f8f9fc;
    --dark-color: #27ae60; /* Vert émeraude foncé */
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --success-color: #38b000;
    --warning-color: #9bd7b4; /* Orange ambré ajusté */
    --accent-color: #16a085; /* Vert teal complémentaire */
    --gradient-start: #2ecc71; /* Vert émeraude */
    --gradient-end: #16a085; /* Vert teal */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Police globale */
* {
    font-family: var(--font-primary);
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

/* Titres h2 design */
h2 {
    position: relative;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg,  #d1e7dd 0%, #19a682 30%, #19a682 70%, #2ecc71 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
    text-align: center;
}

h2::after {

}

/* Titres h3 design */
h3, h3.fw-bold, h3.mb-3, h3.mb-4 {
    font-size: 1.9rem;
    font-weight: 700 !important;
    color: #25bb79;;
    margin-bottom: 1.2rem;
}

/* Titres dans les cards ne doivent pas avoir ces styles */
.card h2, .card h3, .card h3.fw-bold, .card h3.mb-3, .card h3.mb-4, .card h4, .card h5, .card h6 {
    background: none;
    -webkit-text-fill-color: initial;
    color: var(--dark-color);
    text-align: left;
}

.card h2::after, .card h2::before, .card h3::after {
    display: none;
}

/* Titres dans les forms */
form h2, form h3, form h3.fw-bold, form h3.mb-3, form h3.mb-4 {
    background: none;
    -webkit-text-fill-color: initial;
    color: var(--dark-color);
    text-align: left;
}

form h2::after, form h2::before {
    display: none;
}

/* Responsive des titres */
@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }
    
    h3, h3.fw-bold, h3.mb-3, h3.mb-4 {
        font-size: 1.5rem;
    }
}

/* Hero section */
.hero-section {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.8;
}

.hero-section .display-4 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInLeft 1s ease-out;
}

.hero-section .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    animation: fadeInLeft 1s ease-out 0.3s forwards;
    opacity: 0.9;
}

/* Nouveaux styles pour la section hero */
.hero-feature {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 10px 15px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.hero-feature:hover {
    transform: translateY(-3px);
    background-color: rgba(255, 255, 255, 0.25);
}

.hero-feature-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border-radius: 50%;
    margin-right: 12px;
}

.hero-feature-text {
    font-weight: 500;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    opacity: 0;
    margin-top: 20px;
}

.hero-price {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 500;
    padding-left: 5px;
}

.hero-image-container {
    position: relative;
}

.hero-main-image {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: fadeInRight 1s ease-out;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.hero-main-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-stats-card {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    animation: fadeInUp 1s ease-out 0.9s forwards;
    opacity: 0;
}

.hero-stats-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.hero-stats-item:last-child {
    margin-bottom: 0;
}

.hero-stats-item i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(46, 204, 113, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    margin-right: 12px;
}

.hero-stats-item div {
    display: flex;
    flex-direction: column;
}

.hero-stats-item strong {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.2;
}

.hero-stats-item span {
    font-size: 0.8rem;
    color: #6c757d;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 100px;
    }
    
    .hero-stats-card {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 20px;
        width: 100%;
    }
    
    .hero-section .display-4 {
        font-size: 2.5rem;
    }
    
    .hero-feature {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .hero-cta {
        width: 100%;
        align-items: center;
    }
    
    .btn-hero-visible {
        width: 100%;
        text-align: center;
        padding: 15px 20px;
        font-size: 1rem;
    }
}

/* Navbar */
.navbar {
    transition: all 0.4s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background-color: white !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.nav-link {
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Cards */
.card {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: none;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.card-body {
    padding: 2rem;
}

.card .icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: white;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card .icon-box i {
    font-size: 1.5rem;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.3);
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--accent-color) 100%);
}

.btn-lg {
    font-size: 1.1rem;
    padding: 15px 35px;
}

/* Témoignages */
.testimonial .card {
    position: relative;
}

.testimonial .card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 80px;
    color: rgba(78, 115, 223, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

/* Sections */
section {
    padding: 100px 0;
    position: relative;
}

section.bg-light {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
}

.section-title {
    position: relative;
    margin-bottom: 60px;
    z-index: 1;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px) perspective(1000px) rotateY(-15deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) perspective(1000px) rotateY(-5deg);
    }
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.fadeInUp {
    animation: fadeInUp 1s ease-out;
}

/* Count up animation */
.count-up {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Features */
.feature-item {
    margin-bottom: 2rem;
}

.feature-item .feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.2);
}

/* Bonus section */
.bonus-section {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--accent-color) 100%);
    position: relative;
    overflow: hidden;
}

.bonus-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

/* Section statistiques */
.stats-section {
    background-color: #fff;
    margin-top: -50px;
    position: relative;
    z-index: 10;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
}

.stats-item {
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.stats-item:hover {
    transform: translateY(-5px);
}

.stats-item h3 {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stats-item p {
    color: var(--gray-color);
    font-weight: 500;
    margin-bottom: 0;
}

/* Section titre avec ligne */
.section-title {
    position: relative;
    display: block;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #d1e7dd 0%, #19a682 30%, #19a682 70%, #2ecc71 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.section-title::before {

}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
    border-radius: 2px;
}

/* Responsive pour section-title */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
}

/* Cartes avec flèche */
.card-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.card:hover .card-arrow {
    opacity: 1;
    transform: translateX(5px);
}

/* Feature icons */
.feature-item {
    margin-bottom: 2rem;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.2);
}

/* Badge bonus */
.bonus-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

/* Section CTA finale */
.cta-section {
    background-color: #f8f9fc;
}

.cta-card {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(46, 204, 113, 0.2);
}

.cta-card h3 {
    font-weight: 700;
}

.cta-card .btn {
    background: white;
    color: var(--primary-color);
    border: none;
    transition: transform 0.3s ease;
}

.cta-card .btn:hover {
    transform: translateY(-3px);
    color: var(--accent-color);
}

/* Accordéon FAQ */
.accordion-button:not(.collapsed) {
    background-color: #e9f7ef !important;
    color: #2ecc71 !important;
    font-weight: 600;
    box-shadow: none !important;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(46, 204, 113, 0.25) !important;
    border-color: #2ecc71 !important;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232ecc71'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232ecc71'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 8px !important;
    overflow: hidden;
}

.accordion-body {
    background-color: #fff;
    padding: 1.5rem;
}

/* Footer */
footer {
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%2327ae60' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

footer a {
    text-decoration: none;
    position: relative;
    z-index: 1;
}

footer a:hover {
    text-decoration: underline;
}

/* Style pour placer le footer en bas de la page */
html {
    height: 100%;
}

main, .container.py-5 {
    flex: 1;
}



/* Lorsqu'on est sur une page de connexion ou autre page courte */
body.page-short {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-short .container.py-5, 
.page-short .container.py-4 {
    flex: 1;
}

/* Section TikTok */
.tiktok-section {
    position: relative;
    overflow: hidden;
}

.tiktok-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 0c8.284 0 15 6.716 15 15 0 8.284-6.716 15-15 15-8.284 0-15-6.716-15-15C0 6.716 6.716 0 15 0zm0 2c-7.18 0-13 5.82-13 13s5.82 13 13 13 13-5.82 13-13S22.18 2 15 2z' fill='%232ecc71' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.6;
    z-index: 0;
}

.tiktok-card {
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 1;
}

.tiktok-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

.tiktok-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00f2ea 0%, #ff0050 100%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.tiktok-icon i {
    color: white;
    font-size: 1.2rem;
}

.tiktok-content {
    border-left: 3px solid #ff0050;
    padding-left: 15px;
    font-style: italic;
}

.tiktok-stats {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.tiktok-stats i {
    color: var(--primary-color);
}

/* Community section (remplace TikTok) */
.community-section {
    background-color: #f8f9fc;
    position: relative;
    overflow: hidden;
}

.community-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
}

.community-card {
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 1;
}

.community-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

.community-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.community-icon i {
    color: white;
    font-size: 1.2rem;
}

.community-content {
    border-left: 3px solid var(--primary-color);
    padding-left: 15px;
    font-style: italic;
}

.community-stats {
    color: var(--gray-color);
    font-size: 0.85rem;
    font-weight: 500;
}

.community-stats i {
    color: var(--primary-color);
}

/* Rating stars */
.rating {
    display: flex;
    gap: 2px;
    font-size: 0.9rem;
}

.rating i {
    color: rgb(94, 162, 126) !important;
}

/* Badges de rang dans les avis */
.community-card .badge {
    background-color: #e9f7ef !important;
    color: #25bb79 !important;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Learning path */
.learning-path {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    flex-shrink: 0;
}

.step-icon i {
    color: white;
    font-size: 1.1rem;
}

.step-item span {
    font-weight: 600;
    color: var(--dark-color);
    text-align: left;
}

/* Progression system */
.progression-section {
    background: linear-gradient(135deg, #f8f9fc 0%, #ffffff 100%);
    position: relative;
}

.ranks-progression {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.ranks-header .progression-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.ranks-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.rank-card {
    text-align: center;
    padding: 18px 12px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-width: 160px;
    max-width: 180px;
    height: 240px;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.rank-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.rank-card.starter {
    border-color: rgba(144, 238, 144, 0.4);
}

.rank-card.influencer {
    border-color: rgba(124, 252, 0, 0.4);
}

.rank-card.ambassador {
    border-color: rgba(34, 139, 34, 0.4);
}

.rank-card.eminence {
    border-color: rgba(0, 100, 0, 0.4);
}

.rank-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 auto 15px auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.rank-card.starter .rank-badge {
    background: linear-gradient(135deg, #98FB98 0%, #90EE90 100%);
}

.rank-card.influencer .rank-badge {
    background: linear-gradient(135deg, #7CFC00 0%, #32CD32 100%);
}

.rank-card.ambassador .rank-badge {
    background: linear-gradient(135deg, #228B22 0%, #006400 100%);
}

.rank-card.eminence .rank-badge {
    background: linear-gradient(135deg, #006400 0%, #004d00 100%);
}

.rank-badge i {
    color: white;
    font-size: 1.2rem;
}

.rank-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.rank-description {
    font-size: 0.9rem;
    color: var(--gray-color);
    font-style: italic;
    margin-bottom: 12px;
}

.rank-criteria {
    background: rgba(46, 204, 113, 0.05);
    padding: 8px;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.rank-criteria small {
    color: var(--gray-color);
    line-height: 1.4;
}

.rank-arrow {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    opacity: 0.6;
}

.ranks-benefits {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.05) 0%, rgba(22, 160, 133, 0.1) 100%);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid rgba(46, 204, 113, 0.2);
}

.ranks-benefits p {
    color: var(--gray-color);
    margin-bottom: 15px;
}

@media (max-width: 992px) {
    .ranks-grid {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .rank-arrow {
        display: none;
    }
    
    .rank-card {
        min-width: 140px;
        max-width: 160px;
    }
}

@media (max-width: 768px) {
    .ranks-progression {
        padding: 20px;
    }
    
    .ranks-grid {
        flex-direction: column;
        gap: 20px;
    }
    
    .rank-card {
        min-width: 200px;
        max-width: 250px;
    }
    
    .ranks-header .progression-arrow {
        flex-direction: column;
        gap: 8px;
    }
}

/* Section Commission */
.commission-section {
    background-color: #f8f9fc;
    position: relative;
    overflow: hidden;
}

.commission-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 0c8.284 0 15 6.716 15 15 0 8.284-6.716 15-15 15-8.284 0-15-6.716-15-15C0 6.716 6.716 0 15 0zm0 2c-7.18 0-13 5.82-13 13s5.82 13 13 13 13-5.82 13-13S22.18 2 15 2z' fill='%232ecc71' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.8;
    z-index: 0;
}

.commission-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fc 100%);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    border: 2px solid rgba(46, 204, 113, 0.2);
    overflow: hidden;
}

.commission-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
}

.commission-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.2);
}

.commission-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.2);
}

.btn-warning {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.2);
    color: white;
}

.commission-illustration {
    position: relative;
    height: 300px;
}

.commission-tree {
    position: relative;
    width: 100%;
    height: 100%;
}

.commission-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.commission-node i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.commission-node span {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--dark-color);
}

.commission-node.level-1 {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
}

.commission-node.level-1 i, .commission-node.level-1 span {
    color: white;
    font-weight: 700;
}

.commission-node.level-2 {
    top: 130px;
}

.commission-node.level-2.left {
    left: 20%;
}

.commission-node.level-2.center {
    left: 50%;
    transform: translateX(-50%);
}

.commission-node.level-2.right {
    right: 20%;
}

.commission-node.level-3 {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    width: 70px;
    height: 70px;
}

.commission-node.level-3 i, .commission-node.level-3 span {
    color: white;
}

.commission-tree::before {
    content: "";
    position: absolute;
    top: 60px;
    left: 50%;
    width: 2px;
    height: 70px;
    background: rgba(46, 204, 113, 0.3);
    transform: translateX(-50%);
}

.commission-tree::after {
    content: "";
    position: absolute;
    top: 130px;
    left: 25%;
    width: 50%;
    height: 2px;
    background: rgba(46, 204, 113, 0.3);
}

.level-2.left::after,
.level-2.center::after,
.level-2.right::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 50%;
    width: 2px;
    height: 30px;
    background: rgba(46, 204, 113, 0.3);
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .commission-card {
        padding: 2rem;
    }
    
    .commission-illustration {
        height: 250px;
        margin-top: 2rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }
    
    .hero-section img {
        margin-top: 2rem;
    }
    
    .hero-section .display-4 {
        font-size: 2.5rem;
    }
}

/* Style spécifique pour les nouveaux éléments de la page d'accueil */
/* Éléments flottants */
.floating-element {
    position: absolute;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.15);
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

.floating-element:nth-child(odd) {
    animation-duration: 8s;
}

.floating-element:nth-child(3n) {
    animation-duration: 7s;
    animation-delay: 2s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0);
    }
}

/* Badge de prix sur l'image hero */
.hero-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--warning-color) 0%, #ffd166 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #2b2d42;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
    z-index: 10;
}

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

.hero-badge-inner {
    text-align: center;
    transform: rotate(10deg);
}

.badge-value {
    font-size: 2rem;
    line-height: 1;
    display: block;
    font-weight: 800;
}

.badge-currency {
    font-size: 1rem;
    font-weight: 700;
}

.badge-text {
    font-size: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-top: 2px;
}

/* Bouton hero spécial */
.btn-hero {
    padding: 12px 32px;
    font-weight: 600;
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: white;
    color: var(--accent-color);
}

.btn-cta {
    background: linear-gradient(135deg, var(--warning-color) 0%, #ffd166 100%);
    border: none !important;
}

/* Système de rangs et gamification - Version simplifiée */
.ranks-wrapper {
    position: relative;
    padding: 40px 0;
}

.ranks-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    margin: 0 20px;
}

.rank-path {
    position: absolute;
    top: 80px;
    left: 10%;
    width: 80%;
    height: 4px;
    background: linear-gradient(90deg, rgba(46, 204, 113, 0.2) 0%, rgba(22, 160, 133, 0.7) 100%);
    z-index: 1;
}

.rank-item {
    text-align: center;
    position: relative;
    width: 20%;
}

.rank-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 15px;
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rank-item:hover .rank-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(46, 204, 113, 0.3);
}

.rank-item h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
    font-weight: 700;
}

.rank-value {
    color: var(--gray-color);
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.rank-reward {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.rank-bonus {
    font-size: 1rem;
    color: var(--primary-color);
}

.rank-bonus i {
    margin: 0 3px;
}

/* Section voyages simplifiée */
.travel-card {
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.travel-card img {
    height: 200px;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.travel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.travel-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    z-index: 2;
}

.travel-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.2);
}

.travel-card .card-body {
    padding: 15px;
}

.travel-card .card-title {
    margin-bottom: 0;
    font-size: 1.3rem;
}

/* Media queries pour la mise en page responsive */
@media (max-width: 768px) {
    .ranks-container {
        flex-direction: column;
        align-items: center;
    }
    
    .rank-path {
        display: none;
    }
    
    .rank-item {
        width: 80%;
        margin-bottom: 30px;
    }
    
    .travel-card {
        margin-bottom: 20px;
    }
}

@media (min-width: 769px) and (max-width: 991px) {
    .rank-item {
        width: 25%;
    }
    
    .rank-path {
        top: 70px;
    }
}

.btn {
    border: none !important;
}

/* Story Section - Storytelling */
.story-section {
    position: relative;
    background-color: #fafafa;
    overflow: hidden;
}

.story-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 0c8.284 0 15 6.716 15 15 0 8.284-6.716 15-15 15-8.284 0-15-6.716-15-15C0 6.716 6.716 0 15 0zm0 2c-7.18 0-13 5.82-13 13s5.82 13 13 13 13-5.82 13-13S22.18 2 15 2z' fill='%232ecc71' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.6;
}

.story-card {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.story-image-container {
    position: relative;
    margin-bottom: 20px;
}

.story-image {
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.story-image:hover {
    transform: scale(1.03);
}

.story-badge {
    position: absolute;
    top: 20px;
    left: -10px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: white;
    padding: 8px 18px;
    border-radius: 0 30px 30px 0;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.story-badge::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    border-top: 10px solid #16a085;
    border-left: 10px solid transparent;
    filter: brightness(0.8);
}

.story-timeline {
    position: relative;
    margin: 30px 0;
    padding-left: 20px;
    border-left: 3px solid rgba(46, 204, 113, 0.2);
}

.story-step {
    position: relative;
    margin-bottom: 20px;
    padding-left: 20px;
}

.story-step:before {
    content: '';
    position: absolute;
    left: -11px;
    top: 6px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--primary-color);
}

.highlight-step:before {
    background: var(--primary-color);
}

.story-year {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.highlighted {
    background: linear-gradient(120deg, rgba(46, 204, 113, 0.2) 0%, rgba(46, 204, 113, 0.2) 100%);
    background-repeat: no-repeat;
    background-size: 100% 40%;
    background-position: 0 bottom;
    padding: 0 5px;
}

.story-quote {
    position: relative;
    margin-top: 25px;
    padding: 15px 20px;
    background-color: rgba(46, 204, 113, 0.1);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 10px 10px 0;
    font-style: italic;
}

.quote-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 10px;
    opacity: 0.8;
}

.story-message {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(46, 204, 113, 0.1) 20%, rgba(46, 204, 113, 0.1) 80%, rgba(255, 255, 255, 0) 100%);
    padding: 15px;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.highlight-text {
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .story-card {
        padding: 1.5rem;
    }
    
    .story-timeline {
        margin: 20px 0;
    }
}

/* Nouvelle version du storytelling avec gradient au lieu de carte blanche */
.story-section-gradient {
    position: relative;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.05) 0%, rgba(22, 160, 133, 0.1) 100%);
    overflow: hidden;
    padding: 80px 0;
}

.story-section-gradient::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 0c8.284 0 15 6.716 15 15 0 8.284-6.716 15-15 15-8.284 0-15-6.716-15-15C0 6.716 6.716 0 15 0zm0 2c-7.18 0-13 5.82-13 13s5.82 13 13 13 13-5.82 13-13S22.18 2 15 2z' fill='%232ecc71' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.7;
    z-index: 0;
}

.story-card {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.story-image-container {
    position: relative;
    margin-bottom: 20px;
}

.story-image {
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.story-image:hover {
    transform: scale(1.03);
}

.story-badge {
    position: absolute;
    top: 20px;
    left: -10px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: white;
    padding: 8px 18px;
    border-radius: 0 30px 30px 0;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.story-badge::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    border-top: 10px solid #16a085;
    border-left: 10px solid transparent;
    filter: brightness(0.8);
}

.story-timeline {
    position: relative;
    margin: 30px 0;
    padding-left: 20px;
    border-left: 3px solid rgba(46, 204, 113, 0.2);
}

.story-step {
    position: relative;
    margin-bottom: 20px;
    padding-left: 20px;
}

.story-step:before {
    content: '';
    position: absolute;
    left: -11px;
    top: 6px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--primary-color);
}

.highlight-step:before {
    background: var(--primary-color);
}

.story-year {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.highlighted {
    background: linear-gradient(120deg, rgba(46, 204, 113, 0.2) 0%, rgba(46, 204, 113, 0.2) 100%);
    background-repeat: no-repeat;
    background-size: 100% 40%;
    background-position: 0 bottom;
    padding: 0 5px;
}

.story-quote {
    position: relative;
    margin-top: 25px;
    padding: 15px 20px;
    background-color: rgba(46, 204, 113, 0.1);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 10px 10px 0;
    font-style: italic;
}

.quote-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 10px;
    opacity: 0.8;
}

.highlight-text {
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .story-card {
        padding: 1.5rem;
    }
    
    .story-timeline {
        margin: 20px 0;
    }
}

.btn-hero-white {
    padding: 12px 32px;
    font-weight: 600;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

.btn-hero-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: var(--primary-color);
    color: white;
}

.btn-hero-visible {
    padding: 15px 40px;
    font-weight: 700;
    background-color: white;
    color: #1a8d56; /* Couleur verte plus foncée pour meilleur contraste */
    border: none;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
    display: inline-block;
    position: relative;
    z-index: 10;
    text-shadow: none;
}

.btn-hero-visible:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    background: white;
    color: var(--accent-color);
}

/* Animation subtile pour attirer l'attention */
@keyframes pulse-border {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.button-highlight-container {
    position: relative;
    display: inline-block;
    padding: 3px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    z-index: 1;
    animation: pulse-border 2s infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .button-highlight-container {
        display: block;
        width: 100%;
    }
    
    .btn-hero-visible {
        width: 100%;
        text-align: center;
        padding: 15px 20px;
        font-size: 1rem;
    }
}

.btn-average{
    color:white !important;
}

/* Nouveau style pour la section FAQ */
.faq-section {
    position: relative;
    background-color: #f8f9fa;
    background-image: radial-gradient(rgba(100, 100, 100, 0.1) 2px, transparent 2px);
    background-size: 30px 30px;
    padding: 80px 0;
}

.faq-help-text {
    color: #555;
    font-size: 1rem;
}

.faq-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.faq-category-btn {
    background: transparent;
    border: 1px solid #b0b0b0;
    color: #444;
    font-weight: 500;
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    outline: none;
}

.faq-category-btn.active, .faq-category-btn:hover {
    background: linear-gradient(135deg, #555555 0%, #333333 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 15px;
    border-left: 4px solid transparent;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-left-color: rgba(46, 204, 113, 0.5);
}

.faq-card.active {
    border-left-color: #2ecc71;
}

.faq-card-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background-color: #f5f5f5;
    transition: background-color 0.3s ease;
}

.faq-card.active .faq-card-header {
    background-color: #e9f7ef;
    border-bottom-color: rgba(46, 204, 113, 0.2);
}

.faq-card-header h3 {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease;
}

.faq-card.active .faq-card-header h3 {
    color: #2ecc71;
}

.faq-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e0e0e0;
    border-radius: 50%;
    color: #555;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.faq-card.active .faq-icon {
    background-color: #2ecc71;
    color: white;
    transform: rotate(180deg);
}

.faq-icon .fa-minus {
    display: none;
}

.faq-card.active .faq-icon .fa-plus {
    display: none;
}

.faq-card.active .faq-icon .fa-minus {
    display: block;
}

.faq-card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: white;
    font-size: 1rem;
    line-height: 1.6;
}

.faq-card.active .faq-card-body {
    max-height: 500px;
    padding: 20px;
    border-top: none;
}

.faq-card-body p {
    margin: 0;
    color: #555;
}

.btn-outline-success {
    color: #444;
    border-color: #666;
    transition: all 0.3s ease;
    border-radius: 30px;
    padding: 8px 20px;
}

.btn-outline-success:hover {
    background-color: #2ecc71;
    color: white;
    border-color: #2ecc71;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.2);
}

.contact-arrow {
    transition: transform 0.3s ease;
}

.btn-outline-success:hover .contact-arrow {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .faq-categories {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        margin-bottom: 20px;
    }
    
    .faq-categories::-webkit-scrollbar {
        display: none; /* Chrome, Safari and Opera */
    }
    
    .faq-category-btn {
        flex-shrink: 0;
        white-space: nowrap;
        padding: 6px 15px;
        font-size: 0.85rem;
    }
    
    .faq-card-header h3 {
        font-size: 1rem;
    }
}