/* Hero Identité */
.hero-identite {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #03a0e1 100%);
    padding: 120px 0 80px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-identite::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="2" height="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(3, 160, 225, 0.2);
    border: 2px solid #03a0e1;
    color: #03a0e1;
    padding: 8px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-identite h1 {
    font-size: 4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-lead {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-price {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    display: inline-block;
    margin-bottom: 30px;
}

.price-amount {
    display: block;
    font-size: 5rem;
    font-weight: 700;
    color: #03a0e1;
    line-height: 1;
    margin-bottom: 10px;
}

.price-label {
    display: block;
    font-size: 1.2rem;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.feature-item {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Advantages Section */
.advantages-section {
    padding: 80px 0;
    background: white;
}

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

.advantage-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    border-color: #03a0e1;
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.advantage-card h3 {
    color: #000;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.advantage-card p {
    color: #666;
    line-height: 1.8;
}

/* Documents Section */
.documents-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.document-card {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.document-card:hover {
    border-top-color: #03a0e1;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.document-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.document-card h3 {
    color: #000;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.document-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Normes Section */
.normes-section {
    padding: 80px 0;
    background: white;
}

.normes-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 50px;
}

.normes-image {
    position: sticky;
    top: 100px;
}

.normes-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 3px solid #03a0e1;
}

.normes-caption {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #03a0e1;
}

.normes-caption strong {
    display: block;
    color: #000;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.normes-caption p {
    color: #666;
    margin: 0;
}

.normes-list h3 {
    color: #000;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.normes-checklist {
    list-style: none;
    padding: 0;
}

.normes-checklist li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #03a0e1;
    transition: all 0.3s ease;
}

.normes-checklist li:hover {
    background: #e8f4f8;
    transform: translateX(5px);
}

.check-icon {
    font-size: 1.8rem;
    color: #27ae60;
    flex-shrink: 0;
    font-weight: bold;
}

.normes-checklist strong {
    display: block;
    color: #000;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.normes-checklist p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.normes-note {
    margin-top: 50px;
    background: linear-gradient(135deg, #e8f4f8, #f0f8ff);
    padding: 40px;
    border-radius: 20px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    border: 2px solid #03a0e1;
}

.note-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.note-content h4 {
    color: #000;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.note-content p {
    color: #333;
    line-height: 1.8;
    margin: 0;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f5f5f5, #e8e8e8);
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.step-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    max-width: 250px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #03a0e1, #0286c2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 25px;
    box-shadow: 0 5px 15px rgba(3, 160, 225, 0.3);
}

.step-content h3 {
    color: #000;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.step-content p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

.step-arrow {
    font-size: 2.5rem;
    color: #03a0e1;
    font-weight: bold;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

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

.faq-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.faq-item:hover {
    background: white;
    border-left-color: #03a0e1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.faq-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.faq-question h3 {
    color: #000;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
}

.faq-answer {
    color: #666;
    line-height: 1.8;
    padding-left: 45px;
}

/* CTA */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background: white;
    color: #000;
}

/* Responsive */
@media (max-width: 968px) {
    .normes-wrapper {
        grid-template-columns: 1fr;
    }

    .normes-image {
        position: static;
    }

    .process-steps {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .hero-identite h1 {
        font-size: 3rem;
    }

    .price-amount {
        font-size: 4rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .documents-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-identite h1 {
        font-size: 2.5rem;
    }

    .price-amount {
        font-size: 3.5rem;
    }
}