/* Variables */
:root {
    --primary-gold: #D4AF37;
    --secondary-gold: #FFD700;
    --dark-black: #1A1A1A;
    --light-black: #333333;
    --text-light: #ffffff99;
    --background: var(--dark-black);
    --background-alt: var(--light-black);
    --border-color: rgba(255, 255, 255, 0.1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: white;
    background: var(--background);
}

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

/* Navigation */
header {
    background: var(--dark-black);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-gold);
    font-size: 1.5rem;
    font-weight: 700;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

.logo a:hover {
    opacity: 0.8;
}

.logo img {
    width: 40px;
    height: auto;
}

.logo span {
    font-weight: 600;
    font-size: 1.5rem;
}

nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--primary-gold);
}

.btn-login {
    background: var(--primary-gold);
    color: var(--dark-black) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s;
}

.btn-login:hover {
    background: var(--secondary-gold);
}

/* Main Content */
main {
    margin-top: 5rem;
}

/* Hero Section */
.hero {
    background-color: var(--dark-black);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

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

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

.hero .subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* CTA Sections */
.cta-section {
    padding: 4rem 0;
    text-align: center;
    background-color: var(--dark-black);
    color: #fff;
}

.cta-section h2 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-gold);
    color: var(--dark-black);
    border: 2px solid var(--primary-gold);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-gold);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
}

.btn-secondary:hover {
    background-color: var(--primary-gold);
    color: var(--dark-black);
}

/* Background Utilities */
.bg-light {
    background-color: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .subtitle {
        font-size: 1.1rem;
    }
    
    .cta-group {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

/* Features Section */
.why-bfat {
    max-width: 1200px;
    margin: 8rem auto;
    padding: 0 1rem;
}

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

.feature {
    padding: 2rem;
    background: var(--light-black);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature h3 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature p {
    color: var(--text-light);
}

/* Section Headers */
h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: white;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-gold);
}

/* Social Proof Section */
.social-proof {
    max-width: 1200px;
    margin: 8rem auto;
    text-align: center;
    padding: 0 1rem;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
    margin-top: 4rem;
}

/* Target Audience Section */
.target-audience {
    max-width: 1200px;
    margin: 8rem auto;
    padding: 0 1rem;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.audience-card {
    padding: 2rem;
    background: var(--light-black);
    border-radius: 1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 420px;
}

.audience-card:hover {
    transform: translateY(-5px);
}

.audience-card h3 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.audience-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.audience-card .btn {
    margin-top: auto;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary-gold);
    color: var(--dark-black);
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn:hover {
    background: var(--secondary-gold);
}

/* Footer */
footer {
    background: var(--light-black);
    padding: 4rem 1rem 2rem;
    margin-top: 8rem;
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.footer-section h3 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-section:first-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-section:first-child img {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--text-light);
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--text-light);
}

/* Simulator Section */
.simulator {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1rem;
}

.simulator-container {
    background: var(--light-black);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.calculator-form {
    max-width: 800px;
    margin: 2rem auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-gold);
    font-weight: 500;
}

.form-group select,
.form-group input {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--dark-black);
    color: white;
    font-family: 'Poppins', sans-serif;
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.btn-calculate {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--primary-gold);
    color: var(--dark-black);
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Poppins', sans-serif;
}

.btn-calculate:hover {
    background: var(--secondary-gold);
}

