  :root {
    --gold: #c9942a;
    --gold-light: #f0d898;
    --gold-pale: #fdf6e3;
    --white: #ffffff;
    --cream: #fdfaf4;
    --dark: #1a1208;
    --text: #2a1f0a;
    --text-muted: #8a7550;
    --border: #e8d9b0;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { overflow-x: hidden; }
  body { font-family: 'Outfit', sans-serif; background: var(--white); color: var(--text); overflow-x: hidden; position: relative; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(253,246,227,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 12px 32px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .nav-logo { display: flex; align-items: center; gap: 12px; }
  .nav-logo img { height: 58px; width: 58px; object-fit: contain; }
  .nav-logo-text { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 600; color: var(--dark); letter-spacing: 1px; }
  .nav-cta {
    background: linear-gradient(135deg, var(--gold), #e0a830);
    color: #fff; padding: 9px 22px; border-radius: 4px;
    font-size: 13px; font-weight: 600; text-decoration: none;
    transition: all 0.3s ease; letter-spacing: 0.5px;
  }
  .nav-cta:hover { box-shadow: 0 4px 16px rgba(201,148,42,0.4); transform: translateY(-1px); }
  .nav-whatsapp {
    width: 38px; height: 38px; border-radius: 50%;
    background: #25D366; display: flex; align-items: center; justify-content: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease; flex-shrink: 0;
  }
  .nav-whatsapp:hover { transform: scale(1.08); box-shadow: 0 4px 14px rgba(37,211,102,0.4); }
  .nav-whatsapp svg { width: 20px; height: 20px; }

  /* HERO */
  .hero {
    min-height: 92vh;
    background: linear-gradient(180deg, var(--gold-pale) 0%, var(--cream) 100%);
    position: relative;
    display: flex; align-items: center;
    padding: 130px 24px 60px;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 50% at 85% 20%, rgba(201,148,42,0.12) 0%, transparent 60%),
      radial-gradient(ellipse 50% 40% at 10% 90%, rgba(201,148,42,0.08) 0%, transparent 50%);
  }
  .arabic-watermark {
    position: absolute; font-family: 'Amiri', serif;
    font-size: clamp(150px, 30vw, 400px);
    color: rgba(201,148,42,0.05);
    top: 50%; left: 26%; transform: translate(-50%, -50%);
    white-space: nowrap; pointer-events: none; user-select: none; line-height: 1;
  }
  .hero-inner {
    position: relative; z-index: 1; max-width: 1180px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center;
  }
  .hero-content { text-align: left; }
  .hero-logo-wrap {
    margin-bottom: 24px;
    animation: fadeUp 0.9s ease forwards 0.1s;
  }
  .hero-logo-wrap img {
    height: 100px; width: 100px; object-fit: contain;
    opacity: 0.9;
  }
  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 5.5vw, 68px);
    font-weight: 600; color: var(--dark); line-height: 1.08;
    margin-bottom: 22px;
    animation: fadeUp 0.9s ease forwards 0.5s;
  }
  .hero h1 em { font-style: italic; color: var(--gold); }
  .hero-sub {
    font-size: clamp(15px, 1.4vw, 17px);
    color: var(--text-muted); line-height: 1.8;
    margin-bottom: 38px; font-weight: 300;
    max-width: 460px;
    animation: fadeUp 0.9s ease forwards 0.7s;
  }
  .hero-cta {
    display: flex; gap: 16px; flex-wrap: wrap;
    animation: fadeUp 0.9s ease forwards 0.9s;
  }
  .hero-visual { position: relative; animation: fadeUp 1s ease forwards 0.4s; }
  .hero-image-frame {
    position: relative; z-index: 1; border-radius: 12px; overflow: hidden;
    box-shadow: 0 24px 60px rgba(26,18,8,0.18); aspect-ratio: 4/5;
  }
  .hero-image-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .hero-badge {
    position: absolute; z-index: 2; bottom: 22px; left: -22px;
    background: #fff; border-radius: 10px; padding: 14px 20px;
    box-shadow: 0 14px 40px rgba(26,18,8,0.15); display: flex; align-items: center; gap: 12px;
    max-width: 210px;
  }
  .hero-badge .num { font-size: 26px; line-height: 1; flex-shrink: 0; }
  .hero-badge .label { font-size: 12px; color: var(--text); line-height: 1.4; font-weight: 500; }
  @media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-content { text-align: center; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-cta { justify-content: center; }
    .hero-visual { max-width: 340px; margin: 0 auto; }
    .hero-badge { left: 12px; }
    .hero-trust { justify-content: center; }
  }
  .btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, #e0a830 100%);
    color: #fff; padding: 16px 40px; border-radius: 4px;
    font-size: 15px; font-weight: 600; text-decoration: none;
    transition: all 0.3s ease; display: inline-block;
    box-shadow: 0 6px 30px rgba(201,148,42,0.35);
  }
  .btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(201,148,42,0.5); }
  .btn-outline {
    background: transparent; color: var(--dark);
    padding: 16px 40px; border-radius: 4px; font-size: 15px;
    font-weight: 400; text-decoration: none;
    border: 1px solid var(--border);
    transition: all 0.3s ease; display: inline-block;
  }
  .btn-outline:hover { background: rgba(201,148,42,0.08); border-color: var(--gold); }

  .divider { height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }

  section { padding: 90px 24px; }
  .container { max-width: 1020px; margin: 0 auto; }
  .section-label { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
  .section-label::before, .section-label::after { content: ''; flex: 1; max-width: 40px; height: 1px; background: var(--gold); }
  .section-label span { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 52px); font-weight: 600;
    color: var(--dark); line-height: 1.15; margin-bottom: 16px; text-align: center;
  }
  .section-sub { font-size: 16px; color: var(--text-muted); line-height: 1.8; text-align: center; max-width: 520px; margin: 0 auto; font-weight: 300; }

  /* OFFRES */
  .offres { background: var(--white); }
  .offres-intro { text-align: center; margin-bottom: 56px; }

  .offres-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
  .offres-group { margin-bottom: 68px; }
  .offres-group:last-child { margin-bottom: 0; }
  .offres-group-title { display: flex; align-items: center; justify-content: center; gap: 10px; font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 600; color: var(--dark); text-align: center; margin-bottom: 28px; }
  .offres-group-title span.line { flex: 1; max-width: 80px; height: 1px; background: var(--border); }
  .offre-card { border-radius: 2px; padding: 44px 36px; position: relative; transition: transform 0.3s ease; display: flex; flex-direction: column; height: 100%; }
  .offre-card:hover { transform: translateY(-6px); }
  .offre-card.standard { background: var(--cream); border: 1px solid var(--border); box-shadow: 0 4px 24px rgba(0,0,0,0.04); }
  .offre-card.premium { background: var(--gold-pale); border: 1px solid var(--gold); box-shadow: 0 12px 40px rgba(201,148,42,0.16); }
  .offre-tag { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 5px 14px; border-radius: 2px; margin-bottom: 28px; }
  .offre-card.standard .offre-tag { background: var(--gold-pale); color: var(--gold); border: 1px solid var(--border); }
  .offre-card.premium .offre-tag { background: #fff; color: var(--gold); border: 1px solid var(--gold); }
  .offre-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 8px; }
  .price-num { font-family: 'Cormorant Garamond', serif; font-size: 64px; font-weight: 600; line-height: 1; }
  .offre-card.standard .price-num { color: var(--dark); }
  .offre-card.premium .price-num { color: var(--gold); }
  .price-unit { font-size: 14px; color: var(--text-muted); font-weight: 300; }
  .offre-card.premium .price-unit { color: var(--text-muted); }
  .promo-price {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--gold-pale); border: 1px solid var(--gold);
    border-radius: 20px; padding: 5px 14px; margin-bottom: 14px;
    font-size: 12px; font-weight: 600; color: var(--dark);
  }
  .promo-price .emoji { font-size: 13px; }
  .no-commitment { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-muted); font-weight: 500; margin-bottom: 14px; }
  .no-commitment .check { color: var(--gold); font-size: 13px; }
  .offre-card.premium .promo-price { background: rgba(255,255,255,0.7); }
  .offre-title { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 600; margin-bottom: 8px; }
  .offre-card.standard .offre-title { color: var(--dark); }
  .offre-card.premium .offre-title { color: var(--dark); }
  .offre-desc { font-size: 14px; line-height: 1.7; margin-bottom: 28px; font-weight: 300; }
  .offre-card.standard .offre-desc { color: var(--text-muted); }
  .offre-card.premium .offre-desc { color: var(--text-muted); }
  .offre-sep { height: 1px; margin-bottom: 24px; }
  .offre-card.standard .offre-sep { background: var(--border); }
  .offre-card.premium .offre-sep { background: rgba(201,148,42,0.25); }
  .offre-features { list-style: none; margin-bottom: 36px; }
  .offre-features li { font-size: 14px; padding: 9px 0; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid rgba(0,0,0,0.05); }
  .offre-card.premium .offre-features li { border-bottom-color: rgba(201,148,42,0.15); color: var(--text); }
  .offre-features li::before { content: '◆'; color: var(--gold); font-size: 8px; flex-shrink: 0; }
  .offre-features.offre-features-emoji li::before { content: none; }
  .offre-features.offre-features-emoji li { gap: 10px; }
  .offre-subtitle { font-size: 13px; font-weight: 500; margin-top: -4px; margin-bottom: 16px; }
  .offre-card.standard .offre-subtitle { color: var(--text-muted); }
  .offre-card.premium .offre-subtitle { color: var(--text-muted); }
  .btn-offre { display: block; text-align: center; padding: 15px; font-weight: 600; font-size: 14px; text-decoration: none; transition: all 0.3s ease; letter-spacing: 0.5px; border-radius: 2px; margin-top: auto; }
  .offre-card.standard .btn-offre { background: var(--dark); color: #fff; }
  .offre-card.standard .btn-offre:hover { background: #000; }
  .offre-card.premium .btn-offre { background: linear-gradient(135deg, var(--gold), #e0a830); color: #fff; box-shadow: 0 4px 20px rgba(201,148,42,0.4); }

  /* HERO TRUST BADGES */
  .promo-banner {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, var(--gold-pale), #fff);
    border: 1px solid var(--gold); border-radius: 30px;
    padding: 10px 20px; margin-top: 22px;
    font-size: 13px; font-weight: 600; color: var(--dark);
    animation: fadeUp 0.9s ease forwards 0.5s;
  }
  .promo-banner .emoji { font-size: 16px; }
  @media (max-width: 900px) {
    .promo-banner { font-size: 12px; padding: 9px 16px; text-align: left; }
  }
  .hero-trust { display: flex; flex-wrap: wrap; justify-content: flex-start; gap: 28px; margin-top: 40px; animation: fadeUp 0.9s ease forwards 0.5s; }
  .hero-trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); font-weight: 400; }
  .hero-trust-item span.ico { color: var(--gold); font-size: 15px; }

  /* METHODE TEASER (accueil) */
  .methode-teaser { background: var(--gold-pale); }
  .methode-teaser-inner { max-width: 720px; margin: 0 auto; text-align: center; }
  .methode-teaser h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(26px, 3.5vw, 36px); font-weight: 600; color: var(--dark); margin-bottom: 18px; }
  .methode-teaser p { font-size: 15px; color: var(--text-muted); line-height: 1.9; font-weight: 300; margin-bottom: 24px; }
  .methode-teaser a.methode-link { font-size: 14px; font-weight: 700; color: var(--gold); text-decoration: none; letter-spacing: 0.5px; }
  .methode-teaser a.methode-link:hover { text-decoration: underline; }

  /* FEATURES / POURQUOI NOUS CHOISIR */
  .features { background: var(--white); }
  .features-intro { text-align: center; margin-bottom: 56px; }
  .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 32px; }
  .feature-card {
    text-align: left; padding: 32px 28px; position: relative;
    border: 1px solid var(--border); border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  }
  .feature-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(201,148,42,0.14); border-color: var(--gold); }
  .feature-icon { width: 56px; height: 56px; margin-bottom: 22px; border-radius: 10px; background: linear-gradient(135deg, var(--gold-pale), #fff); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 24px; }
  .feature-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: var(--dark); margin-bottom: 10px; }
  .feature-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; font-weight: 300; }

  /* GUIDE DE CHOIX (quelle formule ?) */
  .guide { background: var(--gold-pale); }
  .guide-intro { text-align: center; margin-bottom: 48px; }
  .guide-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
  .guide-item {
    background: #fff; border: 1px solid var(--border); border-radius: 10px;
    padding: 24px 28px; display: flex; gap: 18px; align-items: flex-start;
  }
  .guide-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
  .guide-q { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
  .guide-a { font-size: 13px; color: var(--text-muted); line-height: 1.7; font-weight: 300; }
  .guide-a strong { color: var(--gold); font-weight: 600; }

  /* FAQ */
  .faq { background: var(--cream); }
  .faq-intro { text-align: center; margin-bottom: 48px; }
  .faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
  .faq-item { background: #fff; border: 1px solid var(--border); border-radius: 2px; padding: 4px 24px; }
  .faq-item summary { list-style: none; cursor: pointer; padding: 20px 0; font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 600; color: var(--dark); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after { content: '+'; font-size: 22px; color: var(--gold); font-weight: 400; flex-shrink: 0; transition: transform 0.25s ease; }
  .faq-item[open] summary::after { transform: rotate(45deg); }
  .faq-answer { font-size: 14px; color: var(--text-muted); line-height: 1.8; font-weight: 300; padding-bottom: 22px; }

  /* CTA FINALE */
  .final-cta { background: linear-gradient(180deg, var(--cream) 0%, var(--gold-pale) 100%); text-align: center; position: relative; overflow: hidden; }
  .final-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201,148,42,0.12) 0%, transparent 70%); }
  .final-cta-inner { position: relative; z-index: 1; }
  .final-cta h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 4vw, 42px); font-weight: 600; color: var(--dark); margin-bottom: 16px; line-height: 1.2; }
  .final-cta p { font-size: 15px; color: var(--text-muted); max-width: 520px; margin: 0 auto 32px; line-height: 1.8; font-weight: 300; }

  /* AVIS */
  .avis { background: var(--cream); }
  .avis-intro { text-align: center; margin-bottom: 52px; }
  .avis-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
  .avis-card { background: #fff; border: 1px solid var(--border); border-radius: 2px; padding: 32px 28px; box-shadow: 0 4px 20px rgba(0,0,0,0.04); transition: transform 0.3s ease; position: relative; }
  .avis-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
  .avis-card.audio-card { display: flex; flex-direction: column; }
  .avis-audio-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); background: var(--gold-pale); border: 1px solid var(--border); padding: 5px 12px; border-radius: 20px; margin-bottom: 20px; width: fit-content; }
  .avis-audio-player { width: 100%; height: 40px; margin-bottom: 20px; border-radius: 20px; }
  .avis-audio-player::-webkit-media-controls-panel { background: var(--gold-pale); }
  .avis-quote { font-family: 'Cormorant Garamond', serif; font-size: 72px; line-height: 0.6; color: var(--gold); opacity: 0.3; position: absolute; top: 20px; left: 24px; }
  .avis-stars { color: var(--gold); font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
  .avis-text { font-size: 14px; line-height: 1.8; color: var(--text); font-weight: 300; margin-bottom: 24px; font-style: italic; }
  .avis-sep { height: 1px; background: var(--border); margin-bottom: 16px; }
  .avis-author { display: flex; align-items: center; gap: 12px; }
  .avis-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), #e0a830); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: #fff; flex-shrink: 0; }
  .avis-name { font-size: 14px; font-weight: 600; color: var(--dark); }
  .avis-source { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

  footer { background: var(--gold-pale); padding: 48px 24px; text-align: center; border-top: 1px solid var(--border); }
  .footer-logo { margin-bottom: 16px; }
  .footer-logo img { height: 60px; width: 60px; object-fit: contain; opacity: 0.9; }
  .footer-text { font-size: 13px; color: var(--text-muted); font-weight: 300; }

  @keyframes fadeUp { from { transform: translateY(16px); } to { transform: translateY(0); } }
  .fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .fade-in.visible { opacity: 1; transform: translateY(0); }

  @media (max-width: 768px) {
    .inscription-inner { grid-template-columns: 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; }
    .form-box { padding: 28px 24px; }
    nav { padding: 12px 16px; }
    .nav-logo-text { font-size: 19px; }
    .nav-logo img { height: 46px; width: 46px; }
  }
  @media (max-width: 500px) {
    .offre-card { padding: 32px 24px; }
  }
  /* TRACK SELECTOR (choix Arabe / Coran) */
  .tracks { background: var(--white); }
  .tracks-intro { text-align: center; margin-bottom: 52px; }
  .tracks-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; max-width: 820px; margin: 0 auto; }
  .track-card {
    display: block; text-decoration: none; position: relative; overflow: hidden;
    border-radius: 8px; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--gold-pale); border: 1px solid var(--border); box-shadow: 0 8px 24px rgba(201,148,42,0.12);
  }
  .track-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(201,148,42,0.2); }
  .track-image {
    height: 190px; background-size: cover; background-position: center;
    position: relative; transition: transform 0.4s ease;
  }
  .track-card:hover .track-image { transform: scale(1.04); }
  .track-image::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(201,148,42,0.28) 0%, rgba(253,246,227,0.55) 60%, var(--gold-pale) 100%);
  }
  .track-body { padding: 28px 32px 36px; }
  .track-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 600; color: var(--dark); margin-bottom: 10px; }
  .track-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; font-weight: 300; }
  .track-link { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; }
  .track-link .arrow { transition: transform 0.25s ease; }
  .track-card:hover .track-link .arrow { transform: translateX(4px); }

  /* SUB-PAGE HERO (pages Arabe / Coran) */
  .subhero { background: var(--gold-pale); background-size: cover; background-position: center; padding: 140px 24px 60px; text-align: center; position: relative; overflow: hidden; }
  .subhero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(253,246,227,0.87) 0%, rgba(253,246,227,0.94) 100%), radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201,148,42,0.1) 0%, transparent 60%); }
  .subhero-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
  .subhero .section-label span { color: var(--gold); border-color: var(--border); background: transparent; }
  .subhero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 5vw, 48px); font-weight: 600; color: var(--dark); margin: 14px 0 16px; line-height: 1.15; }
  .subhero p { font-size: 15px; color: var(--text-muted); line-height: 1.8; font-weight: 300; }
  .back-link { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-muted); text-decoration: none; margin-bottom: 24px; text-transform: uppercase; letter-spacing: 1px; }
  .back-link:hover { color: var(--gold); }

  @media (max-width: 600px) {
    .track-image { height: 160px; }
    .track-body { padding: 24px 22px 30px; }
  }

  /* HAMBURGER MENU BUTTON */
  .menu-toggle {
    display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
    gap: 5px; width: 26px; height: 20px; background: none; border: none;
    cursor: pointer; padding: 0; z-index: 101; margin-right: 4px;
  }
  .menu-toggle span { display: block; width: 100%; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.3s ease; }
  .nav-left { display: flex; align-items: center; gap: 16px; }

  /* MOBILE MENU DROPDOWN (ancré en haut à gauche) */
  .mobile-menu {
    position: fixed; top: 66px; left: 12px; z-index: 200;
    background: var(--white); border-radius: 8px; border: 1px solid var(--border);
    box-shadow: 0 16px 46px rgba(0,0,0,0.16);
    width: 260px; max-width: calc(100vw - 24px);
    max-height: calc(100vh - 90px); overflow-y: auto;
    padding: 8px;
    transform-origin: top left;
    transform: translateY(-8px) scale(0.97); opacity: 0; visibility: hidden;
    transition: transform 0.22s ease, opacity 0.22s ease, visibility 0.22s;
  }
  .mobile-menu.open { transform: translateY(0) scale(1); opacity: 1; visibility: visible; }
  .mobile-menu-close { display: none; }
  .mobile-menu-logo { display: none; }
  .mobile-menu-links { display: flex; flex-direction: column; width: 100%; }
  .mobile-menu-links a {
    display: flex; align-items: center; gap: 10px;
    padding: 13px 12px; text-decoration: none; color: var(--text);
    font-size: 14px; font-weight: 400; border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease;
  }
  .mobile-menu-links a:not(:last-child) { border-bottom: 1px solid var(--border); border-radius: 6px 6px 0 0; }
  .mobile-menu-links a:hover { color: var(--gold); background: var(--gold-pale); }
  .mobile-menu-links a.active { color: var(--gold); font-weight: 600; background: var(--gold-pale); }
  body.menu-open { overflow: visible; }

  /* PAGE LEGALE */
  .legal-page { background: var(--white); padding: 160px 24px 100px; }
  .legal-content { max-width: 720px; margin: 0 auto; }
  .legal-content h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 4vw, 40px); font-weight: 600; color: var(--dark); margin-bottom: 32px; }
  .legal-content h2 { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: var(--dark); margin: 36px 0 12px; }
  .legal-content p { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-bottom: 12px; font-weight: 300; }
  .legal-content a { color: var(--gold); text-decoration: none; }
  .legal-content a:hover { text-decoration: underline; }

  /* PAGE METHODE */
  .methode-page { background: var(--white); padding: 160px 24px 100px; }
  .methode-content { max-width: 760px; margin: 0 auto; }
  .methode-content h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 4.5vw, 46px); font-weight: 600; color: var(--dark); margin-bottom: 12px; text-align: center; }
  .methode-content > p.methode-intro { font-size: 16px; color: var(--text-muted); line-height: 1.9; font-weight: 300; text-align: center; max-width: 560px; margin: 0 auto 56px; }
  .methode-block { display: flex; gap: 24px; align-items: flex-start; margin-bottom: 40px; padding: 28px; border: 1px solid var(--border); border-radius: 10px; background: var(--cream); }
  .methode-block-icon { width: 52px; height: 52px; flex-shrink: 0; border-radius: 10px; background: var(--gold-pale); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 24px; }
  .methode-block h3 { font-family: 'Cormorant Garamond', serif; font-size: 21px; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
  .methode-block p { font-size: 14px; color: var(--text-muted); line-height: 1.8; font-weight: 300; }
  .methode-block p strong { color: var(--dark); font-weight: 600; }
  .methode-approach { text-align: center; margin: 56px 0 40px; }
  .methode-approach p.lead { font-size: 15px; color: var(--text); line-height: 1.9; font-weight: 300; max-width: 600px; margin: 0 auto 40px; }
  .pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .pillar { text-align: center; padding: 20px; }
  .pillar-icon { font-size: 30px; margin-bottom: 14px; }
  .pillar h4 { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
  .pillar p { font-size: 13px; color: var(--text-muted); line-height: 1.7; font-weight: 300; }
  .methode-cta { text-align: center; margin-top: 56px; }
  @media (max-width: 640px) {
    .methode-block { flex-direction: column; }
    .pillars-grid { grid-template-columns: 1fr; }
  }

  /* WHATSAPP FLOTTANT */
  .whatsapp-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 999;
    width: 58px; height: 58px; border-radius: 50%;
    background: #25D366; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25); transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer; pointer-events: auto; -webkit-tap-highlight-color: transparent;
  }
  .whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 8px 26px rgba(0,0,0,0.32); }
  .whatsapp-float svg { width: 30px; height: 30px; }
  @media (max-width: 600px) {
    .whatsapp-float { bottom: 16px; right: 16px; width: 52px; height: 52px; }
    .whatsapp-float svg { width: 26px; height: 26px; }
  }
