:root {
    --primary: #2d0068;
    --primary-light: #f3f0fa;
    --primary-dark: #1a0040;
    --shadow: 0 2px 12px rgba(45,0,104,0.06);
    --shadow-hover: 0 4px 20px rgba(45,0,104,0.08);
    --radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --card-bg: rgba(255, 255, 255, 0.9);
    --card-shadow: 0 4px 20px rgba(135, 206, 250, 0.1);
}

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

body {
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #e8f4fd 0%, #f0f8ff 25%, #e6f3ff 50%, #f0f8ff 75%, #e8f4fd 100%);
    position: relative;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(135, 206, 250, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(173, 216, 230, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(176, 196, 222, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 90% 20%, rgba(135, 206, 250, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23add8e6' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2387ceeb' fill-opacity='0.02'%3E%3Cpath d='M20 20c0-5.5 4.5-10 10-10s10 4.5 10 10-4.5 10-10 10-10-4.5-10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.6;
    z-index: -1;
}

.navbar {
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(135, 206, 250, 0.1);
    box-shadow: 0 4px 30px rgba(135, 206, 250, 0.15);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary);
}

.navbar-logo img {
    height: 50px;
    width: auto;
    margin-right: 12px;
}

.navbar-logo span {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.logo-accent {
    color: #00bf63 !important;
}

.navbar-nav {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 500;
    font-size: 16px;
    padding: 12px 0;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
}

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

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

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 12px;
    transition: var(--transition);
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: var(--shadow-hover);
    border-radius: var(--radius);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    padding: 12px 0;
    margin-top: 8px;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.navbar-member {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(45, 0, 104, 0.08) 0%, rgba(45, 0, 104, 0.12) 100%);
    color: var(--primary);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-right: -80px;
    border: 1px solid rgba(45, 0, 104, 0.15);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.navbar-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
}

.navbar-member:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(45, 0, 104, 0.25);
    border-color: var(--primary);
}

.navbar-member:hover::before {
    opacity: 1;
}

.navbar-member i {
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.navbar-member:hover i {
    color: white;
}

.navbar-member-mobile {
    display: none;
}

.navbar-cta {
    background: var(--primary);
    color: white;
    padding: 8px 32px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    border: 2px solid var(--primary);
    min-width: 120px;
    text-align: center;
    display: inline-block;
}

.navbar-cta:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

@media (max-width: 768px) {
    .navbar-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .navbar-container {
        height: 70px;
    }

    .navbar-logo img {
        height: 40px;
    }

    .navbar-logo span {
        display: none;
    }

    .navbar-member {
        display: none;
    }
    
    .navbar-member-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: linear-gradient(135deg, rgba(45, 0, 104, 0.08) 0%, rgba(45, 0, 104, 0.12) 100%);
        color: var(--primary);
        border-radius: 12px;
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        margin-right: 8px;
        border: 1px solid rgba(45, 0, 104, 0.15);
        backdrop-filter: blur(10px);
        position: relative;
        overflow: hidden;
    }
    
    .navbar-member-mobile::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
        border-radius: 12px;
    }
    
    .navbar-member-mobile:hover {
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 6px 20px rgba(45, 0, 104, 0.25);
        border-color: var(--primary);
    }
    
    .navbar-member-mobile:hover::before {
        opacity: 1;
    }
    
    .navbar-member-mobile i {
        font-size: 1.3rem;
        position: relative;
        z-index: 1;
        transition: color 0.3s ease;
    }
    
    .navbar-member-mobile:hover i {
        color: white;
    }
    
    .navbar-cta {
        display: none;
    }
}

.mobile-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: var(--shadow);
    transform: translateY(-100%);
    transition: var(--transition);
    z-index: 999;
    display: none;
}

.mobile-nav.active {
    transform: translateY(0);
    display: block;
}

/* Body scroll lock when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
}

.mobile-nav-list {
    list-style: none;
    padding: 20px;
}

.mobile-nav-item {
    margin-bottom: 16px;
}

.mobile-nav-link {
    display: block;
    padding: 12px 0;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    border-bottom: 1px solid #eee;
    transition: var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link:active,
.mobile-nav-link:focus {
    color: var(--primary);
    background-color: var(--primary-light);
    padding-left: 10px;
}

.mobile-dropdown {
    margin-left: 20px;
    margin-top: 8px;
}

.mobile-dropdown-item {
    display: block;
    padding: 8px 0;
    text-decoration: none;
    color: #666;
    font-size: 14px;
    transition: var(--transition);
}

.mobile-dropdown-item:hover,
.mobile-dropdown-item:active,
.mobile-dropdown-item:focus {
    color: var(--primary);
    background-color: var(--primary-light);
    padding-left: 15px;
}

.mobile-cta {
    background: var(--primary);
    color: white !important;
    padding: 10px 24px !important;
    border-radius: 20px;
    font-weight: 600 !important;
    font-size: 14px;
    text-align: center;
    margin-top: 12px;
    border: 1.5px solid var(--primary);
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(45,0,104,0.15);
}

.mobile-cta:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.main-content {
    margin-top: 0;
    padding: 0;
    min-height: calc(100vh - 80px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.hero {
    text-align: center;
    padding: 60px 0;
}

.hero h1 {
    color: var(--primary);
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    background: var(--primary);
    color: white;
    padding: 15px 30px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    transition: var(--transition);
    border: 2px solid var(--primary);
}

.hero-cta:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 10000;
    transform: translateY(100%);
    transition: var(--transition);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.cookie-icon {
    font-size: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.cookie-text h3 {
    color: var(--primary);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.cookie-text p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-accept {
    background: var(--primary);
    color: white;
}

.cookie-accept:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.cookie-settings {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}

.cookie-settings:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: white;
    border-radius: var(--radius);
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: var(--shadow-hover);
}

.cookie-modal-header {
    padding: 24px 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-modal-header h3 {
    color: var(--primary);
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
}

.cookie-modal-close:hover {
    background: #f5f5f5;
    color: var(--primary);
}

.cookie-modal-body {
    padding: 20px 24px;
}

.cookie-category {
    margin-bottom: 24px;
}

.cookie-category-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 4px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: var(--transition);
    border-radius: 24px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: var(--transition);
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background-color: var(--primary);
}

input:disabled + .cookie-slider {
    background-color: var(--primary);
    opacity: 0.6;
}

input:checked + .cookie-slider:before {
    transform: translateX(26px);
}

.cookie-category-info h4 {
    color: var(--primary);
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.cookie-category-info p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.cookie-modal-footer {
    padding: 0 24px 24px;
    text-align: center;
}

/* ========================================
   MAIN CONTENT STYLES
   ======================================== */

main {
    position: relative;
    z-index: 1;
}

section {
    position: relative;
    z-index: 1;
}

/* ========================================
   HERO SECTION ULTRA MODERNE
   ======================================== */

.hero-modern {
    padding: 60px 20px 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Background Effects */
.hero-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.floating-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.blob-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.blob-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    bottom: 20%;
    left: 20%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particle-float 15s linear infinite;
}

.particle:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.particle:nth-child(2) { top: 40%; right: 30%; animation-delay: -3s; }
.particle:nth-child(3) { bottom: 30%; left: 40%; animation-delay: -6s; }
.particle:nth-child(4) { top: 60%; left: 60%; animation-delay: -9s; }
.particle:nth-child(5) { bottom: 50%; right: 20%; animation-delay: -12s; }

@keyframes particle-float {
    0% { transform: translateY(0px) scale(1); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) scale(0); opacity: 0; }
}

.hero-content-modern {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-text-modern {
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 30px;
    animation: slideInUp 0.8s ease-out;
}

.badge-text {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-title-modern {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.title-line {
    display: block;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease-in-out infinite;
}

.title-line.highlight {
    background: linear-gradient(135deg, #00bf63 0%, #00d673 50%, #00bf63 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1em;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    animation: slideInUp 0.8s ease-out 0.4s both;
}

/* Feature Cards Modern */
.hero-features-modern {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    animation: slideInUp 0.8s ease-out 0.6s both;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

.feature-square {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 255, 0.9) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(45, 0, 104, 0.1);
    border-radius: 20px;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(45, 0, 104, 0.08);
    flex: 1;
    max-width: 160px;
    min-width: 130px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-square::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #28a745 0%, #20c997 50%, #17a2b8 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-square:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(45, 0, 104, 0.15);
    border-color: rgba(45, 0, 104, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 249, 255, 1) 100%);
}

.feature-square:hover::before {
    opacity: 1;
}

.feature-square .feature-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    text-shadow: 0 2px 4px rgba(45, 0, 104, 0.1);
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(45, 0, 104, 0.2);
}

.feature-icon-modern {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 3px 12px rgba(45, 0, 104, 0.3);
}

.feature-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 6px;
    margin-top: 0;
}

.feature-content p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

.hero-description-modern {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.hero-reassurance {
    font-size: 0.9rem;
    color: #888;
    text-align: center;
    margin-top: 15px;
    font-style: italic;
    animation: slideInUp 0.8s ease-out 0.8s both;
}

/* Modern Buttons */
.hero-actions-modern {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: slideInUp 0.8s ease-out 0.8s both;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 160px;
    justify-content: center;
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-modern:hover::before {
    left: 100%;
}

.btn-primary-modern {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    box-shadow: 0 8px 25px rgba(45, 0, 104, 0.3);
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(45, 0, 104, 0.4);
}

.btn-secondary-modern {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    border: 2px solid var(--primary);
    backdrop-filter: blur(10px);
}

.btn-secondary-modern:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 0, 104, 0.2);
}

.btn-tertiary-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2rem;
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-tertiary-modern:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn-modern:hover .btn-icon {
    transform: translateX(3px);
}

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

/* Hero Visual Modern */
.hero-visual-modern {
    position: relative;
    z-index: 3;
    animation: slideInRight 1s ease-out 0.4s both;
}

.hero-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    max-width: 650px;
    max-height: 950px;
    margin: 0 auto;
    aspect-ratio: 6/7;
}

