/* ============================================
   RESET & VARIABLES
   ============================================ */

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

:root {
    /* Colors - Identité Priority Stack */
    --primary: #0A0A0A;
    --accent: #D4AF37;
    --text-primary: #2B2B2B;
    --text-secondary: #666666;
    --bg-light: #F5F5F5;
    --white: #FFFFFF;
    --error: #e74c3c;
    --success: #27ae60;

    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Container */
    --container-max: 1200px;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ============================================
   HERO SECTION - OPTIMISÉ
   ============================================ */

.hero {
    background: var(--primary);
    color: var(--white);
    padding: var(--spacing-xl) 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.eyebrow {
    margin-bottom: 1rem;
}

.badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
}

.hero-content h1::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent);
    margin-top: var(--spacing-sm);
}

.highlight {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    color: rgba(255, 255, 255, 0.9);
}

.proof-points {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.proof-item .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.proof-item .label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.cta-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: var(--accent);
    color: var(--primary);
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.cta-main {
    font-size: 1.1rem;
}

.cta-sub {
    font-size: 0.85rem;
    font-weight: 400;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.trust-line {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.image-overlay {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.image-overlay .stat {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.25rem;
}

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

/* ============================================
   SOCIAL PROOF BAR
   ============================================ */

.social-proof-bar {
    background: var(--bg-light);
    padding: 3rem 0;
    border-bottom: 1px solid #E0E0E0;
}

.section-label {
    text-align: center;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

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

.logo {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.stats-bar {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #E0E0E0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    font-size: 1rem;
}

.stat-item strong {
    display: block;
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

/* ============================================
   PAIN DEEP DIVE
   ============================================ */

.pain-deep {
    padding: 6rem 0;
    background: var(--white);
}

.pain-deep h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
}

.scenarios {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.scenario {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.scenario-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.time {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.emotion {
    font-size: 2rem;
}

.scenario h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.scenario-story {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.pain-conclusion {
    text-align: center;
    padding: 3rem;
    background: var(--primary);
    color: var(--white);
    border-radius: 12px;
}

.pain-conclusion p {
    font-size: 1.3rem;
    line-height: 1.8;
}

.pain-conclusion strong {
    color: var(--accent);
}

/* ============================================
   MECHANISM SECTION
   ============================================ */

.mechanism {
    padding: 6rem 0;
    background: var(--bg-light);
}

.mechanism h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.mechanism-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.step-number {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.step p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.step-example {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-secondary);
}

.mechanism-result {
    text-align: center;
}

.result-box {
    background: var(--primary);
    color: var(--white);
    padding: 3rem;
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.result-label {
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.result-text {
    font-size: 1.4rem;
    line-height: 1.7;
}

.result-text strong {
    color: var(--accent);
}

/* ============================================
   TESTIMONIALS GRID
   ============================================ */

.testimonials-grid {
    padding: 6rem 0;
    background: var(--white);
}

.testimonials-grid h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card-v2 {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.metrics {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.metric {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
}

.timeframe {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.quote {
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.author .name {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.author .title {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ============================================
   TEMPLATE PREVIEW
   ============================================ */

.template-preview {
    padding: 6rem 0;
    background: var(--bg-light);
}

.template-preview h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
}

.preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.preview-placeholder {
    background: var(--white);
    border: 2px dashed var(--accent);
    border-radius: 12px;
    padding: 4rem 2rem;
    text-align: center;
}

.preview-placeholder p:first-child {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.preview-placeholder p:last-child {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.preview-content h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.checklist {
    list-style: none;
    margin-bottom: 2rem;
}

.checklist li {
    font-size: 1.1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.checklist li:last-child {
    border-bottom: none;
}

.value-prop {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.value-prop p {
    font-size: 1.2rem;
    line-height: 1.7;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-secondary);
}

.free {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

/* ============================================
   CREDIBILITY / ABOUT
   ============================================ */

.credibility {
    padding: 6rem 0;
    background: var(--white);
}

.credibility-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.profile img {
    width: 75%;
    border-radius: 100%;
}

.bio h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.bio-intro {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.cred-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.cred-item .icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.cred-item strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.cred-item p {
    font-size: 1rem;
    color: var(--text-secondary);
}

.bio-conclusion {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-primary);
}

/* ============================================
   FORM SECTION V2
   ============================================ */

.form-section-v2 {
    padding: 6rem 0;
    background: var(--primary);
    color: var(--white);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.form-intro {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.included {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.included-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent);
}

.included ul {
    list-style: none;
}

.included li {
    font-size: 1rem;
    padding: 0.5rem 0;
}

.tally-embed {
    max-width: 600px;
    margin: 0 auto 2rem;
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 12px;
}

.urgency-text {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 3rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    flex-wrap: wrap;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
    padding: 6rem 0;
    background: var(--bg-light);
}

.faq h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
}

.faq-items {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bio h4 {
    color: var(--white);
    margin-bottom: var(--spacing-xs);
}

.footer-bio p {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent);
    color: var(--primary);
}

.footer-copyright {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {

    .scenarios,
    .mechanism-steps,
    .testimonials {
        grid-template-columns: 1fr;
    }

    .preview-grid,
    .credibility-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h1::after {
        margin-left: auto;
        margin-right: auto;
    }

    .proof-points {
        grid-template-columns: repeat(2, 1fr);
    }

    .logos {
        flex-direction: column;
        gap: 1rem;
    }

    .stats-bar {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
}

/* ============================================
   SCROLL SMOOTH
   ============================================ */

html {
    scroll-behavior: smooth;
}