/* Feuille partagee — extraite de 2 pages le 2026-07-25.
   Modifier ICI, plus dans chaque page. */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --navy: #0a1628; --navy-light: #111d35; --navy-card: #152040;
            --gold: #c69749; --gold-light: #d8bd83;
            --white: #f0f0f5; --white-dim: #b0b3c0; --white-muted: #848899;
            --glass-bg: rgba(21,32,64,0.6); --glass-border: rgba(198,151,73,0.15);
            --success: #4ade80; --error: #f87171;
            --gradient-gold: linear-gradient(135deg, #c69749 0%, #d8bd83 50%, #c69749 100%);
            --radius: 16px; --radius-sm: 10px; --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
        }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Inter', sans-serif;
            background: var(--navy); color: var(--white); line-height: 1.7; overflow-x: hidden;
            background-image:
                radial-gradient(at 0% 0%, rgba(198,151,73,0.06) 0%, transparent 40%),
                radial-gradient(at 100% 100%, rgba(198,151,73,0.04) 0%, transparent 40%);
            background-attachment: fixed;
        }

        .nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 14px 0; background: rgba(10,22,40,0.95); backdrop-filter: blur(20px); border-bottom: 1px solid var(--glass-border); }
        .nav-inner { max-width: 900px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
        .nav-logo { font-size: 1.2rem; font-weight: 800; text-decoration: none; color: var(--white); display: inline-flex; align-items: center; }
        .nav-logo .logo-accent { color: var(--gold); }
        .nav-links { display: flex; gap: 16px; align-items: center; }
        .nav-links a { text-decoration: none; color: var(--white-dim); font-size: 0.85rem; font-weight: 500; transition: var(--transition); }
        .nav-links a:hover { color: var(--gold); }

        .container { max-width: 760px; margin: 0 auto; padding: 0 24px; }

        .hero { padding: 130px 0 40px; }
        .breadcrumb { font-size: 0.82rem; color: var(--white-muted); margin-bottom: 20px; }
        .breadcrumb a { color: var(--gold); text-decoration: none; }
        .breadcrumb a:hover { text-decoration: underline; }
        .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(198,151,73,0.1); border: 1px solid rgba(198,151,73,0.25); border-radius: 60px; padding: 6px 16px; font-size: 0.8rem; color: var(--gold); font-weight: 500; margin-bottom: 24px; }
        .hero h1 { font-size: clamp(2rem, 5vw, 2.8rem); font-weight: 800; line-height: 1.15; margin-bottom: 20px; text-wrap: balance; }
        .hero h1 .hl { background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .hero-desc { font-size: 1.1rem; color: var(--white-dim); max-width: 640px; line-height: 1.7; margin-bottom: 32px; }

        /* Form */
        .form-box { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 32px; margin: 32px 0 40px; }
        .form-box .label { font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
        .form-box h2 { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; color: var(--white); }
        .form-box .sub { font-size: 0.92rem; color: var(--white-muted); margin-bottom: 22px; }
        .form-row { display: flex; gap: 10px; flex-wrap: wrap; }
        .form-row input[type="email"] {
            flex: 1; min-width: 240px;
            padding: 14px 18px;
            font-family: inherit; font-size: 1rem;
            background: rgba(10,22,40,0.6); color: var(--white);
            border: 1px solid rgba(255,255,255,0.1); border-radius: 10px;
            transition: var(--transition);
        }
        .form-row input[type="email"]:focus { outline: none; border-color: var(--gold); background: rgba(10,22,40,0.9); }
        .form-row input[type="email"]::placeholder { color: var(--white-muted); }
        .form-row button {
            padding: 14px 26px;
            font-family: inherit; font-size: 0.95rem; font-weight: 600;
            background: var(--gradient-gold); color: var(--navy);
            border: none; border-radius: 10px; cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 20px rgba(198,151,73,0.3);
        }
        .form-row button:hover { transform: translateY(-2px); }
        .form-row button:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
        .consent { display: flex; gap: 10px; align-items: flex-start; margin-top: 16px; font-size: 0.82rem; color: var(--white-muted); line-height: 1.5; }
        .consent input { margin-top: 4px; accent-color: var(--gold); flex-shrink: 0; }
        .form-msg { margin-top: 14px; font-size: 0.92rem; min-height: 1.4em; }
        .form-msg.success { color: var(--success); }
        .form-msg.error   { color: var(--error); }

        .section { padding: 32px 0; }
        .section h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 24px; color: var(--white); text-wrap: balance; }

        /* Bullets */
        .bullets { list-style: none; padding: 0; }
        .bullets li {
            display: flex; gap: 14px; align-items: flex-start;
            padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
            font-size: 0.98rem; color: var(--white-dim);
        }
        .bullets li:last-child { border-bottom: none; }
        .bullets .check { color: var(--success); font-weight: 700; flex-shrink: 0; }
        .bullets strong { color: var(--white); font-weight: 600; }

        /* Author */
        .author-box { background: var(--navy-card); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 28px 32px; margin: 24px 0; }
        .author-box .label { font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
        .author-box p { color: var(--white-dim); font-size: 0.95rem; margin-bottom: 12px; }
        .author-box p:last-child { margin-bottom: 0; }
        .author-box a { color: var(--gold); text-decoration: none; font-weight: 500; }
        .author-box a:hover { text-decoration: underline; }

        /* FAQ-like reassurance */
        .reassurance { display: grid; gap: 12px; margin: 24px 0; }
        .reassurance-item { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: var(--radius-sm); padding: 16px 20px; }
        .reassurance-item h3 { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
        .reassurance-item p { font-size: 0.88rem; color: var(--white-muted); margin: 0; }

        .footer { border-top: 1px solid rgba(198,151,73,0.1); padding: 32px 0; text-align: center; }
        .footer p { font-size: 0.82rem; color: var(--white-muted); margin-bottom: 8px; }
        .footer a { color: var(--gold); text-decoration: none; }

        @media (max-width: 600px) {
            .form-box { padding: 24px; }
            .nav-links a:not(.btn) { display: none; }
            .hero { padding: 110px 0 32px; }
        }
