/* =====================================================
   CERCLE DES INVESTISSEURS BRVM - STYLES PERSONNALISÉS
   ===================================================== */

:root {
    --bleu-nuit: #0a1628;
    --bleu-nuit-light: #14213d;
    --bleu-nuit-dark: #050d1a;
    --gold: #d4a017;
    --gold-light: #e8c547;
    --gold-dark: #b8860b;
    --vert: #2d8a5e;
    --vert-light: #3cb371;
    --beige: #f5f0e8;
    --beige-light: #faf8f5;
    --blanc: #ffffff;
    --gris: #6c757d;
    --gris-light: #e9ecef;
    --noir: #1a1a1a;
    --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--bleu-nuit);
    background: var(--beige-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
}

.text-gold { color: var(--gold) !important; }

/* =====================================================
   NAVIGATION
   ===================================================== */
#mainNav {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(212, 160, 23, 0.1);
}

#mainNav.scrolled {
    padding: 10px 0;
    background: rgba(10, 22, 40, 0.98);
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--blanc) !important;
    font-size: 1.3rem;
    font-weight: 700;
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bleu-nuit);
    font-size: 1.1rem;
}

.brand-text { letter-spacing: -0.5px; }

.nav-link {
    color: rgba(255,255,255,0.8) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px !important;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after, .nav-link.active::after { width: 60%; }

.btn-gold {
    background: var(--gradient-gold);
    color: var(--bleu-nuit) !important;
    border: none;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 160, 23, 0.4);
    color: var(--bleu-nuit) !important;
}

.navbar-toggler {
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 12px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bleu-nuit);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(212, 160, 23, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(45, 138, 94, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(212, 160, 23, 0.05) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(212, 160, 23, 0.15);
    color: var(--gold-light);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(212, 160, 23, 0.2);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--blanc);
    margin: 20px 0;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.8);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-buttons { margin-top: 35px; }

.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--blanc);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: var(--blanc);
    color: var(--bleu-nuit);
    border-color: var(--blanc);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}

.trust-item i { color: var(--gold); font-size: 1rem; }

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-circle {
    width: 200px;
    height: 200px;
    border: 2px solid rgba(212, 160, 23, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse 3s ease-in-out infinite;
}

.circle-inner {
    width: 120px;
    height: 120px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--bleu-nuit);
    box-shadow: 0 0 40px rgba(212, 160, 23, 0.3);
}

.floating-card {
    position: absolute;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--blanc);
    font-weight: 500;
    animation: float 6s ease-in-out infinite;
}

.floating-card i { color: var(--gold); font-size: 1.2rem; }

.card-1 { top: 10%; left: 0; animation-delay: 0s; }
.card-2 { top: 50%; right: 0; animation-delay: 2s; }
.card-3 { bottom: 10%; left: 10%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 160, 23, 0.2); }
    50% { box-shadow: 0 0 0 20px rgba(212, 160, 23, 0); }
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll a {
    color: rgba(255,255,255,0.5);
    font-size: 1.5rem;
    transition: var(--transition);
}

.hero-scroll a:hover { color: var(--gold); }

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* =====================================================
   SECTIONS COMMUNES
   ===================================================== */
.section-badge {
    display: inline-block;
    background: rgba(212, 160, 23, 0.1);
    color: var(--gold-dark);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--bleu-nuit);
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--gris);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* =====================================================
   SECTION PROBLÈME
   ===================================================== */
.section-probleme {
    background: var(--beige-light);
    padding: 80px 0;
}

.probleme-card {
    background: var(--blanc);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border-left: 4px solid var(--gold);
}

.probleme-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.probleme-card-highlight {
    border-left-color: var(--vert);
    background: linear-gradient(135deg, var(--blanc) 0%, rgba(45, 138, 94, 0.05) 100%);
}

.probleme-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 160, 23, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--gold);
    font-size: 1.2rem;
}

.probleme-card p {
    color: var(--bleu-nuit);
    font-weight: 500;
    margin: 0;
    font-size: 0.95rem;
}

.probleme-conclusion {
    background: var(--bleu-nuit);
    color: var(--blanc);
    padding: 40px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.probleme-conclusion::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(212, 160, 23, 0.05);
    border-radius: 50%;
}

.probleme-conclusion h4 {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.5;
    position: relative;
}

/* =====================================================
   SECTION MÉTHODOLOGIE
   ===================================================== */
.section-methode {
    background: var(--bleu-nuit);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.section-methode::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.etape-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.etape-card:hover {
    background: rgba(255,255,255,0.06);
    transform: translateY(-8px);
    border-color: rgba(212, 160, 23, 0.3);
}

.etape-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(212, 160, 23, 0.1);
    font-family: 'Inter', sans-serif;
    line-height: 1;
}

.etape-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--bleu-nuit);
}