.image-glow {
    display: none;
}

.hero-image-modern {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    transition: transform 0.3s ease;
    object-fit: cover;
    aspect-ratio: 6/7;
    max-width: 600px;
    max-height: 950px;
}

/* Effet hover supprimé sur l'image hero */

.floating-stats {
    position: absolute;
    top: 100px;
    right: 350px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 15px 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    animation: float-stats 3s ease-in-out infinite;
}

.stat-card:nth-child(2) {
    animation-delay: 1.5s;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

@keyframes float-stats {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

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

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 10px 24px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.hero-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.hero-image img {
    width: 100%;
    height: auto;
    max-width: 600px;
    display: block;
}

/* Responsive Hero Modern */
@media (max-width: 1024px) {
    .hero-content-modern {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-title-modern {
        text-align: center;
    }
    
    .hero-subtitle {
        text-align: center;
    }
    
    .hero-actions-modern {
        justify-content: center;
    }
    
    .floating-stats {
        position: relative;
        top: auto;
        right: auto;
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
    }
    
    .stat-card {
        min-width: 120px;
    }
}

@media (max-width: 768px) {
    .hero-modern {
        padding: 100px 20px 60px;
        min-height: auto;
    }
    
    .hero-title-modern {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .hero-features-modern {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .feature-square {
        max-width: 200px;
        min-width: 180px;
        padding: 20px 15px;
    }
    
    .feature-square .feature-content h4 {
        font-size: 0.9rem;
    }
    
    .feature-card {
        padding: 20px;
        gap: 15px;
    }
    
    .feature-icon-modern {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .feature-content h4 {
        font-size: 1rem;
    }
    
    .feature-content p {
        font-size: 0.9rem;
    }
    
    .btn-modern {
        padding: 14px 24px;
        font-size: 0.9rem;
        min-width: 150px;
    }
    
    .hero-actions-modern {
        flex-direction: column;
        align-items: center;
    }
    
    .floating-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-card {
        min-width: 100px;
    }
}

/* ========================================
   FOOTER STYLES
   ======================================== */

.footer {
    background: var(--primary-dark);
    color: white;
    margin-top: 80px;
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-section h4 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
}

/* Logo et description */
.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.footer-logo img {
    height: 40px;
    width: auto;
    margin-right: 12px;
}

.footer-logo span {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.footer-description {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 15px;
    max-width: none;
    margin-bottom: 1.5rem;
}

.footer-contact-info {
    margin-top: 1rem;
}

.footer-contact-info .contact-email,
.footer-contact-info .contact-phone {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #e0e0e0;
    font-size: 14px;
}

.footer-contact-info .contact-email i,
.footer-contact-info .contact-phone i {
    margin-right: 0.5rem;
    color: #ffffff;
    width: 16px;
    text-align: center;
}

.footer-contact-info .contact-email a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info .contact-email a:hover {
    color: #ffffff;
}


.footer-social-contact {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-contact h5 {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 0, 104, 0.3);
}

.social-link i {
    font-size: 1.1rem;
}




.footer-instagram {
    color: #e0e0e0;
    font-size: 15px;
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-instagram i {
    color: var(--accent-color);
    font-size: 16px;
}

/* Liens rapides */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-cta {
    color: var(--accent-color) !important;
    font-weight: 600 !important;
}

.footer-cta:hover {
    color: #00d673 !important;
}

/* Contact */
.footer-contact {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #e0e0e0;
}

.contact-item i {
    color: var(--accent-color);
    width: 20px;
    margin-right: 12px;
    font-size: 14px;
}

.contact-item a {
    color: #e0e0e0;
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: white;
}

/* Réseaux sociaux */
.footer-social h4 {
    margin-bottom: 16px;
    margin-top: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.social-links i {
    font-size: 16px;
}

/* Footer bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.legal-links {
    display: flex;
    list-style: none;
    gap: 24px;
    margin: 0;
    padding: 0;
}

.legal-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
}

.legal-links a:hover {
    color: white;
}

.footer-copyright {
    color: #b0b0b0;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer {
        margin-top: 120px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .footer-main .container {
        padding: 0 20px;
    }
    
    .footer-bottom .container {
        padding: 0 20px;
    }
    
    .footer-description {
        max-width: none;
    }
    
    .social-links {
        gap: 0.75rem;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .social-link i {
        font-size: 1rem;
    }
    
    .footer-social-contact {
        margin-top: 1rem;
        padding-top: 0.75rem;
    }
    
    .footer-social-contact h5 {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .legal-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    
    .cookie-container {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 12px;
    }
    
    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        max-width: 150px;
        justify-content: center;
    }
    
    .cookie-modal-content {
        margin: 20px;
        max-height: calc(100vh - 40px);
    }
}

/* Section Pourquoi choisir Propelys */
.why-choose-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8faff 0%, #f0f8ff 50%, #e6f3ff 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(135, 206, 250, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(173, 216, 230, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(176, 196, 222, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.reassurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.reassurance-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.reassurance-card:nth-child(2) {
    animation-delay: 0.6s;
}

.reassurance-card:nth-child(3) {
    animation-delay: 0.8s;
}

.reassurance-card:nth-child(4) {
    animation-delay: 1s;
}

.reassurance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(132, 109, 161, 0.05), transparent);
    transition: left 0.6s ease;
}

.reassurance-card:hover::before {
    left: 100%;
}

.reassurance-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(45, 0, 104, 0.15);
    border-color: rgba(45, 0, 104, 0.2);
}

.reassurance-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(45, 0, 104, 0.3);
    transition: all 0.3s ease;
    position: relative;
}


.reassurance-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.reassurance-card:hover .reassurance-content h3 {
    color: var(--primary);
}

.reassurance-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

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

/* Responsive pour la section pourquoi choisir */
@media (max-width: 768px) {
    .why-choose-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .reassurance-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .reassurance-card {
        padding: 30px 20px;
    }
    
    .reassurance-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .reassurance-content h3 {
        font-size: 1.2rem;
    }
}

/* Section About Us */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #dee2e6, transparent);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Zone visuelle */
.about-visual {
    position: relative;
}

.about-image-container {
    width: 100%;
    height: 550px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about-image.active {
    opacity: 1;
}

/* Contenu texte */
.about-text {
    padding-left: 20px;
}

.about-tag {
    display: inline-block;
    background: rgba(135, 206, 250, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 30px;
}

/* Navigation des onglets */
.tab-navigation {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 12px 24px;
    border: 2px solid #e0e0e0;
    background: transparent;
    color: #666;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(45, 0, 104, 0.3);
}

.tab-btn:hover:not(.active) {
    border-color: var(--primary);
    color: var(--primary);
}

/* Contenu des onglets */
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.tab-content.active {
    display: block;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Chiffres clés discrets */
.key-stats-modern {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: flex-start;
    position: relative;
}

.stat-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.stat-modern:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-modern:nth-child(3) {
    animation-delay: 0.4s;
}

.stat-rectangle {
    width: 120px;
    height: 50px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-rectangle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat-modern:hover .stat-rectangle::before {
    left: 100%;
}

.stat-modern:hover .stat-rectangle {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    border-color: rgba(34, 197, 94, 0.2);
}

.stat-number-modern {
    font-size: 1.4rem;
    font-weight: 600;
    color: #22C55E;
    line-height: 1;
    z-index: 2;
    position: relative;
}

.stat-label-modern {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.stat-modern:hover .stat-label-modern {
    color: #22C55E;
}

/* Ancien style pour compatibilité */
.key-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.3;
    font-weight: 500;
}

/* Boutons CTA */
.about-cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.about-cta-small {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 0, 104, 0.2);
}

.about-cta-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 0, 104, 0.3);
}

.about-cta-small.secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: 0 4px 15px rgba(45, 0, 104, 0.1);
}

.about-cta-small.secondary:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 8px 25px rgba(45, 0, 104, 0.2);
}

.about-cta-small i {
    transition: transform 0.3s ease;
}

.about-cta-small:hover i {
    transform: translateX(3px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive pour About Us */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
        grid-template-areas: 
            "text"
            "visual";
    }
    
    .about-text {
        padding-left: 0;
        grid-area: text;
        text-align: center;
    }
    
    .about-visual {
        grid-area: visual;
    }
    
    .about-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .about-description {
        font-size: 1rem;
        text-align: center;
    }
    
    .tab-navigation {
        justify-content: center;
    }
    
    .about-image-container {
        height: 350px;
    }
    
    .key-stats-modern {
        gap: 25px;
        justify-content: center;
    }
    
    .stat-rectangle {
        width: 100px;
        height: 45px;
    }
    
    .stat-number-modern {
        font-size: 1.2rem;
    }
    
    .stat-label-modern {
        font-size: 0.75rem;
    }
    
    .about-cta-buttons {
        justify-content: center;
        gap: 12px;
    }
    
    .about-cta-small {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .key-stats {
        gap: 25px;
        justify-content: center;
    }
    
    .stat-item {
        text-align: center;
        align-items: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
        text-align: center;
    }
}

/* Section Comment ça marche */
.how-it-works-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.how-it-works-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.modern-steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.step-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 0.8s ease-out;
}

.step-card:nth-child(2) {
    animation-delay: 0.2s;
}

.step-card:nth-child(3) {
    animation-delay: 0.4s;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(45, 0, 104, 0.05), transparent);
    transition: left 0.6s ease;
}

.step-card:hover::before {
    left: 100%;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(45, 0, 104, 0.15);
    border-color: rgba(45, 0, 104, 0.2);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(45, 0, 104, 0.1);
    line-height: 1;
    z-index: 1;
}



.step-content-modern h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.step-content-modern p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Zone de transparence tarifaire */
.transparency-info {
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.transparency-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(45, 0, 104, 0.1);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.transparency-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(45, 0, 104, 0.1);
    border-color: rgba(45, 0, 104, 0.2);
}

.transparency-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(45, 0, 104, 0.2);
}

.transparency-icon i {
    font-size: 1.5rem;
    color: white;
}

.transparency-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.transparency-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.how-it-works-cta {
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--primary);
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary);
}

