.elementor-2879 .elementor-element.elementor-element-5cfad75{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-2879 .elementor-element.elementor-element-0825301{width:100%;max-width:100%;margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}:root{--page-title-display:none;}/* Start custom CSS */<!-- ===== ZENDERWEB BRIEF-SITE-WEB - CSS + JS GLOBAL ===== -->
<!-- Mettre ce code UNE SEULE FOIS dans un widget HTML (en haut ou en bas de la page) -->

<style>
/* =============================================
   ZENDERWEB FUNNEL PAGE - CSS GLOBAL
   ============================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0a0a12;
    --bg-card: rgba(20, 20, 35, 0.6);
    --purple-primary: #8b5cf6;
    --purple-light: #a78bfa;
    --purple-glow: rgba(139, 92, 246, 0.4);
    --blue-accent: #3b82f6;
    --cyan-accent: #06b6d4;
    --text-white: #ffffff;
    --text-gray: #a1a1aa;
    --text-muted: #71717a;
    --border-subtle: rgba(139, 92, 246, 0.2);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --gold: #fbbf24;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-dark);
    color: var(--text-white);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* BACKGROUND EFFECTS */
.bg-gradient-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--purple-glow) 0%, transparent 70%);
    top: -200px;
    left: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    top: 50%;
    right: -150px;
    animation-delay: -7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.25) 0%, transparent 70%);
    bottom: -100px;
    left: 30%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 10px) scale(1.02); }
}

.grid-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* COMMON SECTION STYLES */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--purple-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    margin-bottom: 16px;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--purple-primary), transparent);
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* HEADER SECTION */
.header-section {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 24px 60px;
    position: relative;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-bg);
    border: 1px solid var(--border-subtle);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--purple-light);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.8s ease-out;
}

.header-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--purple-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.header-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.header-title .gradient-text {
    background: linear-gradient(135deg, var(--purple-light) 0%, var(--cyan-accent) 50%, var(--purple-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-gray);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--purple-primary) 0%, var(--blue-accent) 100%);
    color: white;
    padding: 18px 36px;
    border-radius: 60px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 30px var(--purple-glow);
    animation: fadeInUp 0.8s ease-out 0.6s both;
    position: relative;
    overflow: hidden;
}

.header-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.header-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 40px var(--purple-glow);
}

.header-cta:hover::before {
    left: 100%;
}

.header-cta svg {
    transition: transform 0.3s ease;
}

.header-cta:hover svg {
    transform: translateX(4px);
}

/* SECTION 1 : LES 4 ÉTAPES */
.steps-section {
    padding: 80px 24px 60px;
    position: relative;
    overflow: visible;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    overflow: visible;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 36px 28px;
    position: relative;
    overflow: visible;
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 1;
    transform: translateY(0);
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: var(--purple-primary);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.15), 0 0 40px rgba(139, 92, 246, 0.1);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Syne', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(139, 92, 246, 0.08);
    line-height: 1;
    transition: all 0.3s ease;
}

.step-card:hover .step-number {
    color: rgba(139, 92, 246, 0.15);
    transform: scale(1.1);
}

.step-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(6, 182, 212, 0.1) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), 
                box-shadow 0.3s ease,
                border-color 0.3s ease;
}

.step-card:hover .step-icon {
    transform: translateY(-8px) rotate(360deg);
    border-color: var(--purple-primary);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.5), 
                0 0 40px rgba(139, 92, 246, 0.3),
                inset 0 0 15px rgba(139, 92, 246, 0.1);
}

.step-icon svg {
    width: 28px;
    height: 28px;
    color: var(--purple-light);
    transition: color 0.3s ease, filter 0.3s ease;
}

.step-card:hover .step-icon svg {
    color: #fff;
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.8));
}

.step-badge {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--cyan-accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 12px;
}

.step-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-description {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-highlight {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--purple-light);
    padding: 8px 16px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 8px;
}

.step-highlight svg {
    width: 16px;
    height: 16px;
}

/* SECTION 2 : POURQUOI NOUS */
.why-section {
    padding: 80px 24px 60px;
    position: relative;
    overflow: visible;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    overflow: visible;
}

.why-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 28px 24px;
    position: relative;
    overflow: visible;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: var(--cyan-accent);
    box-shadow: 0 15px 50px rgba(6, 182, 212, 0.12);
}

.why-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(6, 182, 212, 0.1));
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), 
                box-shadow 0.3s ease,
                border-color 0.3s ease;
}

.why-card:hover .why-icon {
    transform: translateY(-8px) rotate(360deg);
    border-color: var(--cyan-accent);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.5), 
                0 0 40px rgba(6, 182, 212, 0.3),
                inset 0 0 15px rgba(6, 182, 212, 0.1);
}

