/* ════════════════════════════════════════
   VARIABLES
════════════════════════════════════════ */
:root{
    --blue:       #2348B5;
    --blue-rgb:   35,72,181;
    --blue-l:     #3D6FE8;
    --blue-sky:   #EAF6FF;
    --blue-mid:   #B8D9F5;
    --white:      #FFFFFF;
    --gray-light: #F5F8FF;
    --gray:       #6B7A99;
    --text:       #1A2340;
    --text2:      #4A5568;
    --green:      #25D366;
    --ease:       cubic-bezier(0.16,1,0.3,1);
    --f1:         'Cormorant Garamond',serif;
    --f2:         'Montserrat',sans-serif;
    --radius:     14px;
    --shadow:     0 4px 30px rgba(35,72,181,.10);
    --shadow-l:   0 12px 50px rgba(35,72,181,.16);
}

/* ════════════════════════════════════════
   BASE
════════════════════════════════════════ */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;overflow-x:hidden;}
body{background:var(--white);color:var(--text);font-family:var(--f2);overflow-x:hidden;}

/* ════════════════════════════════════════
   SCROLL BAR
════════════════════════════════════════ */
#scrollBar{position:fixed;top:0;left:0;height:3px;background:linear-gradient(90deg,var(--blue),var(--blue-l));z-index:10001;width:0;transition:width .1s ease;}

