/* À PROPOS PAGE STYLES */

.about-page {
    max-width: 100%;
    padding: 0;
    margin: 0;
}

/* HERO SECTION */
.hero-section {
    background: linear-gradient(135deg, #F8FAFC 0%, #E8EEF5 100%);
    padding: 100px 20px 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(77, 148, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-blue) 50%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--text-gray);
    font-weight: 500;
    margin-bottom: 20px;
    text-align: center;
}

.hero-description {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero-badges {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary-blue);
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid rgba(0, 102, 255, 0.2);
    transition: all 0.3s ease;
}

.badge:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.25);
}

/* SECTION STYLES */
.section {
    padding: 100px 20px;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-blue);
    margin-bottom: 16px;
    padding: 8px 20px;
    background: rgba(0, 102, 255, 0.08);
    border-radius: 20px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.3;
    letter-spacing: -1px;
}

/* ABOUT SECTION */
.about-section {
    background: white;
}

.lead-text {
    font-size: 22px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 50px;
    font-weight: 400;
}

.about-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.point-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.point-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.point-card i {
    font-size: 40px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    display: block;
}

.point-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.point-card p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* OFFERS SECTION */
.offers-section {
    background: linear-gradient(135deg, #F8FAFC 0%, #E8EEF5 100%);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.offer-card {
    background: white;
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.offer-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
}

.offer-number {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.offer-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
}

.offer-tagline {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 30px;
    font-weight: 500;
}

.offer-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.offer-for, .offer-includes {
    font-size: 16px;
    line-height: 1.7;
}

.offer-for strong, .offer-includes strong {
    color: var(--text-dark);
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}

.offer-for ul, .offer-includes ul {
    list-style: none;
    padding-left: 0;
}

.offer-for li, .offer-includes li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 8px;
    color: var(--text-gray);
}

.offer-for li::before, .offer-includes li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 700;
}

.offer-highlight {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(0, 212, 255, 0.05));
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
    margin-top: 10px;
}

.offer-highlight i {
    font-size: 24px;
    color: var(--primary-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.offer-highlight p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.6;
}

/* METHOD SECTION */
.method-section {
    background: white;
}

.method-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    background: var(--bg-light);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 280px;
}

.step:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.step-icon {
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 16px;
    flex-shrink: 0;
}

.step h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
    flex-shrink: 0;
}

.step p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.5;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-arrow {
    display: none;
}

/* WHY SECTION */
.why-section {
    background: linear-gradient(135deg, #F8FAFC 0%, #E8EEF5 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.why-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    text-align: center;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
}

.why-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* CTA SECTION */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    padding: 100px 20px;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.cta-text {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: var(--primary-blue);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    background: var(--accent-cyan);
    color: white;
}

.cta-button i {
    font-size: 20px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 52px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .method-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
        letter-spacing: -1px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .lead-text {
        font-size: 18px;
    }
    
    .about-points {
        grid-template-columns: 1fr;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-card {
        padding: 30px 24px;
    }
    
    .offer-title {
        font-size: 24px;
    }
    
    .method-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 36px;
    }
    
    .cta-text {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .badge {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .offer-number {
        font-size: 28px;
    }
    
    .offer-title {
        font-size: 20px;
    }
    
    .method-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
