/* ===== PARTICLES BACKGROUND ===== */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: var(--gradient-primary);
    opacity: 0.1;
}

/* ===== FLOATING EXHIBITOR BUTTON ===== */
.floating-exhibitor-btn {
    position: fixed;
    right: 30px;
    bottom: 30%;
    z-index: 1500;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    animation: float 3s ease-in-out infinite;
}

.exhibitor-btn {
    background: linear-gradient(135deg, #e11d48 0%, #dc2626 50%, #b91c1c 100%);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: clamp(0.9rem, 2.2vw, 1rem);
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(225, 29, 72, 0.4);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    min-width: 180px;
    justify-content: center;
}

.exhibitor-btn::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;
}

.exhibitor-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(225, 29, 72, 0.6);
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
}

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

.exhibitor-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.exhibitor-btn i {
    font-size: 1.1em;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Mobile adjustments for floating button */
@media (max-width: 768px) {
    .floating-exhibitor-btn {
        right: 20px;
        bottom: 25%;
    }

    .exhibitor-btn {
        padding: 12px 18px;
        min-width: 160px;
        font-size: clamp(0.8rem, 2vw, 0.9rem);
    }
}

@media (max-width: 480px) {
    .floating-exhibitor-btn {
        right: 15px;
        bottom: 20%;
    }

    .exhibitor-btn {
        padding: 10px 15px;
        min-width: 140px;
        font-size: 0.8rem;
        gap: 8px;
    }

    .exhibitor-btn span {
        display: none;
    }

    .exhibitor-btn::after {
        content: 'EXPOSANT';
        font-size: 0.8rem;
        font-weight: 700;
    }
}

/* ===== CONTACT MODAL ===== */
.contact-modal-content {
    max-width: 700px;
    max-height: 90vh;
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.contact-form-container {
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.98) 100%);
}

.contact-form-container h2 {
    color: var(--gray-900);
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 10px;
    text-align: center;
    font-weight: 800;
    background: linear-gradient(135deg, #e11d48, #dc2626);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-subtitle {
    color: var(--gray-600);
    text-align: center;
    margin-bottom: 30px;
    font-size: clamp(0.95rem, 2.2vw, 1.1rem);
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-sub-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-sub-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form label {
    font-weight: 600;
    color: var(--gray-800);
    font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px 15px;
    border: 2px solid var(--gray-300);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-family: var(--font-primary);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
}

.contact-form input:invalid,
.contact-form select:invalid {
    border-color: var(--danger);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
    font-family: var(--font-primary);
}

.contact-form .phone-input-group {
    display: flex;
    border: 2px solid var(--gray-300);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.contact-form .phone-input-group:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.contact-form .country-code-select {
    background: var(--white);
    border: none;
    border-right: 1px solid var(--gray-300);
    padding: 12px 8px;
    font-size: 0.95rem;
    width: 95px;
    min-width: 95px;
    max-width: 95px;
    cursor: pointer;
    outline: none;
    font-weight: 500;
    color: var(--dark);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 6px center;
    background-repeat: no-repeat;
    background-size: 12px;
    padding-right: 22px;
    text-align: center;
}

.contact-form .country-code-select:focus {
    background-color: var(--gray-50);
}

.contact-form .phone-input-group input {
    flex: 1;
    border: none !important;
    border-radius: 0 !important;
    margin: 0;
    padding: 12px 15px !important;
    background: var(--white);
}

.contact-form .phone-input-group input:focus {
    box-shadow: none !important;
    outline: none;
}

/* Responsive pour le champ téléphone dans le modal */
@media (max-width: 768px) {
    .contact-form .country-code-select {
        width: 90px;
        min-width: 90px;
        max-width: 90px;
        font-size: 0.85rem;
        padding-right: 20px;
        background-size: 10px;
        background-position: right 4px center;
    }
}

.submit-btn {
    background: linear-gradient(135deg, #e11d48 0%, #dc2626 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.submit-btn::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;
}

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

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

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-note {
    text-align: center;
    color: var(--gray-600);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-top: 15px;
}

/* Mobile form adjustments */
@media (max-width: 768px) {
    .contact-form-container {
        padding: 30px 20px;
    }

    .form-row,
    .form-sub-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-form {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .contact-modal-content {
        margin: 2% auto;
        max-width: 95%;
    }

    .contact-form-container {
        padding: 25px 15px;
    }
}

/* ===== COMING SOON HERO SECTION ===== */
.coming-soon-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gradient-primary);
    padding: 120px 0 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="grad" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(255,255,255,0);stop-opacity:0" /></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23grad)"/><circle cx="800" cy="300" r="80" fill="url(%23grad)"/><circle cx="300" cy="700" r="120" fill="url(%23grad)"/><circle cx="700" cy="800" r="90" fill="url(%23grad)"/></svg>') no-repeat center center;
    background-size: cover;
    animation: backgroundPulse 20s ease-in-out infinite;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.float-element {
    position: absolute;
    width: clamp(40px, 8vw, 80px);
    height: clamp(40px, 8vw, 80px);
    opacity: 0.4;
    animation: floatElement 15s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.element-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    background-image: url('../img/icons/m1.png');
}

.element-2 {
    top: 25%;
    right: 15%;
    animation-delay: -3s;
    background-image: url('../img/icons/m2.png');
}

.element-3 {
    top: 60%;
    left: 15%;
    animation-delay: -6s;
    background-image: url('../img/icons/m19.png');
}

.element-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: -9s;
    background-image: url('../img/icons/m9.png');
}

.element-5 {
    top: 50%;
    left: 40%;
    animation-delay: -12s;
    background-image: url('../img/icons/m5.png');
}

.element-6 {
    top: 40%;
    right: 30%;
    animation-delay: -15s;
    background-image: url('../img/icons/m4.png');
}

.element-7 {
    top: 70%;
    right: 50%;
    animation-delay: -18s;
    background-image: url('../img/icons/m13.png');
}

.element-8 {
    top: 35%;
    left: 25%;
    animation-delay: -21s;
    background-image: url('../img/icons/m20.png');
}

.element-9 {
    bottom: 45%;
    right: 20%;
    animation-delay: -24s;
    background-image: url('../img/icons/m21.png');
}

.element-10 {
    top: 80%;
    left: 35%;
    animation-delay: -27s;
    background-image: url('../img/icons/m3.png');
}

.element-11 {
    top: 60%;
    right: 25%;
    animation-delay: -30s;
    background-image: url('../img/icons/m17.png');
}

.element-12 {
    top: 78%;
    left: 10%;
    animation-delay: -33s;
    background-image: url('../img/icons/m23.png');
}

.hero-content {
    position: relative;
    z-index: 100;
    text-align: center;
    max-width: 900px;
    width: 100%;
    padding: 0 clamp(1rem, 5vw, 2rem);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.coming-soon-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: clamp(0.5rem, 2vw, 0.75rem) clamp(1rem, 4vw, 1.5rem);
    border-radius: var(--radius-full);
    color: var(--primary);
    font-weight: 700;
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: clamp(1rem, 3vw, 1.5rem) 0 clamp(1.5rem, 4vw, 2rem);
    border: 2px solid rgba(99, 102, 241, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.coming-soon-badge sup {
    text-transform: lowercase;
}

.main-title {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: clamp(1rem, 4vw, 1.5rem);
    line-height: 0.9;
    font-family: var(--font-display);
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUpTitle 1s ease 0.5s forwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.8s;
}

.title-line:nth-child(3) {
    animation-delay: 1.1s;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-top: clamp(0.5rem, 2vw, 1rem);
    letter-spacing: 2px;
}

.gradient-text {
    background: linear-gradient(45deg, #f59e0b, #ec4899, #6366f1);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: slideUpTitle 1s ease 0.8s forwards, gradientShift 3s ease-in-out infinite;
}

.paris-2026 {
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto clamp(1.5rem, 5vw, 2rem);
    line-height: 1.6;
    opacity: 0;
    animation: fadeIn 1s ease 1.2s forwards;
}

/* ===== COUNTDOWN ===== */
.countdown-container {
    margin-bottom: clamp(2rem, 6vw, 3rem);
    opacity: 0;
    animation: fadeIn 1s ease 1.5s forwards;
}

.countdown-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    font-weight: 600;
}

.countdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: clamp(0.75rem, 3vw, 2rem);
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.countdown-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: clamp(1rem, 3vw, 1.5rem);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 80px;
}

.countdown-number {
    display: block;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--white);
    font-family: var(--font-display);
    margin-bottom: clamp(0.25rem, 1vw, 0.5rem);
    line-height: 1;
}

.countdown-label {
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ===== CTA BUTTONS ===== */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: clamp(1rem, 4vw, 1.5rem);
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeIn 1s ease 1.8s forwards;
    margin-bottom: clamp(4rem, 8vw, 6rem);
    position: relative;
    z-index: 5;
}

.notify-btn,
.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: clamp(0.75rem, 2.5vw, 1rem) clamp(1.5rem, 5vw, 2rem);
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    white-space: nowrap;
}

.notify-btn {
    background: var(--white);
    color: var(--primary);
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.notify-btn:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

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

.explore-btn {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.explore-btn:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* ===== SCROLL ELEMENTS ===== */
.scroll-indicator {
    position: absolute;
    bottom: clamp(20px, 4vh, 40px);
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.7;
    animation: bounce 2s infinite;
    z-index: 2;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid var(--white);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    transition: all var(--transition-base);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ===== SECTIONS COMMUNES ===== */
.preview-section,
.social-proof {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    /* RÉDUIT de clamp(3rem, 8vw, 5rem) */
    position: relative;
    overflow: hidden;
}

.preview-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.95) 100%);
}

.preview-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 25% 25%, hsla(217, 91%, 60%, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.social-proof {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.9) 0%, rgba(226, 232, 240, 0.95) 100%);
}

.social-proof .section-title {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 3rem);
    /* RÉDUIT de clamp(2rem, 6vw, 4rem) */
    font-size: clamp(2rem, 5vw, 3rem);
    /* RÉDUIT de clamp(2rem, 6vw, 3.5rem) */
}

