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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container principal */
.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.content {
    max-width: 600px;
    text-align: center;
    width: 100%;
}

/* Titre principal */
.main-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.highlight {
    color: #ff6b35;
    font-weight: 700;
}

/* Sous-titre */
.subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 400;
    margin-bottom: 3rem;
    color: #333333;
    line-height: 1.4;
}

/* Section CTA */
.cta-section {
    margin-bottom: 3rem;
}

.cta-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #000000;
    font-weight: 500;
}

/* Formulaire Tally */
.tally-form {
    max-width: 400px;
    margin: 0 auto;
}

.tally-form iframe {
    border-radius: 12px;
    overflow: hidden;
}

/* Disclaimer */
.disclaimer {
    font-size: 0.85rem;
    color: #888888;
    line-height: 1.4;
    font-weight: 400;
}

.disclaimer a {
    color: #666666;
    text-decoration: none;
}

.disclaimer a:hover {
    color: #ff6b35;
    text-decoration: underline;
}

/* Responsive */
@media (min-width: 480px) {
    .tally-form {
        max-width: 500px;
    }
}

@media (max-width: 479px) {
    .container {
        padding: 1.5rem;
    }
    
    .main-title {
        margin-bottom: 1.2rem;
    }
    
    .subtitle {
        margin-bottom: 2.5rem;
    }
    
    .cta-section {
        margin-bottom: 2.5rem;
    }
}

/* Animation subtile au chargement */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content {
    animation: fadeInUp 0.6s ease-out;
}

/* Focus states pour l'accessibilité - Tally gère ses propres états de focus */
