/* Reset et variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --text-dark: #1a1a1a;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow-x: hidden;
    background: #ffffff;
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Mur d'images défilantes */
.image-wall {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.image-row {
    display: flex;
    gap: 1px;
    width: max-content;
    height: 90px;
    margin-bottom: 1px;
    will-change: transform;
    align-items: center;
    flex-shrink: 0;
}

.image-row img {
    height: 100%;
    width: auto;
    object-fit: cover;
    border-radius: 4px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    filter: saturate(1.2) contrast(1.05);
}

.image-row:last-child {
    margin-bottom: 0;
}

.image-row img:hover {
    opacity: 1;
}

/* Animations de défilement */
@keyframes scrollRight {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.row-right {
    animation: scrollRight 180s linear infinite;
}

.row-left {
    animation: scrollLeft 150s linear infinite;
}

.row-right:nth-child(odd) {
    animation-duration: 90s;
}

.row-left:nth-child(even) {
    animation-duration: 110s;
}

/* Overlay clair */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.3);
    z-index: 2;
}

/* Contenu principal */
.main-content {
    position: relative;
    z-index: 3;
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.8rem;
    gap: 0.8rem;
}

/* Logo */
.main-content .logo {
    max-width: 200px;
    width: 100%;
    height: auto;
    display: block;
}

/* Section lancement avec décomptes et flash */
.launch-section {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    max-width: 1100px;
    position: relative;
}

/* Wrapper pour les deux décomptes */
.countdowns-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 600px;
    position: relative;
}

/* Ordre par défaut desktop : beta message, bouton contact, countdown */
.beta-message-container {
    order: 1;
    margin-bottom: 0;
    position: relative;
    z-index: 3;
    border-radius: 16px;
    border-bottom: none;
}

.countdowns-wrapper .contact-button {
    order: 2;
    margin: -1rem 0 1.5rem 0;
    position: relative;
    z-index: 4;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.countdown-container {
    order: 3;
    padding-top: 2.5rem !important;
    padding-bottom: 1.5rem !important;
    position: relative;
    z-index: 5;
    border-radius: 16px;
    border-top: none;
    margin-top: 0;
    text-align: center;
    background: var(--glass-bg);
    padding: 1.2rem 2rem;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    width: 100%;
}

/* Message beta tests (en haut) */
.beta-message-container {
    text-align: center;
    background: var(--glass-bg);
    padding: 0.8rem 1.4rem;
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    width: 100%;
}

.beta-message {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.3px;
    color: var(--text-dark);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.beta-title {
    font-weight: 600;
    color: var(--text-dark);
}

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

/* Décompte lancement (milieu) - Supprimé (fusionné avec la définition précédente) */

.countdown-container h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Countdown pour lancement */
.countdown {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}

.countdown-value {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--primary-color);
    text-shadow: 0 0 25px rgba(37, 99, 235, 0.6);
}

.countdown-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.4rem;
    opacity: 0.8;
}

/* Tampon Live sur le décompte */
.live-stamp {
    position: absolute;
    top: -1rem;
    right: -1rem;
    z-index: 100;
    cursor: pointer;
    animation: stampBounce 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    transform-origin: center;
    transition: transform 0.3s ease;
    pointer-events: auto;
}

.live-stamp:hover {
    transform: rotate(5deg) scale(1.1);
}

@keyframes stampBounce {
    0% {
        transform: rotate(0deg) scale(0);
        opacity: 0;
    }
    60% {
        transform: rotate(-15deg) scale(1.1);
        opacity: 1;
    }
    80% {
        transform: rotate(-8deg) scale(0.95);
    }
    100% {
        transform: rotate(-12deg) scale(1);
        opacity: 1;
    }
}

.live-stamp-content {
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    padding: 0.8rem 1rem;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.5);
    transform: rotate(-12deg);
}

.live-stamp-badge {
    background: #1a1a1a;
    color: #FFD700;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.live-stamp-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.2;
    text-transform: uppercase;
}

