/* ============================================
   VARIABLES ET STYLES DE BASE
   ============================================ */

:root {
    /* Thème Sprint Agency - Blanc/Noir/Bleu Électrique */
    --color-white: #ffffff;
    --color-black: #0a0a0a;
    --color-gray-900: #1a1a1a;
    --color-gray-950: #fafafa;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-accent: #2563eb;
    --color-accent-light: #3b82f6;
    --color-bg-primary: #ffffff;
    --color-bg-secondary: #f8fafc;
    --color-text-primary: #0a0a0a;
    --color-text-secondary: #4b5563;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--color-bg-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.loaded {
    opacity: 1;
}

/* Main content wrapper */
main, .main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Ensure footer is always visible */
.footer {
    position: relative;
    z-index: 10;
    margin-top: auto;
}

/* Fix for pages without proper structure */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Ensure all pages have proper footer display */
html, body {
    height: 100%;
}

body > *:not(.footer) {
    flex-shrink: 0;
}

.footer {
    flex-shrink: 0;
    margin-top: auto;
}

/* Ensure all sections are properly displayed */
section {
    position: relative;
    z-index: 1;
}

/* Fix for pages with multiple sections */
body {
    position: relative;
}

/* Ensure footer is always at the bottom */
.footer {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

* {
    will-change: auto;
}

section {
    contain: layout style paint;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
}

/* ============================================
   TAGS CAROUSEL
   ============================================ */

.tags-carousel {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    margin: 3rem 0;
    position: relative;
    padding: 1rem 0;
}

.tags-carousel::before,
.tags-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.tags-carousel::before {
    left: 0;
    background: linear-gradient(90deg, var(--color-bg-primary) 0%, transparent 100%);
}

.tags-carousel::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, var(--color-bg-primary) 100%);
}

.tags-track {
    display: flex;
    gap: 1rem;
    animation: scrollTags 30s linear infinite;
    width: fit-content;
}

.tag-item {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.5rem;
    background: var(--color-bg-primary);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
}

.tag-item::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(91, 91, 214, 0.5);
}

.tag-item:hover {
    background: #f5f5f5;
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
    color: var(--color-text-primary);
}

.tag-item:hover::before {
    box-shadow: 0 0 12px rgba(91, 91, 214, 0.8);
}

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

/* Pause au survol */
.tags-carousel:hover .tags-track {
    animation-play-state: paused;
}

/* Responsive */
@media (max-width: 767px) {
    .tags-carousel {
        margin: 2rem 0;
    }
    
    .tags-carousel::before,
    .tags-carousel::after {
        width: 80px;
    }
    
    .tag-item {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
        gap: 0.5rem;
    }
    
    .tag-item::before {
        width: 5px;
        height: 5px;
    }
    
    .tags-track {
        animation-duration: 25s;
    }
}

@media (max-width: 479px) {
    .tag-item {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }
    
    .tag-item::before {
        width: 4px;
        height: 4px;
    }
    
    .tags-track {
        animation-duration: 20s;
        gap: 0.75rem;
    }
}

/* ============================================
   BOUTONS FLOTTANTS DISCORD & WHATSAPP
   ============================================ */

.floating-btns-left {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 998;
}

/* Bouton Discord */
.discord-btn-left {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 4px 12px rgba(88, 101, 242, 0.4),
        0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.discord-btn-left:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 6px 16px rgba(88, 101, 242, 0.5),
        0 12px 32px rgba(0, 0, 0, 0.4);
}

.discord-btn-left svg {
    width: 32px;
    height: 32px;
    fill: white;
    transition: transform 0.3s ease;
}

.discord-btn-left:hover svg {
    transform: scale(1.1);
}

/* Bouton WhatsApp */
.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 4px 12px rgba(37, 211, 102, 0.4),
        0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.whatsapp-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 6px 16px rgba(37, 211, 102, 0.5),
        0 12px 32px rgba(0, 0, 0, 0.4);
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
    fill: white;
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover svg {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 767px) {
    .floating-btns-left {
        bottom: 20px;
        left: 20px;
        gap: 10px;
    }
    
    .discord-btn-left,
    .whatsapp-btn {
        width: 54px;
        height: 54px;
    }
    
    .discord-btn-left svg,
    .whatsapp-btn svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 479px) {
    .floating-btns-left {
        bottom: 16px;
        left: 16px;
        gap: 8px;
    }
    
    .discord-btn-left,
    .whatsapp-btn {
        width: 50px;
        height: 50px;
    }
    
    .discord-btn-left svg,
    .whatsapp-btn svg {
        width: 26px;
        height: 26px;
    }
}
/* ============================================
   BOUTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--color-accent);
    border-radius: 10rem;
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: var(--color-black);
    color: var(--color-white);
    border: 1px solid var(--color-black);
    border-radius: 10rem;
}


.btn-secondary:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-full {
    width: 100%;
}

.btn .loader {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   GRADIENT TEXT
   ============================================ */

.gradient-text {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   SECTIONS GÉNÉRALES
   ============================================ */

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    color: var(--color-gray-500);
    font-size: 1.125rem;
    margin-bottom: 5rem;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    padding: 120px 0 60px;
    overflow: hidden;
    margin-top: 40px;
    background: #ffffff;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero-text .hero-cta {
    margin-top: 2rem;
    margin-bottom: 0;
}

.hero-image {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 400px;
}

.floating-image {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    animation: floating 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(91, 91, 214, 0.2));
}

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

.hero-title {
    position: relative;
    z-index: 2;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    text-align: left;
}


.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray-500);
    margin-bottom: 3rem;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}


.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 5rem;
    justify-content: center;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    padding: 3rem 0;
    border-top: none;
    border-bottom: none;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}



@keyframes pulseBar {
    0%, 100% {
        opacity: 0.5;
        filter: blur(0px);
    }
    50% {
        opacity: 1;
        filter: blur(1px);
    }
}

.stat {
    text-align: center;
    position: relative;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    text-shadow: 0 0 20px rgba(91, 91, 214, 0.3);
}

/* Glow effect sur les nombres */
.stat-number::after {
    content: attr(data-target);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    color: var(--color-accent);
    opacity: 0.3;
    filter: blur(8px);
    z-index: -1;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--color-gray-500);
}

/* Responsive */
@media (max-width: 1023px) {
    .hero-stats {
        gap: 3rem;
        padding: 2.5rem 0;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2rem 0;
    }
    
    .stat-number {
        font-size: 2.25rem;
    }
    
    .stat-label {
        font-size: 0.875rem;
    }
}

@media (max-width: 479px) {
    .hero-stats {
        gap: 2rem;
        padding: 1.5rem 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--color-gray-500);
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
    padding: 140px 0;
    background: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    background: var(--color-black);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 3rem;
}

.feature-card {
    padding: 2.5rem 2rem;
    background: transparent;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: var(--color-gray-900);
    border-radius: 12px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(91, 91, 214, 0.1);
    border: 1px solid rgba(91, 91, 214, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-accent);
    stroke-width: 2;
}

.feature-card h3 {
    font-size: 1.25rem;
    color: var(--color-white);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--color-gray-500);
    line-height: 1.6;
    font-size: 0.95rem;
}
/* ============================================
   HERO CTA WRAPPER
   ============================================ */

.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 5rem;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* ============================================
   REVIEWS CAROUSEL
   ============================================ */

