@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.5;
    color: #1e1e1e;
    background: #ffffff;
    min-height: 100vh;
}

header {
    background: #000000;
    padding: 2rem 0;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #f63c25;
}

.logo-img {
    height: 80px;
    width: auto;
    max-width: 300px;
    /* filter: brightness(0) invert(1); */
}

main {
    background: #1e1e1e;
    padding: 0;
    margin: 0;
}

.hero {
    background: #1e1e1e;
    color: #ffffff;
    padding: 3rem 0;
    margin: 0;
    position: relative;
    text-align: center;
}


.hero-visual {
    position: relative;
    text-align: center;
    margin-bottom: 2rem;
}

.promo-container {
    position: relative;
    display: inline-block;
    overflow: hidden;
    margin: 0 auto;
    max-width: 800px;
}

.promo-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.3) 50%, transparent 60%);
    animation: shine 4s infinite;
    pointer-events: none;
    z-index: 1;
}

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

.promo-image {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 0;
}

.hero-subtitle {
    padding: 3rem 2rem;
    background: #ffffff;
    margin: 0 auto;
    text-align: center;
    max-width: 800px;
}





.subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    color: #1e1e1e;
    text-align: center;
}

.counter {
    background: linear-gradient(135deg, #f63c25, #dc2626);
    color: #ffffff;
    padding: 2.5rem 2rem;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    animation: urgentPulse 2s infinite;
    margin: 2rem auto;
    max-width: 700px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(246, 60, 37, 0.4);
    border: 3px solid #ffffff;
    position: relative;
    overflow: hidden;
}

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

@keyframes counterShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

#offerCount {
    font-size: 2.2rem;
    font-weight: 900;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #FFE066, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: numberGlow 2s infinite alternate;
}

@keyframes numberGlow {
    0% { 
        filter: drop-shadow(0 0 5px rgba(255, 224, 102, 0.8));
        transform: scale(1);
    }
    100% { 
        filter: drop-shadow(0 0 15px rgba(255, 224, 102, 1));
        transform: scale(1.05);
    }
}

@keyframes urgentPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.video-section,.reassurance-section, .why-section, .benefits-section, .conditions-section, .pricing-section, .summary-section, .comparison {
    background: #ffffff;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    border: none;
    position: relative;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.form-section {
    background: #ffffff;
    padding: 3rem 2rem;
    margin-bottom: 0;
    border: none;
    position: relative;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}



.video-placeholder {
    background: #F7F7F7;
    border: 2px dashed #2D2D2D;
    padding: 3rem;
    text-align: center;
    color: #2D2D2D;
    font-size: 1.2rem;
    margin: 1rem 0;
}

.video-section::before, .why-section::before, .benefits-section::before, .conditions-section::before, .pricing-section::before, .summary-section::before, .comparison::before, .form-section::before, .reassurance-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #f63c25;
}

.video-section h3, .why-section h3, .benefits-section h3, .conditions-section h3, .pricing-section h3, .summary-section h3, .comparison h3, .form-section h3, .reassurance-section h3 {
    font-family: 'Montserrat', sans-serif;
    color: #000000;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #f63c25;
    padding-bottom: 0.5rem;
    position: relative;
}

.benefits, .conditions {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.benefits li, .conditions li {
    padding: 0.8rem 0 0.8rem 2.5rem;
    position: relative;
    font-size: 1rem;
    font-weight: 500;
    color: #1A1A1A;
    border-bottom: 1px solid #F7F7F7;
    transition: all 0.3s ease;
}

.benefits li:hover, .conditions li:hover {
    background: #F7F7F7;
    transform: translateX(3px);
}

.benefits li::before, .conditions li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    width: 1.5rem;
    height: 1.5rem;
    background: #f63c25;
    display: flex;
    align-items: center;
    justify-content: center;
}