.etape-card h4 {
    color: var(--blanc);
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.etape-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    margin: 0;
}

.parcours-visuel {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.05);
    padding: 20px 40px;
    border-radius: 50px;
    border: 1px solid rgba(212, 160, 23, 0.2);
}

.parcours-item {
    color: var(--gold);
    font-weight: 600;
    font-size: 1.1rem;
}

.parcours-visuel i {
    color: rgba(255,255,255,0.3);
    font-size: 1rem;
}

/* =====================================================
   SECTION OFFRES
   ===================================================== */
.section-offres {
    background: var(--beige-light);
    padding: 80px 0;
}

.offre-card {
    background: var(--blanc);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid transparent;
}

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

.offre-populaire {
    border: 2px solid var(--gold);
    transform: scale(1.02);
}

.offre-populaire:hover {
    transform: scale(1.02) translateY(-10px);
}

.badge-populaire {
    background: var(--gradient-gold);
    color: var(--bleu-nuit);
    text-align: center;
    padding: 10px;
    font-weight: 600;
    font-size: 0.85rem;
}

.offre-header {
    padding: 30px;
    text-align: center;
    background: linear-gradient(180deg, var(--bleu-nuit) 0%, var(--bleu-nuit-light) 100%);
    color: var(--blanc);
}

.offre-nom {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--blanc);
}

.offre-prix {
    margin: 15px 0;
}