.reviews-carousel {
    position: relative;
    min-height: 90px;
    max-width: 650px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.review-item {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    pointer-events: none;
    text-align: center;
}

.review-item.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.review-stars {
    color: #fbbf24;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    letter-spacing: 2px;
}

.review-item p {
    color: rgba(10, 10, 10, 0.8);
    font-size: 1.0625rem;
    line-height: 1.6;
    text-align: center;
    font-style: italic;
    margin: 0;
    padding: 0 2rem;
}

/* Responsive */
@media (max-width: 767px) {
    .hero-cta-wrapper {
        gap: 1.5rem;
        margin-bottom: 4rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .reviews-carousel {
        min-height: 100px;
        max-width: 90%;
    }
    
    .review-stars {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .review-item p {
        font-size: 0.9375rem;
        padding: 0 1rem;
    }
}

@media (max-width: 479px) {
    .reviews-carousel {
        min-height: 110px;
    }
    
    .review-stars {
        font-size: 0.9375rem;
    }
    
    .review-item p {
        font-size: 0.875rem;
        padding: 0 0.5rem;
    }
}
/* ============================================
   SORTLIST HERO BUTTON
   ============================================ */

.sortlist-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    color: var(--color-text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
    position: relative;
}

.sortlist-hero-btn:hover {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.sortlist-name {
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.01em;
    color: var(--color-text-primary);
}

.sortlist-hero-btn .arrow-icon {
    stroke: var(--color-text-primary);
    opacity: 0;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translate(-4px, 4px);
}

.sortlist-hero-btn:hover .arrow-icon {
    opacity: 1;
    transform: translate(0, 0);
}

.sortlist-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 100px;
    font-size: 13px;
}

.rating-star {
    color: #fbbf24;
    font-size: 14px;
}

.rating-number {
    font-weight: 700;
    color: #1a1a1a;
}

.rating-count {
    color: #666;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 767px) {
    .sortlist-hero-btn {
        padding: 9px 16px;
        gap: 6px;
        font-size: 14px;
    }
    
    .sortlist-name {
        font-size: 14px;
    }
    
    .sortlist-rating-badge {
        padding: 3px 8px;
        font-size: 12px;
    }
    
    .sortlist-hero-btn .arrow-icon {
        width: 14px;
        height: 14px;
    }
}
/* ============================================
   GENERATOR SECTION
   ============================================ */

.generator {
    padding: 140px 0;
    background: #ffffff;
}

.generator-wrapper {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.generator-form {
    background: var(--color-black);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 2.5rem;
    position: sticky;
    top: 120px;
    height: fit-content;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--color-gray-900);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    color: var(--color-white);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background: var(--color-black);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23a0a0a0' d='M4 6l4 4 4-4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.form-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gray-500);
    font-size: 0.875rem;
    margin-top: 1rem;
    line-height: 1.5;
}

.form-note svg {
    flex-shrink: 0;
}

.generator-preview {
    background: var(--color-black);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
    position: sticky;
    top: 120px;
    height: fit-content;
}

.preview-header {
    background: var(--color-gray-900);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.preview-dots {
    display: flex;
    gap: 6px;
}

.preview-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.preview-url {
    color: var(--color-gray-500);
    font-size: 0.875rem;
}

.preview-content {
    min-height: 600px;
    background: var(--color-gray-900);
    position: relative;
}

.preview-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 600px;
    color: var(--color-gray-600);
}

.preview-placeholder svg {
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.preview-placeholder p {
    font-size: 1rem;
}
/* ============================================
   PORTFOLIO SECTION
   ============================================ */

.portfolio {
    padding: 140px 0;
    background: #ffffff;
    overflow: hidden;
}

.portfolio-vertical-wrapper {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 4rem;
}

.portfolio-preview-container {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 2000px;
    perspective-origin: center center;
    transform-style: preserve-3d;
}

/* Image actuelle */
.portfolio-screen-mockup {
    position: relative;
    z-index: 3;
    background: var(--color-black);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    transform: translateY(0) translateZ(0) rotateX(0deg) scale(1);
    transform-style: preserve-3d;
    transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), 
                opacity 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
                z-index 0s linear 0.35s;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.05);
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.portfolio-screen-mockup.sliding-up {
    transform: translateY(-150px) translateZ(-200px) rotateX(25deg) scale(0.7);
    opacity: 0;
}

.portfolio-screen-mockup.sliding-down {
    transform: translateY(150px) translateZ(-200px) rotateX(-25deg) scale(0.7);
    opacity: 0;
}

/* Images fantômes (previews) */
.portfolio-preview-ghost {
    position: absolute;
    left: 50%;
    width: 85%;
    background: var(--color-black);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
    pointer-events: none;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.portfolio-preview-ghost.prev {
    top: 0;
    z-index: 1;
    transform: translateX(-50%) translateY(-30px) translateZ(-100px) rotateX(15deg) scale(0.8);
    opacity: 0.4;
    filter: blur(3px);
}

.portfolio-preview-ghost.next {
    bottom: 0;
    z-index: 1;
    transform: translateX(-50%) translateY(30px) translateZ(-100px) rotateX(-15deg) scale(0.8);
    opacity: 0.4;
    filter: blur(3px);
}

.portfolio-preview-ghost img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.6;
}

.portfolio-screen-mockup:hover {
    transform: translateY(-5px) translateZ(50px) rotateX(-2deg) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7),
                0 0 40px rgba(37, 99, 235, 0.2);
}

.portfolio-screen-mockup img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
    transform: translateZ(0);
}

/* Effet de brillance pendant la transition */
.portfolio-screen-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(37, 99, 235, 0.1) 0%, 
        transparent 50%, 
        rgba(37, 99, 235, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 1;
    border-radius: 16px;
}

.portfolio-screen-mockup:hover::before {
    opacity: 1;
}

/* Boutons de navigation */
.portfolio-navigation-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

.portfolio-nav-btn {
    width: 60px;
    height: 60px;
    background: var(--color-black);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-nav-btn:hover {
    background: var(--color-gray-900);
    border-color: var(--color-accent);
    transform: scale(1.1);
}

.portfolio-nav-btn:active {
    transform: scale(0.95);
}

.portfolio-nav-btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-white);
}

.portfolio-details {
    background: var(--color-bg-primary);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 3rem;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.portfolio-details-content {
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 1;
    transform: translateX(0) translateY(0);
    will-change: transform, opacity;
}

/* Reste du CSS portfolio inchangé... */
.portfolio-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.portfolio-logo svg {
    color: var(--color-accent);
}

.portfolio-logo span {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

.portfolio-description {
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.0625rem;
}

.portfolio-live-link {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 2rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.portfolio-live-link:hover {
    color: var(--color-accent-light);
    transform: translateX(4px);
}

.portfolio-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 2.5rem;
}

.portfolio-badge {
    padding: 8px 14px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 6px;
    font-size: 0.875rem;
    color: var(--color-accent);
}

.portfolio-testimonial {
    background: var(--color-bg-secondary);
    padding: 2rem;
    border-radius: 12px;
    margin-top: auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    color: var(--color-text-primary);
    font-size: 0.95rem;
}

.testimonial-author strong {
    color: var(--color-text-primary);
}

.portfolio-cta {
    text-align: center;
    margin-top: 5rem;
    padding-top: 4rem;
   
}

.portfolio-cta p {
    color: var(--color-gray-500);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* Bouton CTA Portfolio Moderne */
.portfolio-cta .btn-primary {
    position: relative;
    padding: 18px 40px;
    font-size: 1.0625rem;
    font-weight: 600;
    overflow: hidden;
    background: var(--color-accent);
    border: none;
    box-shadow: 
        0 4px 15px rgba(37, 99, 235, 0.3),
        inset 0 -2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Effet de lueur animée */
.portfolio-cta .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.6s ease;
}

.portfolio-cta .btn-primary:hover::before {
    left: 100%;
}

/* Effet de pulsation */
.portfolio-cta .btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-accent), #4a4ac0);
    border-radius: 10rem;
    z-index: -1;
    opacity: 0;
    filter: blur(12px);
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.portfolio-cta .btn-primary:hover::after {
    opacity: 0.8;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

/* Hover state */
.portfolio-cta .btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 8px 25px rgba(91, 91, 214, 0.5),
        0 4px 12px rgba(91, 91, 214, 0.3),
        inset 0 -2px 8px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #4a4ac0 0%, var(--color-accent) 100%);
}

/* Active state */
.portfolio-cta .btn-primary:active {
    transform: translateY(-1px) scale(1);
    box-shadow: 
        0 4px 15px rgba(91, 91, 214, 0.4),
        inset 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Icône animée (si vous ajoutez une flèche) */
.portfolio-cta .btn-primary .btn-icon {
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.portfolio-cta .btn-primary:hover .btn-icon {
    transform: translateX(4px);
}

/* Responsive */
/* Responsive Mobile - Portfolio Horizontal */
@media (max-width: 1023px) {
    .portfolio-vertical-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .portfolio-preview-container {
        height: 400px;
        width: 100%;
    }
    
    /* Images fantômes en horizontal sur mobile avec effet 3D */
    .portfolio-preview-ghost.prev {
        top: 50%;
        left: 0;
        transform: translateX(-30px) translateY(-50%) translateZ(-100px) rotateY(15deg) scale(0.8);
        opacity: 0.4;
        filter: blur(3px);
    }
    
    .portfolio-preview-ghost.next {
        top: 50%;
        right: 0;
        left: auto;
        bottom: auto;
        transform: translateX(30px) translateY(-50%) translateZ(-100px) rotateY(-15deg) scale(0.8);
        opacity: 0.4;
        filter: blur(3px);
    }
    
    /* Animation slide horizontal sur mobile avec effet 3D */
    .portfolio-screen-mockup.sliding-up {
        transform: translateX(-150px) translateZ(-200px) rotateY(25deg) scale(0.7);
        opacity: 0;
    }
    
    .portfolio-screen-mockup.sliding-down {
        transform: translateX(150px) translateZ(-200px) rotateY(-25deg) scale(0.7);
        opacity: 0;
    }
    
    .portfolio-navigation-buttons {
        flex-direction: row;
        justify-content: center;
        margin: 2rem 0;
        gap: 2rem;
    }
    
    /* Rotation des icônes SVG pour horizontal */
    .portfolio-nav-btn#portfolioPrevBtn svg {
        transform: rotate(-90deg);
    }
    
    .portfolio-nav-btn#portfolioNextBtn svg {
        transform: rotate(-90deg);
    }
    
    .portfolio-details {
        padding: 2.5rem;
    }
}

@media (max-width: 767px) {
    .portfolio-preview-container {
        height: 350px;
    }
        .portfolio-cta .btn-primary {
        padding: 16px 40px;
        font-size: 1rem;
    }
    .portfolio-nav-btn {
        width: 50px;
        height: 50px;
    }
    
    .portfolio-nav-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .portfolio-details {
        padding: 2rem 1.5rem;
        min-height: auto;
    }
}

@media (max-width: 479px) {
    .portfolio-preview-container {
        height: 300px;
    }
    
    .portfolio-nav-btn {
        width: 46px;
        height: 46px;
    }
}
/* ============================================
   DASHBOARD SHOWCASE SECTION
   ============================================ */

.dashboard-showcase {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.dashboard-showcase .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.dashboard-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

.dashboard-text {
    width: 100%;
    max-width: 100%;
}

.dashboard-preview {
    width: 100%;
    max-width: 100%;
}

.dashboard-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2.5rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.dashboard-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--color-bg-primary);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.dashboard-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--color-accent);
}

