
  :root {
    --creme: #F5F0E8;
    --violet: #6b3fa0;
    --violet-light: #8b5fc0;
    --violet-dark: #4a2a72;
    --sage: #a8bfa1;
    --or: #c9a66b;
    --dark: #1a1018;
    --text: #2d2030;
    --text-light: #6b5f72;
    --border: rgba(107,63,160,0.12);
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Nunito Sans', sans-serif; background: var(--creme); color: var(--text); font-size: 16px; line-height: 1.7; overflow-x: hidden; }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 4rem;
    background: rgba(245,240,232,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }
  .nav-logo { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 500; color: var(--violet); letter-spacing: 0.02em; white-space: nowrap; }
  .nav-logo span { color: var(--or); }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); text-decoration: none; transition: color 0.2s; }
  .nav-links a:hover { color: var(--violet); }
  .nav-right { display: flex; align-items: center; gap: 1rem; }

  /* Burger */
  .burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
  .burger span { display: block; width: 24px; height: 2px; background: var(--violet); border-radius: 2px; transition: all 0.25s; }
  .burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Mobile menu */
  .mobile-menu {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 99;
    background: var(--creme); flex-direction: column; align-items: center; justify-content: center;
    gap: 2rem;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--violet-dark); text-decoration: none; }
  .mobile-menu a:hover { color: var(--violet); }
  .mobile-menu .btn-primary { font-size: 1rem; margin-top: 1rem; }

  /* ── HERO ── */
  .hero {
    min-height: 85vh;
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 6rem 4rem 3rem;
    position: relative; overflow: hidden;
  }
  .hero::before { content: ''; position: absolute; top: -20%; right: -10%; width: 55vw; height: 55vw; border-radius: 50%; background: radial-gradient(circle, rgba(107,63,160,0.08) 0%, transparent 70%); pointer-events: none; }
  .hero::after { content: ''; position: absolute; bottom: 5%; left: 20%; width: 30vw; height: 30vw; border-radius: 50%; background: radial-gradient(circle, rgba(168,191,161,0.15) 0%, transparent 70%); pointer-events: none; }
  .hero-left { max-width: 560px; animation: fadeUp 0.9s ease both; }
  .hero-eyebrow { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--or); margin-bottom: 1.2rem; }
  .hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 4vw, 3.6rem); font-weight: 400; line-height: 1.18; color: var(--violet-dark); margin-bottom: 1.4rem; }
  .hero-title em { font-style: italic; color: var(--violet); }
  .hero-subtitle { font-size: 1.05rem; font-weight: 300; color: var(--text-light); margin-bottom: 2.4rem; max-width: 420px; }
  .hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary { padding: 0.85rem 2rem; border-radius: 4px; background: var(--violet); color: white; font-family: 'Nunito Sans', sans-serif; font-size: 0.88rem; font-weight: 600; letter-spacing: 0.06em; text-decoration: none; border: none; cursor: pointer; transition: background 0.2s, transform 0.15s; display: inline-block; }
  .btn-primary:hover { background: var(--violet-dark); transform: translateY(-1px); }
  .btn-outline { padding: 0.85rem 2rem; border-radius: 4px; background: transparent; border: 1.5px solid var(--violet); color: var(--violet); font-family: 'Nunito Sans', sans-serif; font-size: 0.88rem; font-weight: 600; letter-spacing: 0.06em; text-decoration: none; cursor: pointer; transition: all 0.2s; display: inline-block; }
  .btn-outline:hover { background: var(--violet); color: white; }
  .hero-right { display: flex; justify-content: center; align-items: center; animation: fadeUp 0.9s 0.2s ease both; }
  /* ── QUIZ ── */
  .quiz-card { background: white; border-radius: 16px; padding: 2.2rem; box-shadow: 0 20px 60px rgba(107,63,160,0.12), 0 4px 16px rgba(0,0,0,0.06); max-width: 400px; width: 100%; }
  .quiz-progress { display: flex; gap: 6px; margin-bottom: 1.6rem; }
  .quiz-progress-dot { height: 3px; flex: 1; border-radius: 2px; background: var(--border); transition: background 0.3s; }
  .quiz-progress-dot.done { background: var(--violet); }
  .quiz-step { display: none; }
  .quiz-step.active { display: block; animation: fadeUp 0.3s ease both; }
  .quiz-q { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--violet-dark); margin-bottom: 1.2rem; line-height: 1.35; }
  .quiz-options { display: flex; flex-direction: column; gap: 0.6rem; }
  .quiz-opt {
    padding: 0.7rem 1rem; border-radius: 8px;
    border: 1.5px solid var(--border);
    background: white; text-align: left;
    font-family: 'Nunito Sans', sans-serif; font-size: 0.88rem;
    color: var(--text); cursor: pointer;
    transition: all 0.18s;
  }
  .quiz-opt:hover { border-color: var(--violet); color: var(--violet); background: rgba(107,63,160,0.04); }
  .quiz-opt.selected { border-color: var(--violet); background: var(--violet); color: white; }

  /* Résultat quiz */
  .quiz-result { display: none; animation: fadeUp 0.4s ease both; }
  .quiz-result.active { display: block; }
  .quiz-result-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--or); margin-bottom: 0.5rem; }
  .quiz-result-profil { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--violet-dark); margin-bottom: 0.8rem; line-height: 1.3; }
  .quiz-result-desc { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; margin-bottom: 1.2rem; }
  .quiz-result-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.4rem; }
  .quiz-tag { padding: 0.3rem 0.8rem; border-radius: 20px; background: var(--creme); font-size: 0.78rem; font-weight: 600; color: var(--violet); }
  .quiz-restart { font-size: 0.78rem; color: var(--text-light); background: none; border: none; cursor: pointer; text-decoration: underline; margin-top: 0.5rem; }
  .quiz-restart:hover { color: var(--violet); }

  /* ── SECTIONS ── */
  section { padding: 4rem 4rem; }
  .section-eyebrow { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--or); margin-bottom: 0.8rem; }
  .section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 400; color: var(--violet-dark); line-height: 1.25; margin-bottom: 0.7rem; max-width: 100%; }
  .section-subtitle { font-size: 1rem; color: var(--text-light); font-weight: 300; max-width: 100%; margin-bottom: 2rem; }

  /* ── SERVICES ── */
  .services { background: var(--creme); }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
  .service-card { border: 1px solid var(--border); border-radius: 12px; padding: 2rem; transition: box-shadow 0.2s, transform 0.2s; background: white; }
  .service-card:hover { box-shadow: 0 8px 30px rgba(107,63,160,0.1); transform: translateY(-3px); }
  .service-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--creme); display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; font-size: 1.3rem; }
  .service-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--violet-dark); margin-bottom: 0.6rem; }
  .service-desc { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }

  /* ── SIMULATEURS ── */
  .simulateurs { background: white; }
  .sim-tabs { display: flex; margin-bottom: 1.5rem; border: 1.5px solid var(--violet); border-radius: 8px; overflow: hidden; width: fit-content; flex-wrap: wrap; }
  .sim-subtab { padding: 0.6rem 1.4rem; font-family: 'Nunito Sans', sans-serif; font-size: 0.82rem; font-weight: 600; background: white; color: var(--text-light); border: none; cursor: pointer; transition: all 0.18s; }
  .sim-subtab.active { background: var(--violet); color: white; }
  .sim-subtab:not(.active):hover { background: var(--creme); color: var(--violet); }
  .sim-tab { padding: 0.75rem 1.5rem; font-family: 'Nunito Sans', sans-serif; font-size: 0.85rem; font-weight: 600; background: transparent; color: var(--violet); border: none; cursor: pointer; transition: all 0.2s; white-space: nowrap; }
  .sim-tab.active { background: var(--violet); color: white; }
  .sim-tab:not(.active):hover { background: rgba(107,63,160,0.07); }
  .sim-panel { display: none; }
  .sim-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }

  .sim-form { display: flex; flex-direction: column; gap: 1rem; }
  .form-group { display: flex; flex-direction: column; gap: 0.3rem; }
  .form-group label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-light); }
  .form-group input, .form-group select { padding: 0.7rem 1rem; border: 1.5px solid var(--border); border-radius: 6px; background: white; font-family: 'Nunito Sans', sans-serif; font-size: 0.95rem; color: var(--text); outline: none; transition: border-color 0.2s; }
  .form-group input:focus, .form-group select:focus { border-color: var(--violet); }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

  .enveloppe-toggle { display: flex; border: 1.5px solid var(--border); border-radius: 6px; overflow: hidden; }
  .env-btn { flex: 1; padding: 0.6rem; font-family: 'Nunito Sans', sans-serif; font-size: 0.85rem; font-weight: 600; border: none; background: white; color: var(--text-light); cursor: pointer; transition: all 0.18s; }
  .env-btn.active { background: var(--violet); color: white; }
  .env-btn:not(.active):hover { background: var(--creme); }

  .fiscal-section { border: 1px solid var(--border); border-radius: 10px; padding: 1.2rem; background: white; display: flex; flex-direction: column; gap: 0.9rem; }
  .fiscal-section-title { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--violet); }
  .fiscal-note { font-size: 0.78rem; color: var(--text-light); font-style: italic; line-height: 1.5; }

  /* ── TOOLTIPS ── */
  .help-label-wrap { display: inline-flex; align-items: center; gap: 0.4rem; }
  .help-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 18px; height: 18px; border-radius: 50%;
    background: transparent; border: 1.5px solid var(--violet); color: var(--violet);
    font-size: 0.7rem; font-weight: 700; cursor: pointer; padding: 0;
    font-family: 'Nunito Sans', sans-serif; line-height: 1;
    transition: all 0.15s;
  }
  .help-btn:hover { background: var(--violet); color: white; }
  .help-btn.active { background: var(--violet); color: white; }
  .help-panel {
    display: none;
    margin-top: 0.4rem;
    padding: 0.9rem 1rem;
    background: var(--creme);
    border-left: 3px solid var(--violet);
    border-radius: 6px;
    font-size: 0.82rem;
    color: var(--text);
    line-height: 1.55;
  }
  .help-panel.open { display: block; animation: fadeUp 0.2s ease both; }
  .help-panel strong { color: var(--violet-dark); }
  .help-panel ul { margin: 0.3rem 0 0.3rem 1.2rem; padding: 0; }
  .help-panel li { margin-bottom: 0.2rem; }
  .help-panel .help-example {
    margin-top: 0.6rem; padding-top: 0.5rem;
    border-top: 1px solid rgba(107,63,160,0.15);
    font-size: 0.78rem; color: var(--text-light); font-style: italic;
  }

  .sim-results { background: white; border-radius: 16px; padding: 2.2rem; box-shadow: 0 4px 24px rgba(107,63,160,0.08); position: sticky; top: 7rem; }
  .sim-results-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--violet-dark); margin-bottom: 1.8rem; }
  .result-item { border-bottom: 1px solid var(--border); padding: 1rem 0; display: flex; flex-direction: column; gap: 0.2rem; }
  .result-item:last-child { border-bottom: none; padding-bottom: 0; }
  .result-label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--text-light); }
  .result-value { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 400; }
  .result-value.primary { color: var(--violet); }
  .result-value.secondary { color: var(--or); font-size: 1.4rem; }
  .result-value.tertiary { color: var(--sage); font-size: 1.4rem; }
  .result-value.neutral { color: var(--text); font-size: 1.3rem; }
  .result-value.danger { color: #b03030; font-size: 1.4rem; }
  .result-value.danger.big { font-size: 1.9rem; }
  .result-note { font-size: 0.75rem; color: var(--text-light); margin-top: 0.2rem; }

  .result-bars { margin: 1rem 0; }
  .bar-row { margin-bottom: 0.7rem; }
  .bar-label-row { display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--text-light); margin-bottom: 0.25rem; }
  .bar-track { height: 8px; background: var(--creme); border-radius: 4px; overflow: hidden; }
  .bar-fill { height: 100%; border-radius: 4px; transition: width 0.6s cubic-bezier(0.4,0,0.2,1); }
  .bar-fill.versements { background: var(--sage); }
  .bar-fill.gain { background: var(--or); }

  .fiscal-breakdown { background: var(--creme); border-radius: 8px; padding: 1rem 1.2rem; margin-top: 0.8rem; }
  .fiscal-line { display: flex; justify-content: space-between; padding: 0.28rem 0; font-size: 0.82rem; color: var(--text-light); }
  .fiscal-line strong { color: var(--text); }
  .fiscal-line.total { font-weight: 600; color: var(--text); border-top: 1px solid var(--border); margin-top: 0.4rem; padding-top: 0.5rem; font-size: 0.88rem; }
  .sim-disclaimer { margin-top: 1.5rem; font-size: 0.75rem; color: var(--text-light); font-style: italic; line-height: 1.5; padding-top: 1rem; border-top: 1px solid var(--border); }

  /* ── RÉSULTAT DOMINANT & DÉTAILS REPLIABLES ── */
  .result-hero {
    text-align: left;
    padding: 0.5rem 0 1.2rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1rem;
  }
  .result-hero-label {
    font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--text-light); margin-bottom: 0.4rem;
  }
  .result-hero-value {
    font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 400;
    color: var(--violet); line-height: 1.1; margin-bottom: 0.3rem;
  }
  .result-hero-note { font-size: 0.8rem; color: var(--text-light); }
  .result-secondary-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem;
    margin-bottom: 0.8rem;
  }
  .result-secondary {
    padding: 0.7rem 0;
  }
  .result-secondary-label {
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.07em;
    text-transform: uppercase; color: var(--text-light); margin-bottom: 0.3rem;
  }
  .result-secondary-value {
    font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--violet-dark);
  }
  .details-toggle {
    background: none; border: none; color: var(--violet); cursor: pointer;
    font-family: 'Nunito Sans', sans-serif; font-size: 0.85rem; font-weight: 600;
    padding: 0.6rem 0; text-align: left; width: 100%;
    display: flex; align-items: center; gap: 0.5rem;
    border-top: 1px solid var(--border); margin-top: 0.5rem;
  }
  .details-toggle:hover { color: var(--violet-dark); }
  .details-toggle .chevron { transition: transform 0.2s; display: inline-block; }
  .details-toggle.open .chevron { transform: rotate(90deg); }
  .details-content {
    display: none;
    padding: 0.5rem 0 1rem;
    animation: fadeUp 0.2s ease both;
  }
  .details-content.open { display: block; }

  /* ── EMAIL CAPTURE ── */
  .email-capture {
    margin-top: 1.2rem;
    padding: 1rem 1.2rem;
    background: var(--creme);
    border-radius: 10px;
    border: 1px solid var(--border);
  }
  .email-capture-label {
    font-size: 0.82rem; font-weight: 600; color: var(--violet-dark);
    margin-bottom: 0.6rem; display: block;
  }
  .email-capture-row {
    display: flex; gap: 0.5rem; flex-wrap: wrap;
  }
  .email-capture-row input {
    flex: 1; min-width: 140px;
    padding: 0.55rem 0.8rem;
    border: 1px solid var(--border); border-radius: 6px;
    background: white; font-family: 'Nunito Sans', sans-serif; font-size: 0.9rem;
    color: var(--text); outline: none; transition: border-color 0.2s;
  }
  .email-capture-row input:focus { border-color: var(--violet); }
  .email-capture-btn {
    padding: 0.55rem 1.2rem;
    background: var(--violet); color: white;
    border: none; border-radius: 6px;
    font-family: 'Nunito Sans', sans-serif; font-size: 0.85rem; font-weight: 600;
    cursor: pointer; transition: background 0.2s;
    white-space: nowrap;
  }
  .email-capture-btn:hover { background: var(--violet-dark); }
  .email-capture-note {
    font-size: 0.72rem; color: var(--text-light);
    margin-top: 0.5rem; font-style: italic;
  }
  .email-capture-success {
    display: none;
    padding: 0.8rem 1rem; background: #e8f4ea; color: #2d5a3d;
    border-radius: 6px; font-size: 0.85rem; text-align: center;
  }
  .email-capture-success.show { display: block; }

  /* ── CTA APRÈS SIMULATEURS ── */
  .sim-cta {
    margin-top: 4rem;
    padding: 2.5rem 3rem;
    background: white;
    border-radius: 16px;
    border-left: 4px solid var(--or);
    display: flex; align-items: center; justify-content: space-between; gap: 2rem;
    flex-wrap: wrap;
  }
  .sim-cta-text { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--violet-dark); line-height: 1.4; }
  .sim-cta-text span { font-style: italic; color: var(--violet); }
  .sim-cta-sub { font-size: 0.88rem; color: var(--text-light); margin-top: 0.4rem; font-family: 'Nunito Sans', sans-serif; }

  /* ── ÉTUDE DE MARCHÉ ── */
  .etude { background: var(--violet-dark); }
  .etude .section-eyebrow { color: var(--or); }
  .etude .section-title { color: white; }
  .etude-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
  .etude-intro { font-size: 1rem; color: rgba(255,255,255,0.7); font-weight: 300; line-height: 1.7; margin-bottom: 2rem; }
  .etude-promise { display: flex; gap: 0.8rem; align-items: flex-start; margin-bottom: 1rem; }
  .etude-promise-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.1rem; }
  .etude-promise-text { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.5; }

  .etude-form { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 2rem; display: flex; flex-direction: column; gap: 1.2rem; }
  .etude-form-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: white; margin-bottom: 0.5rem; }
  .etude-group { display: flex; flex-direction: column; gap: 0.4rem; }
  .etude-group label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
  .etude-group select, .etude-group input {
    padding: 0.7rem 1rem; border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.08);
    color: white; font-family: 'Nunito Sans', sans-serif; font-size: 0.95rem;
    outline: none; transition: border-color 0.2s;
    -webkit-appearance: none;
  }
  .etude-group select option { background: var(--violet-dark); color: white; }
  .etude-group select:focus, .etude-group input:focus { border-color: var(--or); }
  .etude-group input::placeholder { color: rgba(255,255,255,0.3); }
  .etude-email-note { font-size: 0.75rem; color: rgba(255,255,255,0.4); font-style: italic; }
  .etude-submit { padding: 0.9rem 2rem; background: var(--or); color: var(--dark); font-family: 'Nunito Sans', sans-serif; font-size: 0.9rem; font-weight: 700; border: none; border-radius: 6px; cursor: pointer; transition: all 0.2s; margin-top: 0.5rem; }
  .etude-submit:hover { background: #dfc090; transform: translateY(-1px); }
  .etude-success { display: none; text-align: center; padding: 2rem; }
  .etude-success-icon { font-size: 2.5rem; margin-bottom: 1rem; }
  .etude-success-text { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: white; margin-bottom: 0.5rem; }
  .etude-success-sub { font-size: 0.88rem; color: rgba(255,255,255,0.6); }

  /* ── CHAMPS CALCULÉS ── */
  .calc-group { display:flex; flex-direction:column; gap:0.3rem; }
  .calc-group label { font-size:0.72rem; font-weight:700; letter-spacing:0.06em; text-transform:uppercase; color:var(--violet); opacity:0.7; font-style:italic; }
  .calc-group input { background:var(--creme); border:1px solid var(--border); border-left:3px solid var(--violet); color:var(--text-light); cursor:default; font-size:0.95rem; padding:0.6rem 0.9rem; border-radius:6px; width:100%; font-family:'Nunito Sans',sans-serif; }
  .calc-group input:focus { outline:none; }
  .calc-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; margin-top:0.5rem; }
  .processus { background: white; }
  .processus-timeline { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 1rem; margin-top: 3rem; align-items: start; }
  .processus-step { display:flex; flex-direction:column; align-items:center; text-align:center; padding: 0 0.5rem; }
  .processus-num { width:44px; height:44px; border-radius:50%; background:var(--violet); color:white; font-family:'Playfair Display',serif; font-size:1.1rem; display:flex; align-items:center; justify-content:center; margin-bottom:1rem; flex-shrink:0; }
  .processus-title { font-family:'Playfair Display',serif; font-size:1.05rem; color:var(--violet-dark); margin-bottom:0.5rem; }
  .processus-desc { font-size:0.85rem; color:var(--text-light); line-height:1.55; margin-bottom:0.7rem; }
  .processus-meta { font-size:0.75rem; font-weight:600; color:var(--violet); background:var(--creme); border-radius:20px; padding:0.3rem 0.8rem; display:inline-block; }
  .processus-connector { display:flex; flex-direction:column; align-items:center; justify-content:flex-start; padding-top:1.3rem; gap:0.5rem; min-width: 110px; }
  .processus-connector-line { width:2px; height:24px; background:var(--border); }
  .processus-connector-label { font-size:0.72rem; color:var(--text-light); font-style:italic; text-align:center; max-width:120px; line-height:1.4; background:var(--creme); border-radius:10px; padding:0.3rem 0.6rem; }

  /* ── MEDIA ── */
  .media { background: white; }
  .media-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:1.5rem; margin-top:3rem; }
  .media-card { border:1px solid var(--border); border-radius:12px; overflow:hidden; text-decoration:none; color:var(--text); transition:box-shadow 0.2s,transform 0.2s; display:block; background: white; }
  .media-card:hover { box-shadow:0 8px 30px rgba(107,63,160,0.1); transform:translateY(-3px); }
  .media-card-body { padding:1.5rem; }
  .media-tag { font-size:0.72rem; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; color:var(--or); margin-bottom:0.6rem; }
  .media-title { font-family:'Playfair Display',serif; font-size:1rem; color:var(--violet-dark); margin-bottom:0.5rem; line-height:1.35; }
  .media-desc { font-size:0.83rem; color:var(--text-light); line-height:1.5; }
  .media-link-label { font-size:0.8rem; font-weight:600; color:var(--violet); margin-top:0.8rem; display:block; }

  /* ── APROPOS ── */
  .apropos { background: white; }
  .apropos-grid { display: grid; grid-template-columns: auto 1fr; gap: 4rem; align-items: center; max-width: 1100px; }
  .apropos-photo-col { display: flex; justify-content: center; }
  .apropos-photo-wrap {
    width: 220px; height: 220px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
  }
  .apropos-photo-wrap::before {
    content: '';
    position: absolute; inset: -10px;
    border-radius: 50%;
    border: 1.5px solid var(--or);
    opacity: 0.5;
    pointer-events: none;
  }
  .apropos-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
  .apropos-text-col { display: flex; flex-direction: column; }
  .apropos-paragraph {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text);
    margin-bottom: 1.1rem;
    max-width: 640px;
  }
  .apropos-paragraph:last-child { margin-bottom: 0; }

  /* Signature sous la photo */
  .apropos-signature {
    text-align: center;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
  }
  .apropos-signature-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--violet-dark);
  }
  .apropos-signature-role {
    font-size: 0.82rem;
    color: var(--text-light);
    font-style: italic;
  }
  .apropos-signature-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--violet);
    text-decoration: none;
    margin-top: 0.3rem;
  }
  .apropos-signature-link:hover { color: var(--violet-dark); }

  /* Bloc credentials */
  .apropos-credentials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
  }
  .apropos-credential-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.35rem;
  }
  .apropos-credential-value {
    font-size: 0.85rem;
    color: var(--text);
    line-height: 1.4;
  }

  /* ── CONTACT ── */
  .contact { background: var(--creme); }
  .contact-inner { max-width: 540px; margin: 0 auto; text-align: center; }
  .contact-links { display: flex; gap: 1rem; justify-content: center; margin-top: 2rem; flex-wrap: wrap; }
  .contact-link { display: flex; align-items: center; gap: 0.6rem; padding: 0.8rem 1.5rem; border: 1.5px solid var(--border); border-radius: 8px; font-size: 0.88rem; font-weight: 600; color: var(--text); text-decoration: none; transition: all 0.2s; background: white; }
  .contact-link:hover { border-color: var(--violet); color: var(--violet); }

  /* ── SIM CTA SECTION (landing → page simulateurs) ── */
  .sim-cta-section { background: var(--creme); text-align: center; }
  .sim-cta-inner { max-width: 720px; margin: 0 auto; }
  .sim-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--violet-dark);
    line-height: 1.2;
    margin: 0.8rem 0 1.2rem;
  }
  .sim-cta-desc {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
  }

  /* ── BLOC CTA SIMULATEURS ── */
  .sim-cta-section {
    background: var(--creme);
    padding: 4rem 4rem;
    display: flex;
    justify-content: center;
  }
  .sim-cta-inner {
    max-width: 720px;
    text-align: center;
    padding: 3rem 2.5rem;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border);
  }
  .sim-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--violet-dark);
    line-height: 1.25;
    margin: 0.6rem 0 1rem;
  }
  .sim-cta-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.65;
    max-width: 560px;
    margin: 0 auto 1.8rem;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--dark);
    color: rgba(255,255,255,0.55);
    padding: 3.5rem 4rem 1.5rem;
    font-size: 0.82rem;
    line-height: 1.6;
  }
  footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
  }
  footer a:hover { color: white; }
  footer strong { color: white; font-weight: 600; }
  .footer-top {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.3fr 1.3fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .footer-col { display: flex; flex-direction: column; gap: 0.5rem; }
  .footer-col-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.4rem;
  }
  .footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: white;
    margin-bottom: 0.5rem;
  }
  .footer-contact { font-size: 0.82rem; }
  .footer-legal { font-size: 0.78rem; line-height: 1.7; }
  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.35);
    text-align: center;
  }

  @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

  /* ── RESPONSIVE ── */
  @media (max-width: 960px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links, .nav-right .btn-primary { display: none; }
    .burger { display: flex; }

    .hero {
      grid-template-columns: 1fr;
      padding: 5rem 1.5rem 3rem;
      min-height: auto;
      gap: 2.5rem;
    }
    .hero-left { text-align: center; margin: 0 auto; }
    .hero-left h1 { font-size: 2.2rem; }
    .hero-cta { justify-content: center; }
    .hero-right { width: 100%; }
    .hero-quiz { width: 100%; max-width: 100%; }

    section { padding: 2.5rem 1.5rem; }
    .sim-cta-section { padding: 2.5rem 1.5rem; }
    .sim-cta-inner { padding: 2rem 1.5rem; }
    .sim-cta-title { font-size: 1.4rem; }
    .services-grid { grid-template-columns: 1fr; }
    .sim-panel.active { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .sim-results { position: static; }
    .sim-cta { padding: 1.8rem; }
    .etude-grid { grid-template-columns: 1fr; gap: 2rem; }
    .apropos-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .apropos-photo-wrap { width: 180px; height: 180px; margin: 0 auto 0.5rem; }
    .apropos-credentials { grid-template-columns: 1fr; gap: 1rem; }
    .processus-timeline { grid-template-columns: 1fr; }
    .processus-connector { flex-direction:row; padding-top:0; padding:0.5rem 0; }
    .processus-connector-line { width:30px; height:2px; margin-right:0.4rem; }
    .processus-connector-label { max-width:none; }
    .media-grid { grid-template-columns: 1fr; }
    footer { flex-direction: column; text-align: center; padding: 2.5rem 1.5rem 1.5rem; }
    .footer-top { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 1.5rem; margin-bottom: 1.5rem; }
    .sim-tabs { width: 100%; }
    .sim-tab { flex: 1; text-align: center; font-size: 0.78rem; padding: 0.65rem 0.5rem; }
  }
