/* Reset et Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Couleurs inspirées du logo */
    --gold-primary: #FFD700;
    --gold-light: #FFF8DC;
    --gold-dark: #B8860B;
    
    --black-primary: #0A0A0A;
    --black-light: #1A1A1A;
    --black-soft: #2A2A2A;
    
    --white-pure: #FFFFFF;
    --white-soft: #F8F8F8;
    
    --accent-success: #00C851;
    --accent-warning: #FF8800;
    --accent-error: #FF4444;
    
    /* Espacements */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 40px;
    --space-xl: 64px;
    --space-xxl: 96px;
    
    /* Bordures arrondies */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    /* Ombres */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 4px 20px rgba(255, 215, 0, 0.3);
}

/* Base */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--white-pure);
    background: var(--black-primary);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    z-index: 1000;
    padding: var(--space-sm) 0;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-primary);
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
    margin-left: var(--space-xl);
}

.nav-link {
    color: var(--white-pure);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gold-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    transition: left 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    text-align: center;
}

.mobile-nav-link {
    color: var(--white-pure);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--gold-primary);
}

/* Boutons CTA */
.cta-primary {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: var(--black-primary);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-gold);
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

.cta-secondary {
    background: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
    padding: calc(var(--space-sm) - 2px) calc(var(--space-lg) - 2px);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-secondary:hover {
    background: var(--gold-primary);
    color: var(--black-primary);
    transform: translateY(-2px);
}

/* Animations */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { 
        box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    }
    50% { 
        box-shadow: 0 4px 30px rgba(255, 215, 0, 0.6);
    }
}

/* Glass Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: var(--shadow-lg);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: url('FONGSITE GOLD.png') center/cover no-repeat, linear-gradient(135deg, var(--black-primary) 0%, var(--black-light) 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

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

.badge-premium {
    background: rgba(255, 215, 0, 0.2);
    color: var(--gold-primary);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: var(--space-md);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-sm);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--white-pure);
    margin-bottom: var(--space-lg);
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-xxl);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xxl);
}

.stat-card {
    text-align: center;
    padding: var(--space-lg);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold-primary);
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Sections */
.section-light {
    background: var(--black-light);
    color: var(--white-pure);
    padding: var(--space-xxl) 0;
}

.section-dark {
    background: var(--black-primary);
    color: var(--white-pure);
    padding: var(--space-xxl) 0;
}

.section-gold {
    background: linear-gradient(135deg, var(--black-light) 0%, var(--black-soft) 100%);
    color: var(--white-pure);
    padding: var(--space-xxl) 0;
    position: relative;
}

.section-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xxl);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Grilles */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xxl);
}

.content-block {
    text-align: center;
}

.content-block .icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.content-block h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

/* Piliers */
.pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.pillar {
    text-align: center;
    padding: var(--space-md);
}

.pillar-icon {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
}

.pillar h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--gold-primary);
}

.section-light .pillar h4 {
    color: var(--gold-primary);
}

.pillar p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Créateurs */
.creators-section {
    margin-bottom: var(--space-xxl);
}

.creators-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: var(--space-xl);
}

.creators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
}

.creator-card {
    text-align: center;
}

.creator-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--space-md);
    border-radius: 50%;
    border: 3px solid var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.1);
}

.avatar-placeholder {
    font-size: 3rem;
}

.creator-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.creator-card p {
    margin-bottom: var(--space-md);
    opacity: 0.8;
}

.creator-badges {
    display: flex;
    gap: var(--space-xs);
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 215, 0, 0.2);
    color: var(--gold-primary);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
}

/* Formation */
.formation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.formation-card {
    text-align: center;
}

.formation-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.formation-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.ebooks-list {
    margin: var(--space-lg) 0;
}

.download-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Timeline */
.timeline-section {
    margin-bottom: var(--space-xxl);
    text-align: center;
}

.timeline-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: var(--space-xl);
    color: var(--gold-primary);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

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

.timeline-item {
    position: relative;
    margin-bottom: var(--space-xl);
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-dot {
    width: 50px;
    height: 50px;
    background: var(--gold-primary);
    color: var(--black-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
    margin: 0 var(--space-lg);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    max-width: 300px;
    text-align: left;
}

.timeline-content h4 {
    color: var(--gold-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

/* Calculateur */
.calculator {
    margin-top: var(--space-lg);
    text-align: left;
}

.calc-input {
    margin-bottom: var(--space-md);
}

.calc-input label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 500;
    color: var(--gold-primary);
}

.calc-input input,
.calc-input select {
    width: 100%;
    padding: var(--space-sm);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--radius-sm);
    background: var(--black-soft);
    color: var(--white-pure);
    font-size: 1rem;
    font-family: inherit;
}

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

.calc-input select {
    cursor: pointer;
}

.calc-input select option {
    background: var(--black-soft);
    color: var(--gold-primary);
    padding: var(--space-sm);
}

.calc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.calc-results {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--gold-primary);
    border-radius: var(--radius-sm);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
}

.calc-note {
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--gold-primary);
    padding: var(--space-md);
    margin: var(--space-md) 0;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    opacity: 0.8;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-md);
    text-align: center;
}