.cta-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 0, 104, 0.2);
}

.cta-secondary i {
    transition: transform 0.3s ease;
}

.cta-secondary:hover i {
    transform: translateX(5px);
}

/* Responsive pour Comment ça marche */
@media (max-width: 768px) {
    .how-it-works-section {
        padding: 60px 0;
    }
    
    .modern-steps-container {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
    }
    
    .step-card {
        padding: 30px 25px;
    }
    
    .step-number {
        font-size: 2.5rem;
        top: 15px;
        right: 15px;
    }
    
    .step-content-modern h3 {
        font-size: 1.2rem;
    }
    
    .step-content-modern p {
        font-size: 0.95rem;
    }
    
    .transparency-info {
        padding: 0 15px;
    }
    
    .transparency-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
        gap: 15px;
    }
    
    .transparency-icon {
        width: 50px;
        height: 50px;
    }
    
    .transparency-icon i {
        font-size: 1.3rem;
    }
    
    .transparency-content h4 {
        font-size: 1rem;
    }
    
    .transparency-content p {
        font-size: 0.9rem;
    }
    
    .cta-secondary {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

/* Section Avis Clients */
.testimonials-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.testimonial-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(45, 0, 104, 0.05);
    border: 2px solid transparent;
    border-radius: 25px;
    padding: 12px 25px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-tab:hover {
    background: rgba(45, 0, 104, 0.1);
    color: var(--primary-dark);
}

.testimonial-tab.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.testimonial-tab i {
    font-size: 1rem;
}

.testimonials-carousel {
    display: none;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.testimonials-carousel.active {
    display: block;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(45, 0, 104, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(45, 0, 104, 0.1);
    border-color: rgba(45, 0, 104, 0.2);
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #FFD700;
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
}

.testimonial-card blockquote::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary);
    position: absolute;
    top: -15px;
    left: -10px;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    font-size: 1rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: #666;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary);
    background: white;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 0, 104, 0.1);
}

.carousel-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 0, 104, 0.2);
}

.carousel-btn i {
    font-size: 1.2rem;
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(45, 0, 104, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Responsive pour Avis */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-tabs {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .testimonial-tab {
        width: 200px;
        justify-content: center;
    }
    
    .testimonial-card {
        padding: 30px 25px;
        margin: 0 20px;
    }
    
    .testimonial-card blockquote {
        font-size: 1rem;
    }
    
    .carousel-controls {
        gap: 20px;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
            }
}

/* ========================================
   SECTION TARIFS ÉLÉGANTE
   ======================================== */

.pricing-elegant-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
}

.pricing-elegant-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-elegant-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.pricing-elegant-header .section-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-elegant-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.pricing-elegant-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
}

.pricing-elegant-card.featured {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--primary);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.service-info p {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.3;
}

.service-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
    margin-left: 12px;
}

.price-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid #e9ecef;
    border-radius: 16px;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.price-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #28a745, #20c997);
}

.price-old {
    text-align: center;
    opacity: 0.7;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.price-old .amount {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    color: #6c757d;
    text-decoration: line-through;
    text-decoration-color: #dc3545;
    text-decoration-thickness: 2px;
}

.price-old .unit {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.price-new {
    text-align: center;
    position: relative;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.price-new .amount {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(40, 167, 69, 0.1);
}

.price-new .unit {
    font-size: 1.1rem;
    color: #28a745;
    font-weight: 600;
    margin-top: 2px;
}

.savings-tag {
    position: absolute;
    top: -8px;
    right: -10px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
    transform: rotate(2deg);
    animation: pulse 2s infinite;
}

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

.card-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 0;
    font-size: 0.75rem;
    color: #555;
}

.benefit i {
    color: var(--primary);
    font-size: 0.65rem;
    width: 12px;
}

.pricing-elegant-info {
    margin-bottom: 50px;
}

.info-elegant-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #e9ecef;
}

.info-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.info-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-content li {
    padding: 6px 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
    position: relative;
    padding-left: 18px;
}

.info-content li::before {
    content: '•';
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.pricing-elegant-cta {
    text-align: center;
}

.elegant-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.elegant-cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45, 0, 104, 0.3);
}

/* Responsive Design pour les tarifs élégants */
@media (max-width: 1200px) {
    .pricing-elegant-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .pricing-elegant-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .pricing-elegant-header .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .pricing-elegant-section {
        padding: 60px 0;
    }

    .pricing-elegant-header .section-title {
        font-size: 2rem;
    }

    .pricing-elegant-header .section-subtitle {
        font-size: 1rem;
    }

    .pricing-elegant-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 0 15px 40px 15px;
    }

    .pricing-elegant-card {
        padding: 25px 20px;
    }

    .card-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .service-icon {
        align-self: flex-end;
        margin-left: 0;
    }

    .price-section {
        gap: 8px;
        text-align: center;
        padding: 15px;
    }
    
    .price-new .amount {
        font-size: 1.6rem;
    }
    
    .price-old .amount {
        font-size: 1.1rem;
    }

    .info-elegant-card {
        margin: 0 15px;
        padding: 25px 20px;
    }

    .elegant-cta-button {
        padding: 14px 25px;
        font-size: 0.95rem;
    }
}

/* ========================================
   SECTION TARIFS PARTICULIERS
   ======================================== */

.pricing-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23e8e4f7" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.pricing-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-header .section-subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #666;
    max-width: 800px;
    margin: 0 auto 30px;
}

.credit-info {
    margin-top: 25px;
}

.credit-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 20px;
    background: rgba(45, 0, 104, 0.05);
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(45, 0, 104, 0.1);
}

.credit-link:hover {
    background: rgba(45, 0, 104, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 0, 104, 0.15);
}

.credit-icon {
    font-size: 1.2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 10px 40px rgba(45, 0, 104, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(45, 0, 104, 0.05);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #28a745 0%, #20c997 50%, #17a2b8 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(45, 0, 104, 0.15);
    border-color: rgba(45, 0, 104, 0.2);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 25px;
}

.pricing-card-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
}

.pricing-card-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.price-brut {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.price-amount {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #666;
    line-height: 1;
}

.price-unit {
    font-size: 1rem;
    color: #888;
    font-weight: 500;
}

.price-arrow {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 600;
    margin: 0 10px;
}

.price-net {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.price-net .price-amount {
    color: #28a745;
    font-size: 2.2rem;
}

.price-note {
    display: block;
    font-size: 0.85rem;
    color: #28a745;
    font-weight: 500;
    margin-top: 5px;
}

.pricing-note {
    background: linear-gradient(135deg, rgba(45, 0, 104, 0.03) 0%, rgba(45, 0, 104, 0.08) 100%);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(45, 0, 104, 0.1);
    position: relative;
    z-index: 2;
}

.note-content p {
    margin: 0 0 15px 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.note-content p:last-child {
    margin-bottom: 0;
}

    .highlight-note {
        color: var(--primary-dark) !important;
        font-size: 1.1rem !important;
        text-align: center;
        margin-top: 20px !important;
    }

/* Responsive Design pour les tarifs */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 60px 0;
    }

    .pricing-header .section-title {
        font-size: 2rem;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 0 15px 40px 15px;
    }

    .pricing-card {
        padding: 25px 20px;
    }

    .pricing-card-header h3 {
        font-size: 1.2rem;
    }

    .pricing-card-content {
        flex-direction: column;
        gap: 15px;
    }

    .price-brut, .price-net {
        min-width: auto;
    }

    .price-amount {
        font-size: 1.8rem;
    }

    .price-net .price-amount {
        font-size: 2rem;
    }

    .price-arrow {
        transform: rotate(90deg);
        margin: 5px 0;
    }

    .pricing-note {
        margin: 0 15px;
        padding: 25px 20px;
    }

    .note-content p {
        font-size: 0.95rem;
    }

    .highlight-note {
        font-size: 1rem !important;
    }
}

/* Responsive Design pour les services modern */
@media (max-width: 1024px) {
    .services-modern-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .services-modern-section {
        padding: 60px 0;
    }

    .services-modern-header .section-title {
        font-size: 2rem;
    }

    .services-modern-header .section-subtitle {
        font-size: 1.1rem;
    }

    .services-modern-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 0 15px 40px 15px;
    }

    .service-modern-card {
        padding: 30px 20px;
    }

    .service-modern-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .service-modern-content h3 {
        font-size: 1.3rem;
    }

    .service-description {
        font-size: 0.95rem;
    }

    .feature-tag {
        font-size: 0.85rem;
        padding: 6px 12px;
    }

    .services-modern-cta {
        margin: 0 15px;
        padding: 35px 25px;
    }

    .cta-content h3 {
        font-size: 1.5rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
}

/* ========================================
   SECTION SERVICES MODERN
   ======================================== */

.services-modern-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.services-modern-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1.5" fill="%23e8e4f7" opacity="0.4"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.6;
    z-index: 1;
}

.services-modern-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.services-modern-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-modern-header .section-subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.services-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.service-modern-card {
    background: white;
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 15px 50px rgba(45, 0, 104, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(45, 0, 104, 0.05);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #28a745 0%, #20c997 50%, #17a2b8 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-modern-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(45, 0, 104, 0.15);
    border-color: rgba(45, 0, 104, 0.2);
}

.service-modern-card:hover::before {
    opacity: 1;
}

.service-modern-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(45, 0, 104, 0.3);
    transition: all 0.3s ease;
}

.service-modern-card:hover .service-modern-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(45, 0, 104, 0.4);
}

