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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #1a2332;
    line-height: 1.6;
    overflow-x: hidden;
}

.header {
    background: linear-gradient(135deg, #1a2332 0%, #2d4059 100%);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    color: #c9a961;
    font-size: calc(1.2rem + 0.5vw);
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    z-index: 1001;
}

.nav-links {
    display: flex;
    gap: calc(1rem + 1vw);
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
    cursor: pointer;
    font-size: calc(0.9rem + 0.2vw);
}

.nav-links a:hover {
    color: #c9a961;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 0.5rem;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: #c9a961;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.page {
    min-height: 100vh;
    padding-top: 80px;
}

.hero {
    background: linear-gradient(135deg, #1a2332 0%, #2d4059 100%);
    padding: calc(4rem + 2vw) 2rem;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero h1 {
    font-size: calc(1.8rem + 1.5vw);
    margin-bottom: 1.5rem;
    color: #c9a961;
    line-height: 1.2;
}

.hero p {
    font-size: calc(1rem + 0.3vw);
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn {
    padding: calc(0.8rem + 0.3vw) calc(1.5rem + 1vw);
    font-size: calc(0.9rem + 0.2vw);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #c9a961 0%, #b89550 100%);
    color: #1a2332;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(201, 169, 97, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #c9a961;
}

.btn-secondary:hover {
    background: #c9a961;
    color: #1a2332;
}

.services {
    padding: calc(3rem + 2vw) 2rem;
    background: white;
}

.section-title {
    text-align: center;
    font-size: calc(1.8rem + 0.8vw);
    margin-bottom: 3rem;
    color: #1a2332;
    padding: 0 1rem;
}

.section-title span {
    color: #c9a961;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.service-card {
    background: white;
    padding: calc(1.5rem + 0.5vw);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border-top: 4px solid #c9a961;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.2);
}

.service-icon {
    font-size: calc(2rem + 1vw);
    margin-bottom: 1rem;
    color: #c9a961;
}

.service-card h3 {
    font-size: calc(1.2rem + 0.3vw);
    margin-bottom: 1rem;
    color: #1a2332;
}

.service-card p {
    color: #666;
    line-height: 1.8;
    font-size: calc(0.9rem + 0.1vw);
}

.stats {
    background: linear-gradient(135deg, #1a2332 0%, #2d4059 100%);
    padding: calc(3rem + 2vw) 2rem;
    color: white;
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: 2rem;
    text-align: center;
    padding: 0 1rem;
}

.stat-item h3 {
    font-size: calc(2rem + 1vw);
    color: #c9a961;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: calc(1rem + 0.2vw);
    opacity: 0.9;
}

.simulator-container {
    max-width: min(800px, 90vw);
    margin: 0 auto;
    padding: calc(2rem + 1vw) 2rem;
}

.simulator-card {
    background: white;
    padding: calc(2rem + 1vw);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: calc(1.5rem + 0.5vw);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1a2332;
    font-weight: 600;
    font-size: calc(1rem + 0.1vw);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: calc(0.8rem + 0.2vw);
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: calc(0.9rem + 0.1vw);
    transition: border 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #c9a961;
}

.slider-container {
    margin-top: 1rem;
}

.slider {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #e0e0e0;
    outline: none;
    -webkit-appearance: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: calc(20px + 0.5vw);
    height: calc(20px + 0.5vw);
    border-radius: 50%;
    background: #c9a961;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: calc(20px + 0.5vw);
    height: calc(20px + 0.5vw);
    border-radius: 50%;
    background: #c9a961;
    cursor: pointer;
    border: none;
}

.result-box {
    background: linear-gradient(135deg, #1a2332 0%, #2d4059 100%);
    padding: calc(1.5rem + 0.5vw);
    border-radius: 15px;
    color: white;
    margin-top: 2rem;
}

.result-box h3 {
    color: #c9a961;
    font-size: calc(1.2rem + 0.3vw);
    margin-bottom: 1rem;
}

.result-item {
    display: flex;
    justify-content: space-between;
    padding: calc(0.8rem + 0.2vw) 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: calc(0.9rem + 0.1vw);
}

.result-item:last-child {
    border-bottom: none;
}

.result-value {
    font-size: calc(1.2rem + 0.3vw);
    font-weight: bold;
    color: #c9a961;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: calc(2rem + 1vw) 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
    gap: 2rem;
}

.contact-info {
    background: linear-gradient(135deg, #1a2332 0%, #2d4059 100%);
    padding: calc(2rem + 1vw);
    border-radius: 20px;
    color: white;
}

.contact-info h3 {
    color: #c9a961;
    font-size: calc(1.5rem + 0.5vw);
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: calc(1.5rem + 0.5vw);
    gap: 1rem;
}

.info-icon {
    font-size: calc(1.5rem + 0.5vw);
    color: #c9a961;
    min-width: 40px;
}

.contact-form {
    background: white;
    padding: calc(2rem + 1vw);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-form h3 {
    color: #1a2332;
    font-size: calc(1.5rem + 0.5vw);
    margin-bottom: 2rem;
}

textarea {
    width: 100%;
    padding: calc(0.8rem + 0.2vw);
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: calc(0.9rem + 0.1vw);
    font-family: inherit;
    resize: vertical;
    min-height: 150px;
}

textarea:focus {
    outline: none;
    border-color: #c9a961;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: calc(2rem + 1vw) 2rem;
}

.about-section {
    margin-bottom: calc(2rem + 2vw);
    padding: 0 1rem;
}

.about-section h2 {
    color: #1a2332;
    font-size: calc(1.8rem + 0.8vw);
    margin-bottom: 1.5rem;
}

.about-section h2 span {
    color: #c9a961;
}

.about-section p {
    font-size: calc(1rem + 0.1vw);
    line-height: 1.8;
    color: #666;
    margin-bottom: 1rem;
    max-width: 800px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: white;
    padding: calc(1.5rem + 0.5vw);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.value-icon {
    font-size: calc(2rem + 1vw);
    margin-bottom: 1rem;
}

.value-card h4 {
    color: #1a2332;
    font-size: calc(1.2rem + 0.3vw);
    margin-bottom: 1rem;
}


.success-message {
    background: #4CAF50;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    display: none;
    font-size: calc(0.9rem + 0.1vw);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: linear-gradient(135deg, #1a2332 0%, #2d4059 100%);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: right 0.3s ease;
        padding: 2rem;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem;
        width: 100%;
        text-align: center;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .page {
        padding-top: 70px;
    }

    .hero {
        padding: calc(3rem + 1vw) 1rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero p {
        font-size: calc(1rem + 0.2vw);
    }

    .btn {
        padding: calc(0.8rem + 0.2vw) calc(1.2rem + 0.5vw);
        font-size: calc(0.9rem + 0.1vw);
        width: 100%;
        max-width: 250px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .services, .stats {
        padding: calc(2rem + 1vw) 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }

    .contact-container {
        grid-template-columns: 1fr;
        padding: calc(1.5rem + 0.5vw) 1rem;
        gap: 1.5rem;
    }

    .contact-info, .contact-form {
        padding: calc(1.5rem + 0.5vw);
    }

    .about-content {
        padding: calc(1.5rem + 0.5vw) 1rem;
    }

    .about-section {
        padding: 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .simulator-container {
        padding: calc(1.5rem + 0.5vw) 1rem;
        max-width: 95vw;
    }

    .simulator-card {
        padding: calc(1.5rem + 0.5vw);
    }


    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .info-icon {
        font-size: calc(1.8rem + 0.5vw);
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: calc(1.5rem + 1vw);
    }

    .section-title {
        font-size: calc(1.5rem + 0.5vw);
    }

    .service-card {
        padding: 1.5rem;
    }

    .stat-item h3 {
        font-size: calc(1.8rem + 0.8vw);
    }

    .result-box {
        padding: 1.2rem;
    }

    .result-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .form-group input, 
    .form-group select, 
    textarea {
        font-size: 16px; /* Empêche le zoom sur mobile */
    }

    .logo {
        font-size: calc(1rem + 0.3vw);
    }
}

@media (min-width: 1920px) {
    .nav-container,
    .hero-content,
    .services-grid,
    .stats-grid,
    .simulator-container,
    .contact-container,
    .about-content,
    .footer-content {
        max-width: 1400px;
    }

    .hero h1 {
        font-size: calc(2.5rem + 1vw);
    }

    .section-title {
        font-size: calc(2.5rem + 0.8vw);
    }
}
/* Styles pour les nouvelles sections */

/* Reset et corrections de marge */
.page.active {
    margin: 0;
    padding: 0;
}

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

/* Section Hero améliorée */
.hero {
    background: linear-gradient(135deg, #1a2332 0%, #2d4059 100%);
    color: white;
    text-align: center;
    padding: 100px 20px 80px;
    position: relative;
    overflow: hidden;
}

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

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: white;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    min-width: 200px;
}

.btn-primary {
    background: linear-gradient(135deg, #c9a961 0%, #b89550 100%);
    color: #1a2332;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(201, 169, 97, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #c9a961;
}

.btn-secondary:hover {
    background: #c9a961;
    color: #1a2332;
}

.cta-icon {
    margin-right: 10px;
    font-size: 1.2em;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
}

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

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #c9a961;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
}

/* Section Services */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1a2332;
}

.section-title span {
    color: #c9a961;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border-top: 4px solid #c9a961;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.15);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a2332;
}

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

/* Section Features */
.features {
    padding: 80px 0;
    background: white;
}

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

.feature-item {
    text-align: center;
    padding: 30px;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1a2332;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Section Partenaires */
.partners {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.partner-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.partner-logo {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.partner-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1a2332;
}

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

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.logo-item {
    padding: 20px 40px;
    background: #f8f9fa;
    border-radius: 10px;
    font-weight: 600;
    color: #1a2332;
    transition: all 0.3s ease;
}

.logo-item:hover {
    background: #e9ecef;
    transform: scale(1.05);
}

/* Section Contact Rapide */
.quick-contact {
    padding: 80px 0;
    background: white;
}

.contact-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: linear-gradient(135deg, #1a2332 0%, #2d4059 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.contact-info {
    padding: 50px;
    color: white;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #c9a961;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.detail-icon {
    font-size: 1.5rem;
    color: #c9a961;
    margin-top: 5px;
}

.detail-item strong {
    display: block;
    margin-bottom: 5px;
    color: white;
}

.detail-item p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

.contact-map {
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
    text-align: center;
    padding: 20px;
}

.map-placeholder p {
    margin: 10px 0;
}

/* Section Simulateur Rapide */
.quick-simulator {
    padding: 80px 0;
    background: #f8f9fa;
}

.simulator-widget {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-top: 40px;
}

.simulator-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 15px;
    color: #1a2332;
    font-weight: 600;
    font-size: 1.1rem;
}

.amount-display, .duration-display {
    font-size: 2rem;
    font-weight: bold;
    color: #c9a961;
    margin-bottom: 20px;
    text-align: center;
}

.slider {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #e0e0e0;
    outline: none;
    -webkit-appearance: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #c9a961;
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #c9a961;
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.result-preview {
    background: linear-gradient(135deg, #1a2332 0%, #2d4059 100%);
    padding: 30px;
    border-radius: 15px;
    color: white;
    margin-top: 20px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.result-value {
    font-size: 1.8rem;
    font-weight: bold;
    color: #c9a961;
}

.result-preview .btn {
    width: 100%;
    justify-content: center;
}

.simulator-info {
    padding: 20px;
}

.simulator-info h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #1a2332;
}

.offer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offer-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.offer-list li:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.offer-icon {
    font-size: 1.8rem;
    color: #c9a961;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-card,
    .simulator-widget {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .partners-logos {
        gap: 20px;
        padding: 30px 20px;
    }
    
    .logo-item {
        padding: 15px 25px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .contact-info,
    .simulator-widget {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 15px 60px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-logos {
        flex-direction: column;
    }
    
    .logo-item {
        width: 100%;
        text-align: center;
    }
}

/* Styles pour la page de création de compte */

/* Hero spécifique */
.account-hero {
    background: linear-gradient(135deg, #1a2332 0%, #2d4059 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.account-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: white;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-icon {
    font-size: 1.2rem;
}

/* Section création de compte */
.account-creation {
    padding: 60px 0 80px;
    background: #f8f9fa;
}

.creation-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* Barre de progression */
.progress-steps {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    position: relative;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 150px;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 10px;
    border: 3px solid white;
}

.step.active .step-number {
    background: #c9a961;
    color: white;
}

.step-label {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

/* Formulaire */
.account-form {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eaeaea;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    color: #1a2332;
    margin-bottom: 30px;
}

.section-icon {
    font-size: 1.5rem;
}

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

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #1a2332;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border 0.3s;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #c9a961;
}

/* Types de compte */
.account-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.account-type {
    position: relative;
}

.account-type input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.account-type label {
    display: block;
    padding: 25px;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
}

.account-type input[type="radio"]:checked + label {
    border-color: #c9a961;
    background: rgba(201, 169, 97, 0.05);
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.1);
}

.account-type label:hover {
    border-color: #c9a961;
}

.type-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 15px;
}

.type-title {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 10px;
}

.type-description {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.type-price {
    display: block;
    font-weight: bold;
    color: #c9a961;
    font-size: 1.1rem;
}

/* Documents */
.documents-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.document-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px dashed #c9a961;
}

.doc-icon {
    font-size: 1.8rem;
    color: #c9a961;
}

.doc-info {
    flex: 1;
}

.doc-info strong {
    display: block;
    color: #1a2332;
    margin-bottom: 5px;
}

.doc-info small {
    color: #666;
    font-size: 0.85rem;
}

.doc-upload {
    padding: 10px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.9rem;
}

/* Consentements */
.consent-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.consent-check input[type="checkbox"] {
    margin-top: 5px;
}

.consent-check label {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.consent-check a {
    color: #c9a961;
    text-decoration: none;
}

.consent-check a:hover {
    text-decoration: underline;
}

/* Actions du formulaire */
.form-actions {
    text-align: center;
    margin-top: 40px;
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.1rem;
    min-width: 300px;
}

.form-note {
    margin-top: 20px;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Informations complémentaires */
.creation-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.info-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.info-card h4 {
    font-size: 1.2rem;
    color: #1a2332;
    margin-bottom: 15px;
}

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

/* Message de succès */
.success-message {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .account-hero h1 {
        font-size: 2.2rem;
    }
    
    .account-form {
        padding: 30px 20px;
    }
    
    .progress-steps {
        flex-direction: column;
        gap: 20px;
    }
    
    .progress-steps::before {
        display: none;
    }
    
    .step {
        flex-direction: row;
        gap: 15px;
        max-width: 100%;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        margin-bottom: 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .account-types {
        grid-template-columns: 1fr;
    }
    
    .document-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .doc-upload {
        width: 100%;
    }
    
    .btn-large {
        width: 100%;
        min-width: auto;
    }
    
    .creation-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .account-hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .badge {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .form-section h3 {
        font-size: 1.2rem;
    }
}