.dashboard-feature svg {
    flex-shrink: 0;
    color: var(--color-accent);
    margin-top: 0.25rem;
}

.dashboard-feature h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 0.25rem;
}

.dashboard-feature p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    margin: 0;
}

.dashboard-cta {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.dashboard-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.dashboard-preview {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.dashboard-mockup {
    background: var(--color-bg-primary);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 1.5rem;
    background: #f8fafc;
}

.dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

/* Dashboard Header */
.mockup-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.mockup-header-left h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.25rem;
}

.mockup-header-left p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.mockup-header-right {
    display: flex;
    align-items: center;
}

.mockup-project-code {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 0.5rem 0.875rem;
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
}

.mockup-code-label {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-secondary);
}

.mockup-code-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent);
    font-family: monospace;
}

/* Project Header Card */
.mockup-project-header-card {
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 250px;
    gap: 1.5rem;
    align-items: start;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.mockup-project-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mockup-project-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    width: fit-content;
}

.mockup-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3b82f6;
    display: block;
}

.mockup-project-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0;
}

.mockup-project-description {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    margin: 0;
    line-height: 1.5;
}

.mockup-project-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.mockup-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--color-text-secondary);
}

.mockup-meta-item svg {
    flex-shrink: 0;
    color: var(--color-text-secondary);
}

.mockup-meta-item strong {
    color: var(--color-text-primary);
    font-weight: 600;
}

/* Progress Card */
.mockup-project-progress-card {
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 16px;
    padding: 1.25rem;
}

.mockup-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.875rem;
}

.mockup-progress-label {
    font-size: 0.8125rem;
    color: var(--color-text-secondary);
    font-weight: 500;
}

.mockup-progress-percentage {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-accent);
}

.mockup-progress-bar {
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.mockup-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-accent), #3b82f6);
    border-radius: 5px;
    transition: width 0.3s ease;
}

.mockup-progress-detail {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    margin: 0;
}