.service-modern-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.service-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(45, 0, 104, 0.05);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--primary-dark);
    font-weight: 500;
    border: 1px solid rgba(45, 0, 104, 0.1);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(45, 0, 104, 0.1);
    transform: translateX(5px);
}

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

.services-modern-cta {
    background: linear-gradient(135deg, rgba(45, 0, 104, 0.03) 0%, rgba(45, 0, 104, 0.08) 100%);
    border-radius: 24px;
    padding: 50px;
    text-align: center;
    border: 1px solid rgba(45, 0, 104, 0.1);
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   SECTION PRESTATIONS INCLUSES
   ======================================== */

.services-included-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    position: relative;
    overflow: hidden;
}

.services-included-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23e8e4f7" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.services-included-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.services-included-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.title-icon {
    font-size: 2rem;
    -webkit-text-fill-color: var(--primary);
    background: none;
}

.services-included-header .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: white;
    border-radius: var(--radius);
    padding: 30px 25px;
    box-shadow: var(--shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 6px 20px rgba(45, 0, 104, 0.25);
    transition: all 0.3s ease;
}

.service-card:hover .service-card-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(45, 0, 104, 0.35);
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
    line-height: 1.3;
}

.service-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
    flex-grow: 1;
}

.services-note {
    position: relative;
    z-index: 2;
}

.note-card {
    background: linear-gradient(135deg, rgba(45, 0, 104, 0.05) 0%, rgba(45, 0, 104, 0.02) 100%);
    border: 2px solid rgba(45, 0, 104, 0.1);
    border-radius: var(--radius);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    max-width: 600px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.note-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.note-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.note-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design pour les prestations incluses */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-card {
        padding: 25px 20px;
    }
}

@media (max-width: 768px) {
    .services-included-section {
        padding: 60px 0;
    }

    .services-included-header .section-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }

    .title-icon {
        font-size: 1.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin: 0 30px 60px;
    }

    .service-card {
        padding: 20px 15px;
    }

    .service-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .service-card h3 {
        font-size: 1rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }

    .note-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .note-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .services-included-header .section-title {
        font-size: 1.8rem;
    }

    .services-included-header .section-subtitle {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 0 25px 60px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }
}

/* ========================================
   SECTION TYPES DE PRESTATIONS - CARROUSEL
   ======================================== */

/* Section Types de Prestations - Carrousel */
.services-types-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #f3f0fa 100%);
    position: relative;
    overflow: hidden;
}

.services-types-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e8e4f7" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23e8e4f7" opacity="0.3"/><circle cx="50" cy="10" r="0.5" fill="%23e8e4f7" opacity="0.2"/><circle cx="10" cy="60" r="0.5" fill="%23e8e4f7" opacity="0.2"/><circle cx="90" cy="40" r="0.5" fill="%23e8e4f7" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.services-types-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.services-types-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-types-header .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Carrousel Container */
.services-carousel-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.services-carousel {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background: white;
}

/* Slides */
.service-slide {
    display: none;
}

.service-slide.active {
    display: block;
}

.service-slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
}

/* Image Section */
.service-image {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

/* Content Section */
.service-content {
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,249,255,0.95) 100%);
    backdrop-filter: blur(10px);
}

.service-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 0, 104, 0.02) 0%, rgba(45, 0, 104, 0.01) 100%);
    pointer-events: none;
}

.service-content h3 {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    line-height: 1.2;
    position: relative;
}

.service-content h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 2px;
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(45, 0, 104, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.detail-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 0 2px 2px 0;
}

.detail-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(45, 0, 104, 0.1);
}

.detail-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.detail-value {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    font-weight: 500;
}

.detail-item.credit-impot {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(40, 167, 69, 0.05) 100%);
    border: 2px solid rgba(40, 167, 69, 0.2);
    position: relative;
}

.detail-item.credit-impot::before {
    background: linear-gradient(180deg, #28a745 0%, #20c997 100%);
}

.detail-item.credit-impot .detail-value {
    color: #28a745;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-item.credit-impot .detail-value::before {
    content: '✓';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #28a745;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Navigation */
.carousel-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

/* Navigation mobile (cachée par défaut) */
.carousel-navigation.mobile-only {
    display: none;
}

.carousel-nav-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(45, 0, 104, 0.1);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.carousel-nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.carousel-nav-btn:hover::before {
    opacity: 1;
}

.carousel-nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45, 0, 104, 0.2);
}

.carousel-nav-btn:hover i {
    color: white;
}

.carousel-nav-btn i {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.carousel-nav-btn:active {
    transform: translateY(0);
}

.carousel-indicators {
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 25px;
    box-shadow: var(--shadow);
}

.indicator {
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 50%;
    background: rgba(45, 0, 104, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.indicator.active {
    background: var(--primary);
    transform: scale(1.3);
}

.indicator.active::before {
    width: 100%;
    height: 100%;
}

.indicator:hover {
    background: var(--primary);
    transform: scale(1.2);
}

/* Responsive Design pour le carrousel */
@media (max-width: 1024px) {
    .service-slide-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .service-image {
        min-height: 120px;
    }

    .service-content {
        padding: 40px 30px;
    }

    .service-content h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .services-types-section {
        padding: 50px 0;
    }

    .services-types-header .section-title {
        font-size: 1.8rem;
    }

    .services-types-header .section-subtitle {
        font-size: 1rem;
    }

    .service-slide-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        grid-template-areas: 
            "navigation"
            "content"
            "image";
    }

    .carousel-navigation {
        gap: 20px;
        margin-top: 20px;
    }

    .carousel-navigation.mobile-only {
        display: flex;
        grid-area: navigation;
        margin: 15px 0 20px 0;
        order: 1;
    }

    .carousel-navigation:not(.mobile-only) {
        display: none;
    }

    .service-content {
        grid-area: content;
        padding: 30px 25px;
        order: 2;
    }

    .service-image {
        grid-area: image;
        min-height: 120px;
        order: 3;
    }

    .service-content h3 {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }

    .service-details {
        gap: 15px;
    }

    .detail-item {
        padding: 14px 16px;
    }

    .carousel-nav-btn {
        width: 38px;
        height: 38px;
        font-size: 0.8rem;
    }

    .carousel-indicators {
        padding: 6px 12px;
    }

    .indicator {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    .services-types-header .section-title {
        font-size: 1.6rem;
    }

    .service-content {
        padding: 25px 20px;
    }

    .service-content h3 {
        font-size: 1.4rem;
    }

    .detail-item {
        padding: 12px 14px;
    }

    .carousel-navigation {
        flex-direction: row;
        gap: 15px;
        margin: 0 0 15px 0;
    }

    .carousel-nav-btn {
        width: 36px;
        height: 36px;
        font-size: 0.75rem;
    }

    .carousel-indicators {
        order: 0;
    }
}

/* Section Tarifs Entreprises Simple */
.enterprise-simple-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.enterprise-simple-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #dee2e6, transparent);
}

.enterprise-simple-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.enterprise-image {
    text-align: center;
}

.enterprise-visual {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.enterprise-visual:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.enterprise-text {
    padding-left: 20px;
}

.enterprise-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, #6c5ce7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.enterprise-description {
    font-size: 1.2rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 30px;
}

.enterprise-advantages {
    margin-bottom: 40px;
}

.advantage-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #495057;
}

.advantage-item i {
    color: var(--primary);
    margin-right: 15px;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.enterprise-cta-simple {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
    .enterprise-simple-content {
        gap: 40px;
    }
    
    .enterprise-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .enterprise-simple-section {
        padding: 60px 0;
    }
    
    .enterprise-simple-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        grid-template-areas: 
            "text"
            "image";
    }
    
    .enterprise-text {
        padding-left: 0;
        grid-area: text;
    }
    
    .enterprise-image {
        grid-area: image;
    }
    
    .enterprise-title {
        font-size: 2rem;
    }
    
    .enterprise-description {
        font-size: 1.1rem;
    }
    
    .advantage-item {
        justify-content: center;
        font-size: 1rem;
    }
    
    .enterprise-cta-simple {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .enterprise-cta-simple .btn-modern {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .enterprise-title {
        font-size: 1.8rem;
    }
    
    .enterprise-description {
        font-size: 1rem;
    }
    
    .advantage-item {
        font-size: 0.95rem;
    }
}

/* Section Calendrier Inline */
.cal-inline-section {
    padding: 80px 0;
    position: relative;
}

.cal-inline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
}

.cal-inline-header {
    text-align: center;
    margin-bottom: 50px;
}

.cal-inline-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, #6c5ce7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cal-inline-header .section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.cal-inline-container {
    width: 100%;
    padding: 0;
}

#my-cal-inline-decouvrir {
    min-height: 600px;
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .cal-inline-section {
        padding: 60px 0;
    }
    
    .cal-inline-header .section-title {
        font-size: 2rem;
    }
    
    .cal-inline-header .section-subtitle {
        font-size: 1.1rem;
    }
    
    .cal-inline-container {
        padding: 0;
    }
    
    #my-cal-inline-decouvrir {
        min-height: 500px;
    }
}

@media (max-width: 480px) {
    .cal-inline-header .section-title {
        font-size: 1.8rem;
    }
    
    .cal-inline-header .section-subtitle {
        font-size: 1rem;
    }
    
    .cal-inline-container {
        padding: 0;
    }
    
    #my-cal-inline-decouvrir {
        min-height: 400px;
    }
}

/* ===== STYLES PAGE CRÉDIT D'IMPÔT ===== */

/* Style moderne pour la page crédit d'impôt */
.credit-steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.credit-step-card {
    background: linear-gradient(145deg, #ffffff 0%, #fafbff 100%);
    border: 1px solid rgba(45, 0, 104, 0.08);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(45, 0, 104, 0.06);
    overflow: hidden;
}

.credit-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(45, 0, 104, 0.12);
    border-color: rgba(45, 0, 104, 0.15);
}

