        /* VARIABLES DE COULEURS */
        :root {
            --primary: #1E3A5F;
            --secondary: #4A9B7F;
            --action: #E87F3A;
            --bg-light: #F7F8FA;
            --white: #ffffff;
            --text-main: #1F2933;
            --text-muted: #6B7280;
            --border: #E5E7EB;
        }

        /* RESET & BASE */
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-light);
            color: var(--text-main);
            line-height: 1.5;
            scroll-behavior: smooth;
        }
        .container {
            max-width: 1250px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1, h2, h3, h4 { color: var(--primary); }
        a { text-decoration: none; color: inherit; }

        /* HEADER */
        header { padding: 25px 0; background: var(--white); }
        .header-flex { display: flex; justify-content: space-between; align-items: center; }
        .logo { font-size: 24px; font-weight: 700; letter-spacing: -1px; }
        .logo span { color: var(--secondary); }
        .stats { font-size: 14px; font-weight: 600; color: var(--text-muted); }
        .dot { color: var(--secondary); margin-right: 5px; }

        /* HERO SECTION */
        .hero { 
            background-image: linear-gradient(135deg, #eef2f7 0%, #ffffff 100%);
            background-image:url(images/bg-divorce-banner.jpg); 
            background-repeat: no-repeat;
            padding: 60px 0;
            border-bottom: 1px solid var(--border);
        }

        @media all and (min-width:1000px){
            .hero { 
                background-size: 50%;
                background-position: -5% 0;
            }
        }
        @media all and (max-width:1000px){
            .hero { 
                background-size: contain;
                background-position: -10% 0;
            }
        }

        .hero-flex { display: flex; gap: 50px; align-items: center; flex-wrap: wrap; }
        .hero-text { flex: 1; min-width: 300px; }
        .hero h1 { font-size: 42px; line-height: 1.1; margin-bottom: 20px; }
        .hero p { font-size: 18px; color: var(--text-muted); margin-bottom: 30px; }
        
        .hero-features { display: flex; gap: 20px; flex-wrap: wrap; }
        .feature-tag { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; }

        /* FORMULAIRE */
        .hero-form { flex: 1; min-width: 300px; }
        .form-card {
            background: var(--white);
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(30, 58, 95, 0.1);
            border: 1px solid var(--border);
        }
        .form-card h2 { font-size: 20px; text-align: center; margin-bottom: 25px; }
        .form-step { animation: fadeIn 0.3s ease-in; }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .form-group { margin-bottom: 20px; }
        .label-text { display: block; font-size: 14px; font-weight: 600; margin-bottom: 10px; }
        
        .radio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
        .option-btn { display: none; }
        .option-label {
            display: block;
            padding: 12px;
            border: 1px solid var(--border);
            border-radius: 6px;
            text-align: center;
            cursor: pointer;
            transition: all 0.2s;
        }
        .option-btn:checked + .option-label {
            background-color: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        .input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
        input[type="text"], input[type="email"], input[type="tel"] {
            width: 100%;
            padding: 14px;
            border: 1px solid var(--border);
            border-radius: 6px;
            margin-bottom: 15px;
            outline-color: var(--primary);
        }

        /* Boutons du formulaire */
        .form-buttons {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
        }
        
        .btn-action {
            flex: 1;
            padding: 18px;
            background: var(--action);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            text-align: center;
            transition: 0.3s;
        }
        .btn-action:hover { filter: brightness(1.1); transform: translateY(-2px); }
        
        .btn-secondary {
            padding: 18px 30px;
            background: var(--white);
            color: var(--primary);
            border: 2px solid var(--primary);
            border-radius: 6px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            text-align: center;
            transition: 0.3s;
        }
        .btn-secondary:hover { background: var(--primary); color: white; }
        
        .form-footer { text-align: center; font-size: 12px; color: #9CA3AF; margin-top: 15px; }

        /* SECTIONS GENERALES */
        .section-padding { padding: 80px 0; }
        .bg-white { background-color: var(--white); }
        .bg-grey { background-color: #F9FAFB; }
        .bg-light-green { background-color: #f0fdf4; }
        .text-center { text-align: center; margin-bottom: 50px; }
        .subtitle { max-width: 700px; margin: 15px auto 0; color: var(--text-muted); font-size: 18px; }

        /* POURQUOI NOUS (GRILLE AVANTAGES) */
        .grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin: 0 auto; }
        .grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 30px; margin: 0 auto; }
        .advantage-card {
            background: var(--white);
            padding: 35px;
            border-radius: 12px;
            border: 1px solid var(--border);
            transition: box-shadow 0.3s;
        }
        .advantage-card:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
        .icon-box { color: var(--secondary); margin-bottom: 20px; }
        .icon-box svg { width: 40px; height: 40px; }
        .advantage-card h3 { margin-bottom: 12px; font-size: 20px; }
        .advantage-card p { color: var(--text-muted); font-size: 15px; }

        /* TÉMOIGNAGES */
        .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
        .testimonial-card {
            background: var(--white);
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            border: 1px solid var(--border);
        }
        .stars { color: var(--action); margin-bottom: 15px; font-size: 20px; }
        .testimonial-text { font-style: italic; color: var(--text-muted); margin-bottom: 20px; font-size: 15px; }
        .testimonial-author { font-weight: 700; color: var(--primary); }
        .testimonial-city { color: #9CA3AF; font-weight: 400; }

        /* ETAPES */
        .step { text-align: center; }
        .step-number {
            width: 45px; height: 45px;
            background: var(--primary); color: white;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 20px; font-weight: 700;
        }
        .success-box {
            background: #f0fdf4; 
            color: var(--secondary);
            padding: 20px; border-radius: 8px;
            margin-top: 50px; text-align: center;
            font-weight: 600; border: 1px solid var(--secondary);
        }

        /* FAQ */
        .faq-container { max-width: 800px; margin: 0 auto; }
        details {
            background: var(--white);
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 15px;
            border: 1px solid var(--border);
        }
        summary {
            font-weight: 600;
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--primary);
        }
        summary::-webkit-details-marker { display: none; }
        summary::after { content: '+'; color: var(--secondary); font-size: 20px; }
        details[open] summary::after { content: '−'; }
        .faq-content { margin-top: 15px; font-size: 15px; color: var(--text-muted); line-height: 1.6; }

        /* PRIX */
        .pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; max-width: 1100px; margin: 0 auto; }
        .price-card {
            background: white; padding: 40px; border-radius: 12px;
            position: relative; display: flex; flex-direction: column;
            border: 1px solid var(--border);
        }
        .price-card.featured { border: 2px solid var(--primary); transform: scale(1.03); box-shadow: 0 15px 30px rgba(0,0,0,0.05); }
        .badge {
            position: absolute; top: 0; right: 0;
            background: var(--primary); color: white;
            font-size: 11px; padding: 5px 12px; font-weight: 700;
            border-bottom-left-radius: 8px;
        }
        .price-amount { font-size: 36px; font-weight: 700; margin: 10px 0; }
        .price-sub { color: var(--secondary); font-weight: 600; margin-bottom: 25px; }
        .price-list { list-style: none; margin-bottom: 30px; flex-grow: 1; }
        .price-list li { margin-bottom: 12px; display: flex; align-items: center; gap: 10px; font-size: 15px; }
        
        /* CTA FINAL */
        .cta-final { 
            background-color: var(--primary); 
            background-image:url(images/bg-divorce-bleu.jpg); 
            background-size: contain; 
            background-repeat:no-repeat;
            color: white; 
            text-align: center; 
            padding: 80px 0; 
        }
        .cta-final h2 { color: white; font-size: 32px; margin-bottom: 20px; }
        .cta-final p { opacity: 0.9; font-size: 18px; margin-bottom: 40px; max-width: 700px; margin: 0 auto 40px; }
        .btn-large { display: inline-block; width: auto; padding: 20px 40px; font-size: 18px; }
        .phone-link { display: block; margin-top: 30px; font-size: 24px; font-weight: 700; }
        .phone-link span { border-bottom: 2px solid var(--secondary); }

        /* FOOTER */
        footer { background: #111827; color: #9CA3AF; padding: 60px 0; font-size: 13px; }
        .footer-flex { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 30px; }
        .footer-links { margin-top: 40px; padding-top: 30px; border-top: 1px solid #374151; display: flex; justify-content: center; gap: 25px; }

        /* RESPONSIVE */
        @media (max-width: 1000px) {
            .hero h1 { font-size: 28px; }
            .hero p { font-size: 16px; }
        }
        
        @media (max-width: 768px) {
            .hero-flex { flex-direction: column; text-align: center; }
            .grid-2, .grid-3, .pricing-grid { grid-template-columns: 1fr; }
            .price-card.featured { transform: none; }
            .hidden-mobile { display: none; }
            .input-row { grid-template-columns: 1fr; }
            .form-buttons { flex-direction: column; }
            .btn-secondary { width: 100%; }
        }
