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

:root {
    --blue-night: #0A1326;
    --gray-structure: #D3D9E2;
    --white: #FFFFFF;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Neue Haas Grotesk Text', 'Graphik', sans-serif;
    color: var(--blue-night);
    background-color: var(--blue-night);
    line-height: 1.6;
    font-weight: 400;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--blue-night);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 65px;
    width: auto;
}

.header-bar {
    max-width: 1200px;
    margin: 0 auto;
    height: 1px;
    background-color: var(--white);
}

.contact-button {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    border-radius: 0;
}

.contact-button:hover {
    background-color: var(--white);
    color: var(--blue-night);
}

/* SECTION 1 — HERO */
.hero {
    background-color: var(--blue-night);
    padding: 80px 40px;
    padding-top: 90px; /* ~82px pour le header + espace réduit */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-badge {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    opacity: 0.6;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.hero-title {
    font-size: 42px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--white);
    max-width: 900px;
    letter-spacing: -0.5px;
}

.hero-image {
    width: 80%;
    max-width: 900px;
    height: 240px;
    object-fit: cover;
    object-position: center 60%;
    border-radius: 16px !important;
    margin-top: 16px;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--white);
    opacity: 0.8;
    max-width: 1000px;
    margin-top: 0;
}

.hero-proofs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 4px;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.hero-proofs-intro {
    grid-column: 1 / -1;
    font-size: 20px;
    font-weight: 400;
    color: var(--white);
    opacity: 1;
    margin-top: 0;
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
}

.proof-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.proof-number {
    font-size: 32px;
    font-weight: 500;
    color: var(--white);
    line-height: 1;
}

.proof-text {
    font-size: 15px;
    font-weight: 400;
    color: var(--white);
    opacity: 0.7;
    line-height: 1.4;
}

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--white);
    color: var(--blue-night);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    border: 2px solid var(--white);
    width: fit-content;
    margin-top: 16px;
    transition: background-color 0.2s, color 0.2s;
    border-radius: 0;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--white);
}

.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0;
}

.hero-exclusivity {
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
    opacity: 0.7;
    margin-top: 8px;
    margin-bottom: 0;
    font-family: 'Inter', sans-serif;
}

/* SECTION 2 — MÉTHODE */
.method {
    background-color: var(--white);
    padding: 80px 40px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.method-title {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--blue-night);
    max-width: 900px;
    letter-spacing: -0.5px;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.method-card {
    background-color: var(--blue-night);
    border: 1px solid var(--gray-structure);
    padding: 0;
    display: flex;
    flex-direction: column;
    aspect-ratio: 1;
    border-radius: 0;
}

.method-card-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.method-card-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.3;
}

.method-card-text {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    opacity: 0.7;
    line-height: 1.5;
    margin-bottom: 12px;
}

.method-card-text:last-child {
    margin-bottom: 0;
}

.method-card-list {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    opacity: 0.7;
    line-height: 1.6;
    margin-left: 20px;
    margin-bottom: 12px;
    list-style-type: disc;
}

.method-card-list li {
    margin-bottom: 8px;
}

.method-disclaimer {
    font-size: 13px;
    font-weight: 400;
    color: var(--blue-night);
    opacity: 0.6;
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--gray-structure);
    margin-top: 16px;
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--white);
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 28px;
    font-weight: 300;
    color: var(--blue-night);
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    opacity: 0.7;
}

.modal-text {
    font-size: 16px;
    font-weight: 400;
    color: var(--blue-night);
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.modal-email {
    font-size: 18px;
    font-weight: 500;
    color: var(--blue-night);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}

.modal-email:hover {
    opacity: 0.7;
}

/* FOOTER */
.footer {
    background-color: #000000;
    padding: 60px 40px;
    color: var(--white);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    align-items: start;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.footer-logo-img {
    height: 150px;
    width: auto;
}

.footer-company-name {
    display: flex;
    flex-direction: column;
}

.footer-name-main {
    font-size: 24px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.2;
}

.footer-name-sub {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    opacity: 0.8;
    line-height: 1.2;
}

.footer-quote {
    align-items: center;
    text-align: center;
}

.footer-quote-text {
    font-size: 16px;
    font-style: italic;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 12px;
}

.footer-quote-author {
    font-size: 14px;
    color: var(--white);
    opacity: 0.8;
}

.footer-info {
    align-items: flex-end;
    text-align: right;
}

.footer-copyright {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-links {
    font-size: 14px;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.8;
}

.footer-link {
    color: var(--white);
    text-decoration: none;
}

.footer-link:hover {
    opacity: 0.7;
}

.footer-email {
    font-size: 14px;
    color: var(--white);
}

/* LEGAL PAGES */
.legal-page {
    background-color: var(--white);
    padding: 120px 40px;
    padding-top: 100px;
    min-height: 100vh;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-title {
    font-size: 48px;
    font-weight: 500;
    color: var(--blue-night);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.legal-date {
    font-size: 14px;
    color: var(--blue-night);
    opacity: 0.6;
    margin-bottom: 48px;
}

.legal-section {
    margin-bottom: 48px;
}

.legal-section-title {
    font-size: 24px;
    font-weight: 500;
    color: var(--blue-night);
    margin-bottom: 16px;
    line-height: 1.3;
}

.legal-text {
    font-size: 16px;
    color: var(--blue-night);
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-list {
    font-size: 16px;
    color: var(--blue-night);
    line-height: 1.7;
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-list li {
    margin-bottom: 8px;
}

.legal-link {
    color: var(--blue-night);
    text-decoration: underline;
}

.legal-link:hover {
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-proofs {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .method-title {
        font-size: 36px;
    }
    
    .method-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .header-container {
        padding: 24px 24px;
    }
    
    .logo {
        height: 50px;
    }
    
    .contact-button {
        padding: 6px 20px;
        font-size: 13px;
    }
    
    .hero {
        padding: 80px 24px;
        padding-top: 100px; /* Ajusté pour le nouveau header */
    }
    
    .hero-image {
        width: 100%;
        height: 240px;
        object-fit: cover;
        object-position: center 60%;
    }
    
    .method {
        padding: 80px 24px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .method-title {
        font-size: 28px;
    }
    
    .proof-number {
        font-size: 28px;
    }
    
    .footer {
        padding: 40px 24px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-quote {
        text-align: center;
    }
    
    .footer-info {
        align-items: center;
        text-align: center;
    }
    
    .legal-page {
        padding: 80px 24px;
        padding-top: 100px;
    }
    
    .legal-title {
        font-size: 36px;
    }
    
    .legal-section-title {
        font-size: 20px;
    }
    
    .legal-text,
    .legal-list {
        font-size: 15px;
    }
}