.credit-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(45, 0, 104, 0.2);
    position: relative;
}



.credit-step-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.credit-step-description {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.credit-highlight {
    background: linear-gradient(135deg, var(--primary-light) 0%, #f8f9ff 100%);
    border: 2px solid var(--primary);
    border-radius: 16px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.credit-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(45, 0, 104, 0.03) 50%, transparent 70%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.credit-highlight h3 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.credit-highlight p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.credit-cta {
    text-align: center;
    margin: 3rem 0;
}

.credit-cta a {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(45, 0, 104, 0.2);
    border: 2px solid transparent;
}

.credit-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(45, 0, 104, 0.3);
    border-color: var(--primary-dark);
}

.credit-cta i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.credit-cta a:hover i {
    transform: translateX(4px);
}

/* Section Exemples Concrets */
.examples-section {
    padding: 4rem 0;
    margin: 4rem 0;
}

.examples-container {
    max-width: 1000px;
    margin: 0 auto;
}

.examples-header {
    text-align: center;
    margin-bottom: 3rem;
}

.examples-header h2 {
    color: var(--primary-dark);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.examples-header p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.examples-layout {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.examples-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.example-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(45, 0, 104, 0.08);
    border: 1px solid rgba(45, 0, 104, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.examples-elegant {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 12px 40px rgba(45, 0, 104, 0.08);
    border: 1px solid rgba(45, 0, 104, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 800px;
    width: 100%;
}

.examples-elegant:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(45, 0, 104, 0.12);
}

.examples-compact:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(45, 0, 104, 0.12);
}

.examples-elegant h3 {
    color: var(--primary-dark);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.example-card {
    background: linear-gradient(145deg, #fafbff 0%, #f8f9ff 100%);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(45, 0, 104, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.example-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.example-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45, 0, 104, 0.1);
    border-color: rgba(45, 0, 104, 0.15);
}

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

.example-title {
    color: var(--primary-dark);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.example-calculation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    padding: 0.5rem;
    background: rgba(45, 0, 104, 0.03);
    border-radius: 8px;
}

.example-formula {
    color: #555;
    font-weight: 500;
}

.example-result {
    color: var(--primary-dark);
    font-weight: 700;
}

.example-final {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background: linear-gradient(135deg, #00bf63 0%, #00a857 100%);
    border-radius: 12px;
    color: white;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(0, 191, 99, 0.3);
}

.example-final-label {
    font-weight: 600;
    color: white;
}

.example-final-amount {
    font-weight: 700;
}

.examples-simulation-btn {
    text-align: center;
    margin-top: 2rem;
}

.examples-simulation-btn a {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2rem;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(45, 0, 104, 0.2);
    border: 2px solid rgba(45, 0, 104, 0.2);
    position: relative;
    overflow: hidden;
}

.examples-simulation-btn a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(45, 0, 104, 0.1), transparent);
    transition: left 0.6s ease;
}

.examples-simulation-btn a:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(45, 0, 104, 0.3);
    border-color: rgba(45, 0, 104, 0.3);
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a0040 100%);
}

.examples-simulation-btn a:hover::before {
    left: 100%;
}

.examples-simulation-btn i {
    font-size: 1.1rem;
    transition: all 0.4s ease;
    color: white;
}

.examples-simulation-btn a:hover i {
    transform: translateX(3px) scale(1.05);
    color: white;
}

.example-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(45, 0, 104, 0.12);
}

.example-title {
    color: var(--primary-dark);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.calculation-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
    border-radius: 8px;
    border: 1px solid rgba(45, 0, 104, 0.08);
}

.calculation-formula {
    color: #555;
    font-size: 0.95rem;
    font-weight: 500;
}

.calculation-result {
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1rem;
}

.final-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    color: white;
}

.final-price-label {
    font-weight: 600;
    font-size: 1rem;
}

.final-price-amount {
    font-weight: 700;
    font-size: 1.2rem;
}

/* Section Qui peut en bénéficier */
.eligibility-section {
    padding: 4rem 0;
    margin: 4rem 0;
    background: linear-gradient(135deg, #fafbff 0%, #f8f9ff 100%);
}

.eligibility-header {
    text-align: center;
    margin-bottom: 3rem;
}

.eligibility-header h2 {
    color: var(--primary-dark);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.eligibility-header p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.eligibility-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.eligibility-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(45, 0, 104, 0.08);
    border: 1px solid rgba(45, 0, 104, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.eligibility-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(45, 0, 104, 0.12);
    border-color: rgba(45, 0, 104, 0.15);
}

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

.main-card {
    grid-column: 1 / -1;
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    font-size: 1.5rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(45, 0, 104, 0.2);
    margin-left: auto;
    margin-right: auto;
}

.eligibility-card h3 {
    color: var(--primary-dark);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.eligibility-main {
    font-size: 1.1rem;
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.eligibility-details p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.transparency-note {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 1px solid #ffc107;
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1rem;
}

.transparency-note i {
    color: #856404;
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.transparency-note p {
    color: #856404;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.service-list, .prepare-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li, .prepare-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
    text-align: left;
}

.service-list li:last-child, .prepare-list li:last-child {
    margin-bottom: 0;
}

.service-list i {
    color: #28a745;
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.prepare-list i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Avantages clés */
.advantages-section {
    text-align: center;
}

.advantages-title {
    color: var(--primary-dark);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

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

.advantage-box {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 8px 24px rgba(45, 0, 104, 0.08);
    border: 1px solid rgba(45, 0, 104, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advantage-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.advantage-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(45, 0, 104, 0.12);
    border-color: rgba(45, 0, 104, 0.15);
}

.advantage-box:hover::before {
    transform: scaleX(1);
}

.advantage-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    font-size: 1.2rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 6px 20px rgba(45, 0, 104, 0.2);
}

.advantage-box h4 {
    color: var(--primary-dark);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.advantage-box p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Styles pour l'explication complète d'éligibilité */
.eligibility-complete {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f5ff 0%, #f0ebff 100%);
    border-radius: 16px;
    border: 1px solid rgba(45, 0, 104, 0.1);
}

.eligibility-intro p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
}

.important-note {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(45, 0, 104, 0.05) 0%, rgba(45, 0, 104, 0.02) 100%);
    border: 1px solid rgba(45, 0, 104, 0.15);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    margin-bottom: 2rem;
}

.important-note i {
    color: var(--primary);
    font-size: 1.3rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.important-note p {
    color: #2d3748;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    text-align: left;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.process-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(45, 0, 104, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(45, 0, 104, 0.05);
}

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(45, 0, 104, 0.1);
    border-color: rgba(45, 0, 104, 0.2);
}

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

.process-card .card-icon i {
    color: white;
    font-size: 1.5rem;
}

.process-card h3 {
    color: var(--primary-dark);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-card li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #4a5568;
    line-height: 1.5;
}

.process-card li i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Responsive pour la page crédit d'impôt */
@media (max-width: 768px) {
    .credit-steps-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 3rem 0;
        padding: 0 1rem;
    }
    
    .credit-step-card {
        padding: 2rem 1.5rem;
        margin: 0 0.5rem;
    }
    
    .credit-step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .credit-step-title {
        font-size: 1.2rem;
    }
    
    .credit-highlight {
        padding: 1.5rem;
        margin: 2rem 0.5rem;
    }
    
    .credit-highlight h3 {
        font-size: 1.3rem;
    }
    
    .examples-section {
        padding: 3rem 1rem;
        margin: 3rem 0;
    }
    
    /* Marges générales pour tous les conteneurs sur mobile */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Marges pour les sections principales */
    .section-title {
        padding: 0 0.5rem;
    }
    
    .section-subtitle {
        padding: 0 0.5rem;
    }
    
    /* Responsive pour l'explication complète d'éligibilité */
    .eligibility-complete {
        margin: 2rem 0;
        padding: 1.5rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-card {
        padding: 1.5rem;
    }
    
    .process-card .card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .process-card .card-icon i {
        font-size: 1.2rem;
    }
    
    .process-card h3 {
        font-size: 1.2rem;
    }
    
    .important-note {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .important-note p {
        text-align: center;
    }
    
    .examples-header h2 {
        font-size: 1.8rem;
    }
    
    .examples-elegant {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .example-card {
        padding: 1.25rem;
    }
    
    .example-title {
        font-size: 1rem;
    }
    
    .example-calculation {
        font-size: 0.9rem;
    }
    
    .example-final {
        font-size: 0.9rem;
        padding: 0.6rem;
    }
    
    /* Responsive pour la section éligibilité */
    .eligibility-section {
        padding: 3rem 0;
        margin: 3rem 0;
    }
    
    .eligibility-header h2 {
        font-size: 1.8rem;
    }
    
    .eligibility-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .eligibility-card {
        padding: 2rem 1.5rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .eligibility-card h3 {
        font-size: 1.2rem;
    }
    
    .eligibility-main {
        font-size: 1rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .advantage-box {
        padding: 1.5rem 1rem;
    }
    
    .advantage-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .advantage-box h4 {
        font-size: 1rem;
    }
    
    .advantage-box p {
        font-size: 0.9rem;
    }
}

/* ===== STYLES PAGE COMMENT ÇA MARCHE ===== */

/* Credit Link Icon */
.credit-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: 2px solid var(--primary);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    margin: 0 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(45, 0, 104, 0.2);
    position: relative;
    overflow: hidden;
}

.credit-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 0, 104, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.credit-link:hover {
    color: white;
    border-color: var(--primary-dark);
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a0040 100%);
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 8px 24px rgba(45, 0, 104, 0.3);
}

.credit-link:hover::before {
    opacity: 1;
}

.credit-link i {
    font-size: 1rem;
    position: relative;
    z-index: 1;
    color: white;
}

/* Simulation Button */
.simulation-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-light) 0%, #f8f9ff 100%);
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    margin-top: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(45, 0, 104, 0.08);
    border: 1px solid rgba(45, 0, 104, 0.15);
    position: relative;
    overflow: hidden;
    align-self: center;
}

.simulation-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 0, 104, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.simulation-btn:hover {
    color: var(--primary-dark);
    background: linear-gradient(135deg, #e8e5f5 0%, #f0edfa 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(45, 0, 104, 0.15);
    border-color: var(--primary);
}

.simulation-btn:hover::before {
    opacity: 1;
}

.simulation-btn i {
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* ===== STYLES PAGE PARTICULIERS ===== */

/* Section Calendrier Inline */
.cal-inline-section {
    padding: 4rem 0;
    background: var(--primary-light);
}

.cal-inline-header {
    text-align: center;
    margin-bottom: 3rem;
}

.cal-inline-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.cal-inline-header .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

#my-cal-inline-demander-un-devis-particulier {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 600px;
}

#my-cal-inline-demander-un-devis-professionnel {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 600px;
}

/* ===== STYLES POPUP EN COURS ===== */

/* Popup Container */
.en-cours-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.en-cours-container.active {
    opacity: 1;
    visibility: visible;
}

/* Popup Content */
.en-cours-content {
    background: white;
    border-radius: var(--radius);
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-hover);
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.en-cours-container.active .en-cours-content {
    transform: scale(1);
}

/* Icon */
.en-cours-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

/* Title */
.en-cours-content h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Description */
.en-cours-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Actions */
.en-cours-actions {
    display: flex;
    justify-content: center;
}

.btn-close-popup {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-close-popup:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Animation pulse pour l'icône */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .en-cours-content {
        padding: 2rem;
        margin: 1rem;
    }
    
    .en-cours-content h1 {
        font-size: 1.5rem;
    }
    
    .en-cours-content p {
        font-size: 1rem;
    }
    
    .en-cours-icon {
        font-size: 3rem;
    }
}

/* ===== STYLES PAGE MENTIONS LÉGALES ===== */

/* Section Hero Mentions Légales */
.legal-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.legal-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.legal-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.legal-date {
    font-size: 0.9rem !important;
    opacity: 0.7 !important;
    margin-top: 1rem !important;
    font-style: italic;
}

/* Section Contenu */
.legal-content {
    padding: 4rem 0;
    background: var(--primary-light);
}

.legal-sections {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    background: white;
    border-radius: var(--radius);
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.legal-section:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.legal-section-header {
    background: var(--primary);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.legal-section-header i {
    font-size: 1.5rem;
    opacity: 0.9;
}

.legal-section-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.legal-section-content {
    padding: 2rem;
}

.legal-section-content h3 {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.legal-section-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-section-content li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    gap: 0.5rem;
}

.legal-section-content li:last-child {
    border-bottom: none;
}

.legal-section-content li strong {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
}

.legal-section-content a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section-content a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.legal-section-content p {
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.hosting-info {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--primary-light);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
}

.company-info ul {
    display: grid;
    gap: 0.5rem;
}

.company-info li {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem 0;
}

.company-info li strong {
    color: var(--primary);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-hero-content h1 {
        font-size: 2rem;
    }
    
    .legal-hero-content p {
        font-size: 1rem;
    }
    
    .legal-section-header {
        padding: 1rem 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .legal-section-header h2 {
        font-size: 1.3rem;
    }
    
    .legal-section-content {
        padding: 1.5rem;
    }
    
    .legal-section-content li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .legal-section-content li strong {
        min-width: auto;
    }
}

/* ===== STYLES PAGE FAQ ===== */

/* Section Hero FAQ */
.faq-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 30%, #60a5fa 70%, #93c5fd 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.faq-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(45, 0, 104, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(45, 0, 104, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.faq-hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    text-align: center;
}

.faq-hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.faq-hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.faq-title-line {
    display: block;
}

.faq-title-line.highlight {
    background: linear-gradient(135deg, var(--primary) 0%, #00bf63 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-hero-description {
    font-size: 1.4rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* CTA Button */
.faq-hero-cta {
    margin-top: 2rem;
}

/* CTA Button */
.faq-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(30, 58, 138, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.faq-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-cta-btn:hover {
    color: white;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.25) 100%);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(30, 58, 138, 0.5);
    border-color: rgba(255, 255, 255, 0.6);
}

.faq-cta-btn:hover::before {
    opacity: 1;
}

.faq-cta-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-cta-btn:hover i {
    transform: translateY(2px);
}

/* Section visuelle */
.faq-hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.faq-visual-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-icon-main {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 40px 120px rgba(30, 58, 138, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.3);
    position: relative;
    animation: float 8s ease-in-out infinite;
    z-index: 2;
    backdrop-filter: blur(5px);
}

.faq-icon-main::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 6s ease-in-out infinite;
}

.faq-icon-main i {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.9);
    animation: bounce 4s ease-in-out infinite;
    text-shadow: 0 4px 20px rgba(30, 58, 138, 0.3);
}

/* Particules animées */
.faq-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(147, 197, 253, 0.8) 100%);
    border-radius: 50%;
    opacity: 0.8;
    box-shadow: 0 0 25px rgba(147, 197, 253, 0.5);
}

.particle-1 {
    top: 15%;
    left: 15%;
    animation: particle-float 12s ease-in-out infinite;
}

.particle-2 {
    top: 70%;
    right: 20%;
    animation: particle-float 15s ease-in-out infinite 2s;
}

.particle-3 {
    bottom: 25%;
    left: 25%;
    animation: particle-float 18s ease-in-out infinite 1s;
}

.particle-4 {
    top: 45%;
    right: 30%;
    animation: particle-float 14s ease-in-out infinite 0.5s;
}

.particle-5 {
    bottom: 15%;
    right: 15%;
    animation: particle-float 16s ease-in-out infinite 1.5s;
}

.particle-6 {
    top: 30%;
    left: 35%;
    animation: particle-float 13s ease-in-out infinite 3s;
}

.particle-7 {
    top: 80%;
    left: 40%;
    animation: particle-float 17s ease-in-out infinite 2.5s;
}

.particle-8 {
    top: 60%;
    right: 40%;
    animation: particle-float 11s ease-in-out infinite 0.8s;
}

@keyframes particle-float {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.7;
    }
    25% { 
        transform: translateY(-40px) translateX(20px) scale(1.3);
        opacity: 0.9;
    }
    50% { 
        transform: translateY(-20px) translateX(-30px) scale(0.7);
        opacity: 0.5;
    }
    75% { 
        transform: translateY(-60px) translateX(10px) scale(1.2);
        opacity: 0.8;
    }
}

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

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

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

/* Section FAQ */
.faq-section {
    padding: 5rem 0;
    background: #ffffff;
}

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

.faq-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.faq-section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.faq-categories {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 3rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(45, 0, 104, 0.06);
    border: 1px solid rgba(45, 0, 104, 0.05);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-category:hover {
    box-shadow: 0 8px 30px rgba(45, 0, 104, 0.1);
    transform: translateY(-2px);
}

.faq-category-title {
    background: linear-gradient(135deg, var(--primary-light) 0%, #f0edfa 100%);
    color: var(--primary-dark);
    font-size: 1.3rem;
    font-weight: 600;
    padding: 1.5rem 2rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(45, 0, 104, 0.1);
}

.faq-category-title i {
    color: var(--primary);
    font-size: 1.2rem;
}

.faq-accordion {
    padding: 0;
}

.faq-item {
    border-bottom: 1px solid rgba(45, 0, 104, 0.05);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.faq-question:hover {
    background: rgba(45, 0, 104, 0.02);
    color: var(--primary);
}

.faq-question.active {
    background: rgba(45, 0, 104, 0.03);
    color: var(--primary);
}

.faq-question i {
    font-size: 0.9rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--primary);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(45, 0, 104, 0.01);
    padding-top: 0;
}

.faq-answer.active {
    max-height: 500px;
    padding-top: 1rem;
}

.faq-answer-content {
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    margin: 0 0 1rem 0;
    line-height: 1.6;
    color: #555;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #555;
}

.faq-note {
    background: linear-gradient(135deg, rgba(0, 191, 99, 0.1) 0%, rgba(0, 191, 99, 0.05) 100%);
    border-left: 3px solid #00bf63;
    padding: 1rem 1.5rem;
    margin: 1rem 0;
    border-radius: 0 8px 8px 0;
    font-weight: 500;
    color: #00bf63;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-hero {
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    .faq-hero-content {
        text-align: center;
    }
    
    .faq-hero-title {
        font-size: 3rem;
    }
    
    .faq-hero-description {
        font-size: 1.2rem;
        margin: 0 auto 2.5rem;
    }
    
    .faq-icon-main {
        width: 250px;
        height: 250px;
    }
    
    .faq-icon-main i {
        font-size: 5rem;
    }
    
    .particle {
        width: 8px;
        height: 8px;
    }
    
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-section-title {
        font-size: 2rem;
    }
    
    .faq-category-title {
        font-size: 1.1rem;
        padding: 1.25rem 1.5rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .faq-answer.active {
        padding-top: 0.75rem;
    }
    
    .faq-answer-content {
        padding: 0 1.5rem 1.25rem;
    }
    
    .faq-note {
        padding: 0.75rem 1rem;
        margin: 0.75rem 0;
    }
}

/* ===== STYLES PAGE DEVENIR PARTENAIRE ===== */

/* Section Hero Partenaire */
.partner-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 30%, #60a5fa 70%, #93c5fd 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.partner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(45, 0, 104, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(45, 0, 104, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.partner-hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    text-align: center;
}

.partner-hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.partner-hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.partner-title-line {
    display: block;
}

.partner-title-line.highlight {
    background: linear-gradient(135deg, var(--primary) 0%, #00bf63 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partner-hero-description {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.partner-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary) 0%, #00bf63 100%);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(45, 0, 104, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.partner-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(45, 0, 104, 0.4);
    background: linear-gradient(135deg, #00bf63 0%, var(--primary) 100%);
}

/* Visual Background */
.partner-hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.partner-visual-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.partner-icon-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.partner-icon-main i {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.partner-particle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(135, 206, 250, 0.6) 100%);
    opacity: 0.6;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    animation: partner-particle-float 6s ease-in-out infinite;
}

.partner-particle-1 {
    width: 12px;
    height: 12px;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.partner-particle-2 {
    width: 8px;
    height: 8px;
    top: 30%;
    right: 20%;
    animation-delay: 1s;
}

.partner-particle-3 {
    width: 15px;
    height: 15px;
    bottom: 25%;
    left: 25%;
    animation-delay: 2s;
}

.partner-particle-4 {
    width: 10px;
    height: 10px;
    bottom: 35%;
    right: 15%;
    animation-delay: 3s;
}

.partner-particle-5 {
    width: 6px;
    height: 6px;
    top: 60%;
    left: 10%;
    animation-delay: 4s;
}

.partner-particle-6 {
    width: 14px;
    height: 14px;
    top: 15%;
    right: 30%;
    animation-delay: 5s;
}

.partner-particle-7 {
    width: 9px;
    height: 9px;
    bottom: 20%;
    right: 25%;
    animation-delay: 6s;
}

.partner-particle-8 {
    width: 11px;
    height: 11px;
    top: 70%;
    right: 10%;
    animation-delay: 7s;
}

@keyframes partner-particle-float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
        opacity: 1;
    }
    75% {
        transform: translateY(-30px) rotate(270deg);
        opacity: 0.7;
    }
}

/* Section Avantages */
.partner-advantages {
    padding: 5rem 2rem;
    background: var(--primary-light);
}

.partner-advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.partner-advantage-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(45, 0, 104, 0.05);
}

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

.partner-advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, #00bf63 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(45, 0, 104, 0.2);
}

.partner-advantage-icon i {
    font-size: 2rem;
    color: white;
}

.partner-advantage-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.partner-advantage-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Section Timeline */
.partner-timeline {
    padding: 5rem 2rem;
    background: white;
}

.partner-section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 3rem;
}

.partner-timeline-steps {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.partner-step {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--primary-light);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.partner-step:last-child {
    margin-bottom: 0;
}

.partner-step-number {
    font-size: 2rem;
    font-weight: 700;
    min-width: 60px;
    text-align: center;
}

.partner-step-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.partner-step-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.partner-timeline-actions {
    text-align: center;
}

.partner-demo-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.partner-demo-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Section Outils */
.partner-tools {
    padding: 5rem 2rem;
    background: var(--primary-light);
}

.partner-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.partner-tool-item {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.partner-tool-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.partner-tool-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.partner-tool-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
}

/* Section Pour qui */
.partner-target {
    padding: 5rem 2rem;
    background: white;
}

.partner-target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.partner-target-card {
    background: var(--primary-light);
    padding: 3rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.partner-target-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary) 0%, #00bf63 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(45, 0, 104, 0.2);
}

.partner-target-icon i {
    font-size: 2.5rem;
    color: white;
}

.partner-target-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.partner-target-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Section CTA Final */
.partner-cta-final {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, #00bf63 100%);
    color: white;
    text-align: center;
}

.partner-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.partner-join-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: var(--primary);
    text-decoration: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.partner-join-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: var(--primary-light);
}

/* Section Contact */
.partner-contact {
    padding: 5rem 2rem;
    background: var(--primary-light);
    text-align: center;
}

.partner-contact-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.partner-contact-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.partner-email-btn,
.partner-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: var(--primary);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.partner-email-btn:hover,
.partner-phone-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    background: var(--primary);
    color: white;
}

/* Section Cal.com */
.partner-cal-section {
    padding: 5rem 2rem;
}

#my-cal-inline-devenez-partenaire {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 600px;
}

