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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #1a1a1a;
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* === Button Reset === */
button.landCfg {
    border: none;
    cursor: pointer;
    font-family: inherit;
    -webkit-appearance: none;
    appearance: none;
}

/* === Fixed Header === */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.header-logo {
    display: flex;
    align-items: center;
}

.header-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.header-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d32f2f;
}

.header-ctas {
    display: flex;
    gap: 1rem;
}

.header-cta {
    background: #d32f2f;
    color: white;
    padding: 0.7rem 1.8rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.header-cta:hover {
    background: #b71c1c;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .header-ctas {
        display: none;
    }
}

/* === Bottom Bar === */
.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #d32f2f;
    padding: 1rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.bottom-bar.visible {
    transform: translateY(0);
}

.bottom-bar-cta {
    background: white;
    color: #d32f2f;
    padding: 0.9rem 2.5rem;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.bottom-bar-cta:hover {
    transform: scale(1.05);
}

/* === Split Screen Container === */
.split-container {
    display: flex;
    min-height: 100vh;
    margin-top: 70px;
}

.split-left {
    position: sticky;
    top: 70px;
    width: 50%;
    height: calc(100vh - 70px);
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.split-right {
    width: 50%;
    background: white;
}

@media (max-width: 1024px) {
    .split-container {
        flex-direction: column;
    }
    
    .split-left {
        position: relative;
        width: 100%;
        height: 60vh;
        top: 0;
    }
    
    .split-right {
        width: 100%;
    }
}

/* === Left Content === */
.left-content {
    text-align: center;
    color: white;
}

.left-content h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: #d32f2f;
}

.left-content .subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.left-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.left-stat {
    text-align: center;
}

.left-stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #d32f2f;
    display: block;
}

.left-stat-label {
    font-size: 0.9rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .left-content h1 {
        font-size: 2.5rem;
    }
    
    .left-content .subtitle {
        font-size: 1.2rem;
    }
    
    .left-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* === Right Content Sections === */
.content-section {
    padding: 5rem 4rem;
    border-bottom: 1px solid #e0e0e0;
}

.content-section:last-child {
    border-bottom: none;
}

.section-number {
    display: inline-block;
    background: #d32f2f;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.section-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 2rem;
}

.section-text strong {
    color: #d32f2f;
    font-weight: 700;
}

/* === Feature Boxes === */
.feature-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.feature-box {
    background: #f5f5f5;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #d32f2f;
}

.feature-box h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.feature-box p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

@media (max-width: 768px) {
    .content-section {
        padding: 3rem 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-boxes {
        grid-template-columns: 1fr;
    }
}

/* === Step Cards === */
.step-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.step-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: #d32f2f;
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.1);
}

.step-card::before {
    content: attr(data-step);
    position: absolute;
    top: -20px;
    left: 2.5rem;
    background: #d32f2f;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
}

.step-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.step-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

/* === Pricing Comparison === */
.pricing-comparison {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.price-box {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.price-box.featured {
    background: #d32f2f;
    color: white;
    border-color: #d32f2f;
    transform: scale(1.05);
}

.price-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.price-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.price-period {
    font-size: 1rem;
    opacity: 0.7;
    margin-bottom: 2rem;
}

.price-features {
    list-style: none;
    text-align: left;
}

.price-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-size: 0.95rem;
}

.price-box.featured .price-features li {
    border-bottom-color: rgba(255,255,255,0.2);
}

.price-features li::before {
    content: '✓';
    color: #d32f2f;
    font-weight: 700;
    margin-right: 0.8rem;
}

.price-box.featured .price-features li::before {
    color: white;
}

@media (max-width: 1024px) {
    .pricing-comparison {
        grid-template-columns: 1fr;
    }
    
    .price-box.featured {
        transform: scale(1);
    }
}

/* === Testimonial Slider === */
.testimonial-slider {
    background: #f5f5f5;
    padding: 3rem;
    border-radius: 12px;
    margin: 3rem 0;
}

.testimonial-item {
    text-align: center;
}

.testimonial-quote {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #333;
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    font-weight: 700;
    color: #d32f2f;
    font-size: 1.1rem;
}

.testimonial-stars {
    color: #d32f2f;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* === FAQ Accordion === */
.faq-accordion {
    margin: 3rem 0;
}

.faq-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #d32f2f;
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

/* === Final CTA Section === */
.final-cta-section {
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    color: white;
    padding: 5rem 4rem;
    text-align: center;
}

.final-cta-section h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
}

.final-cta-section p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-button {
    background: white;
    color: #d32f2f;
    padding: 1.5rem 4rem;
    font-weight: 900;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
}

.final-cta-button:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* === Footer === */
footer {
    background: #1a1a1a;
    color: white;
    padding: 2rem;
    text-align: center;
}

footer p {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* === Responsive === */
@media (max-width: 768px) {
    .final-cta-section h2 {
        font-size: 2rem;
    }
    
    .final-cta-section p {
        font-size: 1.1rem;
    }
}

/* === Highlight N°1 === */
.highlight-n1 {
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 8px;
    font-weight: 800;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
    position: relative;
    top: -2px;
}

/* === Prelinker Form === */
.ptprelinker-register-form {
    /****** En tête gold / iron / silver ******/
    --ptprelinker-css-bg-primary-register-gold: #f5e8f0 !important;
    --ptprelinker-css-ft-primary-register-gold: #d32f2f !important;

    /****** Bouton ******/
    --ptprelinker-css-bg-success: #d32f2f !important;
    --ptprelinker-css-border-success: #d32f2f !important;
    --ptprelinker-css-border-hover-success: #d32f2f !important;
    --ptprelinker-css-hover-success: #d32f2f !important;
    --ptprelinker-css-ft-success: #fff !important;

    /****** Content ******/
    --ptprelinker-css-bg-body: #ffffff !important;
    --ptprelinker-css-middle: #3a3a3a;

    /****** Icon ******/
    --ptprelinker-css-bg-icon-register-gold: #f5e8f0 !important;
    --ptprelinker-css-color-icon-register-gold: #d32f2f !important;

    /****** Input ******/
    --ptprelinker-css-bg-input: #f5f5f5 !important;
    --ptprelinker-css-ft-placeholder: #999 !important;
}