.choice-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.choice {
    padding: 3rem 2rem;
    border: 2px solid #1e1e1e;
    text-align: center;
    background: #ffffff;
    transition: all 0.3s ease;
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.choice:first-child {
    background: #ff6b35;
    color: #ffffff;
    border-color: #ff6b35;
}

.choice:first-child:hover {
    transform: translateY(-3px);
    background: #e55a2b;
}

.choice.highlighted {
    border-color: #28a745;
    background: #28a745;
    color: #ffffff;
    transform: scale(1.02);
    border-width: 3px;
}

.choice.highlighted:hover {
    background: #218838;
    transform: scale(1.02) translateY(-3px);
}

.choice.highlighted::before {
    content: 'MEILLEUR CHOIX';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #000000;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.choice h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

.comparison-text {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    color: #1e1e1e;
    margin-top: 2rem;
    padding: 2rem;
    background: #f7f7f7;
    border-left: 4px solid #f63c25;
    font-style: italic;
    line-height: 1.6;
}

.reassurance-section {
    background: #ffffff;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
}

.reassurance-section p {
    color: #1e1e1e;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.reassurance-section p:last-child {
    margin-bottom: 0;
}

/* Styles pour les sections avec images */
.section-with-image {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.text-content {
    flex: 1;
}

.image-content {
    flex: 0 0 400px;
}

.section-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* Section réassurance avec 2 images */
.reassurance-content {
    max-width: 800px;
    margin: 0 auto;
}

.reassurance-images {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.reassurance-image {
    width: 350px;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reassurance-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.reassurance-text {
    text-align: center;
}

.subscription-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1e1e1e;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #2D2D2D;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
    background: #ffffff;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: #f63c25;
    background: #ffffff;
    box-shadow: 0 0 0 2px rgba(246, 60, 37, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0.3rem 0 0 0;
    flex-shrink: 0;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.rgpd-section {
    background: #f7f7f7;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid #f63c25;
    border-radius: 0 5px 5px 0;
}

.rgpd-info {
    margin-bottom: 1.5rem;
}

.rgpd-info h4 {
    color: #1e1e1e;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rgpd-info p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #1e1e1e;
    margin: 0;
}

.rgpd-section .checkbox-group {
    margin-bottom: 1rem;
    padding: 1rem;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
}

.rgpd-section .checkbox-group:last-of-type {
    margin-bottom: 0;
}

.rgpd-section label {
    font-size: 0.9rem;
}

.rgpd-section a {
    color: #f63c25;
    text-decoration: none;
    font-weight: 600;
}

.rgpd-section a:hover {
    text-decoration: underline;
}

.required {
    color: #f63c25;
    font-weight: bold;
}

.submit-btn {
    width: 100%;
    background: #28a745;
    color: #ffffff;
    border: none;
    padding: 1.2rem 2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: #218838;
}

.submit-btn:active {
    background: #1e7e34;
}

footer {
    text-align: center;
    padding: 2rem;
    background: #1e1e1e;
    color: #ffffff;
    margin-top: 0;
    border-top: 3px solid #f63c25;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.legal-links {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.legal-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #f63c25;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .logo-img {
        height: 60px;
    }
    
    .promo-container {
        max-width: 100%;
    }
    
    .hero-subtitle {
        padding: 2rem 1rem;
        max-width: 100%;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .counter {
        padding: 1.5rem 1rem;
        font-size: 1.2rem;
        margin: 1rem auto;
    }
    
    #offerCount {
        font-size: 1.8rem;
    }
    
    main {
        padding: 0;
    }
    
    .hero {
        padding: 1rem 0;
        margin: 0;
    }
    
    .choice-comparison {
        grid-template-columns: 1fr;
    }
    
    .video-section, .why-section, .benefits-section, .conditions-section, .pricing-section, .summary-section, .comparison {
        padding: 1.5rem;
    }
    
    .form-section {
        padding: 1.5rem;
    }
    
    /* Responsive pour les images */
    .section-with-image {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .image-content {
        flex: none;
        order: -1;
    }
    
    .section-image {
        height: 200px;
        max-width: 100%;
    }
    
    .reassurance-images {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .reassurance-image {
        width: 100%;
        max-width: 300px;
        height: 200px;
    }
}