/* Stats Grid */
.mockup-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.mockup-stat-card {
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.mockup-stat-card:hover {
    border-color: rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mockup-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mockup-stat-icon-purple {
    background: rgba(37, 99, 235, 0.1);
    color: var(--color-accent);
}

.mockup-stat-icon-blue {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.mockup-stat-icon-orange {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.mockup-stat-icon-green {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.mockup-stat-content {
    flex: 1;
    min-width: 0;
}

.mockup-stat-label {
    font-size: 0.8125rem;
    color: var(--color-text-secondary);
    margin-bottom: 0.125rem;
}

.mockup-stat-value {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.125rem;
}

.mockup-stat-change {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
}

.mockup-stat-change.positive {
    color: #10b981;
}

.mockup-stat-change.warning {
    color: #f59e0b;
}


@media (max-width: 1024px) {
    .dashboard-showcase {
        padding: 80px 0;
    }
    
    .dashboard-showcase .container {
        padding: 0 1.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .dashboard-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        width: 100%;
        max-width: 100%;
    }
    
    .dashboard-text {
        order: 2;
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .dashboard-preview {
        order: 1;
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .dashboard-mockup {
        transform: none;
        max-width: 600px;
        width: 100%;
        margin: 0 auto;
    }
    
    .dashboard-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100%;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .dashboard-feature {
        padding: 1.25rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .section-subtitle {
        font-size: 1.05rem;
    }
    
    .mockup-project-header-card {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .mockup-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dashboard-showcase {
        padding: 60px 0;
        width: 100%;
        overflow-x: hidden;
    }
    
    .dashboard-showcase .container {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .dashboard-content {
        gap: 2rem;
        width: 100%;
        max-width: 100%;
        grid-template-columns: 1fr;
    }
    
    .dashboard-text {
        text-align: center;
        width: 100%;
        max-width: 100%;
        padding: 0;
        box-sizing: border-box;
    }
    
    .section-title {
        font-size: 1.875rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        word-wrap: break-word;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
    }
    
    .dashboard-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 2rem auto;
        width: 100%;
        max-width: 500px;
        box-sizing: border-box;
    }
    
    .dashboard-feature {
        padding: 1rem;
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .dashboard-feature svg {
        margin-top: 0.25rem;
        flex-shrink: 0;
        width: 24px;
        height: 24px;
    }
    
    .dashboard-feature h4 {
        font-size: 0.95rem;
        margin-bottom: 0.25rem;
        word-wrap: break-word;
    }
    
    .dashboard-feature p {
        font-size: 0.85rem;
        word-wrap: break-word;
    }
    
    .dashboard-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 100%;
    }
    
    .dashboard-cta .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        box-sizing: border-box;
    }
    
    .dashboard-note {
        justify-content: center;
        text-align: center;
        flex-wrap: wrap;
        word-wrap: break-word;
    }
    
    .dashboard-preview {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
    }
    
    .dashboard-mockup {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    .mockup-dashboard-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .mockup-project-header-card {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 1.25rem;
    }
    
    .mockup-stats-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .mockup-stat-card {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .dashboard-showcase {
        padding: 40px 0;
        width: 100%;
        overflow-x: hidden;
    }
    
    .dashboard-showcase .container {
        padding: 0 0.75rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .dashboard-content {
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    .section-title {
        font-size: 1.5rem;
        line-height: 1.3;
        word-wrap: break-word;
    }
    
    .section-subtitle {
        font-size: 0.875rem;
        line-height: 1.5;
        word-wrap: break-word;
    }
    
    .dashboard-features {
        gap: 0.75rem;
        margin: 1.5rem auto;
        width: 100%;
        max-width: 400px;
    }
    
    .dashboard-feature {
        padding: 0.875rem;
        flex-direction: row;
        gap: 0.75rem;
        width: 96%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .dashboard-feature svg {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }
    
    .dashboard-feature h4 {
        font-size: 0.875rem;
        word-wrap: break-word;
    }
    
    .dashboard-feature p {
        font-size: 0.8rem;
        word-wrap: break-word;
    }
    
    .dashboard-cta {
        width: 100%;
        max-width: 100%;
    }
    
    .dashboard-cta .btn {
        font-size: 0.875rem;
        padding: 0.75rem 1.5rem;
        width: 92%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .dashboard-note {
        font-size: 0.8rem;
        word-wrap: break-word;
        text-align: center;
    }
    
    .dashboard-preview {
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .dashboard-mockup {
        width: 92%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .dashboard-mockup {
        padding: 1rem;
    }
    
    .mockup-dashboard-header h3 {
        font-size: 1.25rem;
    }
    
    .mockup-dashboard-header p {
        font-size: 0.8rem;
    }
    
    .mockup-project-header-card {
        padding: 1rem;
    }
    
    .mockup-project-title {
        font-size: 1.125rem;
    }
    
    .mockup-project-description {
        font-size: 0.8rem;
    }
    
    .mockup-project-progress-card {
        padding: 1rem;
    }
    
    .mockup-stats-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .mockup-stat-card {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .mockup-stat-icon {
        width: 40px;
        height: 40px;
    }
    
    .mockup-stat-value {
        font-size: 1.25rem;
    }
    
    .mockup-stat-label {
        font-size: 0.75rem;
    }
    
    .mockup-stat-change {
        font-size: 0.7rem;
    }
}

/* ============================================
   BOOKING SECTION
   ============================================ */

.booking {
    padding: 140px 0;
    background: var(--color-bg-secondary);
    position: relative;
    margin-top: 80px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}



.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 4rem;
    align-items: start;
}

.booking-benefits-container {
    position: relative;
    width: 100%;
}

.booking-benefits-slider {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.booking-benefit {
    background: var(--color-black);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    gap: 1.25rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}



/* Disable animation on desktop for perf cards */
@media (min-width: 768px) {
    .performance-cards-wrapper {
        animation: none;
    }
}

.booking-benefit.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.booking-benefit:hover {
    border-color: rgba(91, 91, 214, 0.3);
    background: var(--color-gray-900);
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(91, 91, 214, 0.15);
}

.benefit-icon {
    width: 52px;
    height: 52px;
    background: rgba(91, 91, 214, 0.1);
    border: 1px solid rgba(91, 91, 214, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--color-accent);
}

.booking-benefit h4 {
    font-size: 1.125rem;
    color: var(--color-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.booking-benefit p {
    color: var(--color-gray-500);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}


.booking-calendar {
    background: var(--color-bg-primary);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    border-radius: 12px;
    width: 100%;
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.booking-calendar:hover {
    transform: rotate(-3deg);
}

.calendar-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
}

.calendar-header h3 {
    font-size: 1.5rem;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
}

.calendar-header p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.calendar-container {
    min-height: 600px;
    width: 100%;
    position: relative;
}

.calendar-container iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 8px;
}
/* ============================================
   BARRES DE SÉPARATION ANIMÉES UNIVERSELLES
   ============================================ */

/* Barre animée au début de section */
.section-bar-top {
    position: relative;
    width: 100%;
    height: 2px;
    margin-bottom: 5rem;
}

.section-bar-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(91, 91, 214, 0.2) 20%,
        rgba(91, 91, 214, 0.8) 50%,
        rgba(91, 91, 214, 0.2) 80%,
        transparent 100%
    );
    animation: slideBar 3s ease-in-out infinite;
}

/* Barre animée à la fin de section */
.section-bar-bottom {
    position: relative;
    width: 100%;
    height: 2px;
    margin-top: 5rem;
}

.section-bar-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(91, 91, 214, 0.2) 20%,
        rgba(91, 91, 214, 0.8) 50%,
        rgba(91, 91, 214, 0.2) 80%,
        transparent 100%
    );
    animation: slideBar 3s ease-in-out infinite 1.5s;
}

/* Animation de glissement */
@keyframes slideBar {
    0%, 100% {
        opacity: 0.5;
        transform: scaleX(0.8);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* Responsive */
@media (max-width: 767px) {
    .section-bar-top {
        margin-bottom: 3rem;
    }
    
    .section-bar-bottom {
        margin-top: 3rem;
    }
}
/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    padding: 140px 0;
    background: var(--color-bg-secondary);
    position: relative;
}



.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-top: 4rem;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.contact-info > p {
    color: var(--color-gray-500);
    font-size: 1.125rem;
    margin-bottom: 3.5rem;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-method {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.method-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-accent);
}

.contact-method h4 {
    color: var(--color-white);
    margin-bottom: 0.375rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.contact-method p {
    color: var(--color-gray-500);
    font-size: 0.95rem;
}

.contact-form {
    background: var(--color-black);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 3rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
    font-family: inherit;
}

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

.footer {
    background: var(--color-bg-secondary);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 100px 0 40px;
    position: relative;
    width: 100%;
    clear: both;
    margin-top: auto;
    flex-shrink: 0;
    z-index: 10;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-logo-section {
    text-align: center;
    margin-bottom: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.footer-logo-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.footer-logo-top {
    display: none;
}

.footer-logo-img {
    width: auto;
    height: 70px;
    max-width: 300px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: brightness(1);
}

.footer-logo-section:hover .footer-logo-img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    position: relative;
}

.footer-arrow {
    position: absolute;
    height: 4px;
    background: var(--color-accent);
    animation: growArrow 2s ease-in-out infinite;
    border-radius: 2px;
}

.footer-arrow:nth-child(1) { top: 15px; animation-delay: 0s; }
.footer-arrow:nth-child(2) { top: 23px; animation-delay: 0.25s; }
.footer-arrow:nth-child(3) { top: 31px; animation-delay: 0.5s; }

.footer-arrow::after {
    content: '';
    position: absolute;
    right: -8px;
    top: -4px;
    border-left: 8px solid var(--color-accent);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.footer-logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(90deg, var(--color-text-primary), var(--color-accent), var(--color-text-primary));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

.footer-logo-agency {
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: #3b82f6;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: -2px;
    line-height: 1.2;
}

.charts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 60px;
}

.footer .chart-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s ease;
    min-height: 300px;
}

.footer .chart-card:hover {
    border-color: rgba(91, 91, 214, 0.3);
    background: rgba(91, 91, 214, 0.05);
}

.footer .chart-title {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer .funnel-chart {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.funnel-step {
    background: linear-gradient(90deg, rgba(91, 91, 214, 0.3), rgba(91, 91, 214, 0.05));
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    transition: all 0.3s ease;
    animation: slideInLeft 0.8s ease-out backwards;
}

.funnel-step:nth-child(1) { animation-delay: 0.1s; width: 100%; }
.funnel-step:nth-child(2) { animation-delay: 0.2s; width: 85%; }
.funnel-step:nth-child(3) { animation-delay: 0.3s; width: 65%; }
.funnel-step:nth-child(4) { animation-delay: 0.4s; width: 42%; background: linear-gradient(90deg, #5b5bd6, rgba(91, 91, 214, 0.5)); }

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

.funnel-label {
    font-size: 0.85rem;
    color: white;
    font-weight: 500;
}

.funnel-value {
    font-size: 0.9rem;
    color: #5b5bd6;
    font-weight: 600;
}

.radar-chart {
    width: 200px;
    height: 200px;
    margin: 1.5rem auto;
    position: relative;
}

.radar-svg {
    width: 100%;
    height: 100%;
}

.radar-grid {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 1;
}

.radar-shape {
    fill: rgba(91, 91, 214, 0.2);
    stroke: #5b5bd6;
    stroke-width: 2;
    animation: drawRadar 2s ease-out;
}

@keyframes drawRadar {
    from { opacity: 0; transform: scale(0); }
}

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

.radar-label {
    text-align: center;
    font-size: 0.75rem;
    color: #666;
}

.radar-label span {
    display: block;
    color: #5b5bd6;
    font-weight: 600;
    margin-top: 0.25rem;
}

.heatmap-chart {
    margin-top: 1.5rem;
}

.heatmap-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 4px;
}

.heatmap-cell {
    aspect-ratio: 1;
    border-radius: 4px;
    animation: fadeInCell 0.5s ease-out backwards;
}

.heatmap-cell.low { background: rgba(91, 91, 214, 0.2); }
.heatmap-cell.medium { background: rgba(91, 91, 214, 0.5); }
.heatmap-cell.high { background: rgba(91, 91, 214, 0.8); }
.heatmap-cell.max { background: #5b5bd6; }

@keyframes fadeInCell {
    from { opacity: 0; transform: scale(0); }
}

.heatmap-cell:nth-child(1) { animation-delay: 0.05s; }
.heatmap-cell:nth-child(2) { animation-delay: 0.1s; }
.heatmap-cell:nth-child(3) { animation-delay: 0.15s; }
.heatmap-cell:nth-child(4) { animation-delay: 0.2s; }
.heatmap-cell:nth-child(5) { animation-delay: 0.25s; }
.heatmap-cell:nth-child(6) { animation-delay: 0.3s; }
.heatmap-cell:nth-child(7) { animation-delay: 0.35s; }
.heatmap-cell:nth-child(8) { animation-delay: 0.4s; }
.heatmap-cell:nth-child(9) { animation-delay: 0.45s; }
.heatmap-cell:nth-child(10) { animation-delay: 0.5s; }
.heatmap-cell:nth-child(11) { animation-delay: 0.55s; }
.heatmap-cell:nth-child(12) { animation-delay: 0.6s; }

.heatmap-legend {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #666;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 3px;
}

.growth-chart {
    margin-top: 1.5rem;
}

.growth-svg {
    width: 100%;
    height: 120px;
}

.growth-path {
    fill: none;
    stroke: #5b5bd6;
    stroke-width: 3;
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: drawPath 2s ease-out forwards;
}

@keyframes drawPath {
    to { stroke-dashoffset: 0; }
}

.growth-area {
    fill: url(#growthGradient);
    opacity: 0;
    animation: fadeIn 1s ease-out 1s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.growth-dots {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
}

.growth-dot {
    text-align: center;
    font-size: 0.7rem;
    color: #666;
}

.growth-dot span {
    display: block;
    color: white;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.donut-chart {
    width: 180px;
    height: 180px;
    margin: 1.5rem auto;
    position: relative;
}

.donut-svg {
    transform: rotate(-90deg);
}

.donut-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 30;
}

.donut-segment {
    fill: none;
    stroke-width: 30;
    stroke-linecap: round;
    animation: fillDonut 2s ease-out forwards;
}

.donut-segment.seg1 {
    stroke: #5b5bd6;
    stroke-dasharray: 220 440;
    stroke-dashoffset: 440;
}

.donut-segment.seg2 {
    stroke: #8b7cdf;
    stroke-dasharray: 165 440;
    stroke-dashoffset: 605;
}

@keyframes fillDonut {
    to { stroke-dashoffset: 0; }
}

.donut-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.donut-value {
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.donut-label {
    font-size: 0.7rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stacked-chart {
    margin-top: 1.5rem;
    height: 100px;
    position: relative;
}

.stacked-area {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(91, 91, 214, 0.3) 0%, rgba(91, 91, 214, 0.1) 100%);
    clip-path: polygon(0 100%, 0 60%, 20% 55%, 40% 50%, 60% 45%, 80% 40%, 100% 35%, 100% 100%);
    animation: slideUp 1.5s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
}

.stacked-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(180deg, #5b5bd6 0%, rgba(91, 91, 214, 0.5) 100%);
    clip-path: polygon(0 100%, 0 80%, 20% 75%, 40% 70%, 60% 60%, 80% 50%, 100% 40%, 100% 100%);
    animation: slideUp 1.5s ease-out 0.3s backwards;
}

/* Footer Top Section */
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-description {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 1.5rem 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-bg-primary);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    color: var(--color-text-secondary);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: white;
    transform: translateY(-2px);
}

/* Footer Navigation */
.footer-nav,
.footer-services,
.footer-contact {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: var(--color-accent);
    transform: translateX(4px);
}

.footer-link::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

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

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

.contact-item svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.footer-copyright {
    color: var(--color-text-secondary);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.legal-link {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: var(--color-accent);
}

.footer-bottom-badge {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-bottom-badge span {
    color: var(--color-gray-500);
    font-size: 0.8rem;
    font-style: italic;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-logo-section {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        text-align: center;
    }
    
    .footer-logo-main {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-top {
        gap: 1.5rem;
    }
    
    .footer-logo-section {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        text-align: center;
    }
    
    .footer-logo-main {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-legal {
        gap: 1rem;
    }
    
    .legal-link {
        font-size: 0.8rem;
    }
}

/* ============================================
   PRICING SECTION (si vous en avez besoin)
   ============================================ */

.pricing {
    padding: 140px 0;
    background: var(--color-bg-secondary);
}

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

.pricing-card {
    background: var(--color-black);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: rgba(91, 91, 214, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(91, 91, 214, 0.15);
}

.pricing-card.featured {
    border-color: var(--color-accent);
    background: linear-gradient(180deg, rgba(91, 91, 214, 0.05) 0%, var(--color-black) 100%);
}

.featured-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--color-accent);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.25rem;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-white);
}

.price-period {
    color: var(--color-gray-500);
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.pricing-features li {
    padding: 1rem 0;
    color: var(--color-gray-500);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    color: var(--color-accent);
    font-weight: bold;
    font-size: 1.25rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in-up.animate-in {
    opacity: 1;
    transform: translateY(0);
}
/* ============================================
   RESPONSIVE DESIGN - MEDIA QUERIES
   ============================================ */

/* Extra Large Devices (1400px et plus) */
@media (min-width: 1400px) {
    .container {
        max-width: 1600px;
    }
    
    .hero-title {
        font-size: 5rem;
    }
}

/* Large Devices (1200px - 1399px) */
@media (max-width: 1399px) {
    .container {
        max-width: 1200px;
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

/* Medium-Large Devices (1024px - 1199px) */
@media (max-width: 1199px) {
    .container {
        padding: 0 25px;
    }
    
    .hero-title {
        font-size: 3.75rem;
    }
    
    .generator-wrapper {
        grid-template-columns: 380px 1fr;
        gap: 2.5rem;
    }
    
    .booking-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .portfolio-vertical-wrapper {
        grid-template-columns: 1fr 60px 1fr;
    }
}

/* Tablets & Small Laptops (768px - 1023px) */
@media (max-width: 1023px) {
    .container {
        padding: 0 25px;
    }
    
    
    /* Hero Section */
    .hero {
        padding: 100px 0 50px;
        margin-top: 30px;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-text .hero-cta {
        text-align: center;
        margin-top: 1.5rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-image {
        max-width: 100%;
        order: -1;
    }

    .floating-image {
        max-height: 300px;
        width: auto;
        object-fit: contain;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
        padding: 2.5rem 0;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* Sections */
    .features,
    .generator,
    .pricing,
    .contact,
    .portfolio,
    .booking {
        padding: 120px 0;
    }
    
    .section-title {
        font-size: 2.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 4rem;
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 2.5rem;  /* Au lieu de 1rem */
    }
    
    /* Generator */
    .generator-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .generator-form,
    .generator-preview {
        position: relative;
        top: 0;
    }
    
    /* Pricing Grid */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-card {
        border: 1px solid rgba(255, 255, 255, 0.06);
    }
    
    /* Portfolio */
    .portfolio-vertical-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .portfolio-screen-mockup {
        transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
    }
    
    .portfolio-screen-mockup:hover {
        transform: perspective(1200px) rotateY(0deg) rotateX(0deg) translateY(-5px);
    }
    
    .portfolio-navigation-buttons {
        flex-direction: row;
        justify-content: center;
        margin: 2rem 0;
    }
    
    .portfolio-details {
        padding: 2.5rem;
    }
    
    /* Booking Section - Tablette */
      .booking-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        overflow: hidden; /* Empêche le débordement */
    }
    
    .booking-benefits-container {
        width: 100%;
        overflow: hidden; /* Important */
    }
    
    .booking-benefits-slider {
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        scrollbar-width: thin;
        scrollbar-color: rgba(91, 91, 214, 0.3) transparent;
        padding: 1rem 0 2rem;
        gap: 1rem;
        margin: 0 -20px; /* Compense le padding du container */
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .booking-benefits-slider::-webkit-scrollbar {
        height: 6px;
    }
    
    .booking-benefits-slider::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .booking-benefits-slider::-webkit-scrollbar-thumb {
        background: rgba(91, 91, 214, 0.3);
        border-radius: 3px;
    }
    
    .booking-calendar {
        padding: 2rem;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    .calendar-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .calendar-container iframe {
        width: 100%;
        max-width: 100%;
    }
}
    
    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .contact-info h2 {
        font-size: 2.5rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }


/* Mobile & Tablets (640px - 767px) */
/* Mobile & Tablets (640px - 767px) */
@media (max-width: 767px) {
    .container {
        padding: 0 20px;
        max-width: 100%;
    }
    
    .btn-devis-nav {
        display: none;
    }
    
    /* Hero Section */
    .hero {
        padding: 80px 0 40px;
        margin-top: 20px;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-text .hero-cta {
        text-align: center;
        margin-top: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.75rem;
        line-height: 1.15;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-image {
        max-width: 100%;
        order: -1;
    }

    .floating-image {
        max-height: 250px;
        width: auto;
        object-fit: contain;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 4rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2rem 0;
    }
    
    .stat-number {
        font-size: 2.25rem;
    }
    
    .stat-label {
        font-size: 0.875rem;
    }
    
    /* Sections */
    .features,
    .generator,
    .pricing,
    .contact,
    .portfolio,
    .booking {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.25rem;
        margin-bottom: 0.75rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 3rem;
    }
    
    /* Features */
    .features-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        background: transparent;
        border: none;
        padding: 0;
    }
    
    .feature-card {
        display: block;
        padding: 2rem 1.5rem;
        border: 1px solid rgba(255, 255, 255, 0.06);
        background: var(--color-black);
        border-radius: 12px;
        width: 100%;
    }
    
    .feature-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 1.25rem;
    }
    
    .feature-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .feature-card h3 {
        font-size: 1.125rem;
        margin-bottom: 0.625rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Generator */
    .generator-form {
        padding: 2rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .preview-content {
        min-height: 400px;
    }
    
    .preview-placeholder {
        height: 400px;
    }
    
    /* Portfolio */
    .portfolio-details {
        padding: 2rem 1.5rem;
        min-height: auto;
    }
    
    .portfolio-logo span {
        font-size: 1.5rem;
    }
    
    .portfolio-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .portfolio-tags-list {
        gap: 8px;
        margin-bottom: 2rem;
    }
    
    .portfolio-badge {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .portfolio-testimonial {
        padding: 1.5rem;
    }
    
    /* Booking Section - Mobile */
    .booking {
        padding: 60px 0;
        overflow-x: hidden;
    }
    
    .booking .container {
        overflow: hidden;
    }
    
    .booking-wrapper {
        display: flex;
        justify-content: center;
        margin-top: 2.5rem;
    }
    
    
    
    .booking-calendar {
        padding: 1.5rem;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .calendar-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .calendar-header h3 {
        font-size: 1.25rem;
    }
    
    .calendar-header p {
        font-size: 0.875rem;
    }
    
    .calendar-container {
        min-height: 500px;
        width: 100%;
        overflow: hidden;
    }
    
    .calendar-container iframe {
        width: 100% !important;
        height: 500px !important;
        max-width: 100%;
        border-radius: 8px;
    }
    
    /* Pricing */
    .pricing-card {
        padding: 2.5rem 2rem;
    }
    
    .pricing-card h3 {
        font-size: 1.125rem;
    }
    
    .price-amount {
        font-size: 3rem;
    }
    
    .pricing-features {
        margin-bottom: 2rem;
    }
    
    .pricing-features li {
        padding: 0.875rem 0;
        font-size: 0.9rem;
    }
    
    /* Contact */
    .contact {
        padding: 60px 0;
    }
    
    .contact-info h2 {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }
    
    .contact-info > p {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
    
    .contact-methods {
        gap: 2rem;
    }
    
    .contact-method {
        gap: 1rem;
    }
    
    .method-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .contact-form textarea {
        min-height: 120px;
    }
    
    /* Footer */
    .footer {
        padding: 4rem 0 2.5rem;
    }
    
    .footer-content {
        gap: 3rem;
        margin-bottom: 3rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-column h4 {
        margin-bottom: 1.25rem;
    }
    
    .footer-bottom {
        padding-top: 2rem;
        font-size: 0.85rem;
    }
} /* <-- L'ACCOLADE DOIT ÊTRE ICI, PAS AVANT ! */
/* Small Mobile Devices (480px - 639px) */
@media (max-width: 639px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    .booking {
        padding: 50px 0;
    }
    
    .booking-wrapper {
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .booking-benefit {
        padding: 1.5rem;
    }
    
    .booking-calendar {
        padding: 1.25rem;
    }
    
    .calendar-container {
        min-height: 480px;
    }
    
    .calendar-container iframe {
        height: 480px !important;
    }
    
    .contact-form {
        padding: 1.75rem;
    }
    
    .feature-card,
    .portfolio-details,
    .portfolio-testimonial {
        padding: 1.75rem 1.5rem;
    }
}

/* Extra Small Mobile (320px - 479px) */
@media (max-width: 479px) {
    .container {
        padding: 0 16px;
        max-width: 100%;
    }
    
    /* Hero */
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 1.875rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta {
        margin-bottom: 3rem;
    }
    
    .hero-stats {
        gap: 2rem;
        padding: 1.5rem 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Sections */
    .features,
    .generator,
    .pricing,
    .contact,
    .portfolio,
    .booking {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 0.875rem;
        margin-bottom: 2.5rem;
    }
    
    /* Cards */
    .feature-card {
        padding: 1.75rem 1.25rem;
    }
    
    .feature-card h3 {
        font-size: 1.0625rem;
    }
    
    .feature-card p {
        font-size: 0.875rem;
    }
}
    
    /* Generator */
    .generator-form {
        padding: 1.5rem;
    }
    
    .form-group label {
        font-size: 0.875rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 0.9rem;
    }
    
    /* Pricing */
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .featured-badge {
        top: 1.5rem;
        right: 1.5rem;
        padding: 5px 12px;
        font-size: 0.7rem;
    }
    
    /* Portfolio */
    .portfolio-logo span {
        font-size: 1.25rem;
    }
    
    .portfolio-description {
        font-size: 0.875rem;
    }
    
    .portfolio-nav-btn {
        width: 46px;
        height: 46px;
    }
    
   /* Booking - Très petit mobile avec slider horizontal */
   .booking {
        padding: 50px 0;
    }
    
    .booking-wrapper {
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .booking-benefit {
        flex: 0 0 90%;
        min-width: 90%;
        width: 90%;
        padding: 1.25rem;
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-icon {
        width: 44px;
        height: 44px;
        margin: 0 auto 0.75rem auto;
    }
    
    .benefit-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .booking-benefit h4 {
        font-size: 1rem;
        margin-bottom: 0.375rem;
    }
    
    .booking-benefit p {
        font-size: 0.875rem;
    }
    
    .booking-calendar {
        padding: 1rem;
    }
    
    .calendar-header {
        margin-bottom: 1.25rem;
        padding-bottom: 1.25rem;
    }
    
    .calendar-header h3 {
        font-size: 1.125rem;
    }
    
    .calendar-header p {
        font-size: 0.8125rem;
    }
    
    .calendar-container {
        min-height: 450px;
    }
    
    .calendar-container iframe {
        width: 100% !important;
        height: 450px !important;
    }

    
    /* Contact */
    .contact {
        padding: 50px 0;
    }
    
    .contact-info h2 {
        font-size: 1.75rem;
    }
    
    .contact-info > p {
        font-size: 0.9375rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .method-icon {
        width: 36px;
        height: 36px;
    }
    
    .contact-method h4 {
        font-size: 0.875rem;
    }
    
    .contact-method p {
        font-size: 0.875rem;
    }
    
    /* Footer */
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-content {
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }
    
    .footer-brand p {
        font-size: 0.875rem;
    }
    
    .footer-links {
        gap: 2rem;
    }
    
    .footer-column h4 {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }
    
    .footer-column a {
        font-size: 0.875rem;
        margin-bottom: 0.875rem;
    }
    
    .footer-bottom {
        font-size: 0.8125rem;
    }


/* Landscape Mobile Devices */
@media (max-width: 767px) and (orientation: landscape) {
    .hero {
        padding: 100px 0 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .booking,
    .features,
    .generator,
    .pricing,
    .contact,
    .portfolio {
        padding: 60px 0;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .calendar-container {
        min-height: 400px;
    }
    
    .calendar-container iframe {
        height: 400px !important;
    }
}

/* Très petit mobile en paysage */
@media (max-width: 667px) and (orientation: landscape) {
    .booking-benefit {
        flex-direction: row;
        text-align: left;
    }
    
    .benefit-icon {
        margin: 0;
    }
    
    .calendar-container {
        min-height: 350px;
    }
    
    .calendar-container iframe {
        height: 350px !important;
    }
}

/* Fix pour les petits écrans */
@media (max-width: 374px) {
    .container {
        padding: 0 12px;
    }
    
    .logo {
        font-size: 0.875rem;
    }
    
    .logo .shift-text {
        display: none;
    }
    
    .logo .agency-text {
        display: none;
    }
    
    .logo .arrows-icon {
        width: 24px;
        height: 24px;
    }
    
    .logo .arrow-line {
        height: 1.5px;
    }
    
    .logo .arrow-line:nth-child(1) {
        top: 6px;
    }
    
    .logo .arrow-line:nth-child(2) {
        top: 10px;
    }
    
    .logo .arrow-line:nth-child(3) {
        top: 14px;
    }
    
    .booking-calendar {
        padding: 0.875rem;
    }
    
    .calendar-container {
        min-height: 400px;
    }
    
    .calendar-container iframe {
        height: 400px !important;
    }
    
    .booking-benefit {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 1.625rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .navbar,
    .hero-cta,
    .footer,
    .btn,
    
    body {
        background: white;
        color: black;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    .booking-calendar,
    .contact-form {
        border: 1px solid #ccc;
    }
}

/* ============================================
   HIGH DPI DISPLAYS
   ============================================ */

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero-title-bg {
        animation: none !important;
    }
}

/* ============================================
   CONVERSION STYLES (from conversion-styles.css)
   ============================================ */

/* Section Process */
.process {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    margin-top: 80px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.process .subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--color-gray-500);
    margin-bottom: 4rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    background: var(--color-bg-primary);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.step.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.1);
    border-color: var(--color-accent);
}

.step .number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--color-accent);
    color: white;
    border-radius: 50%;
    line-height: 60px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.step:hover .number {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

.step:hover .number::before {
    left: 100%;
}

.step h3 {
    font-size: 1.3rem;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.step p {
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step .time {
    background: rgba(91, 91, 214, 0.1);
    color: var(--color-accent);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(91, 91, 214, 0.2);
}

/* Section FAQ */
.faq {
    padding: 140px 0;
    background: var(--color-bg-secondary);
    position: relative;
    margin-top: 80px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.faq-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--color-text-primary);
    margin-bottom: 4rem;
    font-weight: 700;
}

.faq-item {
    max-width: 800px;
    margin: 0 auto 2rem;
    background: var(--color-black);
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid var(--color-accent);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.faq-item:hover::before {
    opacity: 1;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(91, 91, 214, 0.1);
    border-color: var(--color-accent);
}

.faq-item h3 {
    font-size: 1.3rem;
    color: var(--color-white);
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.faq-item p {
    color: var(--color-gray-500);
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Header Devis */
.devis-header {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-gray-400);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid transparent;
}

.back-link:hover {
    color: var(--color-white);
    background: rgba(91, 91, 214, 0.05);
    border-color: rgba(91, 91, 214, 0.2);
    transform: translateX(-4px);
}

.back-link svg {
    transition: transform 0.3s ease;
}

.back-link:hover svg {
    transform: translateX(-2px);
}

/* Section Questionnaire Qualitatif */
.questionnaire {
    padding: 60px 0 100px;
    background: #0f0f0f;
    position: relative;
    min-height: 100vh;
}

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

.questionnaire-header h2 {
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.questionnaire-header .subtitle {
    font-size: 1.2rem;
    color: var(--color-gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.questionnaire-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.questionnaire-form {
    background: var(--color-black);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Progress */
.progress-container {
    max-width: 420px;
    margin: 0 auto 2rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-accent) 0%, #4a4ac0 100%);
    border-radius: 6px;
    width: 0%;
    transition: width 0.4s ease;
    position: relative;
}

.progress-text {
    text-align: center;
    color: var(--color-gray-400);
    font-size: 0.9rem;
    font-weight: 500;
}

.section-header {
    margin: 3rem 0 2rem;
    padding: 2rem;
    background: rgba(91, 91, 214, 0.05);
    border: 1px solid rgba(91, 91, 214, 0.2);
    border-radius: 12px;
    text-align: center;
}

.section-header h3 {
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.section-header p {
    color: var(--color-gray-400);
    font-size: 1rem;
    margin: 0;
}

.question-group {
    margin-bottom: 2rem;
}

.question-label {
    display: block;
    font-size: 1.1rem;
    color: var(--color-white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.radio-group, .checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.radio-option, .checkbox-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.radio-option:hover, .checkbox-option:hover {
    background: rgba(91, 91, 214, 0.05);
    border-color: rgba(91, 91, 214, 0.2);
}

.radio-option input, .checkbox-option input {
    display: none;
}

.radio-custom, .checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-custom {
    border-radius: 4px;
}

.radio-option input:checked + .radio-custom {
    border-color: var(--color-accent);
    background: var(--color-accent);
}

.radio-option input:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.checkbox-option input:checked + .checkbox-custom {
    border-color: var(--color-accent);
    background: var(--color-accent);
}

.checkbox-option input:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.radio-option span:last-child, .checkbox-option span:last-child {
    color: var(--color-gray-300);
    font-size: 0.95rem;
}

.select-input, .textarea-input {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: var(--color-gray-900);
    color: var(--color-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.select-input:focus, .textarea-input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(91, 91, 214, 0.1);
}

.textarea-input {
    min-height: 100px;
    resize: vertical;
}

.contact-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-fields input {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: var(--color-gray-900);
    color: var(--color-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-fields input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(91, 91, 214, 0.1);
}

.form-actions {
    text-align: center;
    margin-top: 3rem;
}

.submit-btn {
    background: linear-gradient(135deg, var(--color-accent) 0%, #4a4ac0 100%);
    color: white;
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(91, 91, 214, 0.4);
}

.form-note {
    color: var(--color-gray-500);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.questionnaire-benefits {
    background: var(--color-black);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    height: fit-content;
    position: sticky;
    top: 120px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.questionnaire-benefits h3 {
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 2rem;
    font-weight: 600;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 1rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.benefit-item p {
    font-size: 0.9rem;
    color: var(--color-gray-500);
    line-height: 1.5;
}

/* Section Recommandation */
.recommendation {
    padding: 100px 0;
    background: #0f0f0f;
    position: relative;
}

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

.recommendation-header h2 {
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.recommendation-card {
    background: var(--color-black);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.offer-info {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-info h3 {
    font-size: 2rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
    font-weight: 700;
}

.price-range {
    font-size: 1.5rem;
    color: var(--color-white);
    font-weight: 600;
}

.why-section, .included-section {
    margin-bottom: 2.5rem;
}

.why-section h4, .included-section h4 {
    font-size: 1.3rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.why-section ul, .included-section ul {
    list-style: none;
    padding: 0;
}

.why-section li, .included-section li {
    color: var(--color-gray-300);
    margin-bottom: 0.75rem;
    padding-left: 1rem;
    position: relative;
}

.why-section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
}

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

.next-step {
    background: rgba(91, 91, 214, 0.05);
    border: 1px solid rgba(91, 91, 214, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.next-step h4 {
    font-size: 1.3rem;
    color: var(--color-white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.next-step p {
    color: var(--color-gray-400);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-accent) 0%, #4a4ac0 100%);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(91, 91, 214, 0.4);
}

.cta-note {
    color: var(--color-gray-500);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive pour les styles de conversion */
@media (max-width: 768px) {
    .steps {
        grid-template-columns: 1fr;
    }
    
    .step {
        margin-bottom: 2rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .questionnaire {
        padding: 40px 0 80px;
    }
    
    .questionnaire-form {
        padding: 2rem;
    }
    
    .questionnaire-benefits {
        padding: 2rem;
    }
    
    .questionnaire-header h2 {
        font-size: 2rem;
    }
    
    .questionnaire-header .subtitle {
        font-size: 1rem;
    }
    
    .recommendation-card {
        padding: 2rem;
    }
    
    .offer-info h3 {
        font-size: 1.5rem;
    }
    
    .price-range {
        font-size: 1.2rem;
    }
}

@media (max-width: 1024px) {
    .questionnaire-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .questionnaire-benefits {
        position: relative;
        top: 0;
    }
    
    .contact-fields {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .faq-item {
        padding: 1.5rem;
    }
}
/* ============================================
   PERFORMANCE SECTION
   ============================================ */

.performance {
    padding: 140px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}





@keyframes pulseBar {
    0%, 100% {
        opacity: 0.5;
        filter: blur(0px);
    }
    50% {
        opacity: 1;
        filter: blur(1px);
    }
}

.performance-header {
    text-align: center;
    margin-bottom: 5rem;
}

.performance-header .section-title {
    color: var(--color-text-primary);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    max-width: 900px;
    margin: 0 auto 1rem;
}

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

/* Left Chart */
.performance-chart {
    background: var(--color-bg-primary);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.chart-badge {
    position: absolute;
    top: 2.5rem;
    left: 2.5rem;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent);
    z-index: 10;
    transition: all 0.3s ease;
}

.performance-chart canvas {
    width: 100% !important;
    height: 280px !important;
    max-width: 100%;
    margin: 2rem 0;
}

.chart-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.chart-label svg {
    flex-shrink: 0;
    stroke: var(--color-accent);
}

.chart-label span {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-white);
}

.chart-description {
    color: var(--color-gray-500);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Right Cards - Carousel */
.performance-cards {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Carrousel d'avis automatique */
.reviews-carousel-perf {
    grid-column: 1 / -1;
    overflow: hidden;
    border-radius: 12px;
    background: var(--color-bg-primary);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.reviews-carousel-perf::before,
.reviews-carousel-perf::after {
    content: '';
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.reviews-carousel-perf::before {
    left: 0;
    background: linear-gradient(90deg, var(--color-bg-primary) 0%, transparent 100%);
}

.reviews-carousel-perf::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, var(--color-bg-primary) 100%);
}

.reviews-track-perf {
    display: flex;
    gap: 1.5rem;
    animation: scrollReviewsPerf 25s linear infinite;
    width: max-content;
}

.reviews-carousel-perf:hover .reviews-track-perf {
    animation-play-state: paused;
}

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

.review-card-perf {
    min-width: 280px;
    max-width: 280px;
    background: var(--color-bg-secondary);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.review-card-perf:hover {
    background: var(--color-bg-primary);
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.15);
}

.review-stars-perf {
    color: #f59e0b;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    letter-spacing: 2px;
}

.review-text-perf {
    color: var(--color-text-primary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-style: italic;
}

.review-author-perf {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-author-perf strong {
    color: var(--color-text-primary);
    font-size: 0.875rem;
}

.review-author-perf span {
    color: var(--color-accent);
    font-size: 0.75rem;
    background: rgba(37, 99, 235, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

/* Legacy perf-brand-card styles (kept for compatibility) */
.perf-brand-card {
    background: var(--color-bg-primary);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.perf-brand-card:hover {
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-2px);
}

.perf-brand-card span {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

.perf-vision-card {
    background: var(--color-bg-primary);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.perf-vision-card:hover {
    border-color: rgba(37, 99, 235, 0.3);
    background: var(--color-bg-secondary);
    transform: translateY(-2px);
}

.perf-vision-card svg {
    flex-shrink: 0;
    stroke: var(--color-accent);
}

.perf-vision-card h4 {
    font-size: 1.125rem;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.perf-vision-card p {
    color: var(--color-text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Stats Footer avec barres animées */
.performance-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    padding: 3rem 0;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}



.perf-stat {
    text-align: center;
    position: relative;
}

.perf-stat h5 {
    font-size: 0.95rem;
    color: var(--color-gray-500);
    margin-bottom: 1rem;
    font-weight: 500;
}

.perf-stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 0;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 30px rgba(91, 91, 214, 0.4);
    filter: drop-shadow(0 0 20px rgba(91, 91, 214, 0.6));
    animation: perfStatGlow 3s ease-in-out infinite;
}

/* Animation glow pulsante */
@keyframes perfStatGlow {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(91, 91, 214, 0.5));
        text-shadow: 0 0 25px rgba(91, 91, 214, 0.3);
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(91, 91, 214, 0.8));
        text-shadow: 0 0 35px rgba(91, 91, 214, 0.5);
    }
}

/* Effet de lueur supplémentaire au survol */
.perf-stat:hover .perf-stat-value {
    animation: perfStatGlowHover 1.5s ease-in-out infinite;
}

@keyframes perfStatGlowHover {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(91, 91, 214, 0.7));
    }
    50% {
        filter: drop-shadow(0 0 35px rgba(91, 91, 214, 1));
    }
}

/* Desktop styles for performance cards */
@media (min-width: 768px) {
    .performance-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
        overflow: visible;
        padding-bottom: 0;
    }

    .performance-cards-wrapper {
        display: contents;
        animation: none;
        width: auto;
    }

    .perf-brand-card,
    .perf-vision-card {
        min-width: auto;
        max-width: none;
        flex-shrink: 1;
        scroll-snap-align: none;
    }
}

/* Responsive */
@media (max-width: 1199px) {
    .performance-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1023px) {
    .performance {
        padding: 120px 0;
    }
    
    .performance-header .section-title {
        font-size: 2.75rem;
    }
    
    
    .performance-stats {
        gap: 3rem;
    }
    
    .perf-stat-value {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .performance {
        padding: 80px 0;
    }
    
    .performance-header {
        margin-bottom: 3rem;
    }
    
    .performance-header .section-title {
        font-size: 2.25rem;
    }
    
    .performance-grid {
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .performance-chart {
        padding: 2rem 1.5rem;
    }
    
    .performance-chart canvas {
        width: 100% !important;
        height: 220px !important;
        max-width: 100%;
    }

    /* Carousel mobile pour avis uniquement */
    .performance-cards {
        display: block;
        width: 100%;
    }

    .performance-cards-wrapper {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    /* Masquer les perf cards en mobile */
    .perf-brand-card,
    .perf-vision-card {
        display: none !important;
    }

    /* Carrousel d'avis en mobile - prend toute la largeur */
    .reviews-carousel-perf {
        grid-column: 1 / -1;
        width: 100%;
        padding: 1.25rem;
        margin: 0;
        overflow: hidden;
    }

    .reviews-carousel-perf::before,
    .reviews-carousel-perf::after {
        width: 40px;
    }

    .reviews-track-perf {
        gap: 1rem;
        animation: scrollReviewsPerfMobile 20s linear infinite;
        will-change: transform;
    }

    .reviews-carousel-perf:hover .reviews-track-perf {
        animation-play-state: paused;
    }

    .review-card-perf {
        min-width: 260px;
        max-width: 260px;
    }

    @keyframes scrollReviewsPerfMobile {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }
    
    .chart-label span {
        font-size: 1rem;
    }
    
    
    .performance-stats {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .perf-stat-value {
        font-size: 2.25rem;
    }
}

@media (max-width: 479px) {
    .performance-header .section-title {
        font-size: 1.875rem;
    }
    
    .performance-chart {
        padding: 1.5rem 1rem;
    }
    
    .chart-badge {
        top: 1.5rem;
        left: 1.5rem;
        font-size: 0.8125rem;
    }
    
    
    .perf-stat-value {
        font-size: 2rem;
    }
}
/* ============================================
   TRUST BADGES & CONVERSION ELEMENTS
   ============================================ */

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    height: 120px;
    flex-wrap: wrap;
}

.trust-badge {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.trust-badge:nth-child(1) {
    order: 1;
    transform: translateY(0);
}

.trust-badge:nth-child(2) {
    order: 2;
    transform: translateY(0);
}

.trust-badge:nth-child(3) {
    order: 3;
    transform: translateY(60px);
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(60px);
}


.trust-badge:hover {
    background: rgba(16, 185, 129, 0.1);
    transform: translateY(-2px);
}

.trust-badge:nth-child(3):hover {
    background: rgba(16, 185, 129, 0.1);
    transform: translateX(-50%) translateY(58px);
}

.trust-badge svg {
    flex-shrink: 0;
}

.btn-badge {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    font-size: 0.75rem;
    padding: 0.25rem 0.625rem;
    border-radius: 4px;
    font-weight: 600;
    margin-left: 0.5rem;
}

.urgency-banner {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(239, 68, 68, 0.1) 100%);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin: 2rem auto;
    max-width: 600px;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: pulseUrgency 2s ease-in-out infinite;
}

@keyframes pulseUrgency {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(245, 158, 11, 0);
    }
}

.urgency-icon {
    font-size: 1.5rem;
    animation: bounce 1s ease-in-out infinite;
}

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

.urgency-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.urgency-text strong {
    color: #f59e0b;
}

.social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
}

.social-proof-avatars {
    display: flex;
    margin-left: -0.5rem;
}

.social-proof-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--color-gray-950);
    margin-left: -0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.social-proof-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.social-proof-text strong {
    color: var(--color-white);
    font-weight: 600;
}

.cta-enhanced {
    position: relative;
    overflow: hidden;
}

.cta-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    to {
        left: 100%;
    }
}

@media (max-width: 767px) {
    .trust-badges {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        margin-bottom: 2rem;
        position: relative;
        height: 120px;
        flex-wrap: wrap;
    }

    .trust-badge:nth-child(1) {
        order: 1;
        transform: translateY(0);
    }

    .trust-badge:nth-child(2) {
        order: 2;
        transform: translateY(0);
    }

    .trust-badge:nth-child(3) {
        order: 3;
        transform: translateY(60px);
        position: absolute;
        left: 50%;
        transform: translateX(-50%) translateY(60px);
    }

    .trust-badge:hover {
        background: rgba(16, 185, 129, 0.1);
        transform: translateY(-2px);
    }

    .trust-badge:nth-child(3):hover {
        background: rgba(16, 185, 129, 0.1);
        transform: translateX(-50%) translateY(58px);
    }

    .trust-badge {
        font-size: 0.8125rem;
        padding: 0.625rem 1rem;
        text-align: center;
        justify-content: center;
        max-width: 280px;
    }

    .urgency-banner {
        flex-direction: column;
        text-align: center;
    }

    .social-proof {
        flex-direction: column;
    }
}

@media (max-width: 479px) {
    .trust-badges {
        gap: 0.5rem;
        padding: 0.75rem 0;
    }

    .trust-badge {
        font-size: 0.75rem;
        padding: 0.5rem 0.875rem;
        max-width: 240px;
    }
}

/* ============================================
   UTILITAIRES SUPPLÉMENTAIRES
   ============================================ */

/* Assurer que les iframes sont toujours responsives */
iframe {
    max-width: 100%;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection styling */
::selection {
    background: var(--color-accent);
    color: white;
}

::-moz-selection {
    background: var(--color-accent);
    color: white;
}

/* Focus styles for accessibility */
*:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* Footer Responsive Styles */
@media (max-width: 1024px) {
    .charts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .charts-grid {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 60px 0 30px;
    }

    .footer-container {
        padding: 0 20px;
    }

    .footer-logo-section {
        margin-bottom: 50px;
    }

    .footer-logo-text {
        font-size: 2rem;
    }

    .chart-card {
        padding: 1.5rem;
    }
}

/* ============================================
   FAQ ACCORDION STYLES
   ============================================ */

.faq {
    padding: 120px 0;
    background: var(--color-bg-secondary);
    position: relative;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-black);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    margin: 0 auto 1.5rem;
    display: flex;
    width: fit-content;
}

.faq-badge svg {
    width: 16px;
    height: 16px;
    stroke: white;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--color-text-primary);
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: rgba(37, 99, 235, 0.05);
    border-radius: 8px;
    padding-left: 1rem;
    padding-right: 1rem;
}

.faq-question h3 {
    color: var(--color-text-primary);
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.faq-toggle {
    color: var(--color-text-primary);
    font-size: 1.5rem;
    font-weight: 300;
    transition: all 0.3s ease;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(91, 91, 214, 0.1);
}

.faq-question:hover .faq-toggle {
    background: rgba(37, 99, 235, 0.2);
    transform: scale(1.1);
}

.faq-question.active .faq-toggle {
    transform: rotate(45deg);
    background: var(--color-black);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.3s ease;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 0 0 8px 8px;
    padding: 0;
    opacity: 0;
    margin: 0;
    display: block;
    box-sizing: border-box;
}

.faq-answer.active,
.faq-question.active + .faq-answer {
    max-height: 1000px;
    padding: 1.5rem;
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    opacity: 1;
}

.faq-answer p {
    color: var(--color-text-secondary);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* FAQ Responsive */
@media (max-width: 767px) {
    .faq h2 {
        font-size: 2rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 1rem 0;
    }
    
    .faq-question:hover {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

/* ============================================
   HERO SIMPLE ANIMATION
   ============================================ */

.hero-title-animated {
    opacity: 0;
    transform: translateY(50px);
    animation: heroTitleAppear 1.2s ease-out forwards;
    animation-delay: 0.3s;
}

.hero-button-animated {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    animation: heroButtonAppear 0.8s ease-out forwards;
    animation-delay: 1.5s;
}

@keyframes heroTitleAppear {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroButtonAppear {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ============================================
   CTA FINAL
   ============================================ */

.cta-final {
    padding: 80px 0;
    background: var(--color-bg-primary);
    text-align: center;
    position: relative;
}

.cta-final::before {
    display: none;
}

.cta-final h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-text-primary);
}

.cta-final p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-final .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-accent);
    color: var(--color-white);
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-final .btn:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

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

.cta-final .btn:hover .btn-icon {
    transform: translateX(4px);
}

/* ============================================
   ANIMATIONS FADE-IN-UP
   ============================================ */

.fade-in-up {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease-out;
}

.fade-in-up.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* CTA Final Responsive */
@media (max-width: 767px) {
    .cta-final {
        padding: 60px 0;
    }

    .cta-final h2 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .cta-final p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }

    .cta-final .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

@media (max-width: 479px) {
    .cta-final {
        padding: 50px 0;
    }

    .cta-final h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .cta-final p {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    .cta-final .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}