/* Animation de tremblement léger avec pulsation colorée */
@keyframes gentleShake {
    0%, 85%, 100% {
        transform: rotate(-12deg) scale(1);
        filter: drop-shadow(0 0 0 rgba(28, 226, 103, 0));
    }
    87% {
        transform: rotate(-16deg) scale(1.06);
        filter: drop-shadow(0 8px 25px rgba(28, 226, 103, 0.6));
    }
    89% {
        transform: rotate(-8deg) scale(1.08);
        filter: drop-shadow(0 10px 30px rgba(28, 226, 103, 0.7));
    }
    91% {
        transform: rotate(-15deg) scale(1.06);
        filter: drop-shadow(0 8px 25px rgba(28, 226, 103, 0.6));
    }
    93% {
        transform: rotate(-9deg) scale(1.05);
        filter: drop-shadow(0 7px 22px rgba(28, 226, 103, 0.5));
    }
    95% {
        transform: rotate(-12deg) scale(1.02);
        filter: drop-shadow(0 6px 20px rgba(28, 226, 103, 0.4));
    }
}

/* Tampon Découvrir - style outline bleu */
.discover-stamp {
    position: absolute;
    top: -1rem;
    left: -1rem;
    z-index: 100;
    cursor: pointer;
    animation: stampBounce 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards,
               gentleShake 3s ease-in-out 1.5s infinite;
    transform-origin: center;
    transition: transform 0.3s ease;
    pointer-events: auto;
    opacity: 0;
}

.discover-stamp:hover {
    transform: rotate(-8deg) scale(1.1);
}