/* ════════════════════════════════════════
   NAVIGATION — identique à index.html
════════════════════════════════════════ */
nav{position:fixed;top:0;left:0;width:100%;height:80px;padding:0 5%;display:flex;align-items:center;justify-content:space-between;z-index:1000;background:rgba(255,255,255,.85);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);border-bottom:1px solid rgba(var(--blue-rgb),.08);transition:height .4s var(--ease),background .4s ease,box-shadow .4s ease;}
nav.scrolled{height:64px;background:rgba(255,255,255,.97);box-shadow:0 2px 20px rgba(var(--blue-rgb),.1);}
.nav-logo{text-decoration:none;flex-shrink:0;}
.logo-name{font-family:var(--f1);font-size:1.6rem;font-weight:600;letter-spacing:.04em;color:var(--blue);display:block;line-height:1;}
.logo-name em{color:var(--blue-l);font-style:normal;}
.logo-tagline{font-size:.42rem;letter-spacing:.3em;text-transform:uppercase;color:var(--gray);display:block;margin-top:.25rem;}
.nav-links{display:flex;gap:2.5rem;list-style:none;align-items:center;}
.nav-links a{color:var(--text2);text-decoration:none;font-size:.62rem;font-weight:500;letter-spacing:.12em;text-transform:uppercase;position:relative;transition:color .3s ease;}
.nav-links a::after{content:'';position:absolute;bottom:-4px;left:0;width:0;height:2px;background:var(--blue);border-radius:2px;transition:width .35s ease;}
.nav-links a:hover{color:var(--blue);}
.nav-links a:hover::after{width:100%;}
.nav-right{display:flex;align-items:center;gap:1rem;}
.btn-rdv{background:var(--blue);color:#fff;padding:.6rem 1.5rem;font-size:.6rem;font-weight:600;letter-spacing:.15em;text-transform:uppercase;text-decoration:none;border-radius:6px;transition:background .3s ease,transform .3s ease,box-shadow .3s ease;box-shadow:0 4px 16px rgba(var(--blue-rgb),.35);white-space:nowrap;display:inline-flex;align-items:center;}
.btn-rdv:hover{background:var(--blue-l);transform:translateY(-2px);box-shadow:0 8px 24px rgba(var(--blue-rgb),.4);}
.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:4px;background:none;border:none;}
.hamburger span{display:block;width:22px;height:1.5px;background:var(--blue);transition:all .5s var(--ease);}
.mobile-menu{position:fixed;inset:0;background:var(--blue);z-index:998;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:1.8rem;transform:translateX(100%);transition:transform .7s var(--ease);}
.mobile-menu.open{transform:translateX(0);}
.mobile-menu a{font-family:var(--f1);font-size:2rem;font-weight:300;color:rgba(255,255,255,.85);text-decoration:none;letter-spacing:.05em;transition:color .3s ease;}
.mobile-menu a:hover{color:#fff;}
/* Sélecteur de langue */
.lang-sel{display:flex;align-items:center;gap:.14rem;background:rgba(var(--blue-rgb),.07);border:1.5px solid rgba(var(--blue-rgb),.18);padding:.24rem .28rem;border-radius:50px;flex-shrink:0;transition:box-shadow .3s ease;}
.lang-sel:hover{box-shadow:0 2px 12px rgba(var(--blue-rgb),.18);}
.lang-btn-sel{background:transparent;border:none;color:rgba(var(--blue-rgb),.55);cursor:pointer;padding:.28rem .75rem;border-radius:50px;font-family:var(--f2);font-size:.54rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;transition:all .25s ease;display:flex;align-items:center;gap:.26rem;line-height:1;white-space:nowrap;}
.lang-btn-sel.on{background:var(--blue);color:#fff;box-shadow:0 2px 8px rgba(var(--blue-rgb),.3);}
.lang-btn-sel:not(.on):hover{color:var(--blue);background:rgba(var(--blue-rgb),.08);}
.lang-sep-v{width:1px;height:13px;background:rgba(var(--blue-rgb),.15);flex-shrink:0;}
/* Responsive */
@media(max-width:900px){.btn-rdv{display:none;}}
@media(max-width:900px){.nav-links{display:none;}.hamburger{display:flex;}}
@media(max-width:900px){.lang-btn-sel{padding:.28rem .6rem;font-size:.5rem;}}
/* Arabic RTL */
body.lang-ar nav{direction:rtl;}

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.page-hero{position:relative;min-height:520px;display:flex;align-items:center;background:#0A1D6B center/cover no-repeat;}
.page-hero::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(10,29,107,.95) 0%,rgba(21,53,160,.88) 55%,rgba(35,72,181,.78) 100%);z-index:1;}
.hero-inner{position:relative;z-index:2;max-width:820px;margin:0 auto;padding:6rem 2rem 4rem;width:100%;}
.hero-back{display:inline-flex;align-items:center;gap:.4rem;color:rgba(255,255,255,.5);font-size:.56rem;letter-spacing:.12em;text-transform:uppercase;text-decoration:none;margin-bottom:1.8rem;transition:color .3s ease;}
.hero-back:hover{color:rgba(255,255,255,.9);}
.hero-back i{font-size:.7rem;}
.hero-tag{display:inline-flex;align-items:center;gap:.55rem;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.28);padding:.45rem 1.2rem;border-radius:50px;margin-bottom:1.4rem;}
.hero-tag i{color:var(--blue-mid);font-size:.75rem;}
.hero-tag span{font-size:.53rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;color:rgba(255,255,255,.9);}
h1.hero-title{font-family:var(--f1);font-size:clamp(2.2rem,5vw,3.5rem);font-weight:300;color:#fff;line-height:1.06;margin-bottom:1rem;letter-spacing:.02em;}
h1.hero-title em{font-style:italic;color:var(--blue-mid);}
.hero-sub{font-size:.8rem;color:rgba(255,255,255,.72);line-height:1.9;max-width:580px;margin-bottom:2rem;}
.hero-cta-wa{display:inline-flex;align-items:center;gap:.6rem;background:var(--green);color:#fff;padding:.9rem 1.8rem;border-radius:8px;font-size:.63rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;text-decoration:none;transition:transform .3s ease,box-shadow .3s ease;box-shadow:0 4px 20px rgba(37,211,102,.35);}
.hero-cta-wa:hover{transform:translateY(-2px);box-shadow:0 8px 30px rgba(37,211,102,.48);}
.hero-cta-wa i{font-size:1rem;}

/* ════════════════════════════════════════
   PAGE CONTENT
════════════════════════════════════════ */
.page-content{padding:4.5rem 0 2rem;}
.container{max-width:980px;margin:0 auto;padding:0 2rem;}
.content-section{margin-bottom:3.8rem;}
.section-tag{display:inline-block;background:var(--blue-sky);color:var(--blue);font-size:.5rem;font-weight:700;letter-spacing:.22em;text-transform:uppercase;padding:.32rem .9rem;border-radius:50px;margin-bottom:.8rem;}
.sec-divider{width:44px;height:2px;background:linear-gradient(90deg,var(--blue),var(--blue-l));border-radius:2px;margin-bottom:1.2rem;}
h2.sec-title{font-family:var(--f1);font-size:clamp(1.55rem,3vw,2.15rem);font-weight:400;color:var(--text);line-height:1.22;margin-bottom:1.1rem;}
h2.sec-title em{font-style:italic;color:var(--blue);}
.sec-intro{font-size:.8rem;color:var(--text2);line-height:1.92;margin-bottom:1.4rem;}
.sec-text{font-size:.78rem;color:var(--text2);line-height:1.9;}

/* ════════════════════════════════════════
   SYMPTOM GRID
════════════════════════════════════════ */
.symptom-grid{display:grid;grid-template-columns:1fr 1fr;gap:.65rem;}
.symptom-item{display:flex;align-items:flex-start;gap:.8rem;background:var(--gray-light);border-radius:10px;padding:.85rem 1rem;}
.symptom-dot{width:8px;height:8px;border-radius:50%;background:var(--blue);flex-shrink:0;margin-top:.3rem;}
.symptom-text{font-size:.74rem;color:var(--text2);line-height:1.65;}
@media(max-width:580px){.symptom-grid{grid-template-columns:1fr;}}

/* ════════════════════════════════════════
   CAUSES LIST
════════════════════════════════════════ */
.causes-list{display:flex;flex-direction:column;gap:.55rem;}
.cause-item{display:flex;align-items:flex-start;gap:.9rem;background:var(--gray-light);border-radius:10px;padding:.9rem 1.1rem;}
.cause-icon{width:36px;height:36px;background:var(--blue-sky);border-radius:8px;display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.cause-icon i{font-size:.75rem;color:var(--blue);}
.cause-body{font-size:.76rem;color:var(--text2);line-height:1.7;}
.cause-body strong{font-weight:600;color:var(--text);display:block;margin-bottom:.18rem;}

/* ════════════════════════════════════════
   RISK GRID
════════════════════════════════════════ */
.risk-grid{display:grid;grid-template-columns:1fr 1fr;gap:.75rem;}
.risk-card{background:var(--gray-light);border-radius:10px;padding:1.1rem 1.2rem;border-left:3px solid var(--blue);}
.risk-card strong{font-size:.74rem;font-weight:700;color:var(--text);display:block;margin-bottom:.3rem;}
.risk-card span{font-size:.71rem;color:var(--text2);line-height:1.65;}
@media(max-width:580px){.risk-grid{grid-template-columns:1fr;}}

/* ════════════════════════════════════════
   TIMELINE (SÉANCES)
════════════════════════════════════════ */
.timeline{display:flex;flex-direction:column;gap:.85rem;}
.timeline-item{display:flex;gap:1.1rem;align-items:flex-start;}
.tl-num{width:36px;height:36px;min-width:36px;border-radius:50%;background:linear-gradient(135deg,var(--blue) 0%,var(--blue-l) 100%);color:#fff;display:flex;align-items:center;justify-content:center;font-size:.62rem;font-weight:700;}
.tl-body{padding-top:.35rem;}
.tl-body strong{font-size:.78rem;font-weight:600;color:var(--text);display:block;margin-bottom:.22rem;}
.tl-body span{font-size:.72rem;color:var(--text2);line-height:1.7;}

/* ════════════════════════════════════════
   BENEFITS GRID
════════════════════════════════════════ */
.benefits-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;}
.benefit-card{background:var(--gray-light);border-radius:12px;padding:1.5rem 1.1rem;text-align:center;border:1px solid rgba(var(--blue-rgb),.06);transition:all .4s var(--ease);}
.benefit-card:hover{transform:translateY(-4px);box-shadow:var(--shadow);border-color:rgba(var(--blue-rgb),.14);}
.benefit-icon{width:48px;height:48px;background:linear-gradient(135deg,var(--blue) 0%,var(--blue-l) 100%);border-radius:12px;display:flex;align-items:center;justify-content:center;margin:0 auto .9rem;}
.benefit-icon i{font-size:.95rem;color:#fff;}
.benefit-title{font-family:var(--f1);font-size:.98rem;font-weight:500;color:var(--text);margin-bottom:.45rem;}
.benefit-text{font-size:.68rem;color:var(--gray);line-height:1.7;}
@media(max-width:680px){.benefits-grid{grid-template-columns:1fr 1fr;}}
@media(max-width:440px){.benefits-grid{grid-template-columns:1fr;}}

/* ════════════════════════════════════════
   TIPS LIST
════════════════════════════════════════ */
.tips-list{display:flex;flex-direction:column;gap:.5rem;}
.tip-item{display:flex;align-items:flex-start;gap:.7rem;font-size:.75rem;color:var(--text2);line-height:1.72;}
.tip-item i{color:var(--blue);font-size:.7rem;flex-shrink:0;margin-top:.28rem;}

/* ════════════════════════════════════════
   FAQ
════════════════════════════════════════ */
.faq-list{display:flex;flex-direction:column;gap:.6rem;}
.faq-item{background:var(--gray-light);border-radius:var(--radius);border:1px solid rgba(var(--blue-rgb),.07);overflow:hidden;}
.faq-q{display:flex;align-items:center;justify-content:space-between;padding:1.1rem 1.3rem;cursor:pointer;gap:1rem;user-select:none;}
.faq-q-txt{font-size:.77rem;font-weight:600;color:var(--text);line-height:1.5;}
.faq-icon-btn{width:28px;height:28px;min-width:28px;background:var(--blue-sky);border-radius:50%;display:flex;align-items:center;justify-content:center;transition:all .3s ease;}
.faq-icon-btn i{font-size:.58rem;color:var(--blue);transition:transform .35s ease;}
.faq-item.open .faq-icon-btn{background:var(--blue);}
.faq-item.open .faq-icon-btn i{color:#fff;transform:rotate(45deg);}
.faq-a{max-height:0;overflow:hidden;transition:max-height .4s var(--ease);}
.faq-item.open .faq-a{max-height:600px;}
.faq-a-txt{font-size:.75rem;color:var(--text2);line-height:1.88;padding:.2rem 1.3rem 1.2rem;}

/* ════════════════════════════════════════
   CTA BLOCK
════════════════════════════════════════ */
.cta-block{background:linear-gradient(135deg,#0A1D6B 0%,#1535A0 55%,var(--blue) 100%);border-radius:20px;padding:3.5rem 2rem;text-align:center;margin-top:3.5rem;position:relative;overflow:hidden;}
.cta-block::before{content:'';position:absolute;right:-70px;top:-70px;width:300px;height:300px;border-radius:50%;background:rgba(255,255,255,.04);pointer-events:none;}
.cta-block::after{content:'';position:absolute;left:40px;bottom:-80px;width:200px;height:200px;border-radius:50%;background:rgba(255,255,255,.03);pointer-events:none;}
.cta-pretag{font-size:.52rem;font-weight:700;letter-spacing:.22em;text-transform:uppercase;color:rgba(255,255,255,.55);margin-bottom:.8rem;}
.cta-title{font-family:var(--f1);font-size:clamp(1.7rem,3.5vw,2.5rem);font-weight:300;color:#fff;margin-bottom:.7rem;letter-spacing:.02em;position:relative;z-index:1;}
.cta-title em{font-style:italic;color:var(--blue-mid);}
.cta-sub{font-size:.75rem;color:rgba(255,255,255,.65);line-height:1.85;margin-bottom:2rem;max-width:480px;margin-left:auto;margin-right:auto;position:relative;z-index:1;}
.cta-wa-btn{display:inline-flex;align-items:center;gap:.65rem;background:var(--green);color:#fff;padding:1rem 2.2rem;border-radius:8px;font-size:.66rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;text-decoration:none;transition:transform .3s ease,box-shadow .3s ease;box-shadow:0 4px 24px rgba(37,211,102,.4);position:relative;z-index:1;}
.cta-wa-btn:hover{transform:translateY(-3px);box-shadow:0 8px 32px rgba(37,211,102,.52);}
.cta-wa-btn i{font-size:1.1rem;}
.cta-tel-link{display:block;margin-top:1.1rem;font-size:.6rem;color:rgba(255,255,255,.45);text-decoration:none;letter-spacing:.1em;transition:color .3s ease;position:relative;z-index:1;}
.cta-tel-link:hover{color:rgba(255,255,255,.9);}

/* ════════════════════════════════════════
   DISCLAIMER
════════════════════════════════════════ */
.disclaimer{background:var(--blue-sky);border-radius:10px;padding:1.1rem 1.3rem;margin-top:2rem;border-left:3px solid rgba(var(--blue-rgb),.3);}
.disclaimer p{font-size:.67rem;color:var(--blue);line-height:1.8;}
.disclaimer strong{font-weight:700;}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.p-footer{background:var(--text);padding:3.5rem 0 1.5rem;}
.pf-inner{max-width:980px;margin:0 auto;padding:0 2rem;}
.pf-grid{display:grid;grid-template-columns:1.6fr 1fr 1fr;gap:3rem;margin-bottom:2.5rem;}
.pf-logo-name{font-family:var(--f1);font-size:1.5rem;font-weight:400;color:#fff;margin-bottom:.25rem;}
.pf-logo-name em{color:var(--blue-mid);font-style:normal;}
.pf-logo-role{font-size:.42rem;letter-spacing:.28em;text-transform:uppercase;color:rgba(255,255,255,.28);margin-bottom:.6rem;}
.pf-desc{font-size:.66rem;color:rgba(255,255,255,.4);line-height:1.8;}
.pf-col h4{font-size:.5rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;color:rgba(255,255,255,.28);margin-bottom:.9rem;}
.pf-col ul{list-style:none;display:flex;flex-direction:column;gap:.5rem;}
.pf-col ul li a{font-size:.67rem;color:rgba(255,255,255,.45);text-decoration:none;transition:color .3s ease;}
.pf-col ul li a:hover{color:rgba(255,255,255,.9);}
.pf-addr{font-size:.67rem;color:rgba(255,255,255,.42);line-height:1.85;margin-bottom:.8rem;}
.pf-tel{display:inline-flex;align-items:center;gap:.4rem;font-size:.67rem;color:rgba(255,255,255,.42);text-decoration:none;transition:color .3s ease;}
.pf-tel:hover{color:#fff;}
.pf-bottom{border-top:1px solid rgba(255,255,255,.06);padding-top:1.3rem;display:flex;flex-wrap:wrap;justify-content:space-between;gap:.5rem;}
.pf-copy{font-size:.58rem;color:rgba(255,255,255,.22);}
@media(max-width:720px){.pf-grid{grid-template-columns:1fr;gap:2rem;}}

/* ════════════════════════════════════════
   MOBILE CTA BAR
════════════════════════════════════════ */
.mob-cta-bar-p{display:none;position:fixed;bottom:0;left:0;width:100%;z-index:999;background:var(--white);border-top:1px solid rgba(var(--blue-rgb),.1);box-shadow:0 -4px 20px rgba(var(--blue-rgb),.1);}
.mob-cta-inner-p{display:flex;}
.mob-cta-call-p{flex:1;display:flex;align-items:center;justify-content:center;gap:.45rem;padding:.9rem;font-size:.63rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--blue);text-decoration:none;border-right:1px solid rgba(var(--blue-rgb),.1);}
.mob-cta-wa-p{flex:1;display:flex;align-items:center;justify-content:center;gap:.45rem;padding:.9rem;font-size:.63rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:#fff;background:var(--green);text-decoration:none;}
@media(max-width:768px){.mob-cta-bar-p{display:block;}body{padding-bottom:54px;}}

/* ════════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════════ */
.rv{opacity:0;transform:translateY(24px);transition:opacity .85s var(--ease),transform .85s var(--ease);}
.rv.vis{opacity:1;transform:translateY(0);}
.d1{transition-delay:.1s;}.d2{transition-delay:.2s;}.d3{transition-delay:.3s;}

/* ════════════════════════════════════════
   RESPONSIVE MISC
════════════════════════════════════════ */
@media(max-width:640px){
    .hero-inner{padding:5rem 1.4rem 3rem;}
    .container{padding:0 1.2rem;}
    .cta-block{padding:2.5rem 1.4rem;}
}