.why-icon svg {
    width: 26px;
    height: 26px;
    color: var(--purple-light);
    transition: color 0.3s ease, filter 0.3s ease;
}

.why-card:hover .why-icon svg {
    color: #fff;
    filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.8));
}

.why-content {
    flex: 1;
}

.why-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.why-description {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.why-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -50px;
    right: -50px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-card:hover .why-glow {
    opacity: 1;
}

/* SECTION 3 : TÉMOIGNAGES */
.testimonials-section {
    padding: 80px 24px 60px;
    position: relative;
    overflow: visible;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 64px;
    overflow: visible;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    position: relative;
    overflow: visible;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #fbbf24;
    box-shadow: 0 15px 50px rgba(251, 191, 36, 0.12);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--purple-primary), var(--cyan-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid transparent;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), 
                box-shadow 0.3s ease,
                border-color 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
    transform: translateY(-5px) rotate(360deg);
    border-color: #fbbf24;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.5), 
                0 0 40px rgba(251, 191, 36, 0.3);
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-weight: 600;
    font-size: 1rem;
}

.testimonial-role {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.clients-logos {
    text-align: center;
}

.clients-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logos-track {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.logo-item {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 16px 32px;
    background: var(--glass-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.logo-item:hover {
    border-color: var(--purple-primary);
    color: var(--text-white);
}

/* SECTION 4 : FORMULAIRE FUNNEL */
.funnel-section {
    padding: 80px 24px 60px;
    position: relative;
}

.funnel-container {
    max-width: 700px;
    margin: 0 auto;
}

.funnel-form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-label {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
}

.form-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.option-card {
    cursor: pointer;
}

.option-card input {
    display: none;
}

.option-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 20px;
    background: var(--bg-card);
    border: 2px solid var(--border-subtle);
    border-radius: 16px;
    transition: all 0.3s ease;
    text-align: center;
}

.option-card input:checked + .option-content {
    border-color: var(--purple-primary);
    background: rgba(139, 92, 246, 0.1);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.2);
}

.option-content:hover {
    border-color: var(--purple-light);
}

.option-content svg {
    width: 32px;
    height: 32px;
    color: var(--purple-light);
}

.option-title {
    font-weight: 600;
    font-size: 1rem;
}

.option-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.option-card.small .option-content {
    padding: 16px;
}

.option-card.small .option-content svg {
    display: none;
}

.form-inputs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.input-wrapper {
    position: relative;
}

.input-wrapper svg {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--text-muted);
}

.input-wrapper input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    background: var(--bg-card);
    border: 2px solid var(--border-subtle);
    border-radius: 12px;
    color: var(--text-white);
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--purple-primary);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.input-wrapper input::placeholder {
    color: var(--text-muted);
}

/* =============================================
   BOUTON CALENDLY PREMIUM + PARTICULES
   ============================================= */

.open-calendly-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 20px 32px;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    border: none;
    border-radius: 16px;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 15px rgba(139, 92, 246, 0.3),
        0 0 0 0 rgba(139, 92, 246, 0.4);
}

.open-calendly-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 30px rgba(139, 92, 246, 0.5),
        0 0 0 4px rgba(139, 92, 246, 0.15);
}

.open-calendly-btn svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.open-calendly-btn:hover svg {
    transform: scale(1.1);
}

.open-calendly-btn .btn-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 16px;
    animation: btnPulse 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes btnPulse {
    0% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(139, 92, 246, 0); }
    100% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0); }
}

/* Particules explosion */
.btn-particle {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    z-index: 100;
}