/* Responsive Partenaire */
@media (max-width: 768px) {
    .partner-hero {
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    .partner-hero-content {
        text-align: center;
    }
    
    .partner-hero-title {
        font-size: 3rem;
    }
    
    .partner-hero-description {
        font-size: 1.2rem;
        margin: 0 auto 2.5rem;
    }
    
    .partner-icon-main {
        width: 250px;
        height: 250px;
    }
    
    .partner-icon-main i {
        font-size: 5rem;
    }
    
    .partner-particle {
        width: 8px;
        height: 8px;
    }
    
    .partner-advantages,
    .partner-timeline,
    .partner-tools,
    .partner-target,
    .partner-cta-final,
    .partner-contact,
    .partner-cal-section {
        padding: 3rem 0;
    }
    
    .partner-section-title {
        font-size: 2rem;
    }
    
    .partner-advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .partner-advantage-card {
        padding: 2rem;
    }
    
    .partner-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .partner-tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .partner-target-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .partner-target-card {
        padding: 2rem;
    }
    
    .partner-cta-content h2 {
        font-size: 2rem;
    }
    
    .partner-contact-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* ===== STYLES PAGE À PROPOS ===== */

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 30%, #60a5fa 70%, #93c5fd 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.about-hero-content {
    flex: 1;
    max-width: 600px;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-title-highlight {
    background: linear-gradient(135deg, #00bf63, #00d4aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.about-hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.about-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.about-hero-visual {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.about-visual-container {
    position: relative;
    width: 100%;
    height: 400px;
}

.about-icon-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.about-icon-main i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-particle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    opacity: 0.6;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
    animation: about-particle-float 6s ease-in-out infinite;
}

.about-particle-1 {
    width: 20px;
    height: 20px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.about-particle-2 {
    width: 15px;
    height: 15px;
    top: 60%;
    right: 20%;
    animation-delay: 1s;
}

.about-particle-3 {
    width: 25px;
    height: 25px;
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

.about-particle-4 {
    width: 18px;
    height: 18px;
    top: 80%;
    right: 10%;
    animation-delay: 3s;
}

.about-particle-5 {
    width: 12px;
    height: 12px;
    top: 40%;
    left: 60%;
    animation-delay: 4s;
}

@keyframes about-particle-float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

/* Section Fondatrice */
.about-founder {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.about-founder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(45, 0, 104, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 191, 99, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.about-founder-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.founder-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary), #00bf63);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.founder-badge i {
    font-size: 1rem;
}

.about-section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    text-align: center;
}

.founder-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    font-weight: 500;
}

.about-founder-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.founder-profile {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: start;
    background: white;
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(45, 0, 104, 0.1);
}

.founder-avatar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.avatar-container {
    position: relative;
}

.avatar-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 4px solid white;
    background: linear-gradient(135deg, var(--primary), #00bf63);
}

.avatar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.avatar-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 35px;
    height: 35px;
    background: #00bf63;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
    box-shadow: var(--shadow);
}

.avatar-badge i {
    font-size: 1rem;
    color: white;
}

.founder-name h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-align: center;
}

