/* ═══════════════════════════════════════
       DESIGN TOKENS
    ═══════════════════════════════════════ */
    :root {
      --white: #ffffff;
      --off-white: #f7f9fc;
      --cream: #f0f4f8;
      --blue-deep: #0a2540;
      --blue-mid: #1a5276;
      --blue-primary: #1e6fa5;
      --blue-light: #3498db;
      --blue-pale: #d6eaf8;
      --blue-ultra: #eaf4fd;
      --teal: #148f8f;
      --teal-light: #1abc9c;
      --teal-pale: #d1f0ed;
      --gold: #c9a227;
      --text-dark: #0d1f35;
      --text-mid: #2c4a6e;
      --text-muted: #6b8cae;
      --text-light: #a8c0d6;
      --border: #dde8f0;
      --shadow-sm: 0 2px 12px rgba(10,37,64,.06);
      --shadow-md: 0 8px 32px rgba(10,37,64,.10);
      --shadow-lg: 0 20px 60px rgba(10,37,64,.14);
      --shadow-blue: 0 8px 40px rgba(30,111,165,.20);
      --r-sm: 8px; --r-md: 16px; --r-lg: 24px; --r-xl: 40px;
      --font: 'Inter', 'DM Sans', sans-serif;
      --ease: .3s cubic-bezier(.4,0,.2,1);
    }

    /* ═══════════════════════════════════════
       RESET
    ═══════════════════════════════════════ */
    *,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
    html{scroll-behavior:smooth;font-size:16px;-webkit-text-size-adjust:100%}
    body{font-family:var(--font);color:var(--text-dark);background:var(--white);overflow-x:hidden;-webkit-font-smoothing:antialiased}
    img{max-width:100%;height:auto;display:block}
    a{text-decoration:none;color:inherit}
    button{cursor:pointer;border:none;background:none;font-family:inherit}

    /* ═══════════════════════════════════════
       SCROLL REVEAL
    ═══════════════════════════════════════ */
    .reveal,.reveal-left,.reveal-right{opacity:0;transition:opacity .5s ease,transform .5s ease}
    .reveal{transform:translateY(24px)}
    .reveal-left{transform:translateX(-30px)}
    .reveal-right{transform:translateX(30px)}
    .reveal.visible,.reveal-left.visible,.reveal-right.visible{opacity:1;transform:none}
    .delay-1{transition-delay:.1s}.delay-2{transition-delay:.2s}
    .delay-3{transition-delay:.3s}.delay-4{transition-delay:.4s}
    @media(prefers-reduced-motion:reduce){
      .reveal,.reveal-left,.reveal-right{opacity:1;transform:none;transition:none}
    }

    /* ═══════════════════════════════════════
       NAVBAR — mobile first
    ═══════════════════════════════════════ */
    .navbar{
      position:fixed;top:0;left:0;right:0;z-index:100;
      height:64px;padding:0 20px;
      display:flex;align-items:center;justify-content:space-between;
      background:rgba(255,255,255,.95);
      backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);
      border-bottom:1px solid rgba(30,111,165,.08);
      transition:var(--ease);
    }
    .navbar.scrolled{box-shadow:var(--shadow-md)}
    .nav-logo{display:flex;flex-direction:column;line-height:1.1}
    .nav-logo-main{font-size:1rem;font-weight:800;color:var(--blue-deep);letter-spacing:-.02em}
    .nav-logo-sub{font-size:.6rem;color:var(--teal);font-weight:600;letter-spacing:.1em;text-transform:uppercase}
    .nav-links,.nav-phone{display:none}
    .nav-burger{display:flex;flex-direction:column;gap:5px;cursor:pointer;padding:4px}
    .nav-burger span{display:block;width:22px;height:2px;background:var(--blue-deep);border-radius:2px;transition:var(--ease)}
    .nav-burger.open span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
    .nav-burger.open span:nth-child(2){opacity:0}
    .nav-burger.open span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}

    /* mobile nav drawer */
        .mobile-nav{
      display:none;
      position:fixed;top:64px;left:0;right:0;bottom:0;
      background:white;z-index:999;overflow-y:auto;
      padding:24px 24px 40px;
      flex-direction:column;gap:0;
    }
    .mobile-nav.open{display:flex!important;}
    .mobile-nav a{
      font-size:1.1rem;font-weight:500;color:var(--text-mid);
      padding:16px 0;border-bottom:1px solid var(--border);
      display:flex;align-items:center;gap:10px;
    }
    .mobile-nav a:last-child{border-bottom:none}
    .mobile-nav .mnav-cta{
      margin-top:20px;background:var(--blue-primary);color:white;
      padding:16px 24px;border-radius:var(--r-xl);
      font-weight:700;justify-content:center;border:none;
      box-shadow:var(--shadow-blue);
    }
    .mobile-nav .mnav-doctolib{
      background:#0596DE;color:white;
      padding:16px 24px;border-radius:var(--r-xl);
      font-weight:700;justify-content:center;border:none;
      margin-top:10px;
    }

    @media(min-width:768px){
      .mobile-nav{display:none!important}
      .navbar{height:72px;padding:0 40px}
      .nav-logo-main{font-size:1.1rem}
      .nav-burger{display:none}
      .mobile-nav{display:none!important}
      .nav-phone{
        display:flex;align-items:center;gap:8px;
        font-size:.9rem;font-weight:600;color:var(--blue-primary);
      }
      .nav-phone svg{width:16px;height:16px}
    }
    @media(min-width:1024px){
      .navbar{padding:0 60px}
      .nav-links{
        display:flex;align-items:center;gap:28px;list-style:none;
      }
      .nav-links a{font-size:.85rem;font-weight:500;color:var(--text-mid);transition:color var(--ease)}
      .nav-links a:hover{color:var(--blue-primary)}
      .nav-cta{
        background:var(--blue-primary);color:white!important;
        padding:10px 22px;border-radius:100px;
        font-size:.82rem!important;font-weight:700!important;
        box-shadow:0 4px 16px rgba(30,111,165,.30);
        transition:var(--ease)!important;
      }
      .nav-cta:hover{background:var(--blue-deep)!important;transform:translateY(-1px)}
    }

    /* ═══════════════════════════════════════
       BUTTONS
    ═══════════════════════════════════════ */
    .btn-primary{
      display:inline-flex;align-items:center;gap:10px;
      background:var(--blue-primary);color:white;
      padding:15px 28px;border-radius:100px;
      font-size:.95rem;font-weight:700;
      transition:var(--ease);box-shadow:var(--shadow-blue);
      width:100%;justify-content:center;
    }
    .btn-primary:hover{background:var(--blue-deep);transform:translateY(-2px);box-shadow:0 16px 48px rgba(30,111,165,.35)}
    .btn-primary svg{width:18px;height:18px;flex-shrink:0}
    .btn-secondary{
      display:inline-flex;align-items:center;gap:8px;
      background:white;color:var(--blue-primary);
      padding:15px 24px;border-radius:100px;
      font-size:.95rem;font-weight:700;
      border:2px solid var(--blue-pale);
      transition:var(--ease);
      width:100%;justify-content:center;
      white-space:nowrap;
    }
    .btn-secondary svg{width:18px;height:18px;flex-shrink:0;}
    .btn-secondary:hover{border-color:var(--blue-primary);background:var(--blue-ultra);transform:translateY(-2px)}
    @media(min-width:480px){
      .btn-primary,.btn-secondary{width:auto}
    }

    /* ═══════════════════════════════════════
       SECTION COMMONS
    ═══════════════════════════════════════ */
    section{padding:64px 20px}
    .container{max-width:1100px;margin:0 auto}
    .section-label{
      display:inline-flex;align-items:center;gap:8px;
      font-size:.72rem;font-weight:700;text-transform:uppercase;
      letter-spacing:.12em;color:var(--teal);margin-bottom:12px;
    }
    .section-label::before{content:'';display:block;width:20px;height:2px;background:var(--teal);border-radius:2px}
    .section-title{
      font-family:var(--font);font-size:clamp(1.7rem,6vw,2.8rem);
      font-weight:800;line-height:1.1;color:var(--blue-deep);
      letter-spacing:-.03em;margin-bottom:14px;
    }
    .section-title em{font-style:italic;color:var(--blue-primary);font-weight:800}
    .section-sub{font-size:.95rem;color:var(--text-mid);line-height:1.65;max-width:520px}
    @media(min-width:768px){section{padding:80px 40px}}
    @media(min-width:1024px){section{padding:100px 60px}}

    /* ═══════════════════════════════════════
       PILLS
    ═══════════════════════════════════════ */
    .pill{display:inline-flex;align-items:center;gap:6px;padding:6px 13px;border-radius:100px;font-size:.78rem;font-weight:600}
    .pill-teal{background:var(--teal-pale);color:var(--teal)}
    .pill-blue{background:var(--blue-pale);color:var(--blue-primary)}
    .pill-gold{background:#fdf3da;color:var(--gold)}
    .pill svg{width:13px;height:13px;flex-shrink:0}

    /* ═══════════════════════════════════════
       HERO — mobile first
    ═══════════════════════════════════════ */
    .hero{
      min-height:100svh;
      padding-top:64px;
      display:flex;flex-direction:column;
      position:relative;overflow:hidden;
      background:linear-gradient(160deg,var(--off-white) 0%,var(--blue-ultra) 55%,#e4f1fb 100%);
    }
    .hero-grid-pattern{
      position:absolute;inset:0;
      background-image:linear-gradient(rgba(30,111,165,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(30,111,165,.04) 1px,transparent 1px);
      background-size:50px 50px;z-index:0;
      pointer-events:none;
    }
    .hero-blob-1{
      position:absolute;top:-80px;right:-80px;
      width:350px;height:350px;border-radius:50%;
      background:radial-gradient(circle,rgba(30,111,165,.09) 0%,transparent 70%);
      z-index:0;pointer-events:none;
    }
    .hero-blob-2{
      position:absolute;bottom:-60px;left:10%;
      width:280px;height:280px;border-radius:50%;
      background:radial-gradient(circle,rgba(20,143,143,.07) 0%,transparent 70%);
      z-index:0;pointer-events:none;
    }
    .hero-left{
      position:relative;z-index:1;
      padding:40px 20px 32px;
      display:flex;flex-direction:column;
      flex:1;
    }
    .hero-badge{
      display:inline-flex;align-items:center;gap:8px;
      background:white;border:1px solid var(--border);border-radius:100px;
      padding:6px 14px;font-size:.72rem;font-weight:700;
      color:var(--teal);letter-spacing:.05em;text-transform:uppercase;
      margin-bottom:20px;width:fit-content;box-shadow:var(--shadow-sm);
      animation:fadeInDown .7s ease both;
    }
    .hero-badge-dot{width:6px;height:6px;border-radius:50%;background:var(--teal);animation:pulse 2s ease infinite}
    @keyframes pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(1.3)}}
    @keyframes fadeInDown{from{opacity:0;transform:translateY(-16px)}to{opacity:1;transform:translateY(0)}}
    @keyframes fadeInUp{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:translateY(0)}}
    @keyframes fadeInRight{from{opacity:0;transform:translateX(30px)}to{opacity:1;transform:translateX(0)}}
    @keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-7px)}}

    .hero-headline{
      font-family:var(--font);
      font-size:clamp(2rem,8vw,3.8rem);
      font-weight:800;line-height:1.05;
      color:var(--blue-deep);margin-bottom:10px;
      letter-spacing:-.03em;
      animation:fadeInUp .8s ease .1s both;
    }
    .hero-headline em{font-style:italic;color:var(--blue-primary)}
    .hero-headline-accent{
      font-style:italic;font-weight:700;color:var(--teal);
      display:block;font-size:clamp(1.6rem,6.5vw,3rem);
    }
    .hero-subtitle{
      font-size:.95rem;color:var(--text-mid);line-height:1.65;
      margin-bottom:24px;font-weight:400;
      animation:fadeInUp .8s ease .2s both;
    }
    .hero-subtitle strong{color:var(--blue-primary);font-weight:700}

    .hero-badges-row{
      display:flex;gap:8px;flex-wrap:wrap;
      margin-bottom:24px;
      animation:fadeInUp .8s ease .3s both;
    }
    .hero-ctas{
      display:flex;flex-direction:column;gap:12px;
      margin-bottom:32px;
      animation:fadeInUp .8s ease .35s both;
    }
    @media(min-width:480px){.hero-ctas{flex-direction:row;flex-wrap:nowrap;gap:14px}
      .hero-ctas .btn-primary,.hero-ctas .btn-secondary{width:auto}}

    .hero-trust{
      display:flex;align-items:center;gap:14px;
      animation:fadeInUp .8s ease .45s both;
    }
    .hero-trust-avatars{display:flex}
    .hero-avatar{
      width:34px;height:34px;border-radius:50%;
      border:2.5px solid white;
      background:linear-gradient(135deg,var(--blue-pale),var(--teal-pale));
      display:flex;align-items:center;justify-content:center;
      font-size:.7rem;font-weight:700;color:var(--blue-primary);
      margin-left:-9px;box-shadow:var(--shadow-sm);
    }
    .hero-avatar:first-child{margin-left:0}
    .hero-trust-text{font-size:.8rem;color:var(--text-mid)}
    .hero-trust-text strong{color:var(--blue-deep);font-weight:700;display:block}
    .hero-stars{color:#f59e0b;font-size:.72rem;letter-spacing:1px}

    /* Hero right — hidden on mobile, visible on desktop */
    @media(min-width:1024px){
      .hero{min-height:80vh;padding-top:72px;align-items:center;}
      .hero-left{padding:80px;justify-content:center;max-width:760px;margin:0 auto;}

    }

    /* Hero visual card */
    
    /*.hero-card-main{
      background:white;border-radius:var(--r-lg);padding:32px;
      box-shadow:var(--shadow-lg);position:relative;overflow:hidden;
    }
    .hero-card-bg{
      position:absolute;top:0;right:0;width:180px;height:180px;
      border-radius:0 var(--r-lg) 0 100%;
      background:linear-gradient(135deg,var(--blue-ultra),var(--teal-pale));
    }
    .hero-card-icon-wrap{
      width:56px;height:56px;border-radius:var(--r-md);
      background:linear-gradient(135deg,var(--blue-primary),var(--blue-mid));
      display:flex;align-items:center;justify-content:center;
      margin-bottom:18px;box-shadow:0 8px 24px rgba(30,111,165,.3);
      position:relative;z-index:1;
    }
    .hero-card-icon-wrap svg{width:28px;height:28px;color:white}
    .hero-card-title{font-size:1.4rem;font-weight:800;color:var(--blue-deep);margin-bottom:4px;position:relative;z-index:1}
    .hero-card-sub{font-size:.85rem;color:var(--text-muted);margin-bottom:22px;position:relative;z-index:1}
    .hero-card-steps{display:flex;flex-direction:column;gap:12px;position:relative;z-index:1}
    .hero-card-step{
      display:flex;align-items:center;gap:13px;
      padding:11px 14px;border-radius:var(--r-md);
      background:var(--off-white);border:1px solid var(--border);
      transition:var(--ease);
    }
    .hero-card-step:hover{background:var(--blue-ultra);border-color:var(--blue-pale);transform:translateX(4px)}
    .step-num{
      width:30px;height:30px;border-radius:50%;flex-shrink:0;
      background:linear-gradient(135deg,var(--blue-primary),var(--teal));
      color:white;font-size:.75rem;font-weight:700;
      display:flex;align-items:center;justify-content:center;
    }
    .step-info strong{font-size:.85rem;color:var(--blue-deep);font-weight:700;display:block}
    .step-info span{font-size:.75rem;color:var(--text-muted)}
    .float-badge{
      position:absolute;background:white;border-radius:var(--r-md);
      padding:11px 14px;box-shadow:var(--shadow-lg);
      font-size:.8rem;font-weight:700;border:1px solid var(--border);
      animation:float 4s ease-in-out infinite;
    }
    .float-badge-icon{font-size:1.1rem;margin-bottom:2px}
    .float-badge-1{top:12px;right:12px;color:var(--teal);animation-delay:0s;white-space:nowrap;}
    .float-badge-2{bottom:50px;left:12px;color:var(--gold);animation-delay:1.5s;white-space:nowrap;}
    .float-badge-3{top:50%;right:-38px;color:var(--blue-primary);animation-delay:.8s;font-size:.75rem}
    .partner-badge{
      position:absolute;bottom:18px;right:18px;
      background:linear-gradient(135deg,var(--blue-deep),var(--blue-mid));
      color:white;border-radius:var(--r-md);padding:9px 14px;
      font-size:.75rem;font-weight:700;
      display:flex;align-items:center;gap:7px;
      box-shadow:var(--shadow-md);animation:float 4s ease-in-out 2s infinite;
    }
    .partner-badge-dot{width:7px;height:7px;border-radius:50%;background:var(--teal-light)}

    /* ═══════════════════════════════════════
       STATS BAR
    ═══════════════════════════════════════ */
    .stats-bar{
      background:var(--blue-deep);
      padding:28px 20px;
      display:grid;grid-template-columns:1fr 1fr;
      gap:20px 0;
    }
    .stat-item{text-align:center;padding:0 16px;position:relative}
    .stat-item:nth-child(odd)::after{
      content:'';position:absolute;right:0;top:50%;transform:translateY(-50%);
      width:1px;height:36px;background:rgba(255,255,255,.15);
    }
    .stat-num{font-size:1.9rem;font-weight:800;color:white;line-height:1;margin-bottom:4px}
    .stat-num span{color:var(--teal-light)}
    .stat-label{font-size:.68rem;color:rgba(255,255,255,.55);text-transform:uppercase;letter-spacing:.07em}
    @media(min-width:640px){
      .stats-bar{grid-template-columns:repeat(4,1fr)}
      .stat-item:nth-child(odd)::after{display:none}
      .stat-item+.stat-item::before{
        content:'';position:absolute;left:0;top:50%;transform:translateY(-50%);
        width:1px;height:36px;background:rgba(255,255,255,.15);
      }
      .stat-num{font-size:2.2rem}
    }

    /* ═══════════════════════════════════════
       SYMPTOMS
    ═══════════════════════════════════════ */
    .symptoms{background:var(--off-white)}
    .symptoms-inner{display:flex;flex-direction:column;gap:40px}
    .symptoms-cards{display:flex;flex-direction:column;gap:14px}
    .symptom-card{
      display:flex;align-items:flex-start;gap:16px;
      background:white;border-radius:var(--r-md);padding:18px 20px;
      border:1px solid var(--border);transition:var(--ease);position:relative;overflow:hidden;
    }
    .symptom-card::after{
      content:'';position:absolute;left:0;top:0;bottom:0;width:3px;
      background:linear-gradient(180deg,var(--blue-primary),var(--teal));
      transform:scaleY(0);transition:transform var(--ease);transform-origin:top;
    }
    .symptom-card:hover{box-shadow:var(--shadow-md);transform:translateX(4px);border-color:var(--blue-pale)}
    .symptom-card:hover::after{transform:scaleY(1)}
    .symptom-icon{
      width:44px;height:44px;border-radius:var(--r-sm);flex-shrink:0;
      background:var(--blue-ultra);display:flex;align-items:center;justify-content:center;
      transition:var(--ease);
    }
    .symptom-card:hover .symptom-icon{background:linear-gradient(135deg,var(--blue-primary),var(--teal))}
    .symptom-icon svg{width:20px;height:20px;color:var(--blue-primary);transition:var(--ease)}
    .symptom-card:hover .symptom-icon svg{color:white}
    .symptom-text strong{display:block;font-size:.92rem;font-weight:700;color:var(--blue-deep);margin-bottom:3px}
    .symptom-text p{font-size:.82rem;color:var(--text-muted);line-height:1.55}

    .bilan-photo-wrap{border-radius:var(--r-lg);overflow:hidden;position:relative;box-shadow:var(--shadow-lg)}
    .bilan-photo-wrap img{width:100%;height:260px;object-fit:cover;object-position:center 20%;display:block}
    @media(min-width:768px){.bilan-photo-wrap img{height:320px}}

    .info-callout{
      background:linear-gradient(135deg,var(--blue-deep),var(--blue-mid));
      border-radius:var(--r-lg);padding:28px;color:white;margin-top:20px;
      position:relative;overflow:hidden;
    }
    .info-callout p{font-size:.95rem;line-height:1.65;margin-bottom:18px;position:relative;z-index:1}
    .info-callout strong{color:var(--teal-light)}
    .info-callout-cta{
      display:inline-flex;align-items:center;gap:8px;
      background:white;color:var(--blue-deep);
      padding:12px 22px;border-radius:100px;
      font-size:.85rem;font-weight:700;
      transition:var(--ease);position:relative;z-index:1;
    }
    .info-callout-cta:hover{background:var(--teal-light);color:white;transform:translateY(-2px)}

    @media(min-width:1024px){
      .symptoms-inner{display:grid;grid-template-columns:1fr 1fr;gap:70px;align-items:start}
    }

    /* ═══════════════════════════════════════
       PROCESS
    ═══════════════════════════════════════ */
    .process{background:linear-gradient(180deg,var(--blue-ultra) 0%,white 140px)}
    .process-header{text-align:center;margin-bottom:48px}
    .process-header .section-label{justify-content:center}
    .process-header .section-label::before{display:none}
    .process-header .section-label::after{content:'';display:block;width:20px;height:2px;background:var(--teal);border-radius:2px}
    .process-header .section-sub{margin:0 auto;text-align:center}

    .process-grid{display:flex;flex-direction:column;gap:20px}
    .process-card{
      background:var(--off-white);border-radius:var(--r-lg);padding:28px 22px;
      text-align:center;border:1px solid var(--border);transition:var(--ease);
    }
    .process-card:hover{background:white;box-shadow:var(--shadow-lg);transform:translateY(-4px);border-color:var(--blue-pale)}
    .process-num-wrap{
      width:52px;height:52px;border-radius:50%;background:white;border:3px solid var(--border);
      display:flex;align-items:center;justify-content:center;margin:0 auto 20px;
      font-size:1.3rem;font-weight:800;color:var(--blue-primary);
      position:relative;z-index:1;transition:var(--ease);
      box-shadow:0 0 0 6px var(--off-white);
    }
    .process-card:hover .process-num-wrap{
      background:linear-gradient(135deg,var(--blue-primary),var(--teal));
      color:white;border-color:transparent;
      box-shadow:0 8px 24px rgba(30,111,165,.3),0 0 0 6px white;
    }
    .process-card-icon{
      width:48px;height:48px;border-radius:var(--r-md);background:var(--blue-ultra);
      display:flex;align-items:center;justify-content:center;margin:0 auto 14px;transition:var(--ease);
    }
    .process-card:hover .process-card-icon{background:linear-gradient(135deg,var(--blue-primary),var(--teal))}
    .process-card-icon svg{width:22px;height:22px;color:var(--blue-primary);transition:var(--ease)}
    .process-card:hover .process-card-icon svg{color:white}
    .process-card h3{font-size:1.05rem;font-weight:800;color:var(--blue-deep);margin-bottom:10px}
    .process-card p{font-size:.85rem;color:var(--text-muted);line-height:1.6}
    .process-time{
      margin-top:14px;display:inline-flex;align-items:center;gap:6px;
      background:var(--blue-pale);color:var(--blue-primary);
      padding:5px 12px;border-radius:100px;font-size:.72rem;font-weight:700;
    }

    @media(min-width:768px){
      .process-grid{
        display:grid;grid-template-columns:repeat(3,1fr);gap:24px;position:relative;
      }
      .process-grid::before{
        content:'';position:absolute;top:40px;
        left:calc(16.66% + 16px);right:calc(16.66% + 16px);
        height:2px;background:linear-gradient(90deg,var(--blue-pale),var(--teal-pale),var(--blue-pale));
        border-radius:2px;
      }
    }

    /* ═══════════════════════════════════════
       JENNIFER
    ═══════════════════════════════════════ */
    .jennifer{
      background:linear-gradient(135deg,var(--blue-deep) 0%,#0d2d54 100%);
      position:relative;overflow:hidden;
    }
    .jennifer::before{
      content:'';position:absolute;top:-80px;right:-80px;width:400px;height:400px;
      border-radius:50%;background:radial-gradient(circle,rgba(20,143,143,.15) 0%,transparent 70%);
    }
    .jennifer-inner{display:flex;flex-direction:column;gap:40px;position:relative;z-index:1}
    .jennifer-visual{display:flex;justify-content:center}
    .jennifer-portrait{position:relative}
    .jennifer-photo-wrap{
      width:240px;height:300px;border-radius:var(--r-xl);
      border:2px solid rgba(255,255,255,.15);overflow:hidden;
      box-shadow:var(--shadow-lg);
    }
    .jennifer-photo-wrap img{width:100%;height:100%;object-fit:cover;object-position:center top}
    .jennifer-badge-floating{
      position:absolute;background:white;border-radius:var(--r-md);
      padding:9px 13px;box-shadow:var(--shadow-lg);font-size:.75rem;
      font-weight:700;color:var(--blue-deep);display:flex;align-items:center;gap:8px;
    }
    .jennifer-badge-floating svg{width:15px;height:15px;color:var(--teal)}
    .jf-badge-1{top:16px;right:-16px;animation:float 4s ease-in-out infinite}
    .jf-badge-2{bottom:24px;left:-20px;animation:float 4s ease-in-out 2s infinite}

    .jennifer-content{color:white}
    .jennifer-content .section-label{color:var(--teal-light)}
    .jennifer-content .section-label::before{background:var(--teal-light)}
    .jennifer-content .section-title{color:white}
    .jennifer-content .section-title em{color:var(--teal-light)}
    .jennifer-quote{
      font-size:.95rem;line-height:1.7;color:rgba(255,255,255,.85);
      border-left:3px solid var(--teal-light);padding-left:18px;
      margin:20px 0 26px;font-style:italic;
    }
    .jennifer-values{display:flex;flex-direction:column;gap:10px;margin-bottom:24px}
    .jennifer-value{display:flex;align-items:center;gap:10px;font-size:.88rem;color:rgba(255,255,255,.85)}
    .jennifer-value-dot{width:7px;height:7px;border-radius:50%;background:var(--teal-light);flex-shrink:0}
    .jennifer-vision-sud{
      background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);
      border-radius:var(--r-md);padding:16px 20px;
      display:flex;align-items:flex-start;gap:12px;
    }
    .jennifer-vision-sud svg{width:26px;height:26px;color:var(--teal-light);flex-shrink:0;margin-top:2px}
    .jennifer-vision-sud strong{display:block;font-size:.85rem;font-weight:700;color:white;margin-bottom:2px}
    .jennifer-vision-sud span{font-size:.75rem;color:rgba(255,255,255,.6)}

    @media(min-width:768px){
      .jennifer-photo-wrap{width:290px;height:360px}
    }
    @media(min-width:1024px){
      .jennifer-inner{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center}
      .jennifer-photo-wrap{width:320px;height:400px}
    }

    /* ═══════════════════════════════════════
       PRICING
    ═══════════════════════════════════════ */
    .pricing{background:var(--off-white)}
    .pricing-header{text-align:center;margin-bottom:40px}
    .pricing-header .section-label{justify-content:center}
    .pricing-header .section-label::before{display:none}
    .pricing-header .section-label::after{content:'';display:block;width:20px;height:2px;background:var(--teal);border-radius:2px}
    .pricing-header .section-sub{margin:0 auto;text-align:center}

    .pricing-grid{display:flex;flex-direction:column;gap:20px;margin-bottom:24px}
    .pricing-card{
      background:white;border-radius:var(--r-lg);padding:28px 24px;
      border:2px solid var(--border);transition:var(--ease);position:relative;overflow:hidden;
    }
    .pricing-card.featured{border-color:var(--border)}
    .pricing-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-lg)}
    .pricing-badge{
      position:absolute;top:18px;right:18px;
      background:linear-gradient(135deg,var(--teal),var(--teal-light));
      color:white;padding:4px 12px;border-radius:100px;
      font-size:.68rem;font-weight:700;text-transform:uppercase;letter-spacing:.07em;
    }
    .pricing-card-icon{
      width:52px;height:52px;border-radius:var(--r-md);background:var(--blue-ultra);
      display:flex;align-items:center;justify-content:center;margin-bottom:18px;
    }
    .pricing-card.featured .pricing-card-icon{background:linear-gradient(135deg,var(--blue-primary),var(--teal))}
    .pricing-card-icon svg{width:24px;height:24px;color:var(--blue-primary)}
    .pricing-card.featured .pricing-card-icon svg{color:white}
    .pricing-card h3{font-size:1.15rem;font-weight:800;color:var(--blue-deep);margin-bottom:8px}
    .pricing-amount{font-size:2.2rem;font-weight:800;color:var(--teal);line-height:1;margin-bottom:6px}
    .pricing-amount span{font-size:.9rem;font-weight:400;color:var(--text-muted)}
    .pricing-desc{font-size:.82rem;color:var(--text-muted);margin-bottom:20px;line-height:1.55}
    .pricing-features{list-style:none;display:flex;flex-direction:column;gap:9px}
    .pricing-features li{display:flex;align-items:center;gap:9px;font-size:.85rem;color:var(--text-mid)}
    .pricing-features li svg{width:15px;height:15px;color:var(--teal);flex-shrink:0}

    .pricing-guarantee{
      background:linear-gradient(135deg,#fdf8e8,#fef3cd);border:1px solid #f0d080;
      border-radius:var(--r-md);padding:20px;
      display:flex;flex-direction:column;gap:14px;
    }
    .pricing-guarantee-icon{font-size:2rem}
    .pricing-guarantee h4{font-size:1rem;font-weight:800;color:var(--blue-deep);margin-bottom:6px}
    .pricing-guarantee p{font-size:.83rem;color:var(--text-mid);line-height:1.55}
    @media(min-width:768px){
      .pricing-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px}
      .pricing-guarantee{flex-direction:row;align-items:flex-start;gap:18px;padding:24px 28px}
    }

    /* ═══════════════════════════════════════
       TESTIMONIALS
    ═══════════════════════════════════════ */
    .testimonials{background:var(--off-white)}
    .testimonials-header{text-align:center;margin-bottom:40px}
    .testimonials-header .section-label{justify-content:center}
    .testimonials-header .section-label::before{display:none}
    .testimonials-header .section-label::after{content:'';display:block;width:20px;height:2px;background:var(--teal);border-radius:2px}
    .testimonials-header .section-sub{margin:0 auto;text-align:center}

    .testimonials-grid{display:flex;flex-direction:column;gap:16px}
    .testimonial-card{
      background:var(--off-white);border:1px solid var(--border);
      border-radius:var(--r-lg);padding:24px;transition:var(--ease);
    }
    .testimonial-card:hover{background:white;box-shadow:var(--shadow-md);transform:translateY(-3px);border-color:var(--blue-pale)}
    .testimonial-card.featured-card{background:linear-gradient(135deg,var(--blue-deep),var(--blue-mid));border-color:transparent}
    .testimonial-card.featured-card:hover{background:linear-gradient(135deg,var(--blue-deep),var(--blue-mid))}
    .testimonial-stars{color:#f59e0b;font-size:.9rem;letter-spacing:2px;margin-bottom:12px}
    .testimonial-text{font-size:.88rem;line-height:1.65;color:var(--text-mid);margin-bottom:18px;font-style:italic}
    .testimonial-card.featured-card .testimonial-text{color:rgba(255,255,255,.85)}
    .testimonial-author{display:flex;align-items:center;gap:11px}
    .testimonial-avatar{
      width:38px;height:38px;border-radius:50%;flex-shrink:0;
      background:linear-gradient(135deg,var(--blue-pale),var(--teal-pale));
      display:flex;align-items:center;justify-content:center;
      font-size:.8rem;font-weight:700;color:var(--blue-primary);
    }
    .testimonial-card.featured-card .testimonial-avatar{background:rgba(255,255,255,.15);color:white}
    .testimonial-author strong{display:block;font-size:.85rem;font-weight:700;color:var(--blue-deep)}
    .testimonial-card.featured-card .testimonial-author strong{color:white}
    .testimonial-author span{font-size:.75rem;color:var(--text-muted)}
    .testimonial-card.featured-card .testimonial-author span{color:rgba(255,255,255,.6)}
    .testimonial-google-badge{
      font-size:.68rem;color:var(--text-muted);background:var(--cream);
      padding:2px 8px;border-radius:100px;border:1px solid var(--border);
      display:inline-block;margin-top:6px;
    }
    .testimonial-card.featured-card .testimonial-google-badge{background:rgba(255,255,255,.1);border-color:rgba(255,255,255,.2);color:rgba(255,255,255,.6)}

    @media(min-width:640px){.testimonials-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}}
    @media(min-width:1024px){.testimonials-grid{grid-template-columns:repeat(3,1fr)}}

    /* ═══════════════════════════════════════
       RDV SECTION
    ═══════════════════════════════════════ */
    .rdv-section{background:white;padding:64px 20px}
    .rdv-inner{
      background:linear-gradient(135deg,var(--blue-deep) 0%,#0d3060 50%,var(--blue-mid) 100%);
      border-radius:var(--r-xl);padding:40px 24px;
      display:flex;flex-direction:column;gap:40px;
      position:relative;overflow:hidden;
    }
    .rdv-inner::before{
      content:'';position:absolute;top:-80px;right:100px;width:300px;height:300px;
      border-radius:50%;background:radial-gradient(circle,rgba(20,143,143,.12) 0%,transparent 70%);
    }
    .rdv-content{position:relative;z-index:1}
    .rdv-label{
      display:inline-flex;align-items:center;gap:8px;
      background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.15);
      border-radius:100px;padding:6px 14px;
      font-size:.72rem;font-weight:700;color:var(--teal-light);
      letter-spacing:.1em;text-transform:uppercase;margin-bottom:18px;
    }
    .rdv-title{
      font-size:clamp(1.6rem,6vw,2.6rem);font-weight:800;
      color:white;line-height:1.1;margin-bottom:14px;letter-spacing:-.02em;
    }
    .rdv-title em{font-style:italic;color:var(--teal-light)}
    .rdv-sub{font-size:.9rem;color:rgba(255,255,255,.75);line-height:1.6;margin-bottom:24px}
    .rdv-advantages{display:flex;flex-direction:column;gap:9px}
    .rdv-advantage{display:flex;align-items:center;gap:9px;font-size:.85rem;color:rgba(255,255,255,.8)}
    .rdv-advantage svg{width:15px;height:15px;color:var(--teal-light);flex-shrink:0}

    .rdv-card{background:white;border-radius:var(--r-lg);padding:28px 24px;box-shadow:var(--shadow-lg);position:relative;z-index:1}
    .rdv-card-title{font-size:1.2rem;font-weight:800;color:var(--blue-deep);margin-bottom:5px}
    .rdv-card-sub{font-size:.82rem;color:var(--text-muted);margin-bottom:22px}

    .doctolib-btn{
      display:flex;align-items:center;justify-content:center;gap:10px;
      width:100%;background:#0596DE;color:white;
      padding:17px 24px;border-radius:var(--r-md);
      font-size:.95rem;font-weight:700;
      transition:var(--ease);box-shadow:0 8px 24px rgba(5,150,222,.35);
      border:none;cursor:pointer;text-decoration:none;
      min-height:54px;
    }
    .doctolib-btn:hover{background:#0480c4;transform:translateY(-2px);box-shadow:0 16px 40px rgba(5,150,222,.45);color:white}
    .doctolib-btn svg{width:20px;height:20px;flex-shrink:0}
    .rdv-divider{display:flex;align-items:center;gap:10px;margin:16px 0}
    .rdv-divider::before,.rdv-divider::after{content:'';flex:1;height:1px;background:var(--border)}
    .rdv-divider span{font-size:.75rem;color:var(--text-muted);font-weight:500;white-space:nowrap}
    .phone-cta{
      display:inline-flex;align-items:center;justify-content:center;gap:9px;
      width:100%;background:var(--off-white);color:var(--blue-deep);
      padding:15px 28px;border-radius:100px;
      font-size:.95rem;font-weight:700;
      transition:var(--ease);border:2px solid var(--border);
      text-decoration:none;min-height:52px;
      white-space:nowrap;letter-spacing:0;
    }
    .phone-cta:hover{border-color:var(--blue-primary);background:var(--blue-ultra);transform:translateY(-2px);color:var(--blue-primary)}
    .phone-cta svg{width:17px;height:17px}
    .rdv-trust-row{display:flex;justify-content:center;gap:16px;margin-top:16px;flex-wrap:wrap}
    .rdv-trust-item{display:flex;align-items:center;gap:5px;font-size:.72rem;color:var(--text-muted)}
    .rdv-trust-item svg{width:12px;height:12px;color:var(--teal)}

    @media(min-width:768px){
      .rdv-section{padding:80px 40px}
      .rdv-inner{padding:60px}
    }
    @media(min-width:1024px){
      .rdv-section{padding:100px 60px}
      .rdv-inner{display:grid;grid-template-columns:1fr 1fr;gap:80px;flex-direction:unset;padding:80px;}
    }

    /* ═══════════════════════════════════════
       LOCATION
    ═══════════════════════════════════════ */
    .location{background:linear-gradient(180deg,white 0%,var(--blue-ultra) 50%,white 100%)}
    .location-inner{display:flex;flex-direction:column;gap:40px}

    .location-map{
      border-radius:var(--r-lg);overflow:hidden;
      border:1px solid var(--border);box-shadow:var(--shadow-md);
      height:240px;position:relative;
    }
    .location-map img{width:100%;height:100%;object-fit:cover;display:block}

    .location-infos{display:flex;flex-direction:column;gap:14px}
    .location-info-card{
      display:flex;align-items:flex-start;gap:14px;
      background:var(--off-white);border:1px solid var(--border);
      border-radius:var(--r-md);padding:16px;transition:var(--ease);
    }
    .location-info-card:hover{background:white;box-shadow:var(--shadow-sm);border-color:var(--blue-pale)}
    .location-info-icon{
      width:40px;height:40px;border-radius:var(--r-sm);background:var(--blue-ultra);
      display:flex;align-items:center;justify-content:center;flex-shrink:0;
    }
    .location-info-icon svg{width:18px;height:18px;color:var(--blue-primary)}
    .location-info-content strong{display:block;font-size:.85rem;font-weight:700;color:var(--blue-deep);margin-bottom:3px}
    .location-info-content p,.location-info-content a{font-size:.82rem;color:var(--text-mid);line-height:1.55;text-decoration:none}
    .location-info-content a:hover{color:var(--blue-primary)}
    .horaires-grid{display:flex;flex-direction:column;gap:4px;margin-top:6px}
    .horaire-row{display:flex;justify-content:space-between;font-size:.78rem;color:var(--text-mid);padding:3px 0}
    .horaire-row span:first-child{color:var(--text-muted)}
    .horaire-row span:last-child{font-weight:700;color:var(--blue-deep)}
    .horaire-fermé{color:var(--text-light)!important}

    @media(min-width:640px){.location-map{height:300px}}
    @media(min-width:1024px){
      .location-inner{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:start}
      .location-map{height:380px}
    }

    /* ═══════════════════════════════════════
       FAQ
    ═══════════════════════════════════════ */
    .faq{background:linear-gradient(180deg,var(--blue-ultra) 0%,var(--off-white) 120px)}
    .faq-inner{display:flex;flex-direction:column;gap:40px}
    .faq-left .btn-primary{width:auto;margin-top:20px}
    .faq-items{display:flex;flex-direction:column;gap:10px}
    .faq-item{background:white;border:1px solid var(--border);border-radius:var(--r-md);overflow:hidden;transition:var(--ease)}
    .faq-item.open{border-color:var(--blue-pale);box-shadow:var(--shadow-sm)}
    .faq-question{
      display:flex;align-items:center;justify-content:space-between;
      padding:18px 20px;cursor:pointer;
      font-weight:700;font-size:.9rem;color:var(--blue-deep);gap:14px;
    }
    .faq-question:hover{color:var(--blue-primary)}
    .faq-icon{
      width:26px;height:26px;border-radius:50%;background:var(--blue-ultra);
      display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:var(--ease);
    }
    .faq-item.open .faq-icon{background:var(--blue-primary);transform:rotate(45deg)}
    .faq-icon svg{width:13px;height:13px;color:var(--blue-primary);transition:var(--ease)}
    .faq-item.open .faq-icon svg{color:white}
    .faq-answer{max-height:0;overflow:hidden;transition:max-height .4s ease}
    .faq-item.open .faq-answer{max-height:240px}
    .faq-answer-inner{padding:0 20px 18px;font-size:.85rem;color:var(--text-mid);line-height:1.65}

    @media(min-width:1024px){
      .faq-inner{display:grid;grid-template-columns:1fr 2fr;gap:80px;align-items:start}
      .faq-left{position:sticky;top:90px}
    }

    /* ═══════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════ */
    footer{background:var(--blue-deep);padding:48px 20px 28px;color:rgba(255,255,255,.7)}
    .footer-top{display:flex;flex-direction:column;gap:36px;margin-bottom:36px;padding-bottom:36px;border-bottom:1px solid rgba(255,255,255,.1)}
    .footer-brand-name{font-size:1.1rem;font-weight:800;color:white;margin-bottom:3px}
    .footer-brand-sub{font-size:.65rem;color:var(--teal-light);text-transform:uppercase;letter-spacing:.1em;font-weight:700;margin-bottom:12px}
    .footer-brand-desc{font-size:.82rem;line-height:1.6;color:rgba(255,255,255,.5);margin-bottom:18px}
    .footer-social{display:flex;gap:9px}
    .footer-social a{
      width:34px;height:34px;border-radius:50%;
      background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);
      display:flex;align-items:center;justify-content:center;transition:var(--ease);
    }
    .footer-social a:hover{background:var(--teal);border-color:var(--teal)}
    .footer-social a svg{width:15px;height:15px;color:white}
    .footer-cols{display:grid;grid-template-columns:1fr 1fr;gap:28px}
    .footer-col h4{font-size:.75rem;font-weight:800;color:white;text-transform:uppercase;letter-spacing:.1em;margin-bottom:14px}
    .footer-col ul{list-style:none;display:flex;flex-direction:column;gap:9px}
    .footer-col ul li a{font-size:.82rem;color:rgba(255,255,255,.5);transition:color var(--ease)}
    .footer-col ul li a:hover{color:var(--teal-light)}
    .footer-contact-item{display:flex;align-items:flex-start;gap:9px;font-size:.82rem;color:rgba(255,255,255,.5);margin-bottom:9px}
    .footer-contact-item svg{width:14px;height:14px;color:var(--teal-light);flex-shrink:0;margin-top:2px}
    .footer-contact-item a{color:rgba(255,255,255,.5);transition:color var(--ease)}
    .footer-contact-item a:hover{color:var(--teal-light)}
    .footer-bottom{display:flex;flex-direction:column;gap:12px;text-align:center}
    .footer-bottom p{font-size:.75rem;color:rgba(255,255,255,.3)}
    .footer-legal{display:flex;gap:16px;flex-wrap:wrap;justify-content:center}
    .footer-legal a{font-size:.72rem;color:rgba(255,255,255,.3);transition:color var(--ease)}
    .footer-legal a:hover{color:rgba(255,255,255,.7)}
    .footer-vision-sud{
      background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.08);
      border-radius:var(--r-sm);padding:7px 14px;
      font-size:.72rem;color:rgba(255,255,255,.45);
      display:inline-flex;align-items:center;gap:7px;justify-content:center;
    }
    .footer-vision-sud strong{color:rgba(255,255,255,.75)}

    @media(min-width:640px){.footer-cols{grid-template-columns:repeat(3,1fr)}}
    @media(min-width:768px){
      footer{padding:60px 40px 32px}
      .footer-top{flex-direction:row;gap:0}
      .footer-top>*:first-child{flex:2;padding-right:40px}
      .footer-cols{flex:3}
      .footer-bottom{flex-direction:row;justify-content:space-between;text-align:left}
      .footer-legal{justify-content:flex-start}
    }
    @media(min-width:1024px){footer{padding:64px 60px 32px}}

    /* ═══════════════════════════════════════
       TOUCH TARGETS (accessibilité mobile)
    ═══════════════════════════════════════ */
    @media(max-width:767px){
      .btn-primary,.btn-secondary,.doctolib-btn,.phone-cta{min-height:52px;font-size:1rem}
      .faq-question{min-height:52px}
      .nav-burger{min-width:44px;min-height:44px;justify-content:center}
    }