.results {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.result-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.result-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--dark-black);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.result-label {
    display: block;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.result-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

.disclaimer {
    color: var(--text-light);
    font-size: 0.9rem;
    text-align: center;
    margin-top: 1rem;
}

/* CTA Section */
.cta-section {
    max-width: 800px;
    margin: 6rem auto;
    text-align: center;
    padding: 0 1rem;
}

.cta-section p {
    color: var(--text-light);
    margin: 1.5rem 0 2rem;
}

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

@media (max-width: 768px) {
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .result-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .cta-button {
        width: 100%;
    }
}

/* Solution Section */
.solution {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 1rem;
}

.solution-container {
    background: var(--light-black);
    border-radius: 1rem;
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Capabilities Section */
.capabilities {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 1rem;
}

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

.capability {
    background: var(--light-black);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.capability:hover {
    transform: translateY(-5px);
}

.capability h3 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.capability p {
    color: var(--text-light);
}

/* Pricing Preview Section */
.pricing-preview {
    max-width: 800px;
    margin: 6rem auto;
    padding: 0 1rem;
    text-align: center;
}

.pricing-container {
    background: var(--light-black);
    border-radius: 1rem;
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
}

.price {
    margin-bottom: 2rem;
}

.price .amount {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.price .period {
    color: var(--text-light);
    font-size: 1.1rem;
}

.price-features {
    margin: 2rem 0;
}

.price-features ul {
    list-style: none;
    max-width: 400px;
    margin: 0 auto;
}

.price-features li {
    color: white;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-features li:last-child {
    border-bottom: none;
}

.volume-discount {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.volume-discount p {
    color: var(--primary-gold);
    font-weight: 600;
}

@media (max-width: 768px) {
    .solution-container,
    .pricing-container {
        padding: 2rem 1rem;
    }
    
    .price .amount {
        font-size: 2.5rem;
    }
}

/* Styles pour la page ESN */
.advantages {
    padding: 4rem 2rem;
    background-color: var(--background-dark);
}

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

.advantage {
    background-color: var(--background-darker);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.advantage:hover {
    transform: translateY(-5px);
}

.advantage h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.advantage p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.case-study {
    padding: 4rem 2rem;
}

.case-study-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--background-darker);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 3rem;
}

.quote {
    margin-top: 2rem;
    text-align: center;
}

.quote blockquote {
    font-size: 1.5rem;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.quote-author {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.author-info {
    text-align: left;
}

.author-info .name {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.author-info .role {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

@media (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .case-study-container {
        padding: 2rem;
    }

    .quote blockquote {
        font-size: 1.2rem;
    }
}

/* Styles pour la section prix */
.pricing {
    padding: 4rem 2rem;
    background-color: var(--background-dark);
}

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

.pricing-card {
    background-color: var(--background-darker);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    color: var(--text-primary);
    font-weight: bold;
    margin: 1rem 0;
}

.price span {
    font-size: 1rem;
    color: var(--text-secondary);
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.features-list li {
    color: var(--text-secondary);
    margin: 0.5rem 0;
    line-height: 1.6;
}

/* Styles pour le call-to-action */
.cta {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta .btn {
    background-color: white;
    color: var(--primary-color);
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.3s ease;
    display: inline-block;
}

.cta .btn:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .cta {
        padding: 4rem 2rem;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .cta p {
        font-size: 1rem;
    }
}

/* Nouvelles sections de la page d'accueil */
.section-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

.cta-primary {
    text-align: center;
    margin-top: 3rem;
}

.cta-primary .cta-button {
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
}

/* Section How it works */
.how-it-works {
    max-width: 1200px;
    margin: 8rem auto;
    padding: 0 1rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-gold);
    color: var(--dark-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    font-size: 1.2rem;
}

.step h3 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.step p {
    color: var(--text-light);
}

.note {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    margin-top: 2rem;
}

/* Section Regulations */
.regulations {
    max-width: 1400px;
    margin: 8rem auto;
    padding: 0 1rem;
}

.regulations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.regulation {
    background: var(--light-black);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}

.regulation a {
    text-decoration: none;
    color: inherit;
    position: absolute;
    inset: 0;
    z-index: 1;
}

.regulation:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.regulation h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
}

.regulation p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-top: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Tags des réglementations */
.regulation-tags {
    display: flex;
    gap: 0.35rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.regulation-tag {
    font-size: 0.6rem;
    padding: 0.25rem 0.5rem;
    border-radius: 50px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.regulation-tag:hover {
    transform: translateY(-1px);
    filter: brightness(1.1);
}

.tag-banque {
    background: #4169E1;
    color: white;
    box-shadow: 0 2px 4px rgba(65, 105, 225, 0.3);
}

.tag-finance {
    background: #2E8B57;
    color: white;
    box-shadow: 0 2px 4px rgba(46, 139, 87, 0.3);
}

.tag-assurance {
    background: var(--primary-gold);
    color: var(--dark-black);
    box-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
}

.tag-geo {
    background: #4A90E2;
    color: white;
    box-shadow: 0 2px 4px rgba(74, 144, 226, 0.3);
}

.regulation.final-message {
    background: linear-gradient(135deg, var(--light-black), var(--dark-black));
    border: 1px solid var(--primary-gold);
}

.regulation.final-message h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

.regulation.final-message p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

@media (max-width: 768px) {
    .regulations {
        margin: 4rem auto;
    }

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

    .regulation {
        padding: 1.5rem;
    }
}

/* Section Summary */
.summary {
    max-width: 1200px;
    margin: 8rem auto;
    padding: 0 1rem;
}

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

.pillar {
    text-align: center;
    padding: 2rem;
    background: var(--light-black);
    border-radius: 1rem;
    border: 1px solid var(--border-color);
}

.pillar h3 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.pillar p {
    color: var(--text-light);
}

/* Section Story */
.story {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.story-content p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.values {
    padding: 4rem 0;
    background: var(--background);
}

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

.values .regulation {
    min-height: 200px;
    padding: 2.5rem;
}

.values .regulation p {
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 1rem;
    display: block;
    overflow: visible;
    -webkit-line-clamp: none;
}

.values .regulation h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-card {
    background: var(--light-black);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
    color: white;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card h3 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.value-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.team {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
}

.team-member h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stats {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.stats h2 {
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .values-grid,
    .team-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }

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

/* Final CTA */
.final-cta {
    max-width: 1200px;
    margin: 8rem auto;
    padding: 4rem 1rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 1rem;
}

.final-cta h2 {
    color: var(--dark-black);
    margin-bottom: 3rem;
}

.final-cta h2::after {
    background-color: var(--dark-black);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .cta-button {
    background: var(--dark-black);
    color: var(--primary-gold);
}

.cta-buttons .cta-button:hover {
    background: var(--light-black);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .section-intro {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .steps-grid,
    .regulations-grid,
    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .story-content {
        padding: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .cta-button {
        width: 100%;
    }
}

/* Contact Page Styles */
.contact-main {
    padding: 4rem 0;
    background-color: var(--light-black);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-methods {
    display: grid;
    gap: 2rem;
}

.contact-method {
    background: var(--dark-black);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
}

.contact-method i {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.contact-method h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-method p {
    color: var(--text-light);
    margin: 0;
}

.contact-method .detail {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    color: var(--text-light);
    opacity: 0.8;
}

.modern-form {
    background: var(--dark-black);
    padding: 2rem;
    border-radius: 10px;
}

.modern-form .form-group {
    margin-bottom: 1.5rem;
}

.modern-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 500;
}

.modern-form .required {
    color: var(--primary-gold);
}

.modern-form input[type="text"],
.modern-form input[type="email"],
.modern-form input[type="tel"],
.modern-form select,
.modern-form textarea {
    width: 100%;
    padding: 0.75rem;
    background: var(--light-black);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: white;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.modern-form input:focus,
.modern-form select:focus,
.modern-form textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.modern-form .checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.modern-form .checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
}

.modern-form .checkbox label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.modern-form button {
    width: 100%;
    margin-top: 1rem;
}

.faq {
    padding: 4rem 0;
    background: var(--dark-black);
}

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

.faq-item {
    background: var(--light-black);
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h3 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-method {
        padding: 1.5rem;
    }

    .modern-form {
        padding: 1.5rem;
    }
}

/* Styles spécifiques à la page Bâle III */
.content-section {
    padding: 2rem 0;
    background-color: var(--dark-black);
    color: #fff;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.lead {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.hero {
    background-color: var(--dark-black);
    padding: 3rem 0;
    text-align: center;
    border-bottom: 1px solid var(--primary-gold);
    color: #fff;
    margin-bottom: 0;
}

.hero h1 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.hero-subtitle {
    color: #fff;
    font-size: 1.25rem;
}

.cta-section {
    padding: 2rem 0;
    background-color: var(--dark-black);
    margin: 0;
}

.cta-box {
    background: var(--dark-black);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid var(--primary-gold);
    color: #fff;
}

.cta-box h2, .cta-box h3 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

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

.info-box {
    background-color: var(--dark-black);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border: 1px solid var(--primary-gold);
    color: #fff;
}

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

.custom-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    margin: 0;
}

.custom-list li:before {
    content: "•";
    color: var(--primary-gold);
    position: absolute;
    left: 0;
}

.timeline {
    margin: 2rem 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: var(--primary-gold);
}

.timeline-item {
    margin-left: 2rem;
    padding: 1rem;
    position: relative;
    margin-bottom: 1rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 1.5rem;
    width: 1rem;
    height: 1rem;
    background: var(--primary-gold);
    border-radius: 50%;
}

.timeline-date {
    font-weight: bold;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.institutions-grid, .piliers-grid, .impact-grid, .buffers-grid, .ratios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.institution-card, .pilier-card, .impact-card, .buffer-card, .ratio-card {
    background: var(--dark-black);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--primary-gold);
    color: #fff;
}

.institution-card h4, .pilier-card h4, .impact-card h4, .buffer-card h5, .ratio-card h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.ratio-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--primary-gold);
}

.ratio-details p {
    margin-bottom: 0.5rem;
}

.ratio-details strong {
    color: var(--primary-gold);
}

.faq-section {
    background-color: var(--dark-black);
    padding: 2rem 0;
    color: #fff;
}

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

.faq-item {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--dark-black);
    border-radius: 8px;
    border: 1px solid var(--primary-gold);
    color: #fff;
}

.faq-item h3 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item ul {
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
    }

    .cta-box {
        padding: 1.5rem;
        margin: 0 1rem;
    }
} 