* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --accent: #ef4444;
    --accent-dark: #dc2626;
    --pink: #ec4899;
    --black: #0f0f0f;
    --gray: #6b7280;
    --light-gray: #f9fafb;
}

body {
    font-family: 'Manrope', sans-serif;
    background: white;
    color: var(--black);
    line-height: 1.6;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.nav-minimal {
    padding: 2rem 0;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-minimal {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--black);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--black);
}

.btn-accent {
    background: var(--accent);
    color: white !important;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
}

.btn-accent:hover {
    background: var(--accent-dark);
}

/* Hero Asymmetric */
.hero-asymmetric {
    padding: 5rem 0 8rem;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.eyebrow {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--light-gray);
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 2rem;
}

.display-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.accent-text {
    color: var(--accent);
}

.large-text {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.cta-minimal {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-primary-large {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s;
    text-align: center;
    max-width: fit-content;
}

.btn-primary-large:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
}

.trust-badge {
    color: var(--gray);
    font-size: 0.875rem;
}

.hero-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Numbers Section */
.numbers-section {
    padding: 6rem 0;
    background: var(--black);
    color: white;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.number-item {
    text-align: center;
}

.big-number {
    font-size: 5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 1rem;
}

.number-desc {
    font-size: 1.125rem;
    opacity: 0.8;
}

/* Concept Section */
.concept-section {
    padding: 8rem 0;
}

.concept-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.concept-image-side img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 20px;
}

.section-heading {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.concept-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.concept-point {
    display: flex;
    gap: 2rem;
}

.point-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    min-width: 60px;
}

.point-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.point-content p {
    color: var(--gray);
    line-height: 1.7;
}

/* Benefits */
.benefits-minimal {
    padding: 6rem 0;
    background: var(--light-gray);
}

.centered-heading {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 4rem;
}

.benefits-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.benefit-col {
    text-align: center;
}

.benefit-icon-minimal {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.benefit-col h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.benefit-col p {
    color: var(--gray);
    line-height: 1.6;
}

/* Gallery */
.visual-gallery {
    padding: 4rem 0;
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-masonry img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s;
}

.gallery-masonry img:hover {
    transform: scale(1.02);
}

.gallery-masonry img:nth-child(2) {
    grid-row: span 2;
}

/* Testimonial */
.testimonial-featured {
    padding: 6rem 0;
    background: var(--light-gray);
}

.featured-quote {
    text-align: center;
}

.quote-mark {
    font-size: 8rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 0.5;
    opacity: 0.3;
}

.quote-text {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.8;
    margin: 2rem 0 3rem;
    color: var(--black);
}

.quote-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.quote-author strong {
    font-size: 1.125rem;
    font-weight: 700;
}

.quote-author span {
    color: var(--gray);
    font-size: 0.875rem;
}

/* Contact */
.contact-minimal {
    padding: 8rem 0;
}

.contact-content {
    text-align: center;
}

.contact-heading {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.contact-intro {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 3rem;
}

.minimal-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--black);
}

.minimal-form input,
.minimal-form select {
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Manrope', sans-serif;
    transition: all 0.3s;
}

.minimal-form input:focus,
.minimal-form select:focus {
    outline: none;
    border-color: var(--accent);
}

.btn-submit-minimal {
    padding: 1.25rem;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.btn-submit-minimal:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

/* Form Styles */
.form-box-minimal {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 500px;
}

.form-box-minimal h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.form-sub-minimal {
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

/* CTA Content Minimal */
.cta-content-minimal {
    text-align: center;
    padding: 3rem;
    background: var(--light-gray);
    border-radius: 20px;
}

.btn-cta-minimal {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s;
    margin-top: 2rem;
}

.btn-cta-minimal:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
}

/* Footer */
.footer-minimal {
    padding: 4rem 0 2rem;
    background: var(--black);
    color: white;
}

.footer-grid-minimal {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.footer-col p {
    opacity: 0.6;
}

.footer-link-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link-group a {
    color: white;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-link-group a:hover {
    opacity: 1;
}

.footer-copy-minimal {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.5;
    font-size: 0.875rem;
}

/* Section texte minimal */
.text-section-minimal {
    padding: 6rem 0;
    background: white;
}

.text-heading-minimal {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--black);
}

.text-intro-minimal {
    font-size: 1.25rem;
    line-height: 1.8;
    text-align: center;
    color: var(--gray);
    margin-bottom: 3rem;
}

.comparison-box {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin: 3rem 0;
    padding: 3rem;
    background: var(--light-gray);
    border-radius: 20px;
}

.comparison-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
}

.comparison-item.highlight-comparison {
    border: 3px solid var(--accent);
    transform: scale(1.05);
}

.comparison-type {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
}

.comparison-rate {
    font-size: 4rem;
    font-weight: 900;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.comparison-label {
    font-size: 0.9375rem;
    color: var(--gray);
}

.comparison-divider {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
}

.text-body-minimal {
    font-size: 1.125rem;
    line-height: 1.9;
    color: #374151;
    margin-bottom: 1.5rem;
}

.text-conclusion-minimal {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--black);
    font-weight: 600;
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 16px;
    border-left: 4px solid var(--accent);
}

@media (max-width: 968px) {
    .hero-split,
    .concept-layout {
        grid-template-columns: 1fr;
    }
    
    .hero-image,
    .concept-image-side img {
        height: 400px;
    }
    
    .display-title {
        font-size: 3rem;
    }
    
    .numbers-grid,
    .benefits-columns {
        grid-template-columns: 1fr;
    }
    
    .gallery-masonry {
        grid-template-columns: 1fr;
    }
    
    .footer-grid-minimal {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-link-group {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .comparison-box {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .comparison-divider {
        transform: rotate(90deg);
    }
    
    .comparison-item.highlight-comparison {
        transform: scale(1);
    }
}