.btn-particle-circle {
    background: radial-gradient(circle, #a78bfa 0%, #8b5cf6 50%, transparent 70%);
}

.btn-particle-square {
    border-radius: 3px;
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.btn-particle-star {
    background: #c4b5fd;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

@keyframes particleExplode {
    0% {
        opacity: 1;
        transform: translate(var(--start-x), var(--start-y)) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(var(--end-x), var(--end-y)) scale(0);
    }
}

.calendly-hint {
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    margin-top: 12px;
}

/* =============================================
   MODAL CALENDLY ULTRA PREMIUM
   ============================================= */

.calendly-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.calendly-modal-overlay.active {
    opacity: 1;
    visibility: visible;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
}

.calendly-modal {
    position: relative;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    background: linear-gradient(
        165deg,
        rgba(20, 20, 40, 0.95) 0%,
        rgba(10, 10, 20, 0.98) 100%
    );
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 25px 80px -20px rgba(139, 92, 246, 0.4),
        0 50px 100px -30px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: scale(0.9) translateY(30px);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.calendly-modal-overlay.active .calendly-modal {
    transform: scale(1) translateY(0);
}

.calendly-modal::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(
        135deg,
        rgba(139, 92, 246, 0.5) 0%,
        rgba(6, 182, 212, 0.3) 50%,
        rgba(139, 92, 246, 0.5) 100%
    );
    border-radius: 26px;
    z-index: -1;
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.5s ease;
}

.calendly-modal-overlay.active .calendly-modal::before {
    opacity: 1;
    animation: modalGlow 3s ease-in-out infinite;
}

@keyframes modalGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.modal-close svg {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.4);
    transform: rotate(90deg);
}

.modal-close:hover svg {
    color: #ef4444;
}

.modal-header {
    padding: 32px 32px 24px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.2));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.modal-icon svg {
    width: 32px;
    height: 32px;
    color: #8b5cf6;
}

.modal-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.modal-calendly-container {
    padding: 0 16px 16px;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: calc(90vh - 280px);
}

/* Wrapper pour masquer la scrollbar Calendly */
.calendly-widget-wrapper {
    overflow: hidden;
    border-radius: 16px;
}

.modal-calendly-container .calendly-inline-widget {
    border-radius: 16px;
    min-height: 800px;
    width: calc(100% + 17px);
}

.modal-footer {
    padding: 24px 32px 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.modal-trust svg {
    width: 18px;
    height: 18px;
    color: #10b981;
}

/* Particules décoratives modal */
.modal-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease 0.2s;
}

.calendly-modal-overlay.active .modal-particle {
    opacity: 1;
}

.modal-particle-1 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    top: -50px;
    left: -50px;
    animation: particleFloat1 8s ease-in-out infinite;
}

.modal-particle-2 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
    bottom: 50px;
    right: -30px;
    animation: particleFloat2 6s ease-in-out infinite;
}

.modal-particle-3 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    bottom: -20px;
    left: 30%;
    animation: particleFloat3 7s ease-in-out infinite;
}

@keyframes particleFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, 20px) scale(1.1); }
}

@keyframes particleFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-15px, -10px) scale(1.15); }
}

@keyframes particleFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(10px, -15px) scale(1.1); }
}

/* Scrollbar premium modal */
.modal-calendly-container::-webkit-scrollbar {
    width: 4px;
}

.modal-calendly-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
}

.modal-calendly-container::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #8b5cf6 0%, #06b6d4 100%);
    border-radius: 4px;
}

.modal-calendly-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #a78bfa 0%, #22d3ee 100%);
}

/* Scrollbar Firefox */
.modal-calendly-container {
    scrollbar-width: thin;
    scrollbar-color: #8b5cf6 rgba(255, 255, 255, 0.03);
}

/* SECTION 5 : CE QUI SE PASSE APRÈS */
.after-section {
    padding: 80px 24px 60px;
    position: relative;
}

.after-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    backdrop-filter: blur(20px);
}

.after-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.after-icon svg {
    width: 36px;
    height: 36px;
    color: var(--cyan-accent);
}

.after-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.after-text {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 32px;
}

.after-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.after-step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
}