.social-proof::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 75% 75%, hsla(217, 91%, 60%, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: clamp(2rem, 6vw, 4rem);
    font-size: clamp(2rem, 6vw, 3.5rem);
}

.title-accent {
    color: var(--gray-600);
}

.title-main {
    background: linear-gradient(135deg, #0f172a 0%, #1e40af 40%, #059669 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 8s ease-in-out infinite;
}

/* ===== PREVIEW SECTION ===== */
.preview-section .section-title {
    color: var(--gray-900);
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: clamp(1rem, 4vw, 2rem);
    margin-top: clamp(2rem, 6vw, 4rem);
    position: relative;
    z-index: 2;
    padding: 0 clamp(1rem, 3vw, 1.5rem);
}

/* ===== CARTES PARTAGÉES ===== */
.preview-card,
.stat-card,
.audience-card,
.programming-card,
.media-channel {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: clamp(16px, 3vw, 24px);
    padding: clamp(1.5rem, 4vw, 2rem);
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 4px 12px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: cardEntry 0.8s ease forwards;
    opacity: 0;
}

.preview-card:hover,
.stat-card:hover,
.audience-card:hover,
.programming-card:hover,
.media-channel:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.3), 0 0 64px rgba(59, 130, 246, 0.08);
    transform: translateY(-5px);
}

/* ===== ICÔNES PARTAGÉES ===== */
.preview-icon,
.audience-icon {
    width: clamp(50px, 10vw, 70px);
    height: clamp(50px, 10vw, 70px);
    margin: 0 auto clamp(1rem, 3vw, 1.5rem);
    border-radius: clamp(12px, 3vw, 16px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.3rem, 3.5vw, 1.8rem);
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
}

/* Forcer la taille uniforme pour toutes les icônes */
.programming-icon,
.media-icon {
    width: clamp(40px, 8vw, 50px) !important;
    height: clamp(40px, 8vw, 50px) !important;
    margin: 0 auto clamp(0.75rem, 2vw, 1rem);
    border-radius: clamp(8px, 2vw, 10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1rem, 2.5vw, 1.3rem) !important;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
}

