    /* ═══════════════════════════════════════════
       DESIGN TOKENS
    ═══════════════════════════════════════════ */
    :root {
      --em:  #1C4532;
      --em2: #2D6A4F;
      --em3: #0D2218;
      --gd:  #C8A028;
      --gd2: #E4B84A;
      --gd3: #F5E6B0;
      --cr:  #FBF7F0;
      --cr2: #F0E6D0;
      --wh:  #FFFFFF;
      --dk:  #070F09;

      --ff-serif: 'Cormorant Garamond', Georgia, serif;
      --ff-sans:  'Plus Jakarta Sans', system-ui, sans-serif;

      --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
      --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
    }

    /* ═══════════════════════════════════════════
       RESET
    ═══════════════════════════════════════════ */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: var(--ff-sans);
      background: var(--cr);
      color: var(--em3);
      overflow-x: hidden;
      cursor: none;
    }
    @media (pointer: coarse) { body { cursor: auto; } }

    /* ═══════════════════════════════════════════
       LOADING SCREEN
    ═══════════════════════════════════════════ */
    #loader {
      position: fixed;
      inset: 0;
      background: var(--em3);
      z-index: 9999;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
      transition: opacity 0.8s var(--ease-out), visibility 0.8s;
    }
    #loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

    .loader-logo {
      font-family: var(--ff-serif);
      font-size: 3.5rem;
      font-weight: 300;
      color: var(--cr);
      letter-spacing: -0.02em;
      opacity: 0;
      animation: loaderFadeIn 0.6s var(--ease-out) 0.2s forwards;
    }
    .loader-logo span {
      background: linear-gradient(135deg, var(--gd), var(--gd2), var(--gd3));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .loader-bar-wrap {
      width: 200px;
      height: 1px;
      background: rgba(200,160,40,0.15);
      overflow: hidden;
      opacity: 0;
      animation: loaderFadeIn 0.6s var(--ease-out) 0.4s forwards;
    }
    .loader-bar {
      height: 100%;
      background: linear-gradient(90deg, transparent, var(--gd), transparent);
      animation: loaderSlide 1.4s var(--ease-in-out) 0.6s forwards;
      transform: translateX(-100%);
    }
    @keyframes loaderFadeIn { to { opacity: 1; } }
    @keyframes loaderSlide { to { transform: translateX(100%); } }

    /* ═══════════════════════════════════════════
       CUSTOM CURSOR
    ═══════════════════════════════════════════ */
    #cur, #cur-f {
      position: fixed;
      border-radius: 50%;
      pointer-events: none;
      z-index: 9990;
      transform: translate(-50%, -50%);
      will-change: transform;
    }
    #cur {
      width: 10px; height: 10px;
      background: var(--gd);
      mix-blend-mode: multiply;
      transition: width 0.25s, height 0.25s, opacity 0.25s;
    }
    #cur-f {
      width: 36px; height: 36px;
      border: 1.5px solid rgba(200,160,40,0.5);
      transition: width 0.4s var(--ease-out), height 0.4s var(--ease-out), opacity 0.4s;
    }
    #cur.hover { width: 40px; height: 40px; opacity: 0.2; }
    #cur-f.hover { opacity: 0; }

    /* ═══════════════════════════════════════════
       NAVBAR
    ═══════════════════════════════════════════ */
    #nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 28px 56px;
      transition: all 0.5s var(--ease-out);
    }
    #nav.stuck {
      background: rgba(251,247,240,0.86);
      backdrop-filter: blur(24px) saturate(1.5);
      -webkit-backdrop-filter: blur(24px) saturate(1.5);
      border-bottom: 1px solid rgba(200,160,40,0.12);
      padding: 16px 56px;
      box-shadow: 0 4px 32px rgba(28,69,50,0.06);
    }

    .nav-logo {
      display: flex; align-items: center; gap: 12px;
      text-decoration: none;
    }
    .nav-logo-gem {
      width: 38px; height: 38px;
      background: var(--em);
      border-radius: 11px;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 14px rgba(28,69,50,0.32);
      transition: transform 0.3s var(--ease-out);
      flex-shrink: 0;
    }
    .nav-logo:hover .nav-logo-gem { transform: rotate(-8deg) scale(1.08); }
    .nav-logo-gem img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      border-radius: inherit;
      display: block;
    }
    .nav-logo-text {
      font-family: var(--ff-serif);
      font-size: 1.6rem;
      font-weight: 500;
      color: var(--em);
      letter-spacing: -0.01em;
      transition: color 0.3s;
    }

    .nav-right { display: flex; align-items: center; gap: 36px; }
    .nav-link {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--cr);
      text-decoration: none;
      opacity: 0.85;
      letter-spacing: 0.04em;
      padding: 6px 4px;
      transition: opacity 0.2s, color 0.2s;
    }
    .nav-link:hover { opacity: 1; color: var(--gd2); }
    /* Nav figée (fond crème) : repasser en émeraude pour rester lisible */
    #nav.stuck .nav-link { color: var(--em); opacity: 0.75; }
    #nav.stuck .nav-link:hover { opacity: 1; color: var(--gd); }

    /* ── Sélecteur de langue FR / EN ─────────────
       Deux états à tenir : nav transparente sur le héros sombre (texte crème)
       et nav figée sur fond crème (texte émeraude). */
    .lang-switch {
      display: inline-flex;
      align-items: center;
      gap: 2px;
      padding: 3px;
      border: 1px solid rgba(251,247,240,0.24);
      border-radius: 999px;
      background: rgba(251,247,240,0.08);
      transition: border-color 0.25s var(--ease-out), background 0.25s var(--ease-out);
    }
    .lang-switch .lang {
      display: inline-flex;
      align-items: center;
      padding: 5px 11px;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      border-radius: 999px;
      color: var(--cr);
      text-decoration: none;
      opacity: 0.75;
      transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
    }
    .lang-switch .lang:hover { opacity: 1; }
    .lang-switch .lang.active {
      background: var(--gd);
      color: var(--wh);
      opacity: 1;
      box-shadow: 0 2px 10px rgba(200,160,40,0.34);
    }
    #nav.stuck .lang-switch {
      border-color: rgba(28,69,50,0.16);
      background: rgba(255,255,255,0.6);
    }
    #nav.stuck .lang-switch .lang { color: var(--em); }
    #nav.stuck .lang-switch .lang.active { color: var(--wh); }

    .btn-nav {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 11px 24px;
      background: var(--gd);
      color: var(--wh);
      border-radius: 100px;
      font-size: 0.85rem;
      font-weight: 600;
      text-decoration: none;
      letter-spacing: 0.01em;
      transition: all 0.25s var(--ease-out);
      box-shadow: 0 4px 20px rgba(200,160,40,0.38);
      position: relative;
      overflow: hidden;
    }
    .btn-nav::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
      opacity: 0;
      transition: opacity 0.25s;
    }
    .btn-nav:hover::before { opacity: 1; }
    .btn-nav:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 32px rgba(200,160,40,0.48);
    }

    /* ═══════════════════════════════════════════
       HERO
    ═══════════════════════════════════════════ */
    #hero {
      position: relative;
      min-height: 100svh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background: var(--em3);
      overflow: hidden;
    }

    /* Islamic geometric star canvas */
    .hero-bg-svg {
      position: absolute;
      inset: -10%;
      width: 120%;
      height: 120%;
      opacity: 0.055;
      animation: bgSpin 180s linear infinite;
      will-change: transform;
    }
    @keyframes bgSpin {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }

    /* Gradient mesh */
    .hero-glow {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 90% 70% at 15% 50%, rgba(45,106,79,0.45) 0%, transparent 55%),
        radial-gradient(ellipse 70% 90% at 85% 20%, rgba(200,160,40,0.10) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 50% 90%, rgba(13,34,24,0.9) 0%, transparent 60%);
    }

    /* Noise */
    .hero-noise {
      position: absolute; inset: 0;
      opacity: 0.03;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
      background-size: 300px 300px;
      pointer-events: none;
    }

    /* Floating orbs */
    .orb {
      position: absolute; border-radius: 50%;
      filter: blur(100px); pointer-events: none;
    }
    .orb-a {
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(200,160,40,0.12) 0%, transparent 70%);
      top: -120px; right: -150px;
      animation: orbA 22s ease-in-out infinite;
    }
    .orb-b {
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(45,106,79,0.35) 0%, transparent 70%);
      bottom: -80px; left: -120px;
      animation: orbB 28s ease-in-out infinite;
    }
    .orb-c {
      width: 300px; height: 300px;
      background: radial-gradient(circle, rgba(200,160,40,0.07) 0%, transparent 70%);
      top: 45%; left: 35%;
      animation: orbC 18s ease-in-out infinite;
    }
    @keyframes orbA {
      0%,100% { transform: translate(0,0); }
      40% { transform: translate(-50px,80px); }
      70% { transform: translate(40px,-50px); }
    }
    @keyframes orbB {
      0%,100% { transform: translate(0,0); }
      33% { transform: translate(70px,-50px); }
      66% { transform: translate(-30px,40px); }
    }
    @keyframes orbC {
      0%,100% { transform: scale(1) translate(0,0); }
      50% { transform: scale(1.15) translate(-30px,-40px); }
    }

    /* Hero content */
    .hero-inner {
      position: relative;
      z-index: 10;
      text-align: center;
      padding: 0 24px;
      max-width: 1000px;
      width: 100%;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 9px 22px;
      border: 1px solid rgba(200,160,40,0.35);
      border-radius: 100px;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(200,160,40,0.9);
      margin-bottom: 36px;
      opacity: 0;
      transform: translateY(24px);
      animation: slideUp 0.9s var(--ease-out) 0.5s forwards;
      backdrop-filter: blur(4px);
    }
    .hero-badge::before {
      content: '';
      width: 5px; height: 5px;
      border-radius: 50%;
      background: var(--gd);
      box-shadow: 0 0 8px rgba(200,160,40,0.8);
      animation: pulse 2s ease-in-out infinite;
    }
    @keyframes pulse {
      0%,100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.5); opacity: 0.6; }
    }

    .hero-title {
      font-family: var(--ff-serif);
      font-size: clamp(80px, 15vw, 180px);
      font-weight: 300;
      line-height: 0.88;
      letter-spacing: -0.03em;
      margin-bottom: 32px;
      overflow: hidden;
    }

    .hero-title-chars {
      display: flex;
      justify-content: center;
      overflow: hidden;
    }

    .char {
      display: inline-block;
      background: linear-gradient(160deg, var(--gd3) 0%, var(--gd2) 30%, var(--gd) 65%, var(--gd2) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      background-size: 200% 200%;
      animation: charReveal 0.7s var(--ease-out) both, shimmer 5s linear 2s infinite;
    }
    @keyframes charReveal {
      from { opacity: 0; transform: translateY(60px) skewY(3deg); }
      to   { opacity: 1; transform: translateY(0) skewY(0); }
    }
    @keyframes shimmer {
      0%   { background-position: 0% 50%; }
      50%  { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    .hero-sub {
      font-size: clamp(1rem, 2.2vw, 1.2rem);
      font-weight: 300;
      color: rgba(251,247,240,0.62);
      line-height: 1.65;
      max-width: 520px;
      margin: 0 auto 52px;
      opacity: 0;
      animation: slideUp 0.9s var(--ease-out) 1.2s forwards;
    }

    .hero-ctas {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
      opacity: 0;
      animation: slideUp 0.9s var(--ease-out) 1.4s forwards;
    }

    .btn-hero-primary {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 17px 38px;
      background: linear-gradient(135deg, var(--gd) 0%, var(--gd2) 100%);
      color: var(--wh);
      border-radius: 100px;
      font-size: 0.95rem;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s var(--ease-out);
      box-shadow: 0 8px 36px rgba(200,160,40,0.45), inset 0 1px 0 rgba(255,255,255,0.2);
      position: relative; overflow: hidden;
      letter-spacing: 0.01em;
    }
    .btn-hero-primary::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.18), transparent);
    }
    .btn-hero-primary:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 18px 54px rgba(200,160,40,0.55);
    }

    .btn-hero-ghost {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 17px 38px;
      border: 1.5px solid rgba(251,247,240,0.22);
      color: rgba(251,247,240,0.75);
      border-radius: 100px;
      font-size: 0.95rem;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.3s var(--ease-out);
      backdrop-filter: blur(8px);
      letter-spacing: 0.01em;
    }
    .btn-hero-ghost:hover {
      border-color: rgba(200,160,40,0.55);
      color: var(--gd2);
      background: rgba(200,160,40,0.06);
    }

    /* Scroll cue */
    .scroll-cue {
      position: absolute;
      bottom: 48px; left: 50%;
      transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 10px;
      opacity: 0;
      animation: fadeIn 1s ease 2s forwards;
    }
    .scroll-cue-line {
      width: 1px; height: 56px;
      background: linear-gradient(to bottom, transparent, var(--gd));
      animation: lineBreath 2.4s ease-in-out infinite;
    }
    @keyframes lineBreath {
      0%,100% { opacity: 0.25; transform: scaleY(1); }
      50%      { opacity: 0.8;  transform: scaleY(1.08); }
    }
    .scroll-cue-txt {
      font-size: 0.6rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(200,160,40,0.45);
      writing-mode: vertical-rl;
      transform: rotate(180deg);
    }

    /* Stats ticker at the bottom of hero */
    .hero-ticker {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      border-top: 1px solid rgba(200,160,40,0.08);
      padding: 20px 0;
      overflow: hidden;
      opacity: 0;
      animation: fadeIn 1s ease 1.8s forwards;
    }
    .ticker-track {
      display: flex;
      gap: 80px;
      animation: tickerMove 18s linear infinite;
      white-space: nowrap;
      width: max-content;
    }
    .ticker-item {
      display: flex; align-items: center; gap: 10px;
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(251,247,240,0.35);
    }
    .ticker-item .dot {
      width: 4px; height: 4px; border-radius: 50%;
      background: var(--gd); opacity: 0.5;
    }
    @keyframes tickerMove {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    @keyframes slideUp {
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn { to { opacity: 1; } }

    /* ═══════════════════════════════════════════
       SHARED
    ═══════════════════════════════════════════ */
    .wrap { max-width: 1200px; margin: 0 auto; padding: 0 56px; }

    .reveal {
      opacity: 0;
      transform: translateY(44px);
      transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
    }
    .reveal.in { opacity: 1; transform: translateY(0); }
    .d1 { transition-delay: 0.08s; }
    .d2 { transition-delay: 0.16s; }
    .d3 { transition-delay: 0.24s; }
    .d4 { transition-delay: 0.32s; }

    .eyebrow {
      display: inline-flex; align-items: center; gap: 14px;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--gd);
      margin-bottom: 20px;
    }
    .eyebrow::before, .eyebrow::after {
      content: '';
      height: 1px;
      width: 28px;
      background: currentColor;
      opacity: 0.45;
    }

    .display-title {
      font-family: var(--ff-serif);
      font-size: clamp(2.6rem, 5vw, 4.2rem);
      font-weight: 300;
      line-height: 1.08;
      letter-spacing: -0.025em;
    }
    .display-title em {
      font-style: italic;
      font-weight: 300;
    }

    /* ═══════════════════════════════════════════
       MANIFESTO
    ═══════════════════════════════════════════ */
    #manifesto {
      background: var(--em);
      padding: 130px 0;
      position: relative;
      overflow: hidden;
    }

    .manifesto-deco {
      position: absolute;
      right: -240px; top: 50%;
      transform: translateY(-50%);
      width: 700px; height: 700px;
      opacity: 0.03;
    }

    .m-inner {
      max-width: 880px;
      margin: 0 auto;
      padding: 0 56px;
      text-align: center;
    }

    .m-inner .eyebrow { color: var(--gd); margin-bottom: 32px; }

    .manifesto-lead {
      font-family: var(--ff-serif);
      font-size: clamp(1.8rem, 3.8vw, 2.8rem);
      font-weight: 300;
      color: var(--cr);
      line-height: 1.45;
      margin-bottom: 72px;
    }
    .manifesto-lead strong {
      font-weight: 500;
      color: var(--gd2);
    }

    .hadith {
      position: relative;
      background: rgba(7,15,9,0.45);
      border: 1px solid rgba(200,160,40,0.18);
      border-radius: 24px;
      padding: 56px 64px;
      backdrop-filter: blur(12px);
    }
    .hadith::before {
      content: '"';
      position: absolute;
      top: -16px; left: 44px;
      font-family: var(--ff-serif);
      font-size: 10rem;
      line-height: 1;
      color: var(--gd);
      opacity: 0.12;
      pointer-events: none;
    }
    .hadith-txt {
      font-family: var(--ff-serif);
      font-size: clamp(1.15rem, 2.5vw, 1.55rem);
      font-style: italic;
      font-weight: 300;
      color: rgba(251,247,240,0.88);
      line-height: 1.65;
      margin-bottom: 28px;
    }
    .hadith-ref {
      font-size: 0.78rem;
      letter-spacing: 0.04em;
      color: rgba(200,160,40,0.6);
    }

    /* ═══════════════════════════════════════════
       VALUES
    ═══════════════════════════════════════════ */
    #values {
      padding: 130px 0;
      background: var(--cr);
    }

    .section-head { text-align: center; margin-bottom: 80px; }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .val-card {
      background: var(--wh);
      border-radius: 28px;
      padding: 52px;
      border: 1px solid rgba(28,69,50,0.07);
      box-shadow: 0 2px 24px rgba(28,69,50,0.05);
      transition: box-shadow 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
      transform-style: preserve-3d;
      position: relative;
      overflow: hidden;
    }
    .val-card::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(140deg, rgba(200,160,40,0.04) 0%, transparent 55%);
      opacity: 0;
      transition: opacity 0.4s;
    }
    .val-card:hover::after { opacity: 1; }
    .val-card:hover {
      box-shadow: 0 24px 72px rgba(28,69,50,0.11);
      border-color: rgba(200,160,40,0.22);
    }

    .val-icon {
      width: 58px; height: 58px;
      border-radius: 18px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 32px;
      border: 1px solid rgba(200,160,40,0.15);
      background: linear-gradient(135deg, rgba(28,69,50,0.06) 0%, rgba(200,160,40,0.04) 100%);
    }
    .val-icon svg { width: 26px; height: 26px; stroke: var(--em); }

    .val-title {
      font-family: var(--ff-serif);
      font-size: 1.8rem;
      font-weight: 400;
      color: var(--em);
      margin-bottom: 14px;
      letter-spacing: -0.015em;
    }
    .val-desc {
      font-size: 0.93rem;
      color: rgba(13,34,24,0.56);
      line-height: 1.8;
    }

    /* ═══════════════════════════════════════════
       PROCESS
    ═══════════════════════════════════════════ */
    #process {
      padding: 130px 0;
      background: var(--em3);
      position: relative;
      overflow: hidden;
    }
    #process .display-title { color: var(--cr); }

    .process-line {
      position: absolute;
      top: 50%; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(200,160,40,0.18) 15%, rgba(200,160,40,0.18) 85%, transparent);
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      margin-top: 88px;
      position: relative;
    }
    /* connector line between steps */
    .steps::before {
      content: '';
      position: absolute;
      top: 48px; left: 12.5%; right: 12.5%;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(200,160,40,0.2) 20%, rgba(200,160,40,0.2) 80%, transparent);
    }

    .step { padding: 0 28px; text-align: center; }

    .step-num {
      width: 96px; height: 96px;
      border-radius: 50%;
      border: 1px solid rgba(200,160,40,0.25);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 36px;
      font-family: var(--ff-serif);
      font-size: 2.2rem;
      font-weight: 300;
      color: var(--gd);
      background: rgba(200,160,40,0.04);
      transition: all 0.4s var(--ease-out);
      position: relative;
    }
    .step-num::before {
      content: '';
      position: absolute; inset: -6px;
      border-radius: 50%;
      border: 1px dashed rgba(200,160,40,0.12);
      transition: all 0.4s var(--ease-out);
    }
    .step:hover .step-num {
      background: rgba(200,160,40,0.1);
      border-color: var(--gd);
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(200,160,40,0.15);
    }
    .step:hover .step-num::before {
      inset: -10px;
      border-color: rgba(200,160,40,0.2);
    }

    .step-name {
      font-family: var(--ff-serif);
      font-size: 1.45rem;
      font-weight: 400;
      color: var(--cr);
      margin-bottom: 12px;
      letter-spacing: -0.01em;
    }
    .step-desc {
      font-size: 0.875rem;
      color: rgba(251,247,240,0.4);
      line-height: 1.75;
    }

    /* ═══════════════════════════════════════════
       FOR WHOM
    ═══════════════════════════════════════════ */
    #for-whom {
      padding: 130px 0;
      background: var(--cr);
      overflow: hidden;
    }

    .fw-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 90px;
      align-items: center;
    }

    .fw-content .eyebrow { justify-content: flex-start; }
    .fw-content .eyebrow::before { display: none; }
    .fw-content .display-title { color: var(--em); text-align: left; margin-bottom: 28px; }

    .fw-text {
      font-size: 1rem;
      color: rgba(13,34,24,0.58);
      line-height: 1.85;
      margin-bottom: 16px;
    }
    .fw-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 18px;
      background: rgba(200,160,40,0.07);
      border: 1px solid rgba(200,160,40,0.2);
      border-radius: 10px;
      font-size: 0.85rem;
      color: var(--em);
      font-weight: 500;
      margin-top: 20px;
    }

    .fw-visual { position: relative; }

    .fw-card-main {
      background: var(--em);
      border-radius: 28px;
      padding: 52px;
      position: relative;
      overflow: hidden;
    }
    .fw-card-main::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse at 85% 15%, rgba(200,160,40,0.13) 0%, transparent 50%),
        radial-gradient(ellipse at 15% 85%, rgba(45,106,79,0.6)  0%, transparent 50%);
    }
    .fw-arabic {
      position: relative;
      font-size: 3.2rem;
      color: var(--gd);
      opacity: 0.22;
      text-align: right;
      margin-bottom: 28px;
      line-height: 1.2;
    }
    .fw-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      position: relative;
    }
    .fw-stat {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(200,160,40,0.12);
      border-radius: 18px;
      padding: 26px;
    }
    .fw-stat-n {
      font-family: var(--ff-serif);
      font-size: 2.4rem;
      font-weight: 300;
      color: var(--gd2);
      line-height: 1;
      margin-bottom: 4px;
    }
    .fw-stat-l {
      font-size: 0.78rem;
      color: rgba(251,247,240,0.45);
      line-height: 1.4;
    }

    .fw-float {
      position: absolute;
      bottom: -28px; right: -28px;
      background: var(--wh);
      border-radius: 18px;
      padding: 20px 26px;
      box-shadow: 0 24px 48px rgba(28,69,50,0.16);
      border: 1px solid rgba(200,160,40,0.1);
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .fw-float-ico {
      width: 42px; height: 42px;
      background: linear-gradient(135deg, var(--em), var(--em2));
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
    }
    .fw-float-ico svg { width: 22px; height: 22px; stroke: var(--gd); }
    .fw-float-txt strong { display: block; font-size: 0.88rem; font-weight: 600; color: var(--em); }
    .fw-float-txt span   { font-size: 0.75rem; color: rgba(13,34,24,0.45); }

    /* ═══════════════════════════════════════════
       FW-STATS FREEMIUM TAGS
    ═══════════════════════════════════════════ */
    .fw-stat-tag {
      display: inline-block;
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: 100px;
      margin-bottom: 12px;
      background: rgba(45,106,79,0.25);
      color: rgba(200,220,200,0.9);
      border: 1px solid rgba(45,106,79,0.4);
    }
    .fw-stat-tag-paid {
      background: rgba(200,160,40,0.18);
      color: rgba(228,184,74,0.9);
      border-color: rgba(200,160,40,0.35);
    }
    .fw-stat-free { border-color: rgba(45,106,79,0.2) !important; }
    .fw-stat-paid { border-color: rgba(200,160,40,0.2) !important; }

    /* ═══════════════════════════════════════════
       FREEMIUM SECTION
    ═══════════════════════════════════════════ */
    #freemium {
      padding: 130px 0;
      background: var(--em3);
      position: relative;
      overflow: hidden;
    }

    .fm-glow {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 25% 50%, rgba(45,106,79,0.2) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 75% 50%, rgba(200,160,40,0.08) 0%, transparent 60%);
      pointer-events: none;
    }

    .fm-inner { position: relative; }

    .fm-head {
      text-align: center;
      margin-bottom: 72px;
    }
    .fm-head .display-title { color: var(--cr); }
    .fm-sub {
      font-size: 1rem;
      color: rgba(251,247,240,0.45);
      margin-top: 16px;
      max-width: 520px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.7;
    }

    .fm-split {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 0;
      align-items: stretch;
      max-width: 900px;
      margin: 0 auto;
    }

    .fm-col {
      border-radius: 28px;
      padding: 52px 48px;
      position: relative;
      overflow: hidden;
    }
    .fm-col-free {
      background: rgba(28,69,50,0.5);
      border: 1px solid rgba(45,106,79,0.35);
    }
    .fm-col-paid {
      background: rgba(200,160,40,0.08);
      border: 1px solid rgba(200,160,40,0.25);
    }

    .fm-col-label {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }
    .fm-col-free .fm-col-label { color: rgba(100,200,130,0.7); }
    .fm-col-paid .fm-col-label { color: rgba(200,160,40,0.7); }

    .fm-col-title {
      font-family: var(--ff-serif);
      font-size: 2.6rem;
      font-weight: 300;
      line-height: 1.1;
      letter-spacing: -0.02em;
      margin-bottom: 36px;
    }
    .fm-col-free .fm-col-title { color: var(--cr); }
    .fm-col-paid .fm-col-title { color: var(--gd2); }

    .fm-list { list-style: none; }
    .fm-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 14px 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      font-size: 0.92rem;
      line-height: 1.5;
    }
    .fm-col-free .fm-list li { color: rgba(251,247,240,0.7); }
    .fm-col-paid .fm-list li { color: rgba(228,184,74,0.8); }

    .fm-list li .ico {
      width: 20px; height: 20px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
      font-size: 0.65rem;
    }
    .fm-col-free .fm-list li .ico {
      background: rgba(45,106,79,0.4);
      border: 1px solid rgba(45,106,79,0.6);
      color: rgba(100,200,130,0.9);
    }
    .fm-col-paid .fm-list li .ico {
      background: rgba(200,160,40,0.18);
      border: 1px solid rgba(200,160,40,0.4);
      color: var(--gd2);
    }

    .fm-divider {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 24px;
      position: relative;
    }
    .fm-divider-line {
      position: absolute;
      top: 0; bottom: 0;
      left: 50%;
      width: 1px;
      background: linear-gradient(to bottom, transparent, rgba(200,160,40,0.2) 30%, rgba(200,160,40,0.2) 70%, transparent);
    }
    .fm-divider-badge {
      width: 48px; height: 48px;
      border-radius: 50%;
      background: var(--em3);
      border: 1px solid rgba(200,160,40,0.25);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--ff-serif);
      font-size: 1rem;
      color: rgba(200,160,40,0.6);
      position: relative;
      z-index: 1;
    }

    .fm-note {
      text-align: center;
      margin-top: 48px;
      font-size: 0.85rem;
      color: rgba(251,247,240,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }
    .fm-note::before, .fm-note::after {
      content: '';
      height: 1px; width: 40px;
      background: rgba(200,160,40,0.15);
    }

    @media (max-width: 768px) {
      .fm-split { grid-template-columns: 1fr; }
      .fm-divider { padding: 24px 0; }
      .fm-divider-line { top: 50%; bottom: auto; left: 0; right: 0; width: auto; height: 1px; }
      .fm-col { padding: 36px 32px; }
      #freemium { padding: 90px 0; }
    }

    /* ═══════════════════════════════════════════
       PRICING — FREEMIUM CALLOUT
    ═══════════════════════════════════════════ */
    .p-free-banner {
      position: relative;
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 16px;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 12px;
      margin-bottom: 28px;
      font-size: 0.8rem;
      color: rgba(255,255,255,0.65);
    }
    .p-free-banner .dot-free {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: #4ade80;
      box-shadow: 0 0 6px rgba(74,222,128,0.6);
      flex-shrink: 0;
    }
    .p-free-banner strong { color: rgba(255,255,255,0.9); }

    .p-feats li.feat-free::before { content: '○'; opacity: 0.5; }
    .p-feats li.feat-free { color: rgba(255,255,255,0.5); font-style: italic; }
    .p-feats .feat-divider {
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.25);
      padding: 12px 0 4px;
      border-bottom: none !important;
    }
    .p-feats .feat-divider::before { display: none !important; }

    /* ═══════════════════════════════════════════
       PRICING
    ═══════════════════════════════════════════ */
    #pricing {
      padding: 130px 0;
      background: var(--cr2);
    }

    .pricing-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
      max-width: 820px;
      margin: 0 auto;
    }

    .p-card {
      border-radius: 30px;
      padding: 52px;
      position: relative;
      overflow: hidden;
      transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
    }
    .p-card:hover { transform: translateY(-8px); }

    .p-card-em {
      background: linear-gradient(150deg, var(--em) 0%, var(--em2) 100%);
      box-shadow: 0 24px 72px rgba(28,69,50,0.32);
    }
    .p-card-gd {
      background: linear-gradient(150deg, #B8860B 0%, var(--gd) 40%, var(--gd2) 100%);
      box-shadow: 0 24px 72px rgba(200,160,40,0.32);
    }
    .p-card-em:hover { box-shadow: 0 36px 90px rgba(28,69,50,0.42); }
    .p-card-gd:hover { box-shadow: 0 36px 90px rgba(200,160,40,0.42); }

    .p-card::before {
      content: '';
      position: absolute;
      top: -60px; right: -60px;
      width: 220px; height: 220px;
      border-radius: 50%;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.05);
    }
    .p-card::after {
      content: '';
      position: absolute;
      bottom: -80px; left: -40px;
      width: 160px; height: 160px;
      border-radius: 50%;
      background: rgba(255,255,255,0.03);
    }

    .p-label {
      position: relative;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      margin-bottom: 36px;
    }
    .p-price {
      position: relative;
      font-family: var(--ff-serif);
      font-size: 4.8rem;
      font-weight: 300;
      color: var(--wh);
      line-height: 1;
      margin-bottom: 4px;
    }
    .p-period {
      position: relative;
      font-size: 0.83rem;
      color: rgba(255,255,255,0.42);
      margin-bottom: 44px;
    }
    .p-feats {
      list-style: none;
      margin-bottom: 44px;
      position: relative;
    }
    .p-feats li {
      display: flex; align-items: center; gap: 10px;
      font-size: 0.88rem;
      color: rgba(255,255,255,0.75);
      padding: 10px 0;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .p-feats li::before {
      content: '✦';
      font-size: 0.55rem;
      color: rgba(255,255,255,0.4);
      flex-shrink: 0;
    }
    .p-btn {
      position: relative;
      display: block;
      text-align: center;
      padding: 15px 24px;
      background: rgba(255,255,255,0.13);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 100px;
      color: var(--wh);
      font-weight: 600;
      font-size: 0.88rem;
      text-decoration: none;
      transition: all 0.25s var(--ease-out);
      backdrop-filter: blur(6px);
      letter-spacing: 0.01em;
    }
    .p-btn:hover {
      background: rgba(255,255,255,0.24);
      transform: translateY(-2px);
    }

    .p-note {
      text-align: center;
      margin-top: 44px;
      font-size: 0.875rem;
      color: rgba(13,34,24,0.48);
    }
    .p-note a { color: var(--em); font-weight: 500; text-decoration: none; border-bottom: 1px solid rgba(28,69,50,0.2); }

    /* Toggle Mensuel / Paiement unique */
    .p-billing-wrap {
      display: flex;
      justify-content: center;
      margin-bottom: 40px;
    }
    .p-billing {
      display: inline-flex;
      gap: 4px;
      padding: 5px;
      background: rgba(28,69,50,0.06);
      border: 1px solid rgba(28,69,50,0.10);
      border-radius: 100px;
    }
    .p-bill-opt {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      border: none;
      background: transparent;
      cursor: pointer;
      font-family: var(--ff-sans);
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0.01em;
      color: rgba(28,69,50,0.55);
      padding: 11px 26px;
      border-radius: 100px;
      transition: color 0.3s var(--ease-out), background 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
    }
    .p-bill-opt:hover { color: var(--em); }
    .p-bill-opt.is-active {
      background: var(--em);
      color: var(--cr);
      box-shadow: 0 6px 18px rgba(28,69,50,0.22);
    }
    .p-bill-save {
      font-size: 0.66rem;
      font-weight: 700;
      letter-spacing: 0.02em;
      padding: 2px 8px;
      border-radius: 100px;
      background: rgba(200,160,40,0.18);
      color: #8a6d12;
      white-space: nowrap;
      transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out);
    }
    .p-bill-opt.is-active .p-bill-save {
      background: var(--gd);
      color: var(--em3);
    }
    .p-price, .p-period { transition: opacity 0.25s var(--ease-out); }

    /* ═══════════════════════════════════════════
       FAQ
    ═══════════════════════════════════════════ */
    #faq {
      padding: 130px 0;
      background: var(--cr);
    }

    .faq-wrap { max-width: 780px; margin: 0 auto; }

    .faq-item { border-bottom: 1px solid rgba(28,69,50,0.09); }

    .faq-q {
      width: 100%;
      display: flex; align-items: center; justify-content: space-between;
      padding: 30px 0;
      background: none; border: none;
      cursor: none; text-align: left; gap: 24px;
    }
    .faq-q-txt {
      font-family: var(--ff-serif);
      font-size: 1.35rem;
      font-weight: 400;
      color: var(--em);
      line-height: 1.3;
    }
    .faq-ico {
      width: 34px; height: 34px;
      border-radius: 50%;
      border: 1px solid rgba(28,69,50,0.14);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      transition: all 0.35s var(--ease-out);
    }
    .faq-ico svg {
      width: 14px; height: 14px;
      stroke: var(--em);
      transition: transform 0.35s var(--ease-out);
    }
    .faq-item.open .faq-ico { background: var(--em); border-color: var(--em); }
    .faq-item.open .faq-ico svg { stroke: var(--cr); transform: rotate(45deg); }

    .faq-body { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease-out); }
    .faq-item.open .faq-body { max-height: 500px; }
    .faq-body-inner {
      padding-bottom: 32px;
      font-size: 0.95rem;
      color: rgba(13,34,24,0.58);
      line-height: 1.85;
    }

    /* ═══════════════════════════════════════════
       FINAL CTA
    ═══════════════════════════════════════════ */
    #cta {
      padding: 170px 0;
      background: var(--em3);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-glow {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 50% 110%, rgba(28,69,50,0.9) 0%, transparent 60%),
        radial-gradient(ellipse 55% 35% at 50% 50%, rgba(200,160,40,0.05) 0%, transparent 60%);
    }
    .cta-bg-pattern {
      position: absolute; inset: 0;
      opacity: 0.025;
    }
    .cta-inner { position: relative; }
    .cta-title {
      font-family: var(--ff-serif);
      font-size: clamp(3.2rem, 9vw, 7rem);
      font-weight: 300;
      color: var(--cr);
      line-height: 1.05;
      letter-spacing: -0.03em;
      margin-bottom: 28px;
    }
    .cta-title span {
      background: linear-gradient(135deg, var(--gd3), var(--gd2), var(--gd));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .cta-sub {
      font-size: 1.05rem;
      color: rgba(251,247,240,0.42);
      margin-bottom: 52px;
    }

    /* ═══════════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════════ */
    footer {
      background: var(--dk);
      padding: 52px 0;
    }
    .foot-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 24px;
    }
    .foot-logo { opacity: 0.45; display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .foot-logo-txt {
      font-family: var(--ff-serif);
      font-size: 1.2rem;
      font-weight: 500;
      color: var(--cr);
      letter-spacing: -0.01em;
    }
    .foot-gem {
      width: 30px; height: 30px;
      background: var(--em);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .foot-gem img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      border-radius: inherit;
      display: block;
    }

    .foot-arabic {
      font-size: 1rem;
      color: rgba(200,160,40,0.3);
      text-align: center;
    }
    .foot-links { display: flex; align-items: center; flex-wrap: wrap; gap: 12px 22px; }
    .foot-link {
      font-size: 0.8rem;
      color: rgba(251,247,240,0.28);
      text-decoration: none;
      transition: color 0.2s;
    }
    .foot-link:hover { color: rgba(200,160,40,0.7); }
    .foot-copy { font-size: 0.75rem; color: rgba(251,247,240,0.2); }

    /* ═══════════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════════ */
    @media (max-width: 1024px) {
      .wrap { padding: 0 36px; }
      #nav, #nav.stuck { padding-left: 36px; padding-right: 36px; }
      .fw-grid { gap: 56px; }
      .steps { grid-template-columns: repeat(2, 1fr); gap: 56px; }
      .steps::before { display: none; }
    }
    @media (max-width: 768px) {
      .wrap { padding: 0 24px; }
      #nav { padding: 14px 18px; }
      #nav.stuck { padding: 12px 18px; }
      .nav-logo-text { font-size: 1.3rem; }
      .nav-logo-gem { width: 32px; height: 32px; }
      .nav-right { gap: 16px; }
      .btn-nav { padding: 9px 16px; font-size: 0.8rem; }

      #hero { min-height: 100svh; }
      .scroll-cue { display: none; }

      .m-inner { padding: 0 24px; }
      .hadith { padding: 36px 32px; }

      .values-grid { grid-template-columns: 1fr; gap: 16px; }
      .val-card { padding: 36px; }

      .steps { grid-template-columns: 1fr; gap: 44px; }
      .step { padding: 0; }

      .fw-grid { grid-template-columns: 1fr; }
      .fw-float { display: none; }
      .fw-card-main { padding: 28px 24px; }
      .fw-arabic { font-size: 2rem; margin-bottom: 20px; }
      .fw-stats { gap: 10px; }
      .fw-stat { padding: 18px 16px; }
      .fw-stat-n { font-size: 1.6rem; }
      .fw-stat-tag { font-size: 0.58rem; }

      .pricing-cards { grid-template-columns: 1fr; }
      .p-card { padding: 40px; }

      #manifesto, #values, #process, #for-whom,
      #pricing, #faq { padding: 90px 0; }
      #cta { padding: 110px 0; }

      .foot-inner { flex-direction: column; text-align: center; }
      .foot-links { justify-content: center; gap: 10px 16px; }
      .foot-copy { width: 100%; margin-top: 6px; }
    }
    /* Très petits écrans : garantir la visibilité du bouton "Je me lance" */
    @media (max-width: 380px) {
      .nav-logo-text { font-size: 1.15rem; }
      .nav-right { gap: 12px; }
      .nav-link-hide { display: none; }
      .btn-nav { padding: 8px 14px; }
    }