.after-step-number {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--purple-primary), var(--cyan-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.after-step-text {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.after-step-arrow {
    color: var(--purple-light);
    font-size: 1.2rem;
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .header-section { min-height: 50vh; padding: 60px 20px 40px; }
    .header-title { font-size: 1.9rem; }
    .header-cta { padding: 16px 28px; font-size: 1rem; }
    .steps-section, .why-section, .testimonials-section, .funnel-section, .after-section { padding: 60px 16px 40px; }
    .steps-grid, .why-grid { grid-template-columns: 1fr; gap: 16px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .step-card, .why-card { padding: 28px 22px; }
    .step-icon, .why-icon { width: 56px; height: 56px; min-width: 56px; }
    .step-number { font-size: 3rem; }
    .form-inputs { grid-template-columns: 1fr; }
    .after-card { padding: 32px 24px; }
    .after-steps { flex-direction: column; }
    .after-step-arrow { transform: rotate(90deg); }
    
    /* Modal responsive */
    .calendly-modal-overlay {
        padding: 10px;
        align-items: flex-end;
    }
    .calendly-modal {
        max-width: 100%;
        max-height: 95vh;
        border-radius: 24px 24px 0 0;
        transform: scale(1) translateY(100%);
    }
    .calendly-modal-overlay.active .calendly-modal {
        transform: scale(1) translateY(0);
    }
    .modal-header {
        padding: 24px 20px 20px;
    }
    .modal-icon {
        width: 56px;
        height: 56px;
    }
    .modal-icon svg {
        width: 28px;
        height: 28px;
    }
    .modal-title {
        font-size: 1.25rem;
    }
    .modal-calendly-container {
        padding: 0 12px;
        max-height: calc(95vh - 220px);
    }
    .modal-footer {
        padding: 16px 20px 20px;
    }
    .modal-trust {
        font-size: 0.8rem;
    }
    .open-calendly-btn {
        padding: 18px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .header-badge { font-size: 0.75rem; padding: 6px 14px; }
    .step-title, .why-title { font-size: 1.2rem; }
    .form-options { grid-template-columns: 1fr; }
    .logos-track { gap: 16px; }
    .logo-item { padding: 12px 24px; font-size: 0.95rem; }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE OPTIMIZATION - Désactiver animations lourdes
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    /* Désactiver les orbes animés */
    .orb {
        display: none !important;
    }
    
    /* Désactiver les animations d'entrée */
    .header-badge,
    .header-title,
    .header-subtitle,
    .header-cta {
        animation: none !important;
    }
    
    /* Désactiver les hover transforms */
    .step-card:hover,
    .why-card:hover,
    .testimonial-card:hover {
        transform: none !important;
    }
    
    /* Réduire les box-shadows */
    .step-card,
    .why-card,
    .testimonial-card {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
    }
    
    /* Désactiver les particules d'explosion */
    .border-particle {
        display: none !important;
    }
    
    /* Désactiver le glow */
    .why-glow {
        display: none !important;
    }
    
    /* Simplifier transitions */
    .step-card,
    .why-card,
    .testimonial-card,
    .header-cta {
        transition: opacity 0.3s ease !important;
    }
    
    /* Désactiver pulse sur boutons */
    .header-cta,
    .form-submit {
        animation: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Override Elementor pour permettre les particules */
.elementor-widget-wrap,
.elementor-element,
.elementor-container,
.elementor-section,
.elementor-column {
    overflow: visible !important;
}

/* =============================================
   POPUP SUCCÈS + CONFETTIS
   ============================================= */

.success-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 18, 0.95);
    backdrop-filter: blur(20px);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.success-popup-overlay.active {
    display: flex;
}

.success-popup {
    background: rgba(20, 20, 35, 0.95);
    border: 2px solid transparent;
    border-radius: 24px;
    padding: 48px 40px;
    text-align: center;
    max-width: 480px;
    width: 100%;
    position: relative;
    animation: popupAppear 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    background-image: linear-gradient(rgba(20, 20, 35, 0.95), rgba(20, 20, 35, 0.95)), 
                      linear-gradient(135deg, #8b5cf6 0%, #06b6d4 50%, #8b5cf6 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

@keyframes popupAppear {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(6, 182, 212, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { box-shadow: 0 0 0 20px rgba(16, 185, 129, 0); }
}

.success-icon svg {
    width: 40px;
    height: 40px;
    color: #10b981;
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    animation: checkDraw 0.6s ease-out 0.3s forwards;
}

@keyframes checkDraw {
    to { stroke-dashoffset: 0; }
}

.success-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.success-text {
    color: #a1a1aa;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.success-countdown {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    color: #a78bfa;
}

.success-countdown-number {
    font-weight: 700;
    font-size: 1.1rem;
    color: #8b5cf6;
    min-width: 20px;
}

/* Confettis */
.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100000;
    overflow: hidden;
}

.confetti {
    position: absolute;
    top: -20px;
    animation: confettiFall linear forwards;
}

@keyframes confettiFall {
    to {
        transform: translateY(100vh) rotate(var(--rotation)) scale(0.5);
        opacity: 0;
    }
}

/* Feux d'artifice */
.firework-particle {
    position: absolute;
    border-radius: 50%;
    animation: fireworkExplode 1s ease-out forwards;
}

@keyframes fireworkExplode {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(var(--tx), var(--ty)) scale(1);
        opacity: 0;
    }
}

/* Responsive popup */
@media (max-width: 480px) {
    .success-popup {
        padding: 36px 24px;
    }
    .success-title {
        font-size: 1.5rem;
    }
    .success-text {
        font-size: 1rem;
    }
}
</style>

<script>
document.addEventListener('DOMContentLoaded', function() {
    /* Smooth Scroll */
    document.querySelectorAll('a[href^="#"]').forEach(anchor => {
        anchor.addEventListener('click', function(e) {
            e.preventDefault();
            const target = document.querySelector(this.getAttribute('href'));
            if (target) {
                target.scrollIntoView({ behavior: 'smooth', block: 'start' });
            }
        });
    });

    /* Parallax sur les orbes */
    const orbs = document.querySelectorAll('.orb');
    if (orbs.length > 0) {
        document.addEventListener('mousemove', (e) => {
            const x = e.clientX / window.innerWidth;
            const y = e.clientY / window.innerHeight;
            orbs.forEach((orb, index) => {
                const speed = (index + 1) * 15;
                orb.style.transform = `translate(${(x - 0.5) * speed}px, ${(y - 0.5) * speed}px)`;
            });
        });
    }
});
</script>/* End custom CSS */