/* Icônes spécifiques plus petites pour stats */
.stat-icon {
    width: clamp(40px, 8vw, 50px);
    height: clamp(40px, 8vw, 50px);
    border-radius: clamp(10px, 2.5vw, 12px);
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin: 0 auto clamp(1rem, 3vw, 1.5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
}

.preview-card:hover .preview-icon,
.stat-card:hover .stat-icon,
.audience-card:hover .audience-icon,
.programming-card:hover .programming-icon,
.media-channel:hover .media-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Gradients spécifiques pour les icônes */
.preview-card:nth-child(1) .preview-icon,
.stat-card:nth-child(1) .stat-icon,
.programming-card:nth-child(1) .programming-icon,
.media-channel:nth-child(1) .media-icon {
    background: linear-gradient(135deg, #ff6b35, #f7931e, #ffd700);
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.25);
}

.preview-card:nth-child(2) .preview-icon,
.stat-card:nth-child(2) .stat-icon,
.programming-card:nth-child(2) .programming-icon,
.media-channel:nth-child(2) .media-icon {
    background: linear-gradient(135deg, #00d4ff, #0099cc, #006bb3);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.25);
}

.preview-card:nth-child(3) .preview-icon,
.stat-card:nth-child(3) .stat-icon,
.programming-card:nth-child(3) .programming-icon,
.media-channel:nth-child(3) .media-icon {
    background: linear-gradient(135deg, #a855f7, #8b5cf6, #7c3aed);
    box-shadow: 0 8px 32px rgba(168, 85, 247, 0.25);
}

.preview-card:nth-child(4) .preview-icon,
.stat-card:nth-child(4) .stat-icon,
.programming-card:nth-child(4) .programming-icon,
.media-channel:nth-child(4) .media-icon {
    background: linear-gradient(135deg, #34d399, #10b981, #059669);
    box-shadow: 0 8px 32px rgba(52, 211, 153, 0.25);
}

.preview-card:nth-child(5) .preview-icon,
.programming-card:nth-child(5) .programming-icon,
.media-channel:nth-child(5) .media-icon {
    background: linear-gradient(135deg, #f472b6, #ec4899, #db2777);
    box-shadow: 0 8px 32px rgba(244, 114, 182, 0.25);
}

.preview-card:nth-child(6) .preview-icon {
    background: linear-gradient(135deg, #60a5fa, #3b82f6, #2563eb);
    box-shadow: 0 8px 32px rgba(96, 165, 250, 0.25);
}

/* Titres et descriptions partagés - espacements réduits */
.preview-card h3,
.stat-card h3,
.audience-card h4,
.programming-card h4,
.media-channel h4 {
    font-size: clamp(1.1rem, 2.8vw, 1.4rem);
    margin-bottom: clamp(0.5rem, 1.5vw, 0.75rem);
    color: var(--gray-900);
    font-weight: 800;
    transition: all 0.3s ease;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.preview-card p,
.stat-card p,
.audience-card p,
.programming-card p,
.media-channel p {
    color: var(--gray-700);
    line-height: 1.4;
    font-weight: 500;
    font-size: clamp(0.9rem, 2vw, 1rem);
    transition: all 0.3s ease;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.preview-card:hover h3,
.stat-card:hover h3,
.audience-card:hover h4,
.programming-card:hover h4,
.media-channel:hover h4 {
    color: var(--primary);
}

.preview-card:hover p,
.stat-card:hover p,
.audience-card:hover p,
.programming-card:hover p,
.media-channel:hover p {
    color: var(--gray-800);
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    background: var(--gradient-primary);
    color: var(--white);
    padding: clamp(3rem, 8vw, 5rem) 0;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 6vw, 3rem);
    align-items: center;
    text-align: center;
}

.newsletter-text h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: clamp(1rem, 3vw, 1rem);
    color: var(--white);
    font-weight: 800;
    line-height: 1.2;
}

.newsletter-text p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    opacity: 0.9;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.newsletter-form .form-group {
    display: flex;
    gap: clamp(0.75rem, 2vw, 0.75rem);
    margin-bottom: clamp(1rem, 3vw, 1rem);
    flex-direction: column;
}

.newsletter-form input {
    flex: 1;
    padding: clamp(0.875rem, 2.5vw, 1rem);
    border: none;
    border-radius: var(--radius-lg);
    font-size: clamp(1rem, 2.2vw, 1.1rem);
    background: rgba(255, 255, 255, 0.9);
    color: var(--dark);
    min-height: 48px;
}

.newsletter-form input::placeholder {
    color: var(--gray-500);
}

.newsletter-btn {
    background: var(--white);
    color: var(--primary);
    border: none;
    padding: clamp(0.875rem, 2.5vw, 1rem) clamp(1.5rem, 4vw, 1.5rem);
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    transition: all var(--transition-base);
    white-space: nowrap;
    font-size: clamp(1rem, 2.2vw, 1rem);
    width: 100%;
    min-height: 48px;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.form-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(0.8rem, 1.8vw, 0.85rem);
    line-height: 1.5;
    text-align: center;
}

/* ===== SALON DETAILS SECTION ===== */
.salon-details {
    background:
        linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(241, 245, 249, 0.9) 100%),
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.03) 0%, transparent 50%);
    padding: clamp(4rem, 10vw, 6rem) 0;
    position: relative;
    overflow: hidden;
}

.salon-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="grad1" cx="30%" cy="30%" r="40%"><stop offset="0%" style="stop-color:rgba(99,102,241,0.08);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(99,102,241,0);stop-opacity:0" /></radialGradient><radialGradient id="grad2" cx="70%" cy="70%" r="40%"><stop offset="0%" style="stop-color:rgba(236,72,153,0.08);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(236,72,153,0);stop-opacity:0" /></radialGradient></defs><circle cx="300" cy="300" r="200" fill="url(%23grad1)"/><circle cx="700" cy="700" r="200" fill="url(%23grad2)"/></svg>') no-repeat center center;
    background-size: cover;
    pointer-events: none;
    opacity: 0.6;
    animation: backgroundPulse 25s ease-in-out infinite;
}

.salon-details .container {
    position: relative;
    z-index: 2;
}

.salon-details .section-title {
    text-align: center;
    margin-bottom: clamp(3rem, 8vw, 5rem);
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
}

.salon-details .title-accent {
    color: var(--gray-600);
    font-weight: 600;
}

.salon-details .title-main {
    background: linear-gradient(135deg, #0f172a 0%, #1e40af 30%, #059669 70%, #dc2626 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 300% 300%;
    animation: gradientShift 12s ease-in-out infinite;
}

.subsection-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 800;
    color: var(--gray-900);
    text-align: center;
    margin: clamp(3rem, 7vw, 4rem) 0 clamp(2rem, 5vw, 3rem);
    position: relative;
}

.subsection-title:first-of-type {
    margin-top: 0;
}

.subsection-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #ec4899);
    border-radius: 2px;
}

/* ===== STATS GRID ===== */
.key-numbers {
    margin-bottom: clamp(4rem, 8vw, 6rem);
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(1.5rem, 4vw, 2rem);
    padding: 0 clamp(1rem, 3vw, 1.5rem);
    margin-top: clamp(3rem, 6vw, 4rem);
}

.stat-card {
    flex: 0 1 250px;
    min-height: 200px;
    justify-content: center;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(99, 102, 241, 0.02) 0%,
            rgba(139, 92, 246, 0.02) 50%,
            rgba(236, 72, 153, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.stat-content {
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: clamp(2.5rem, 7vw, 4rem);
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: clamp(0.5rem, 2vw, 0.75rem);
    line-height: 0.9;
    font-family: var(--font-display);
    background: linear-gradient(135deg, #0f172a 0%, #1e40af 50%, #059669 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.stat-label {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--gray-700);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
    white-space: nowrap;
}

/* ===== AUDIENCE SECTION ===== */
.audience-section {
    margin-bottom: clamp(4rem, 8vw, 6rem);
}

.audience-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(1.5rem, 4vw, 2rem);
    padding: 0 clamp(1rem, 3vw, 1.5rem);
}

.audience-card {
    flex: 0 1 280px;
    min-height: 220px;
    justify-content: flex-start;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: clamp(14px, 3vw, 18px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.2);
    text-align: left;
    align-items: center;
    padding: clamp(1rem, 2.5vw, 1.25rem);
}

.audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.audience-card.grand-public::before {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.08) 0%, rgba(244, 114, 182, 0.05) 100%);
}

.audience-card.professionals::before {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(139, 92, 246, 0.05) 100%);
}