.founder-name span {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.founder-story {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.story-highlight {
    background: linear-gradient(135deg, rgba(45, 0, 104, 0.05), rgba(0, 191, 99, 0.05));
    padding: 2rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    position: relative;
}

.story-highlight i {
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.story-highlight p {
    font-size: 1.1rem;
    color: var(--primary-dark);
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

.founder-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.point-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), #00bf63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

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

.point-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.point-content p {
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.founder-difference {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.difference-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: var(--transition);
    min-width: 280px;
}

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

.difference-card.highlight {
    border-color: #00bf63;
    background: linear-gradient(135deg, rgba(0, 191, 99, 0.05), rgba(0, 191, 99, 0.02));
}

.difference-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.difference-header i {
    font-size: 1.5rem;
}

.difference-card:not(.highlight) .difference-header i {
    color: #dc2626;
}

.difference-card.highlight .difference-header i {
    color: #00bf63;
}

.difference-header h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.difference-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.difference-card li {
    padding: 0.75rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
}

.difference-card li:last-child {
    border-bottom: none;
}

.difference-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.difference-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), #00bf63);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    box-shadow: var(--shadow);
    flex-shrink: 0;
}

/* Section Engagements */
.about-commitments {
    padding: 6rem 0;
    background: white;
}

.about-commitments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about-commitment-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.about-commitment-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.commitment-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), #00bf63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow);
}

.commitment-icon i {
    font-size: 2rem;
    color: white;
}

.about-commitment-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.about-commitment-card p {
    color: #666;
    line-height: 1.6;
}

/* Section Pourquoi choisir */
.about-why-choose {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.about-why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(45, 0, 104, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 191, 99, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.why-choose-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 1rem;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.why-choose-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), #00bf63);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

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

.card-visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), #00bf63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.card-icon i {
    font-size: 1.8rem;
    color: white;
}

.card-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(45, 0, 104, 0.1);
    line-height: 1;
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.card-content p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.why-choose-comparison {
    position: relative;
    z-index: 2;
}

.comparison-header {
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.comparison-header p {
    color: #64748b;
    font-size: 1.1rem;
}

.comparison-single-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    margin: 2rem 0;
    border: 2px solid #f3f4f6;
    transition: all 0.3s ease;
}

.comparison-single-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.comparison-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.comparison-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.comparison-header p {
    color: #6b7280;
    font-size: 1.1rem;
}

.comparison-content {
    display: flex;
    align-items: stretch;
    gap: 2rem;
}

.comparison-side {
    flex: 1;
    padding: 2rem;
    border-radius: 12px;
    position: relative;
}