.result-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: var(--space-md);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.result-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-2px);
}

.main-result {
    background: rgba(255, 215, 0, 0.2);
    border: 2px solid var(--gold-primary);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.result-label {
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: var(--space-xs);
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.result-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.main-result .result-value {
    font-size: 1.4rem;
}

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

.table-section {
    margin-top: var(--space-lg);
    text-align: center;
}

/* Modal Table Chirurgicale */
.modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--black-light);
    margin: 5% auto;
    border: 2px solid var(--gold-primary);
    border-radius: var(--radius-md);
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow: auto;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    background: rgba(255, 215, 0, 0.1);
}

.modal-header h3 {
    margin: 0;
    color: var(--gold-primary);
    font-size: 1.2rem;
}

.close {
    color: var(--gold-primary);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--white-pure);
}

.modal-body {
    padding: var(--space-lg);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

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

.main-result {
    background: rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-sm);
    padding: var(--space-md);
    margin: var(--space-sm) 0;
    border: 1px solid var(--gold-primary);
}

.result-label {
    font-size: 0.9rem;
    font-weight: 500;
}

.result-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.main-result .result-value {
    font-size: 1.3rem;
}

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

/* TradingView Widget */
.tradingview-widget {
    margin: var(--space-lg) 0;
    height: 450px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--black-soft);
}

#tradingview_gold_chart {
    height: 100%;
    width: 100%;
}

/* Graphiques circulaires */
.stat-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.stat-card .stat-number {
    position: relative;
}

.stat-card .stat-label {
    position: relative;
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 2;
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: var(--space-xl);
    }
    
    .timeline-dot {
        position: absolute;
        left: 5px;
        margin: 0;
    }
    
    .timeline-content {
        max-width: none;
        margin-left: var(--space-xl);
    }
}

.ebook-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    padding: var(--space-sm);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
}

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

.schedule {
    margin: var(--space-lg) 0;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm);
    margin-bottom: var(--space-xs);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
}

.schedule-day {
    font-weight: 500;
}

.schedule-time {
    color: var(--gold-primary);
    font-weight: 600;
}

.principles-list {
    list-style: none;
    margin: var(--space-lg) 0;
}

.principles-list li {
    padding: var(--space-sm);
    margin-bottom: var(--space-xs);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
}

.program-steps {
    margin: var(--space-lg) 0;
}

.step {
    padding: var(--space-sm);
    margin-bottom: var(--space-xs);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
}

/* Témoignages */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xxl);
}

.testimonial-card {
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: var(--gold-primary);
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: 10px;
}

.testimonial-content {
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.testimonial-info h4 {
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.testimonial-info span {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Statistiques */
.results-stats {
    text-align: center;
    margin-bottom: var(--space-xxl);
}

.results-stats h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: var(--space-xl);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xxl);
    margin-bottom: var(--space-xxl);
}

.contact-form-container h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    text-align: center;
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-input {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--radius-sm);
    background: var(--black-soft);
    color: var(--white-pure);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-input option {
    background: var(--black-soft);
    color: var(--gold-primary);
    padding: var(--space-sm);
}

.contact-links h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    text-align: center;
}

.contact-link-card {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.contact-link-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.contact-link-card p {
    margin-bottom: var(--space-md);
    opacity: 0.8;
}

.schedule-info {
    text-align: center;
}

.schedule-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
}

.schedule-label {
    font-weight: 500;
}

.schedule-value {
    color: var(--gold-primary);
    font-weight: 600;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-lg);
}

.faq-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--gold-primary);
}

.section-light .faq-item h4 {
    color: var(--gold-primary);
}

.faq-item p {
    opacity: 0.8;
}

/* Footer */
.footer {
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-primary);
    margin-bottom: var(--space-md);
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: var(--space-sm);
}

.footer-links h4,
.footer-legal h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--gold-primary);
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-legal li {
    margin-bottom: var(--space-xs);
}

.footer-links a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: var(--space-xs);
    opacity: 0.7;
}

.disclaimer {
    color: var(--accent-warning);
    font-weight: 500;
}

.cta-section {
    text-align: center;
    margin-top: var(--space-xl);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .formation-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .creators-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .pillars {
        grid-template-columns: 1fr;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations d'apparition */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

/* Scroll smooth pour les ancres */
section {
    scroll-margin-top: 80px;
}