.audience-card.institutions::before {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.08) 0%, rgba(16, 185, 129, 0.05) 100%);
}

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

.audience-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.audience-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(0.5rem, 1.5vw, 0.75rem);
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
    text-align: center;
}

.audience-icon {
    width: clamp(40px, 8vw, 50px);
    height: clamp(40px, 8vw, 50px);
    margin: 0 auto clamp(0.75rem, 2vw, 1rem);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
}

.grand-public .audience-icon {
    background: linear-gradient(135deg, #ec4899, #f472b6);
    box-shadow: 0 8px 32px rgba(236, 72, 153, 0.3);
}

.professionals .audience-icon {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.3);
}

.institutions .audience-icon {
    background: linear-gradient(135deg, #34d399, #10b981);
    box-shadow: 0 8px 32px rgba(52, 211, 153, 0.3);
}

.audience-card:hover .audience-icon {
    transform: scale(1.1) rotate(-5deg);
}

.audience-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
}

.audience-list li {
    position: relative;
    padding: clamp(0.35rem, 1vw, 0.5rem) 0;
    padding-left: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--gray-700);
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 500;
    line-height: 1.3;
    transition: all 0.3s ease;
    text-align: left;
}

.audience-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.grand-public .audience-list li::before {
    background: linear-gradient(135deg, #ec4899, #f472b6);
}

.professionals .audience-list li::before {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.institutions .audience-list li::before {
    background: linear-gradient(135deg, #34d399, #10b981);
}

.audience-card:hover .audience-list li::before {
    transform: translateY(-50%) scale(1.5);
}

/* ===== PROGRAMMING SECTION ===== */
.programming-section {
    margin-bottom: clamp(4rem, 8vw, 6rem);
}

.programming-grid,
.media-channels {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(2rem, 5vw, 2.5rem);
    padding: 0 clamp(1rem, 3vw, 1.5rem);
}

.programming-card,
.media-channel {
    flex: 0 1 280px;
    min-height: 220px;
    justify-content: space-between;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: clamp(14px, 3vw, 18px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.2);
    padding: clamp(1rem, 2.5vw, 1.25rem);
}

.programming-card::before,
.media-channel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.programming-card:nth-child(1)::before,
.media-channel:nth-child(1)::before {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(252, 165, 165, 0.04) 100%);
}

.programming-card:nth-child(2)::before,
.media-channel:nth-child(2)::before {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(251, 191, 36, 0.04) 100%);
}

.programming-card:nth-child(3)::before,
.media-channel:nth-child(3)::before {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.08) 0%, rgba(244, 114, 182, 0.04) 100%);
}

.programming-card:nth-child(4)::before,
.media-channel:nth-child(4)::before {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(139, 92, 246, 0.04) 100%);
}

.programming-card:nth-child(5)::before,
.media-channel:nth-child(5)::before {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, rgba(52, 211, 153, 0.04) 100%);
}

.programming-card:hover::before,
.media-channel:hover::before {
    opacity: 1;
}

.programming-card:hover,
.media-channel:hover {
    transform: translateY(-12px) rotate(1deg);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.programming-card:hover .programming-number {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.3));
    border-color: rgba(99, 102, 241, 0.4);
    transform: scale(1.1) rotate(10deg);
}

.programming-icon {
    width: clamp(50px, 10vw, 70px);
    height: clamp(50px, 10vw, 70px);
    border-radius: clamp(12px, 3vw, 16px);
    font-size: clamp(1.3rem, 3.5vw, 1.8rem);
}

.programming-card:hover .programming-icon,
.media-channel:hover .media-icon {
    transform: scale(1.1) rotate(-5deg);
}

/* ===== COMMUNICATION SECTION ===== */
.communication-intro {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: var(--gray-800);
    text-align: center;
    margin-bottom: clamp(2.5rem, 6vw, 3rem);
    font-weight: 600;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== PARTNERS ANNOUNCEMENT ===== */
.partners-announcement {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
    padding: 0 clamp(1rem, 3vw, 1.5rem);
}

.announcement-content {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: clamp(2rem, 4vw, 2.5rem);
    /* RÉDUIT de clamp(2.5rem, 6vw, 4rem) */
    border-radius: clamp(16px, 3vw, 20px);
    /* RÉDUIT */
    text-align: center;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.announcement-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(99, 102, 241, 0.03) 0%,
            rgba(139, 92, 246, 0.03) 50%,
            rgba(236, 72, 153, 0.03) 100%);
    pointer-events: none;
}

.announcement-icon {
    width: clamp(60px, 12vw, 80px);
    /* RÉDUIT de clamp(80px, 15vw, 120px) */
    height: clamp(60px, 12vw, 80px);
    margin: 0 auto clamp(1rem, 3vw, 1.5rem);
    /* RÉDUIT */
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.5rem, 4vw, 2rem);
    /* RÉDUIT */
    color: white;
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.3);
    position: relative;
    z-index: 1;
    animation: pulseIcon 3s ease-in-out infinite;
}

.announcement-content h3 {
    font-size: clamp(1.6rem, 4vw, 2rem);
    /* RÉDUIT de clamp(1.8rem, 5vw, 2.5rem) */
    margin-bottom: clamp(0.75rem, 2.5vw, 1rem);
    /* RÉDUIT */
    color: var(--gray-900);
    font-weight: 800;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.announcement-content p {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    /* RÉDUIT de clamp(1rem, 3vw, 1.2rem) */
    color: var(--gray-700);
    line-height: 1.6;
    /* RÉDUIT de 1.7 */
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
    /* RÉDUIT */
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.coming-partners {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
    /* RÉDUIT de 200px */
    gap: clamp(0.75rem, 2.5vw, 1rem);
    /* RÉDUIT */
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
    /* RÉDUIT */
    position: relative;
    z-index: 1;
}

.partner-placeholder {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 2px dashed rgba(99, 102, 241, 0.3);
    padding: clamp(1.25rem, 3vw, 1.5rem);
    /* RÉDUIT */
    border-radius: clamp(10px, 2.5vw, 12px);
    /* RÉDUIT */
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.partner-placeholder:hover {
    border-color: rgba(99, 102, 241, 0.5);
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.placeholder-icon {
    width: clamp(40px, 8vw, 50px);
    /* RÉDUIT */
    height: clamp(40px, 8vw, 50px);
    margin: 0 auto clamp(0.5rem, 1.5vw, 0.75rem);
    /* RÉDUIT */
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    /* RÉDUIT */
    color: var(--primary);
    transition: all 0.3s ease;
}

.partner-placeholder:hover .placeholder-icon {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    transform: scale(1.1);
}

.partner-placeholder span {
    font-weight: 600;
    color: var(--gray-800);
    font-size: clamp(0.9rem, 2.2vw, 1rem);
    line-height: 1.4;
    display: block;
}

.announcement-badge {
    display: inline-flex;
    align-items: center;
    gap: clamp(0.5rem, 2vw, 0.75rem);
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2rem);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: clamp(0.9rem, 2.2vw, 1rem);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
    position: relative;
    z-index: 1;
    animation: shimmer 2s ease-in-out infinite;
}

.announcement-badge i {
    font-size: clamp(0.9rem, 2vw, 1rem);
}

/* ===== MODAL STYLES ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background-color: var(--white);
    margin: 5% auto;
    padding: var(--space-6);
    border-radius: var(--radius-2xl);
    max-width: 60%;
    max-height: 85%;
    overflow-y: auto;
}

.legal-modal-content {
    max-width: 800px;
}

.close-btn {
    color: var(--gray-600);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 10;
}

.close-btn:hover {
    color: var(--gray-900);
}

/* ===== ANIMATIONS ===== */
@keyframes backgroundPulse {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.1) rotate(2deg);
    }
}

@keyframes floatElement {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-20px) translateX(10px) rotate(5deg);
    }

    50% {
        transform: translateY(0px) translateX(-10px) rotate(-5deg);
    }

    75% {
        transform: translateY(20px) translateX(5px) rotate(3deg);
    }
}