.comparison-side.negative {
    background: linear-gradient(135deg, #fef2f2, #fecaca);
    border: 2px solid #fecaca;
}

.comparison-side.positive {
    background: linear-gradient(135deg, #f0fdf4, #bbf7d0);
    border: 2px solid #bbf7d0;
}

.side-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.side-header i {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.comparison-side.negative .side-header i {
    background: #dc2626;
}

.comparison-side.positive .side-header i {
    background: #00bf63;
}

.side-header h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.comparison-side ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-side li {
    padding: 0.75rem 0;
    color: #4b5563;
    position: relative;
    padding-left: 1.8rem;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
}

.comparison-side li::before {
    content: '•';
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.3rem;
    top: 50%;
    transform: translateY(-50%);
}

.comparison-side.negative li::before {
    color: #dc2626;
}

.comparison-side.positive li::before {
    color: #00bf63;
}

.comparison-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0 1rem;
}

.divider-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, #e5e7eb, #d1d5db);
}

.divider-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #00bf63);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.comparison-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), #00bf63);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    box-shadow: var(--shadow);
    flex-shrink: 0;
}

/* Section Cal.com Rendez-vous */
.about-calendar {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.about-calendar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(45, 0, 104, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 191, 99, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.calendar-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.calendar-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 1rem;
}

.calendar-container {
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
}

.calendar-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.calendar-wrapper #my-cal-inline-decouvrir {
    border: none;
    display: block;
    min-height: 600px;
    border-radius: var(--radius);
}

.calendar-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition);
    border: 2px solid transparent;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), #00bf63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.info-icon i {
    font-size: 1.5rem;
    color: white;
}

.info-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.info-content p {
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero .container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-founder-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-why-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .calendar-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        margin: 0 1rem;
    }
    
    .calendar-wrapper {
        margin: 0 1rem;
    }
    
    .about-commitment-card {
        margin: 0 1rem;
        text-align: center;
    }
    
    .commitment-icon {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }
    
    .why-choose-card {
        margin: 0 1rem;
    }
    
    .comparison-single-card {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .comparison-header h3 {
        font-size: 1.5rem;
    }
    
    .comparison-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .comparison-side {
        padding: 1.5rem;
    }
    
    .side-header i {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .side-header h4 {
        font-size: 1.2rem;
    }
    
    .comparison-side li {
        padding: 0.6rem 0;
        padding-left: 1.5rem;
        font-size: 0.95rem;
    }
    
    .comparison-divider {
        flex-direction: row;
        gap: 0.5rem;
        padding: 1rem 0;
    }
    
    .divider-line {
        width: 60px;
        height: 2px;
        background: linear-gradient(to right, #e5e7eb, #d1d5db);
    }
    
    .divider-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .difference-card {
        margin: 0 1rem;
        text-align: center;
    }
    
    .difference-header {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        text-align: center;
    }
    
    .difference-header h4 {
        text-align: center;
        margin: 0;
    }
    
    .difference-card ul {
        text-align: center;
        padding-left: 0;
    }
    
    .difference-card li {
        text-align: center;
        padding-left: 0;
    }
    
    .founder-profile {
        margin: 0 1rem;
    }
    
    .about-commitments-grid {
        grid-template-columns: 1fr;
    }
    
    .about-benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    /* Responsive pour la section fondatrice */
    .about-section-title {
        font-size: 2.5rem;
    }
    
    .founder-profile {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .founder-avatar {
        order: -1;
    }
    
    .benefit-point {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .founder-difference {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .difference-arrow {
        transform: rotate(90deg);
    }
    
    .difference-card {
        min-width: auto;
        width: 100%;
    }
    
    /* Responsive pour la section pourquoi choisir */
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .why-choose-card {
        padding: 2rem;
    }
    
    .comparison-cards {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .comparison-arrow {
        transform: rotate(90deg);
    }
    
    .comparison-card {
        min-width: auto;
        width: 100%;
    }
}

/* Section Hero Futuriste */
.hero-futuristic {
    min-height: 80vh;
    padding: 4rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f5ff 30%, #f0ebff 70%, #e8e0ff 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-futuristic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(45, 0, 104, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(138, 43, 226, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(147, 51, 234, 0.03) 0%, transparent 50%);
    animation: background-shift 20s ease-in-out infinite;
}

@keyframes background-shift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}



/* Bulles flottantes pour hero futuriste */
.hero-futuristic .floating-bubble {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: float-bubble 15s ease-in-out infinite;
}

.hero-futuristic .floating-bubble:nth-child(1) {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(45, 0, 104, 0.1), rgba(138, 43, 226, 0.1));
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-futuristic .floating-bubble:nth-child(2) {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.08), rgba(168, 85, 247, 0.08));
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.hero-futuristic .floating-bubble:nth-child(3) {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(45, 0, 104, 0.06), rgba(147, 51, 234, 0.06));
    bottom: 20%;
    left: 20%;
    animation-delay: -10s;
}

.hero-futuristic .floating-bubble:nth-child(4) {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(168, 85, 247, 0.1));
    top: 40%;
    right: 30%;
    animation-delay: -7s;
}

@keyframes float-bubble {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) scale(1); 
        opacity: 0.6; 
    }
    25% { 
        transform: translateY(-20px) translateX(10px) scale(1.1); 
        opacity: 0.8; 
    }
    50% { 
        transform: translateY(-10px) translateX(-5px) scale(0.9); 
        opacity: 0.4; 
    }
    75% { 
        transform: translateY(-30px) translateX(15px) scale(1.05); 
        opacity: 0.7; 
    }
}

.floating-bubble {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
}

.bubble-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.bubble-2 {
    width: 80px;
    height: 80px;
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.bubble-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.bubble-4 {
    width: 100px;
    height: 100px;
    bottom: 30%;
    right: 10%;
    animation-delay: 3s;
}

.bubble-5 {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 20%;
    animation-delay: 4s;
}

.bubble-6 {
    width: 90px;
    height: 90px;
    top: 60%;
    right: 25%;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}



.neon-glow {
    display: none;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

.hero-content-futuristic {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge-futuristic {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(45, 0, 104, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(45, 0, 104, 0.2);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #2d0068;
}

.hero-badge-futuristic i {
    color: #2d0068;
    font-size: 1rem;
}

.hero-title-futuristic {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #2d0068;
}

.title-line-futuristic {
    display: block;
}

.highlight-futuristic {
    color: #2d0068;
}

.hero-subtitle-futuristic {
    font-size: 1.3rem;
    color: #4a5568;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats-futuristic {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(45, 0, 104, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(45, 0, 104, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
    min-width: 120px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(45, 0, 104, 0.12);
    border-color: rgba(45, 0, 104, 0.25);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d0068;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(45, 0, 104, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 500;
}

.stat-divider {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(45, 0, 104, 0.3), transparent);
}

.hero-actions-futuristic {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-futuristic {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.btn-futuristic::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-futuristic:hover::before {
    left: 100%;
}

.btn-primary-futuristic {
    background: linear-gradient(135deg, #2d0068, #1a0040);
    color: white;
    box-shadow: 0 8px 25px rgba(45, 0, 104, 0.3);
}

.btn-primary-futuristic:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(45, 0, 104, 0.4);
}

.btn-secondary-futuristic {
    background: rgba(45, 0, 104, 0.05);
    backdrop-filter: blur(10px);
    color: #2d0068;
    border-color: rgba(45, 0, 104, 0.3);
}

.btn-secondary-futuristic:hover {
    background: rgba(45, 0, 104, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 0, 104, 0.2);
}

.btn-icon {
    font-size: 1.1rem;
}

/* Responsive pour la section hero futuriste */
@media (max-width: 768px) {
    .hero-title-futuristic {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-futuristic {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .hero-stats-futuristic {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        padding: 1rem;
        min-width: 100px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .stat-divider {
        width: 40px;
        height: 2px;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
        margin: 0.5rem 0;
    }
    
    .hero-actions-futuristic {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-futuristic {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .floating-bubble {
        display: none;
    }
}

/* ========================================
   Hero Futuriste - Comment ça marche (fond bleu)
   ======================================== */

/* Style spécifique pour la page comment-ca-marche.php */
body:has(.hero-futuristic) .hero-futuristic {
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 30%, #e6f0ff 70%, #d6e8ff 100%);
    position: relative;
    overflow: hidden;
}

body:has(.hero-futuristic) .hero-futuristic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(29, 78, 216, 0.04) 0%, transparent 50%);
    animation: background-shift 20s ease-in-out infinite;
    pointer-events: none;
}

/* Bulles flottantes avec teinte bleue */
body:has(.hero-futuristic) .hero-futuristic .floating-bubble:nth-child(1) {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(37, 99, 235, 0.08));
}

body:has(.hero-futuristic) .hero-futuristic .floating-bubble:nth-child(2) {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.10), rgba(29, 78, 216, 0.06));
}

body:has(.hero-futuristic) .hero-futuristic .floating-bubble:nth-child(3) {
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.08), rgba(30, 64, 175, 0.04));
}

body:has(.hero-futuristic) .hero-futuristic .floating-bubble:nth-child(4) {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.10), rgba(37, 99, 235, 0.06));
}

/* ========================================
   Hero Futuriste - Crédit d'impôt (fond bleu)
   ======================================== */

/* Style spécifique pour la page credit-impots.php */
body:has(.hero-futuristic) .hero-futuristic {
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 30%, #e6f0ff 70%, #d6e8ff 100%);
    position: relative;
    overflow: hidden;
}

body:has(.hero-futuristic) .hero-futuristic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(29, 78, 216, 0.04) 0%, transparent 50%);
    animation: background-shift 20s ease-in-out infinite;
    pointer-events: none;
}

/* Bulles flottantes avec teinte bleue pour crédit d'impôt */
body:has(.hero-futuristic) .hero-futuristic .floating-bubble:nth-child(1) {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(37, 99, 235, 0.08));
}

body:has(.hero-futuristic) .hero-futuristic .floating-bubble:nth-child(2) {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.10), rgba(29, 78, 216, 0.06));
}

body:has(.hero-futuristic) .hero-futuristic .floating-bubble:nth-child(3) {
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.08), rgba(30, 64, 175, 0.04));
}

body:has(.hero-futuristic) .hero-futuristic .floating-bubble:nth-child(4) {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.10), rgba(37, 99, 235, 0.06));
}