.prix-montant {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.prix-devise {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    display: block;
    margin-top: 5px;
}

.offre-prix-flex {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.prix-option { text-align: center; }

.prix-separator {
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.offre-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.offre-body {
    padding: 30px;
    flex: 1;
}

.inclus-title {
    font-weight: 600;
    color: var(--bleu-nuit);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

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

.offre-modules li {
    padding: 8px 0;
    border-bottom: 1px solid var(--gris-light);
    font-size: 0.9rem;
    color: var(--bleu-nuit);
    display: flex;
    align-items: center;
    gap: 10px;
}

.offre-modules li:last-child { border-bottom: none; }

.offre-modules li i {
    color: var(--vert);
    font-size: 0.8rem;
}

.offre-footer {
    padding: 0 30px 30px;
}

.btn-offre {
    background: var(--bleu-nuit);
    color: var(--blanc) !important;
    border: none;
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-offre:hover {
    background: var(--bleu-nuit-light);
    transform: translateY(-2px);
}

.btn-offre-gold {
    background: var(--gradient-gold);
    color: var(--bleu-nuit) !important;
}

.btn-offre-gold:hover {
    box-shadow: 0 8px 25px rgba(212, 160, 23, 0.4);
}

.btn-offre-green {
    background: var(--vert);
    color: var(--blanc) !important;
}

.btn-offre-green:hover {
    background: var(--vert-light);
}

.btn-offre-green-outline {
    background: transparent;
    color: var(--vert) !important;
    border: 2px solid var(--vert);
}

.btn-offre-green-outline:hover {
    background: var(--vert);
    color: var(--blanc) !important;
}

/* =====================================================
   SECTION COMPARATEUR
   ===================================================== */
.section-comparateur {
    background: var(--blanc);
    padding: 80px 0;
}

.comparateur-table-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparateur-table {
    margin: 0;
    font-size: 0.9rem;
}

.comparateur-table thead th {
    background: var(--bleu-nuit);
    color: var(--blanc);
    font-weight: 600;
    padding: 20px 15px;
    border: none;
    font-size: 0.95rem;
}

.comparateur-table thead th small {
    display: block;
    color: var(--gold);
    font-weight: 500;
    margin-top: 5px;
    font-size: 0.8rem;
}

.comparateur-table tbody td {
    padding: 15px;
    vertical-align: middle;
    border-color: var(--gris-light);
}

.comparateur-table tbody tr:hover td {
    background: rgba(212, 160, 23, 0.03);
}

.bg-populaire { background: rgba(212, 160, 23, 0.1) !important; }
.bg-populaire-light { background: rgba(212, 160, 23, 0.03); }

/* =====================================================
   SECTION PROCESSUS
   ===================================================== */
.section-process {
    background: linear-gradient(135deg, var(--beige) 0%, var(--beige-light) 100%);
    padding: 80px 0;
}

.process-card {
    background: var(--blanc);
    padding: 35px 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

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

.process-step {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    color: var(--bleu-nuit);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
}

.process-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 160, 23, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px auto 20px;
    font-size: 1.3rem;
    color: var(--gold);
}

.process-card h5 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--bleu-nuit);
}

.process-card p {
    color: var(--gris);
    font-size: 0.9rem;
    margin: 0;
}

/* =====================================================
   SECTION TRUST
   ===================================================== */
.section-trust {
    background: var(--beige-light);
    padding: 40px 0;
}

.trust-banner {
    background: var(--bleu-nuit);
    color: var(--blanc);
    padding: 40px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.trust-banner::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: rgba(212, 160, 23, 0.05);
    border-radius: 50%;
}

.trust-banner h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.trust-banner p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

/* =====================================================
   SECTION FAQ
   ===================================================== */
.section-faq {
    background: var(--blanc);
    padding: 80px 0;
}

.accordion-item {
    border: 1px solid var(--gris-light);
    border-radius: var(--radius) !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.accordion-button {
    padding: 20px 25px;
    font-weight: 600;
    color: var(--bleu-nuit);
    background: var(--blanc);
    border: none;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: rgba(212, 160, 23, 0.05);
    color: var(--bleu-nuit);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230a1628'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 0 25px 20px;
    color: var(--gris);
    font-size: 0.95rem;
}

/* =====================================================
   CTA FINAL
   ===================================================== */
.section-cta {
    background: linear-gradient(135deg, var(--bleu-nuit) 0%, var(--bleu-nuit-light) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cta-box {
    position: relative;
    z-index: 1;
}

.cta-box h2 {
    color: var(--blanc);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 15px;
}

.cta-box p {
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto 25px;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer-main {
    background: var(--bleu-nuit-dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--blanc);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--bleu-nuit);
    transform: translateY(-3px);
}

.footer-main h5 {
    color: var(--blanc);
    font-size: 1rem;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li, .footer-contact li {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-divider {
    border-color: rgba(255,255,255,0.08);
    margin: 40px 0 20px;
}

.footer-disclaimer {
    background: rgba(255,255,255,0.03);
    padding: 20px;
    border-radius: var(--radius);
    border-left: 3px solid var(--gold);
    font-size: 0.8rem;
    line-height: 1.6;
}

.footer-disclaimer p { margin: 0; }

.footer-copyright {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    margin: 0;
}

/* =====================================================
   WHATSAPP FLOAT
   ===================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--blanc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    color: var(--blanc);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--bleu-nuit);
    color: var(--blanc);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    font-weight: 500;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--bleu-nuit);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

/* =====================================================
   MODAL INSCRIPTION
   ===================================================== */
.modal-content {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.modal-header {
    background: var(--bleu-nuit);
    color: var(--blanc);
    border: none;
    padding: 20px 25px;
}

.modal-header .btn-close {
    filter: invert(1);
    opacity: 0.7;
}

.modal-header .btn-close:hover { opacity: 1; }

.offre-recap {
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.1) 0%, rgba(212, 160, 23, 0.05) 100%);
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid rgba(212, 160, 23, 0.2);
}

.recap-label {
    font-size: 0.8rem;
    color: var(--gris);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.recap-nom {
    color: var(--bleu-nuit);
    font-size: 1.3rem;
    margin: 5px 0 0;
}

.recap-prix {
    color: var(--gold-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 5px 0 0;
}

.form-control, .form-select {
    border: 1.5px solid var(--gris-light);
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.1);
}

.form-label {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--bleu-nuit);
    margin-bottom: 6px;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 991px) {
    .hero-trust { gap: 15px; }
    .offre-populaire { transform: none; }
    .offre-populaire:hover { transform: translateY(-10px); }
    .parcours-visuel { flex-direction: column; gap: 10px; }
    .parcours-visuel i { transform: rotate(90deg); }
}

@media (max-width: 767px) {
    .hero-section { padding-top: 100px; text-align: center; }
    .hero-subtitle { margin: 0 auto 30px; }
    .hero-tags { justify-content: center; }
    .hero-buttons { text-align: center; }
    .hero-trust { justify-content: center; }
    .whatsapp-float { width: 50px; height: 50px; font-size: 1.5rem; bottom: 20px; right: 20px; }
    .whatsapp-tooltip { display: none; }
    .probleme-conclusion { padding: 25px; }
    .trust-banner { padding: 25px; text-align: center; }
    .trust-banner .text-md-end { text-align: center !important; margin-top: 20px; }
    .comparateur-table { font-size: 0.8rem; }
    .comparateur-table thead th { padding: 12px 8px; }
    .comparateur-table tbody td { padding: 10px 8px; }
}

@media (max-width: 575px) {
    .section-badge { font-size: 0.75rem; }
    .etape-card { padding: 30px 20px; }
    .offre-header { padding: 20px; }
    .prix-montant { font-size: 2rem; }
    .process-card { padding: 30px 20px; }
    .footer-main { padding: 40px 0 20px; }
}

/* =====================================================
   ANIMATIONS SUPPLÉMENTAIRES
   ===================================================== */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* Scrollbar personnalisée */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--beige-light); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

::selection {
    background: rgba(212, 160, 23, 0.3);
    color: var(--bleu-nuit);
}