@keyframes glow {
    from {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 0 20px rgba(99, 102, 241, 0.3);
    }

    to {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15), 0 0 30px rgba(99, 102, 241, 0.5);
    }
}

@keyframes slideUpTitle {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardEntry {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes shimmer {

    0%,
    100% {
        box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
    }

    50% {
        box-shadow: 0 12px 35px rgba(99, 102, 241, 0.5), 0 0 20px rgba(139, 92, 246, 0.3);
    }
}

@keyframes pulseIcon {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* ===== ANIMATION DELAYS ===== */
.stat-card:nth-child(1),
.audience-card:nth-child(1),
.programming-card:nth-child(1),
.media-channel:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-card:nth-child(2),
.audience-card:nth-child(2),
.programming-card:nth-child(2),
.media-channel:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-card:nth-child(3),
.audience-card:nth-child(3),
.programming-card:nth-child(3),
.media-channel:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-card:nth-child(4),
.programming-card:nth-child(4),
.media-channel:nth-child(4) {
    animation-delay: 0.4s;
}

.programming-card:nth-child(5),
.media-channel:nth-child(5) {
    animation-delay: 0.5s;
}

/* ===== MEDIA QUERIES ===== */

/* Desktop - Grid Optimizations */
@media (min-width: 1024px) {
    .countdown {
        display: flex;
        justify-content: center;
    }
}

@media (min-width: 1200px) {
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        max-width: 1200px;
        margin: 0 auto;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Tablet - Responsive Design */
@media (min-width: 768px) {
    .newsletter-form .form-group {
        flex-direction: row;
    }

    .newsletter-btn {
        width: auto;
        white-space: nowrap;
    }

    .newsletter-content {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }

    .newsletter-form {
        margin: 0;
    }
}

/* Mobile - Countdown Grid */
@media (max-width: 767px) {
    .countdown {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: clamp(0.75rem, 3vw, 1rem);
        max-width: 320px;
        grid-template-areas:
            "days hours"
            "minutes seconds";
    }

    .countdown-item:nth-child(1) {
        grid-area: days;
    }

    .countdown-item:nth-child(2) {
        grid-area: hours;
    }

    .countdown-item:nth-child(3) {
        grid-area: minutes;
    }

    .countdown-item:nth-child(4) {
        grid-area: seconds;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(1rem, 3vw, 1.25rem);
        max-width: 100%;
        margin: 0 auto;
    }

    .stat-card {
        width: 100%;
        min-height: 150px;
        border-radius: clamp(16px, 4vw, 20px);
        border: 1.5px solid rgba(255, 255, 255, 0.8);
    }

    .stat-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        border-radius: 20px 20px 0 0;
        transition: all 0.3s ease;
    }

    .stat-card:nth-child(1)::after {
        background: linear-gradient(90deg, #dc2626, #ef4444);
    }

    .stat-card:nth-child(2)::after {
        background: linear-gradient(90deg, #059669, #10b981);
    }

    .stat-card:nth-child(3)::after {
        background: linear-gradient(90deg, #7c3aed, #8b5cf6);
    }

    .stat-card:nth-child(4)::after {
        background: linear-gradient(90deg, #1d4ed8, #3b82f6);
    }

    .stat-icon {
        width: clamp(45px, 9vw, 55px);
        height: clamp(45px, 9vw, 55px);
        border-radius: clamp(12px, 3vw, 14px);
        font-size: clamp(1.1rem, 2.8vw, 1.4rem);
    }

    .stat-number {
        font-size: clamp(1.6rem, 4.5vw, 2.2rem);
        font-weight: 800;
    }

    .stat-label {
        font-size: clamp(0.8rem, 2.2vw, 0.9rem);
        letter-spacing: 0.4px;
        font-weight: 700;
        color: var(--gray-600);
    }
}

/* Mobile - Full Width Cards */
@media (max-width: 768px) {
    .container {
        padding: 0 clamp(1rem, 3vw, 1.5rem);
    }

    .audience-grid {
        display: flex;
        flex-direction: column;
        gap: clamp(1.5rem, 4vw, 2rem);
        padding: 0;
    }

    .programming-grid,
    .media-channels,
    .preview-grid,
    .coming-partners {
        grid-template-columns: 1fr;
        gap: clamp(1.5rem, 4vw, 2rem);
        padding: 0;
    }

    .audience-card,
    .programming-card,
    .media-channel,
    .preview-card {
        width: 100%;
        max-width: none;
        flex: none;
    }

    .audience-card {
        min-height: 240px;
        padding: clamp(1.25rem, 3.5vw, 1.5rem);
    }

    .programming-card {
        height: 180px;
        padding: clamp(1.25rem, 3.5vw, 1.5rem);
    }

    .media-channel {
        height: 180px;
        padding: clamp(1.25rem, 3.5vw, 1.5rem);
    }

    .preview-card {
        min-height: 250px;
    }

    .audience-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        justify-content: center;
        align-items: center;
    }

    .audience-header h4 {
        text-align: center;
    }

    .audience-list {
        text-align: left;
        width: 100%;
    }

    .audience-list li {
        text-align: left;
    }
}

/* Very Small Screens */
.media-icon {
    width: clamp(40px, 8vw, 50px) !important;
    height: clamp(40px, 8vw, 50px) !important;
    border-radius: clamp(8px, 2vw, 10px);
    font-size: clamp(1rem, 2.5vw, 1.3rem) !important;
}

/* ===== MOBILE ADJUSTMENTS FOR REDUCED ICONS ===== */
@media (max-width: 767px) {

    .preview-icon,
    .audience-icon {
        width: clamp(45px, 9vw, 55px);
        height: clamp(45px, 9vw, 55px);
        border-radius: clamp(10px, 2.5vw, 12px);
        font-size: clamp(1.1rem, 2.8vw, 1.4rem);
    }

    .programming-icon,
    .media-icon {
        width: clamp(40px, 8vw, 50px);
        height: clamp(40px, 8vw, 50px);
        border-radius: clamp(8px, 2vw, 10px);
        font-size: clamp(1rem, 2.5vw, 1.3rem);
    }

    .stat-icon {
        width: clamp(35px, 7vw, 45px);
        height: clamp(35px, 7vw, 45px);
        border-radius: clamp(8px, 2vw, 10px);
        font-size: clamp(0.9rem, 2.2vw, 1.1rem);
        margin-bottom: clamp(0.5rem, 1.5vw, 0.75rem);
    }
}

@media (max-width: 480px) {

    .preview-icon,
    .audience-icon {
        width: clamp(40px, 8vw, 48px);
        height: clamp(40px, 8vw, 48px);
        font-size: clamp(1rem, 2.5vw, 1.2rem);
    }

    .programming-icon,
    .media-icon {
        width: clamp(40px, 8vw, 48px);
        height: clamp(40px, 8vw, 48px);
        font-size: clamp(1rem, 2.5vw, 1.2rem);
    }

    .stat-icon {
        width: clamp(30px, 6vw, 38px);
        height: clamp(30px, 6vw, 38px);
        font-size: clamp(0.8rem, 2vw, 1rem);
        border-radius: clamp(6px, 1.5vw, 8px);
    }

    .hero-content {
        padding: 0 1rem;
    }

    .countdown {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        max-width: 280px;
    }

    .countdown-item {
        padding: 0.75rem 0.5rem;
        min-width: 70px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .notify-btn,
    .explore-btn {
        width: 100%;
        max-width: none;
        justify-content: center;
    }

    /* Ajuster les éléments flottants pour mobile au lieu de les masquer */
    .float-element {
        width: clamp(35px, 8vw, 50px);
        height: clamp(35px, 8vw, 50px);
        opacity: 0.5;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(0.875rem, 3vw, 1rem);
    }

    .stat-card {
        min-height: 130px;
        padding: clamp(1.25rem, 3.5vw, 1.5rem);
        border-radius: clamp(14px, 3.5vw, 18px);
    }

    .stat-icon {
        width: clamp(40px, 8vw, 48px);
        height: clamp(40px, 8vw, 48px);
        font-size: clamp(1rem, 2.5vw, 1.25rem);
        margin-bottom: clamp(0.6rem, 2vw, 0.8rem);
        border-radius: clamp(10px, 2.5vw, 12px);
    }

    .stat-number {
        font-size: clamp(1.4rem, 4vw, 1.9rem);
        font-weight: 800;
        margin-bottom: clamp(0.25rem, 1vw, 0.4rem);
    }

    .stat-label {
        font-size: clamp(0.75rem, 2vw, 0.85rem);
        font-weight: 600;
        letter-spacing: 0.3px;
        color: var(--gray-600);
    }

    .audience-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .audience-header h4 {
        text-align: center;
    }

    .audience-card,
    .programming-card,
    .media-channel,
    .preview-card,
    .partner-placeholder {
        width: 100%;
        margin: 0;
    }

    .audience-card {
        min-height: 260px;
    }

    .programming-card {
        min-height: 200px;
    }

    .media-channel {
        min-height: 180px;
    }

    .preview-card {
        min-height: 230px;
    }

    .modal-content {
        margin: 10% auto;
        max-width: 95%;
    }
}

@media (max-width: 380px) {
    .countdown {
        max-width: 260px;
    }

    .preview-grid {
        padding: 0 0.75rem;
    }
}

/* Mobile Landscape */
@media (max-height: 500px) and (orientation: landscape) {
    .coming-soon-hero {
        padding: 80px 0 20px;
    }

    .floating-elements {
        display: none;
    }

    .main-title {
        font-size: clamp(2rem, 6vw, 3rem);
        line-height: 1.1;
    }

    .countdown {
        display: flex;
        gap: 1rem;
        grid-template-areas: none;
    }

    .countdown-item {
        padding: 0.75rem;
    }

    .cta-buttons {
        flex-direction: row;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .stat-card,
    .audience-card,
    .programming-card,
    .media-channel {
        padding: clamp(1rem, 3vw, 1.5rem);
        min-height: auto;
    }

    .stat-card {
        min-height: 100px;
    }

    .media-channel {
        min-height: 160px;
    }

    .programming-card {
        min-height: 220px;
    }

    .audience-card {
        min-height: 200px;
    }

    .stat-icon {
        width: clamp(35px, 6vw, 45px);
        height: clamp(35px, 6vw, 45px);
        margin-bottom: clamp(0.4rem, 1vw, 0.6rem);
        font-size: clamp(0.9rem, 2vw, 1.2rem);
    }

    .stat-number {
        font-size: clamp(1.2rem, 3vw, 1.6rem);
    }

    .stat-label {
        font-size: clamp(0.65rem, 1.5vw, 0.8rem);
    }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    .float-element,
    .coming-soon-badge,
    .scroll-arrow,
    .gradient-text,
    .paris-2026,
    .announcement-icon,
    .programming-number,
    .floating-exhibitor-btn,
    .exhibitor-btn i {
        animation: none;
    }

    .preview-card:hover,
    .notify-btn:hover,
    .explore-btn:hover,
    .stat-card:hover,
    .audience-card:hover,
    .programming-card:hover,
    .media-channel:hover,
    .exhibitor-btn:hover {
        transform: translateY(-2px);
    }

    .scroll-top {
        transition: opacity 0.3s ease;
    }

    .stat-card,
    .audience-card,
    .programming-card,
    .media-channel {
        animation: none;
        opacity: 1;
    }
}

/* High DPI Screens */
@media (min-resolution: 2dppx) {

    .stat-card,
    .audience-card,
    .programming-card,
    .media-channel {
        border-width: 0.5px;
    }
}

/* ===== SECTION DEVENEZ EXPOSANT ===== */
.become-exhibitor-section {
    background: linear-gradient(135deg,
            rgba(248, 250, 252, 0.95) 0%,
            rgba(241, 245, 249, 0.98) 50%,
            rgba(255, 255, 255, 0.95) 100%);
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    /* RÉDUIT de clamp(4rem, 10vw, 7rem) */
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.become-exhibitor-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 15% 25%, rgba(99, 102, 241, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(34, 197, 94, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.become-exhibitor-section .container {
    position: relative;
    z-index: 2;
}

/* ===== HEADER DE LA SECTION ===== */
.section-header {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 3rem);
    /* RÉDUIT de clamp(3rem, 8vw, 5rem) */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: clamp(0.5rem, 2vw, 0.75rem);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(34, 197, 94, 0.2);
    color: #059669;
    padding: clamp(0.6rem, 1.5vw, 0.8rem) clamp(1.2rem, 3vw, 1.5rem);
    /* RÉDUIT le padding */
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    /* RÉDUIT la taille */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    /* RÉDUIT de clamp(1.5rem, 4vw, 2rem) */
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.15);
    animation: glowGreen 3s ease-in-out infinite;
}

.section-badge i {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.section-description {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    /* RÉDUIT de clamp(1.1rem, 3vw, 1.3rem) */
    color: var(--gray-700);
    line-height: 1.6;
    /* RÉDUIT de 1.7 */
    margin-top: clamp(0.75rem, 2.5vw, 1rem);
    /* RÉDUIT */
    font-weight: 500;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== CONTENU PRINCIPAL ===== */
.exhibitor-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 3rem);
    /* RÉDUIT de clamp(3rem, 8vw, 5rem) */
    align-items: start;
}

/* ===== AVANTAGES ===== */
.exhibitor-benefits {
    position: relative;
}

.benefits-title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    /* RÉDUIT de clamp(1.8rem, 5vw, 2.5rem) */
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
    /* RÉDUIT de clamp(2rem, 5vw, 3rem) */
    position: relative;
}

.benefits-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #059669, #10b981);
    border-radius: 2px;
}

.benefits-grid {
    display: grid;
    gap: clamp(1.25rem, 3vw, 1.5rem);
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: clamp(0.75rem, 2.5vw, 1rem);
    /* RÉDUIT légèrement */
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: clamp(12px, 2.5vw, 16px);
    /* RÉDUIT de clamp(16px, 3vw, 20px) */
    padding: clamp(1.25rem, 3vw, 1.5rem);
    /* RÉDUIT de clamp(1.5rem, 4vw, 2rem) */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.03) 0%, rgba(16, 185, 129, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(34, 197, 94, 0.2);
}

.benefit-icon {
    flex-shrink: 0;
    width: clamp(45px, 8vw, 55px);
    /* RÉDUIT de clamp(50px, 10vw, 60px) */
    height: clamp(45px, 8vw, 55px);
    background: linear-gradient(135deg, #059669, #10b981);
    border-radius: clamp(10px, 2.5vw, 14px);
    /* RÉDUIT */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    /* RÉDUIT */
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.3);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-content h4 {
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: clamp(0.5rem, 1.5vw, 0.75rem);
    position: relative;
    z-index: 2;
}

.benefit-content p {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: clamp(0.95rem, 2.2vw, 1rem);
    font-weight: 500;
    position: relative;
    z-index: 2;
}

/* ===== ZONE CTA ===== */
.exhibitor-cta-area {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.cta-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(150%);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: clamp(16px, 3vw, 20px);
    /* RÉDUIT de clamp(20px, 4vw, 28px) */
    padding: clamp(1.5rem, 4vw, 2rem);
    /* RÉDUIT de clamp(2rem, 5vw, 2.5rem) */
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.02) 0%, rgba(16, 185, 129, 0.03) 100%);
    pointer-events: none;
}

.cta-header {
    text-align: center;
    margin-bottom: clamp(1.25rem, 3vw, 1.5rem);
    /* RÉDUIT de clamp(1.5rem, 4vw, 2rem) */
    position: relative;
    z-index: 2;
}

.cta-icon {
    width: clamp(60px, 12vw, 70px);
    /* RÉDUIT de clamp(70px, 15vw, 80px) */
    height: clamp(60px, 12vw, 70px);
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: clamp(1.6rem, 4vw, 1.8rem);
    /* RÉDUIT */
    margin: 0 auto clamp(0.75rem, 2.5vw, 1rem);
    /* RÉDUIT */
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.3);
    animation: pulseBlue 3s ease-in-out infinite;
}

.cta-header h3 {
    font-size: clamp(1.6rem, 3.5vw, 1.9rem);
    /* RÉDUIT de clamp(1.8rem, 4vw, 2.2rem) */
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: clamp(0.4rem, 1.5vw, 0.6rem);
    /* RÉDUIT */
    line-height: 1.2;
}

.cta-header p {
    color: var(--gray-600);
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    font-weight: 600;
}

.cta-header strong {
    color: #dc2626;
    font-weight: 800;
}

/* ===== FEATURES ===== */
.cta-features {
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
    /* RÉDUIT de clamp(2rem, 5vw, 2.5rem) */
    position: relative;
    z-index: 2;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: clamp(0.75rem, 2vw, 1rem);
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
    /* RÉDUIT de clamp(1rem, 2.5vw, 1.25rem) */
    padding: clamp(0.6rem, 1.5vw, 0.8rem);
    /* RÉDUIT */
    background: rgba(255, 255, 255, 0.6);
    border-radius: clamp(8px, 2vw, 10px);
    /* RÉDUIT */
    border: 1px solid rgba(34, 197, 94, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(34, 197, 94, 0.05);
    border-color: rgba(34, 197, 94, 0.2);
    transform: translateX(5px);
}

.feature-item i {
    color: #059669;
    font-size: clamp(0.9rem, 2.2vw, 1rem);
    width: 20px;
    flex-shrink: 0;
}

.feature-item span {
    color: var(--gray-700);
    font-weight: 600;
    font-size: clamp(0.95rem, 2.2vw, 1rem);
}

.tooltip-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: clamp(0.75rem, 2vw, 1rem);
}

.tooltip {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-left: 8px;
}

.tooltip-icon {
    color: #6366f1;
    font-size: 0.9rem;
    cursor: help;
    transition: all 0.3s ease;
}

.tooltip-icon:hover {
    color: #4f46e5;
    transform: scale(1.1);
}

.tooltip-content {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 23, 42, 0.95);
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.4;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    margin-bottom: 8px;
    min-width: 280px;
    max-width: 320px;
    white-space: normal;
    text-align: center;
}

.tooltip-content::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(15, 23, 42, 0.95);
}

.tooltip:hover .tooltip-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-2px);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .tooltip-content {
        position: fixed;
        bottom: auto;
        left: 50%;
        right: auto;
        top: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
        min-width: 280px;
        max-width: 90vw;
        padding: 16px 20px;
        border-radius: 12px;
        font-size: 0.9rem;
    }

    .tooltip-content::after {
        display: none;
    }

    .tooltip:hover .tooltip-content {
        transform: translate(-50%, -50%);
    }
}

.feature-item-with-tooltip {
    display: flex;
    align-items: center;
    gap: clamp(0.75rem, 2vw, 1rem);
    margin-bottom: clamp(1rem, 2.5vw, 1.25rem);
    padding: clamp(0.75rem, 2vw, 1rem);
    background: rgba(255, 255, 255, 0.6);
    border-radius: clamp(10px, 2.5vw, 12px);
    border: 1px solid rgba(34, 197, 94, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    justify-content: space-between;
    /* Distribue l'espace uniformément */
}

.feature-content {
    display: flex;
    align-items: center;
    gap: clamp(0.75rem, 2vw, 1rem);
    flex: 1;
}

.feature-content i {
    color: #059669;
    font-size: clamp(0.9rem, 2.2vw, 1rem);
    width: 20px;
    flex-shrink: 0;
}

.feature-content span {
    color: var(--gray-700);
    font-weight: 600;
    font-size: clamp(0.95rem, 2.2vw, 1rem);
}

/* Le tooltip reste à droite sans affecter la largeur */
.tooltip-right {
    flex-shrink: 0;
    margin-left: 8px;
}

/* Animation améliorée pour la bulle */
@keyframes tooltipFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(5px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(-2px) scale(1);
    }
}

.tooltip:hover .tooltip-content {
    animation: tooltipFadeIn 0.2s ease-out;
}

/* ===== CONTENEUR BOUTON FLOTTANT ===== */
.floating-btn-container {
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* Modification du bouton flottant quand il est dans la section */
.floating-btn-container .exhibitor-btn {
    position: static !important;
    width: 100%;
    max-width: 100%;
    min-width: auto;
    animation: none;
    box-shadow: 0 8px 32px rgba(225, 29, 72, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-btn-container .exhibitor-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(225, 29, 72, 0.4);
}

/* ===== INFORMATIONS ADDITIONNELLES ===== */
.cta-additional {
    position: relative;
    z-index: 2;
}

.urgency-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.5rem, 1.5vw, 0.75rem);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.05));
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: #d97706;
    padding: clamp(0.75rem, 2vw, 1rem);
    border-radius: clamp(8px, 2vw, 10px);
    font-weight: 600;
    font-size: clamp(0.85rem, 2vw, 0.9rem);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
}