.discover-stamp-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 0.9rem 1.1rem;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--primary-color);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.discover-stamp-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* Flash Info Live - Modal Popup */
.flash-info.event-popup {
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(255, 193, 7, 0.5);
    max-width: 400px;
    width: 100%;
    color: #1a1a1a;
    border: 3px solid rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    transform: scale(1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-modal-content {
    animation: popIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

@keyframes popIn {
    0% {
        transform: scale(0.7);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.flash-info::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.flash-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.7rem;
    position: relative;
    z-index: 1;
}

.flash-badge {
    background: #1a1a1a;
    color: #FFD700;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
}

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

.flash-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: #1a1a1a;
}

.flash-text {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0.9rem;
    position: relative;
    z-index: 1;
    color: #1a1a1a;
}

.flash-text strong {
    font-weight: 700;
    text-decoration: underline;
    color: #000000;
}

.survey-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.7rem 1.2rem;
    background: #1a1a1a;
    color: #FFD700;
    border: none;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.survey-button:hover {
    background: #000000;
    color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.survey-button svg {
    flex-shrink: 0;
}

/* Modal Sondage */
.survey-container {
    background: var(--glass-bg);
    padding: 1.2rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    position: relative;
}

.survey-container h2 {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
    text-align: center;
    color: var(--text-dark);
}

.survey-intro {
    text-align: center;
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 0.6rem;
    font-size: 0.85rem;
}

.survey-form {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    box-sizing: border-box;
}

/* Formulaire de contact */
.contact-form-container {
    background: var(--glass-bg);
    padding: 1.2rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    position: relative;
    overflow: visible;
}

.contact-form-container h2 {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    box-sizing: border-box;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 2rem 0.7rem 0.7rem 0.7rem;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: visible;
    box-sizing: border-box;
}

.checkbox-group-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    position: absolute;
    top: 0.7rem;
    left: 0.7rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    padding: 0.35rem;
    border-radius: 8px;
    transition: background 0.2s ease;
    overflow: visible;
    position: relative;
}

.checkbox-item:hover {
    background: rgba(37, 99, 235, 0.05);
}

.checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

/* Icône d'information avec tooltip */
.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    cursor: help;
    margin-left: 0.5rem;
    position: relative;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.info-icon:hover {
    opacity: 1;
}

.info-icon svg {
    filter: drop-shadow(0 0 2px rgba(37, 99, 235, 0.3));
}

/* Tooltip au survol */
.info-icon::before {
    content: attr(data-tooltip);
    position: fixed;
    top: var(--tooltip-top, 0);
    left: var(--tooltip-left, auto);
    right: var(--tooltip-right, 0);
    bottom: auto;
    padding: 0.6rem 0.8rem;
    background: rgba(30, 30, 40, 0.95);
    color: white;
    font-size: 0.8rem;
    line-height: 1.4;
    border-radius: 8px;
    white-space: normal;
    width: 240px;
    max-width: calc(100vw - 4rem);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 10001;
    pointer-events: none;
    text-align: left;
}

.info-icon::after {
    content: '';
    position: fixed;
    top: var(--arrow-top, 0);
    right: var(--arrow-right, 10px);
    left: auto;
    bottom: auto;
    border: 8px solid transparent;
    border-top-color: rgba(30, 30, 40, 0.95);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 10001;
}

.info-icon:hover::before,
.info-icon:hover::after {
    opacity: 1;
    visibility: visible;
}

.checkbox-item span {
    font-size: 0.88rem;
    color: var(--text-dark);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
    box-sizing: border-box;
}

.contact-form select,
.contact-form input,
.contact-form textarea,
.survey-form input,
.survey-form textarea {
    padding: 0.7rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    font-size: 0.95rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
    width: 100%;
}

.contact-form select:focus,
.contact-form input:focus,
.contact-form textarea:focus,
.survey-form input:focus,
.survey-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-form select option {
    background: #ffffff;
    color: var(--text-dark);
}

/* Styles .subject-info supprimés - remplacés par les tooltips */

.contact-form textarea,
.survey-form textarea {
    resize: vertical;
    min-height: 70px;
}

.contact-form button,
.survey-form button[type="submit"] {
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-sizing: border-box;
    width: 100%;
}

.contact-form button:hover,
.survey-form button[type="submit"]:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

.contact-form button:active,
.survey-form button[type="submit"]:active {
    transform: translateY(0);
}

.form-message {
    margin-top: 0.6rem;
    padding: 0.7rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    font-size: 0.9rem;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #4ade80;
}

.form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #f87171;
}

/* Bouton contact */
.contact-button {
    padding: 0.7rem 2rem;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.contact-button:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

/* Réseaux sociaux */
.social-container {
    text-align: center;
    background: var(--glass-bg);
    padding: 0.6rem 0.9rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 280px;
    width: 100%;
    margin-top: 1.5rem;
}

.social-links-grid {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.social-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.social-link.linkedin {
    background: #0077B5;
}

.social-link.linkedin:hover {
    background: #005885;
}

.social-link.facebook {
    background: #1877F2;
}

.social-link.facebook:hover {
    background: #145dbf;
}

.social-link.instagram {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
}

.social-link.instagram:hover {
    opacity: 0.9;
}

.social-link.tiktok {
    background: #000000;
}

.social-link.tiktok:hover {
    background: #333333;
}

.social-link.youtube {
    background: #FF0000;
}

.social-link.youtube:hover {
    background: #CC0000;
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: #ffffff;
}

.social-link span {
    display: none;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
}

#confirmationModal {
    z-index: 1100;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
}

#eventModal.show {
    align-items: center;
}

.modal-content {
    position: relative;
    animation: slideIn 0.3s ease;
    max-width: 600px;
    width: 90%;
    max-height: 92vh;
    overflow-y: auto;
    overflow-x: visible;
    border-radius: 20px;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 40px;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
    z-index: 1001;
    transition: transform 0.2s ease;
}

#eventModal .close-modal,
#surveyModal .close-modal,
#contactModal .close-modal {
    top: 10px;
    right: 10px;
    color: #1a1a1a;
    font-size: 30px;
}

.close-modal:hover {
    transform: scale(1.2);
}

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

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

@keyframes slideInDiagonal {
    from {
        transform: translate(100%, -100%) rotate(5deg) scale(0.8);
        opacity: 0;
    }
    to {
        transform: translate(0, 0) rotate(0) scale(1);
        opacity: 1;
    }
}

/* Animation spéciale pour le modal sondage */
#surveyModal .modal-content {
    animation: slideInDiagonal 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Responsive */
@media (max-width: 1024px) {
    .main-content .logo {
        max-width: 240px;
    }

    .countdowns-wrapper {
        max-width: 500px;
    }

    .flash-info.event-popup {
        max-width: 380px;
        padding: 1.3rem;
    }

    .beta-message-container {
        padding: 0.7rem 1.2rem;
    }

    .beta-message {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .main-content {
        gap: 0.9rem;
        padding: 1rem 0.8rem;
        justify-content: flex-start;
        padding-top: 1.5rem;
    }

    .main-content .logo {
        max-width: 200px;
        margin-bottom: 6rem;
    }

    .launch-section {
        display: flex;
        flex-direction: column;
    }

    .countdowns-wrapper {
        max-width: 450px;
        order: 2;
    }

    /* Ordre responsive : beta, bouton contact, countdown */
    .beta-message-container {
        order: 1;
        border-radius: 16px;
        border-bottom: none;
        margin-bottom: 0;
        z-index: 3;
    }

    .countdowns-wrapper .contact-button {
        order: 2;
        margin: -0.8rem 0 1.5rem 0;
        z-index: 4;
    }

    .countdown-container {
        order: 3;
        border-radius: 16px;
        border-top: none;
        padding-top: 2rem !important;
        padding-bottom: 1.5rem !important;
        margin-top: 0;
        z-index: 5;
    }

    .live-stamp {
        top: -1.2rem;
        right: -0.5rem;
    }

    .live-stamp-content {
        width: 75px;
        height: 75px;
        padding: 0.6rem 0.8rem;
    }

    .live-stamp-badge {
        font-size: 0.6rem;
        padding: 0.15rem 0.4rem;
    }

    .live-stamp-text {
        font-size: 0.65rem;
    }

    .flash-info.event-popup {
        max-width: 340px;
        padding: 1.2rem;
    }

    .flash-header h3 {
        font-size: 1.1rem;
    }

    .flash-text {
        font-size: 0.88rem;
    }

    .survey-button {
        padding: 0.75rem 1.2rem;
        font-size: 0.88rem;
    }

    .survey-container {
        padding: 1.5rem;
    }

    .beta-message-container {
        padding: 0.7rem 1.1rem;
        width: 88%;
    }

    .beta-message {
        font-size: 0.88rem;
    }

    .contact-button {
        font-size: 0.95rem;
        padding: 0.85rem 2.2rem;
    }

    .social-container {
        padding: 0.7rem 1rem;
        max-width: 260px;
    }

    .social-links-grid {
        gap: 0.6rem;
    }

    .social-link {
        width: 38px;
        height: 38px;
    }

    .social-link svg {
        width: 19px;
        height: 19px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

    .contact-form-container h2 {
        font-size: 1.3rem;
    }

    .contact-form select,
    .contact-form input,
    .contact-form textarea {
        font-size: 0.95rem;
    }

    .checkbox-group {
        padding: 2.3rem 0.75rem 0.75rem 0.75rem;
    }

    .checkbox-item {
        padding: 0.4rem;
    }

    .checkbox-item span {
        font-size: 0.9rem;
    }

    .modal-content {
        width: 95%;
    }

    .image-row {
        height: 70px;
        margin-bottom: 1px;
        gap: 1px;
    }
}

@media (max-width: 480px) {
    .main-content {
        gap: 0.7rem;
        padding: 0.7rem 0.6rem;
        justify-content: flex-start;
        padding-top: 1.2rem;
    }

    .main-content .logo {
        max-width: 160px;
        margin-bottom: 7rem;
    }

    .launch-section {
        flex-direction: column;
        align-items: center;
        gap: 0;
        min-height: auto;
        display: flex;
    }

    .countdowns-wrapper {
        max-width: 95%;
        order: 2;
    }

    /* Ordre responsive : beta, bouton contact, countdown */
    .beta-message-container {
        order: 1;
        border-radius: 16px;
        border-bottom: none;
        margin-bottom: 0;
        z-index: 3;
    }

    .countdowns-wrapper .contact-button {
        order: 2;
        margin: -0.7rem 0 1.5rem 0;
        font-size: 0.85rem;
        padding: 0.65rem 1.8rem;
        z-index: 4;
    }

    .countdown-container {
        order: 3;
        border-radius: 16px;
        border-top: none;
        padding-top: 1.8rem !important;
        padding-bottom: 1.3rem !important;
        margin-top: 0;
        z-index: 5;
    }

    .live-stamp {
        top: -1rem;
        right: -0.3rem;
    }

    .live-stamp-content {
        width: 65px;
        height: 65px;
        padding: 0.5rem 0.6rem;
    }

    .live-stamp-badge {
        font-size: 0.55rem;
        padding: 0.12rem 0.35rem;
    }

    .live-stamp-text {
        font-size: 0.6rem;
    }

    .flash-info.event-popup {
        max-width: 90%;
        padding: 1.2rem;
    }

    .flash-header {
        gap: 0.5rem;
    }

    .flash-header h3 {
        font-size: 1rem;
    }

    .flash-badge {
        font-size: 0.65rem;
        padding: 0.25rem 0.65rem;
    }

    .flash-text {
        font-size: 0.8rem;
        margin-bottom: 0.9rem;
    }

    .survey-button {
        padding: 0.7rem 1.1rem;
        font-size: 0.82rem;
    }

    .survey-container {
        padding: 1.2rem;
    }

    .survey-container h2 {
        font-size: 1.3rem;
    }

    .survey-intro {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .beta-message-container {
        padding: 0.7rem 1rem;
        width: 85%;
    }

    .beta-message {
        font-size: 0.82rem;
        line-height: 1.6;
    }

    .contact-button {
        font-size: 0.9rem;
        padding: 0.75rem 1.8rem;
    }

    .social-container {
        padding: 0.6rem 0.9rem;
        max-width: 240px;
    }

    .social-links-grid {
        gap: 0.6rem;
    }

    .social-link {
        width: 36px;
        height: 36px;
    }

    .social-link svg {
        width: 18px;
        height: 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 1.2rem;
    }

    .contact-form-container h2 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .info-icon::before {
        width: 200px;
        max-width: calc(100vw - 4rem);
        font-size: 0.75rem;
        padding: 0.5rem 0.6rem;
    }

    .contact-form select,
    .contact-form input,
    .contact-form textarea {
        padding: 0.85rem;
        font-size: 0.9rem;
    }

    .checkbox-group {
        padding: 2.2rem 0.65rem 0.65rem 0.65rem;
    }

    .checkbox-group-title {
        font-size: 0.9rem;
    }

    .checkbox-item {
        padding: 0.35rem;
    }

    .checkbox-item input[type="checkbox"] {
        width: 18px;
        height: 18px;
    }

    .checkbox-item span {
        font-size: 0.85rem;
    }

    /* Tooltips adaptés pour mobile */
    .info-icon::before {
        width: calc(100vw - 3rem);
        max-width: 280px;
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }

    .info-icon::after {
        /* Positioning handled by JavaScript */
    }

    .image-row {
        height: 70px;
        margin-bottom: 1px;
        gap: 1px;
    }

    .legal-footer {
        font-size: 0.7rem;
    }
}

/* Footer Mentions légales - discret */
.legal-footer {
    position: fixed;
    bottom: 10px;
    right: 20px;
    z-index: 100;
    font-size: 0.75rem;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.legal-footer:hover {
    opacity: 0.8;
}

.legal-footer a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-footer a:hover {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
}

/* Modal Mentions légales */
.legal-container {
    background: var(--glass-bg);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--text-dark);
}

.legal-content {
    text-align: left;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.legal-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Modal de confirmation */
.confirmation-container {
    background: var(--glass-bg);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    text-align: center;
    animation: popIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.confirmation-icon {
    margin: 0 auto 1.5rem;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #34D399 0%, #10B981 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
    animation: scaleIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s both;
}

.confirmation-icon svg {
    color: white;
    animation: checkDraw 0.5s ease-out 0.5s both;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes checkDraw {
    0% {
        stroke-dasharray: 100;
        stroke-dashoffset: 100;
    }
    100% {
        stroke-dasharray: 100;
        stroke-dashoffset: 0;
    }
}

.confirmation-container h2 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-weight: 700;
}

.confirmation-container p {
    font-size: 1rem;
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 1.8rem;
    line-height: 1.5;
}

.confirmation-button {
    padding: 0.9rem 2.5rem;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.confirmation-button:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

.confirmation-button:active {
    transform: translateY(0);
}

/* Responsive pour le modal de confirmation */
@media (max-width: 768px) {
    .confirmation-container {
        padding: 2rem;
        max-width: 90%;
    }

    .confirmation-icon {
        width: 70px;
        height: 70px;
    }

    .confirmation-icon svg {
        width: 56px;
        height: 56px;
    }

    .confirmation-container h2 {
        font-size: 1.4rem;
    }

    .confirmation-container p {
        font-size: 0.95rem;
    }
}

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

    .confirmation-icon {
        width: 60px;
        height: 60px;
    }

    .confirmation-icon svg {
        width: 48px;
        height: 48px;
    }

    .confirmation-container h2 {
        font-size: 1.2rem;
    }

    .confirmation-container p {
        font-size: 0.9rem;
    }

    .confirmation-button {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }
}

/* ====================================
   MODAL DE PRÉSENTATION OQPA
   ==================================== */

/* Modal content plus large */
.presentation-modal-content {
    max-width: 1100px;
    width: 95%;
    max-height: 95vh;
    height: auto;
    overflow-y: visible;
    background: #ffffff;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    margin: auto;
    position: relative;
}

/* Header du modal */
.presentation-header {
    text-align: center;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid rgba(37, 99, 235, 0.1);
    margin-bottom: 0.8rem;
    flex-shrink: 0;
}

.presentation-slogan {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.presentation-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.presentation-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.presentation-beta {
    font-size: 0.9rem;
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.05);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    display: inline-block;
}

/* Navigation onglets */
.presentation-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 0;
    flex-shrink: 0;
}

.tab-btn {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border: none;
    background: transparent;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    bottom: -2px;
}

.tab-btn:hover {
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.05);
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: rgba(37, 99, 235, 0.08);
}

/* Contenu des onglets */
.presentation-content {
    flex: 1;
    overflow-y: auto;
    padding: 0.5rem;
    margin-bottom: 0.8rem;
    min-height: 0;
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

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

.content-section {
    margin-bottom: 1rem;
}

.content-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.content-section h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.content-section p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.content-section.highlight {
    background: rgba(37, 99, 235, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.tagline {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    font-style: italic;
}

.note {
    font-size: 0.9rem;
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.05);
    padding: 0.8rem;
    border-radius: 8px;
}

/* Listes */
.audience-list, .features-list {
    list-style: none;
    padding-left: 0;
}

.audience-list li, .features-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

.audience-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.features-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Étapes */
.steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Grille équipe */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.team-card {
    background: var(--glass-bg);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    text-align: center;
}

.team-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-avatar svg {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
}

.team-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.team-role {
    font-size: 0.85rem;
    color: var(--primary-color) !important;
    font-weight: 600 !important;
    margin-bottom: 0.8rem !important;
}

.team-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.team-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.8rem;
    padding: 0.5rem 1rem;
    background: #0077B5;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 119, 181, 0.3);
}

.team-linkedin:hover {
    background: #005885;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.5);
}

.team-linkedin svg {
    width: 20px;
    height: 20px;
}

/* Footer CTAs */
.presentation-footer {
    display: flex;
    flex-direction: row;
    gap: 0.8rem;
    padding-top: 0.8rem;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.cta-button {
    flex: 1;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button.primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.cta-button.primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

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

.cta-button.secondary:hover {
    background: rgba(37, 99, 235, 0.05);
    transform: translateY(-2px);
}

/* Responsive - Tablet et Desktop */
@media (max-width: 1024px) {
    .presentation-modal-content {
        max-width: 90%;
        width: 90%;
        max-height: 92vh;
        padding: 1rem;
    }

    .presentation-title {
        font-size: 1.6rem;
    }

    .presentation-subtitle {
        font-size: 1rem;
    }

    .content-section h3 {
        font-size: 1.1rem;
    }

    .discover-stamp {
        top: -0.8rem;
        left: -0.8rem;
    }

    .discover-stamp-content {
        width: 85px;
        height: 85px;
        padding: 0.7rem 0.9rem;
    }

    .discover-stamp-text {
        font-size: 0.75rem;
    }
}

/* Responsive - Tablette */
@media (max-width: 768px) {
    .modal.show {
        padding: 2vh 0;
    }

    .presentation-modal-content {
        max-width: 95%;
        width: 95%;
        max-height: 86vh;
        padding: 0.8rem;
        margin: 0 auto;
    }

    .presentation-header {
        padding-bottom: 0.6rem;
        margin-bottom: 0.6rem;
    }

    .presentation-slogan {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }

    .presentation-title {
        font-size: 1.3rem;
        margin-bottom: 0.4rem;
    }

    .presentation-subtitle {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }

    .presentation-beta {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }

    .presentation-tabs {
        gap: 0.3rem;
        margin-bottom: 0.8rem;
    }

    .tab-btn {
        padding: 0.7rem 0.5rem;
        font-size: 0.85rem;
    }

    .presentation-content {
        padding: 0.4rem;
        margin-bottom: 0.6rem;
    }

    .content-section {
        margin-bottom: 0.8rem;
    }

    .content-section h3 {
        font-size: 1.05rem;
        margin-bottom: 0.6rem;
    }

    .content-section h4 {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }

    .content-section p {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }

    .content-section.highlight {
        padding: 1rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .note {
        font-size: 0.85rem;
        padding: 0.7rem;
    }

    .audience-list li, .features-list li {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }

    .steps {
        gap: 0.8rem;
        margin-bottom: 1rem;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .team-card {
        padding: 0.8rem;
    }

    .team-avatar {
        width: 80px;
        height: 80px;
        margin-bottom: 0.8rem;
    }

    .team-card h4 {
        font-size: 1rem;
    }

    .team-role {
        font-size: 0.8rem !important;
    }

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

    .team-linkedin {
        margin-top: 0.6rem;
        padding: 0.45rem 0.9rem;
    }

    .team-linkedin svg {
        width: 18px;
        height: 18px;
    }

    .presentation-footer {
        flex-direction: row;
        gap: 0.5rem;
        padding-top: 0.6rem;
    }

    .cta-button {
        padding: 0.7rem 0.8rem;
        font-size: 0.85rem;
        flex: 1;
    }

    .discover-stamp {
        top: -0.7rem;
        left: -0.7rem;
    }

    .discover-stamp-content {
        width: 75px;
        height: 75px;
        padding: 0.6rem 0.7rem;
    }

    .discover-stamp-text {
        font-size: 0.68rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .modal.show {
        padding: 2vh 0;
        align-items: flex-start;
    }

    .presentation-modal-content {
        max-width: 94%;
        width: 94%;
        max-height: 88vh;
        padding: 0.6rem;
        border-radius: 12px;
        margin: 0 auto;
    }

    .presentation-header {
        padding-bottom: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .presentation-slogan {
        font-size: 0.75rem;
        margin-bottom: 0.3rem;
    }

    .presentation-title {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }

    .presentation-subtitle {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }

    .presentation-beta {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
    }

    .presentation-tabs {
        margin-bottom: 0.6rem;
        gap: 0.2rem;
    }

    .tab-btn {
        padding: 0.6rem 0.4rem;
        font-size: 0.75rem;
    }

    .presentation-content {
        padding: 0.3rem;
        margin-bottom: 0.5rem;
    }

    .content-section {
        margin-bottom: 0.6rem;
    }

    .content-section h3 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .content-section h4 {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }

    .content-section p {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 0.5rem;
    }

    .content-section.highlight {
        padding: 0.8rem;
        border-radius: 8px;
    }

    .tagline {
        font-size: 0.9rem;
    }

    .note {
        font-size: 0.8rem;
        padding: 0.6rem;
    }

    .audience-list li, .features-list li {
        font-size: 0.85rem;
        padding: 0.3rem 0;
        padding-left: 1.2rem;
    }

    .steps {
        gap: 0.6rem;
        margin-bottom: 0.8rem;
    }

    .step {
        gap: 0.8rem;
    }

    .step-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .team-card {
        padding: 0.7rem;
    }

    .team-avatar {
        width: 70px;
        height: 70px;
        margin-bottom: 0.6rem;
        border-width: 2px;
    }

    .team-card h4 {
        font-size: 0.95rem;
        margin-bottom: 0.2rem;
    }

    .team-role {
        font-size: 0.75rem !important;
        margin-bottom: 0.5rem !important;
    }

    .team-card p {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .team-linkedin {
        margin-top: 0.5rem;
        padding: 0.4rem 0.8rem;
    }

    .team-linkedin svg {
        width: 16px;
        height: 16px;
    }

    .presentation-footer {
        flex-direction: row;
        gap: 0.4rem;
        padding-top: 0.5rem;
    }

    .cta-button {
        padding: 0.6rem 0.5rem;
        font-size: 0.7rem;
        border-radius: 10px;
        flex: 1;
    }

    .discover-stamp {
        top: -0.5rem;
        left: -0.5rem;
    }

    .discover-stamp-content {
        width: 65px;
        height: 65px;
        padding: 0.5rem 0.6rem;
        border-width: 2px;
    }

    .discover-stamp-text {
        font-size: 0.6rem;
        letter-spacing: 0.3px;
    }

    /* Close button plus accessible sur mobile */
    #presentationModal .close-modal {
        font-size: 26px;
        top: 8px;
        right: 8px;
    }
}

/* Z-index pour modals empilés */
#presentationModal {
    z-index: 1000;
}

#contactModal,
#surveyModal {
    z-index: 1100;
}