.urgency-indicator i {
    font-size: clamp(0.9rem, 2.2vw, 1rem);
    animation: tickTock 1.5s ease-in-out infinite;
}

.contact-info {
    text-align: center;
    font-size: clamp(0.9rem, 2vw, 0.95rem);
    color: var(--gray-600);
}

.contact-info a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: #4338ca;
    text-decoration: underline;
}

/* ===== ANIMATIONS ===== */
@keyframes glowGreen {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(34, 197, 94, 0.15), 0 0 20px rgba(34, 197, 94, 0.1);
    }

    50% {
        box-shadow: 0 8px 30px rgba(34, 197, 94, 0.25), 0 0 30px rgba(34, 197, 94, 0.2);
    }
}

@keyframes pulseBlue {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes tickTock {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(5deg);
    }

    75% {
        transform: rotate(-5deg);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .exhibitor-content {
        grid-template-columns: 1fr;
        gap: clamp(2rem, 6vw, 3rem);
    }

    .exhibitor-cta-area {
        position: static;
        top: auto;
    }

    .benefits-grid {
        margin-bottom: clamp(2rem, 5vw, 3rem);
    }
}

@media (max-width: 768px) {
    .benefit-card {
        flex-direction: column;
        text-align: center;
        gap: clamp(1rem, 3vw, 1.25rem);
    }

    .benefit-icon {
        align-self: center;
    }

    .benefits-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .become-exhibitor-section {
        padding: clamp(2rem, 6vw, 3rem) 0;
        /* RÉDUIT pour mobile */
    }

    .exhibitor-content {
        grid-template-columns: 1fr;
        gap: clamp(1.5rem, 4vw, 2rem);
        /* RÉDUIT */
    }

    .benefits-grid {
        margin-bottom: clamp(1.5rem, 4vw, 2rem);
        /* RÉDUIT */
    }

    .cta-card {
        padding: clamp(1.25rem, 3vw, 1.5rem);
        /* RÉDUIT */
    }
}

@media (max-width: 480px) {
    .section-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }

    .feature-item {
        padding: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .benefit-card {
        padding: clamp(1rem, 3vw, 1.25rem);
        /* RÉDUIT */
    }

    .benefit-icon {
        width: clamp(40px, 8vw, 45px);
        /* RÉDUIT */
        height: clamp(40px, 8vw, 45px);
        font-size: clamp(1rem, 2.2vw, 1.1rem);
    }

    .floating-btn-container {
        min-height: 45px;
        /* RÉDUIT */
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {

    .section-badge,
    .cta-icon,
    .urgency-indicator i {
        animation: none;
    }

    .benefit-card:hover,
    .feature-item:hover {
        transform: none;
    }

    .benefit-card:hover .benefit-icon {
        transform: scale(1.05);
    }
}

/* ===== HIGH DPI SCREENS ===== */
@media (min-resolution: 2dppx) {

    .benefit-card,
    .cta-card {
        border-width: 0.5px;
    }

    .feature-item {
        border-width: 0.5px;
    }
}

/* ===== FIX LARGEUR UNIFORME CARTES AUDIENCE ===== */

/* Conteneur principal */
.audience-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(1.5rem, 4vw, 2rem);
    padding: 0 clamp(1rem, 3vw, 1.5rem);
}

/* Cartes avec largeur fixe et uniforme */
.audience-card {
    flex: 0 0 280px;
    /* Changement: flex-shrink à 0 pour largeur fixe */
    min-height: 220px;
    justify-content: flex-start;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: clamp(14px, 3vw, 18px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.2);
    text-align: left;
    align-items: center;
    padding: clamp(1rem, 2.5vw, 1.25rem);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(120%);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    animation: cardEntry 0.8s ease forwards;
    opacity: 0;
}

/* Ajustement des titres pour éviter les retours à la ligne */
.audience-card h4 {
    font-size: clamp(1.1rem, 2.8vw, 1.4rem);
    margin-bottom: clamp(0.5rem, 1.5vw, 0.75rem);
    color: var(--gray-900);
    font-weight: 800;
    transition: all 0.3s ease;
    letter-spacing: -0.025em;
    line-height: 1.2;
    white-space: nowrap;
    /* Empêche les retours à la ligne */
    overflow: hidden;
    text-overflow: ellipsis;
    /* Ajoute "..." si trop long */
}

/* Alternative pour desktop avec grid si vous préférez */
@media (min-width: 1024px) {
    .audience-grid {
        display: grid;
        grid-template-columns: repeat(3, 280px);
        /* 3 colonnes de 280px exactement */
        justify-content: center;
        gap: clamp(1.5rem, 4vw, 2rem);
    }

    .audience-card {
        flex: none;
        /* Supprime flex sur desktop */
        width: 100%;
        /* Prend toute la largeur de la colonne grid */
    }
}

/* Responsive pour tablettes */
@media (min-width: 768px) and (max-width: 1023px) {
    .audience-grid {
        display: grid;
        grid-template-columns: repeat(2, 280px);
        justify-content: center;
        gap: clamp(1.5rem, 4vw, 2rem);
    }

    .audience-card {
        flex: none;
        width: 100%;
    }
}

/* Mobile - stack vertical */
@media (max-width: 767px) {
    .audience-grid {
        display: flex;
        flex-direction: column;
        gap: clamp(1.5rem, 4vw, 2rem);
        padding: 0;
    }

    .audience-card {
        width: 100%;
        max-width: none;
        flex: none;
        min-height: 240px;
        padding: clamp(1.25rem, 3.5vw, 1.5rem);
    }
}