

*{box-sizing:border-box;margin:0;padding:0;-webkit-font-smoothing:antialiased;}
body,[lang="ar"],p,h1,h2,h3,h4,li,a,span{letter-spacing:0 !important;word-spacing:normal;}
:root{
  --rose:#C4516E;--rose2:#e8839a;--rose3:#f5c4ce;--rose4:#fdf0f2;
  --plum:#2d1020;--plum2:#4a1a30;--plum3:#7a3a52;
  --gold:#c9a96e;--gold2:#f0ddb0;
  --cream:#fffaf8;--off:#f7eef0;
  --text:#1e0d15;--muted:#7a4f5e;--light:#b08090;
  --dp:'Playfair Display',serif;
  --fn:'Tajawal',sans-serif;
}
html{scroll-behavior:smooth;}
body{font-family:var(--fn);background:var(--cream);color:var(--text);overflow-x:hidden;word-break:break-word;overflow-wrap:break-word;}

/* ─── NAVBAR ─── */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  background:#fff;
  border-bottom:1px solid #ede4e8;
  transition:box-shadow .3s;
}
.nav.up{box-shadow:0 1px 18px rgba(45,16,32,0.07);}

.nav-inner{
  max-width:1200px;margin:0 auto;
  height:68px;padding:0 40px;
  display:flex;align-items:center;
  justify-content:space-between;
}

/* LOGO — center or right on RTL */
.nav-logo{
  display:flex;align-items:center;gap:10px;
  text-decoration:none;flex-shrink:0;
}
.logo-mark{
  width:34px;height:34px;border-radius:9px;
  background:linear-gradient(145deg,var(--plum2),var(--rose));
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.logo-mark svg{width:15px;height:15px;fill:white;}
.logo-name{
  font-family:var(--dp);font-size:22px;font-weight:700;
  font-style:italic;color:var(--plum);letter-spacing:-.01em;
}

/* TAGLINE — next to logo */
.nav-tagline{
  font-size:11px;color:var(--muted);line-height:1.35;
  border-right:1.5px solid #ede4e8;padding-right:16px;margin-right:4px;
  font-family:var(--fn);
}
.nav-tagline strong{display:block;font-size:12px;font-weight:600;color:var(--plum);}

/* NAV LOGO GROUP */
.nav-logo-group{display:flex;align-items:center;gap:0;}

/* CTA — left side */
.nav-cta{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--rose);color:white;
  font-family:var(--fn);font-size:13px;font-weight:700;
  padding:10px 20px;border-radius:6px;text-decoration:none;
  transition:background .2s;white-space:nowrap;flex-shrink:0;
}
.nav-cta:hover{background:var(--plum2);}
.nav-cta svg{width:13px;height:13px;fill:white;flex-shrink:0;}

/* HAMBURGER */
.nav-toggle{
  display:none;flex-direction:column;gap:5px;
  cursor:pointer;padding:6px;background:none;border:none;
}
.nav-toggle span{width:20px;height:1.5px;background:var(--plum);border-radius:2px;transition:all .28s;display:block;}
.nav-toggle.open span:nth-child(1){transform:rotate(45deg) translate(4px,4px);}
.nav-toggle.open span:nth-child(2){opacity:0;}
.nav-toggle.open span:nth-child(3){transform:rotate(-45deg) translate(4px,-4px);}

/* DRAWER */
.nav-drawer{
  display:none;position:fixed;top:69px;right:0;left:0;z-index:998;
  background:#fff;border-bottom:1px solid #ede4e8;
  padding:12px 20px 16px;flex-direction:column;gap:2px;
  box-shadow:0 8px 24px rgba(45,16,32,0.09);
}
.nav-drawer.open{display:flex;}
.nav-drawer .nav-page{
  padding:11px 12px;border:none;border-radius:8px;
  display:flex;align-items:center;gap:8px;
  justify-content:flex-end;font-size:14px;color:var(--muted);
  text-decoration:none;transition:all .2s;
}
.nav-drawer .nav-page:hover{background:#fdf0f2;color:var(--rose);}
.drawer-cta{
  margin-top:10px;background:var(--rose);color:white;
  font-family:var(--fn);font-size:14px;font-weight:700;
  padding:13px;border-radius:8px;text-align:center;text-decoration:none;
}

/* nav-page (hidden on desktop, used in drawer) */
.nav-page{display:flex;align-items:center;gap:6px;font-family:var(--fn);}
.npip{width:6px;height:6px;border-radius:50%;flex-shrink:0;}
.np1 .npip{background:#c8526a;}.np2 .npip{background:#5178c8;}
.np3 .npip{background:#3ba86a;}.np4 .npip{background:#c87035;}
.np5 .npip{background:#6b52c8;}

@media(max-width:900px){
  .nav-inner{padding:0 20px;height:60px;}
  .nav-toggle{display:flex;}
  .nav-cta{display:none;}
  .nav-tagline{display:none;}
  .nav-drawer{top:61px;}
}


/* ─── NAV PAGES ─── */
.nav-links{display:flex;align-items:center;gap:2px;flex:1;justify-content:center;}
.nav-link{display:flex;align-items:center;gap:6px;font-family:var(--fn);font-size:13px;font-weight:500;color:var(--muted);padding:7px 13px;border-radius:6px;text-decoration:none;transition:all .18s;white-space:nowrap;}
.nav-link:hover{color:var(--plum);background:var(--off);}
.nav-link.active{color:var(--rose);background:var(--rose4);font-weight:600;}
.nl-pip{width:6px;height:6px;border-radius:50%;flex-shrink:0;}
@media(max-width:1000px){.nav-links{display:none;}}

/* ─── 3D DROPDOWN ─── */
.nav-item{position:relative;}
.nav-item:hover .megadrop,.nav-item:focus-within .megadrop{opacity:1;visibility:visible;transform:translateX(-50%) perspective(800px) rotateX(0deg);}
.megadrop{
  position:absolute;top:calc(100% + 14px);left:50%;
  transform:translateX(-50%) perspective(800px) rotateX(-8deg);
  width:260px;
  background:linear-gradient(160deg,#2a1020 0%,#1a0a14 100%);
  border:1px solid rgba(196,81,110,0.2);border-radius:18px;
  box-shadow:0 32px 80px rgba(45,16,32,0.4),0 8px 24px rgba(196,81,110,0.12),inset 0 1px 0 rgba(255,255,255,0.07);
  padding:10px;opacity:0;visibility:hidden;
  transition:all .28s cubic-bezier(.34,1.3,.64,1);
  z-index:999;transform-origin:top center;
}
.megadrop::before{content:'';position:absolute;inset:0;border-radius:18px;background:linear-gradient(160deg,rgba(255,255,255,0.05) 0%,transparent 40%);pointer-events:none;}
.megadrop::after{content:'';position:absolute;top:-7px;left:50%;transform:translateX(-50%) rotate(45deg);width:13px;height:13px;background:#2a1020;border-top:1px solid rgba(196,81,110,0.2);border-right:1px solid rgba(196,81,110,0.2);}
.md-top{display:flex;align-items:center;gap:10px;padding:12px 14px;border-radius:12px;background:rgba(196,81,110,0.12);border:1px solid rgba(196,81,110,0.2);text-decoration:none;margin-bottom:6px;transition:all .2s;overflow:hidden;}
.md-top:hover{background:rgba(196,81,110,0.22);border-color:rgba(196,81,110,0.4);}
.md-top-ico{width:32px;height:32px;border-radius:9px;display:flex;align-items:center;justify-content:center;flex-shrink:0;background:rgba(196,81,110,0.18);}
.md-top-ico svg{width:15px;height:15px;fill:none;stroke-width:1.8;stroke-linecap:round;}
.md-top-title{font-size:12px;font-weight:700;color:white;line-height:1.3;}
.md-top-sub{font-size:10px;color:rgba(255,255,255,0.35);margin-top:1px;}
.md-arr{margin-right:auto;width:14px;height:14px;stroke:var(--rose2);fill:none;stroke-width:2;stroke-linecap:round;flex-shrink:0;}
.md-sep{height:1px;background:rgba(255,255,255,0.07);margin:4px 2px 6px;}
.md-item{display:flex;align-items:center;gap:8px;padding:8px 12px;border-radius:9px;font-size:12px;font-weight:500;color:rgba(255,255,255,0.5);text-decoration:none;transition:all .17s;}
.md-item:hover{background:rgba(255,255,255,0.06);color:rgba(255,255,255,0.9);}
.md-dot{width:5px;height:5px;border-radius:50%;flex-shrink:0;}
@media(max-width:1000px){.nav-item .megadrop{display:none;}}

/* ─── HERO ─── */
.hero{
  min-height:calc(100svh - 70px);
  margin-top:68px;
  background:#0f0a10;
  display:flex;flex-direction:column;
  position:relative;
  overflow:visible;
}

/* subtle gradient wash */
.hero-wash{
  position:absolute;inset:0;pointer-events:none;z-index:0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%,rgba(196,81,110,0.1) 0%,transparent 60%),
    radial-gradient(ellipse 50% 60% at 100% 60%,rgba(74,26,48,0.3) 0%,transparent 55%);
}

/* fine dot grid */
.hero-grid{
  position:absolute;inset:0;pointer-events:none;z-index:0;
  background-image:radial-gradient(circle,rgba(255,255,255,0.06) 1px,transparent 1px);
  background-size:36px 36px;
  mask-image:radial-gradient(ellipse 80% 70% at 50% 50%,black 30%,transparent 80%);
  -webkit-mask-image:radial-gradient(ellipse 80% 70% at 50% 50%,black 30%,transparent 80%);
}

/* glowing line top */
.hero-topline{
  position:absolute;top:0;left:50%;transform:translateX(-50%);
  width:300px;height:1px;
  background:linear-gradient(90deg,transparent,rgba(196,81,110,0.5),transparent);
  z-index:1;
}
.hero-topline::after{
  content:'';position:absolute;top:-20px;left:50%;transform:translateX(-50%);
  width:80px;height:40px;
  background:radial-gradient(ellipse,rgba(196,81,110,0.2),transparent 70%);
}

/* main layout */
.hero-body{
  flex:1;display:flex;flex-direction:column;
  align-items:center;justify-content:center;
  text-align:center;
  padding:36px 24px 28px;
  position:relative;z-index:2;
  gap:0;
  width:100%;
}

/* badge */
.h-badge{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(196,81,110,0.08);
  border:1px solid rgba(196,81,110,0.2);
  border-radius:50px;padding:6px 16px 6px 10px;
  margin-bottom:20px;
  opacity:0;animation:hup .6s .05s forwards;
}
.h-badge-dot{
  width:6px;height:6px;border-radius:50%;background:var(--rose);
  animation:pulse 2s infinite;flex-shrink:0;
}
@keyframes pulse{0%,100%{opacity:1;box-shadow:0 0 0 0 rgba(196,81,110,.4)}70%{opacity:.8;box-shadow:0 0 0 6px rgba(196,81,110,0)}}
.h-badge span{font-size:11px;font-weight:600;color:rgba(255,255,255,0.45);letter-spacing:.12em;text-transform:uppercase;}

/* headline */
.hero-h1{
  font-family:var(--dp);
  font-size:clamp(44px,7.5vw,96px);
  font-weight:700;line-height:1.06;
  letter-spacing:-.03em;
  margin-bottom:0;
}
.h-w1{display:block;color:white;opacity:0;animation:hup .6s .15s forwards;}
.h-w2{display:block;color:var(--rose);font-style:italic;opacity:0;animation:hup .6s .25s forwards;}

/* sub */
.hero-sub{
  font-size:clamp(15px,2vw,18px);
  color:rgba(255,255,255,0.35);
  line-height:1.7;max-width:500px;
  margin:24px auto 40px;
  opacity:0;animation:hup .6s .35s forwards;
}

/* stats strip */
.h-strip{
  display:flex;align-items:center;
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.07);
  border-radius:14px;overflow:hidden;
  margin-bottom:40px;
  opacity:0;animation:hup .6s .45s forwards;
}
.h-strip-item{
  padding:16px 28px;text-align:center;
  border-left:1px solid rgba(255,255,255,0.06);
}
.h-strip-item:first-child{border:none;}
.h-sn{
  font-family:var(--dp);font-size:28px;font-weight:700;
  font-style:italic;color:white;line-height:1;
}
.h-sn sup{color:var(--rose);font-size:.5em;font-style:normal;vertical-align:super;}
.h-sl{font-size:10px;color:rgba(255,255,255,0.45);margin-top:4px;letter-spacing:0;}

/* topic pills */
.h-pills{
  display:flex;flex-wrap:wrap;justify-content:center;gap:8px;
  margin-bottom:44px;
  opacity:0;animation:hup .6s .55s forwards;
}
.h-pill{
  display:flex;align-items:center;gap:6px;
  font-size:12px;font-weight:500;color:rgba(255,255,255,0.35);
  padding:7px 16px;border-radius:50px;
  border:1px solid rgba(255,255,255,0.07);
  transition:all .2s;cursor:default;
}
.h-pill:hover{
  border-color:rgba(196,81,110,0.3);
  color:rgba(255,255,255,0.7);
  background:rgba(196,81,110,0.07);
}
.h-pdot{width:5px;height:5px;border-radius:50%;flex-shrink:0;}

/* scroll cue */
.h-scrl{
  display:flex;flex-direction:column;align-items:center;gap:8px;
  opacity:0;animation:hup .6s .65s forwards;
  cursor:pointer;
}
.h-scrl-lbl{font-size:10px;color:rgba(255,255,255,0.18);letter-spacing:.16em;text-transform:uppercase;}
.h-scrl-ico{
  width:36px;height:36px;border-radius:50%;
  border:1px solid rgba(255,255,255,0.1);
  display:flex;align-items:center;justify-content:center;
  animation:bob 2.5s ease-in-out infinite;
}
.h-scrl-ico svg{stroke:rgba(255,255,255,0.25);fill:none;stroke-width:1.8;stroke-linecap:round;width:14px;height:14px;}
@keyframes bob{0%,100%{transform:translateY(0)}50%{transform:translateY(6px)}}

/* bottom glow */
.hero-botglow{
  position:absolute;bottom:-80px;left:50%;transform:translateX(-50%);
  width:600px;height:200px;
  background:radial-gradient(ellipse,rgba(196,81,110,0.08),transparent 65%);
  pointer-events:none;z-index:1;
}

/* MARQUEE */
.hero-marquee{
  position:relative;z-index:3;
  background:rgba(196,81,110,0.06);
  border-top:1px solid rgba(196,81,110,0.1);
  overflow:hidden;height:36px;display:flex;align-items:center;
}
.mq-track{display:flex;align-items:center;gap:24px;white-space:nowrap;animation:marquee 28s linear infinite;width:max-content;}
.mq-track span{font-size:10px;color:rgba(255,255,255,0.2);letter-spacing:.1em;text-transform:uppercase;}
.mq-sep{color:var(--rose) !important;font-size:6px !important;opacity:.4;}
@keyframes marquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}

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

@media(max-width:600px){
  .hero{margin-top:60px;}
  .hero-body{padding:40px 16px 32px;}
  .h-strip-item{padding:12px 16px;}
  .h-sn{font-size:22px;}
  .hero-h1{font-size:clamp(38px,13vw,56px);}
  .hero-sub{font-size:14px;}
}

/* ─── SECTION WRAPPER ─── */
.section{padding:96px 5vw;position:relative;}
.section-inner{max-width:1200px;margin:0 auto;}
.sec-label{
  display:inline-flex;align-items:center;gap:8px;
  font-size:11px;font-weight:700;color:var(--rose);
  letter-spacing:.15em;text-transform:uppercase;margin-bottom:16px;
}
.sec-label::before{content:'';width:28px;height:1.5px;background:var(--rose);}
.sec-h2{font-family:var(--dp);font-size:clamp(28px,3vw,44px);font-weight:700;color:var(--plum);line-height:1.25;margin-bottom:14px;}
.sec-h2 em{font-style:italic;color:var(--rose);}
.sec-desc{font-size:16px;color:var(--muted);line-height:1.8;max-width:560px;}

/* ─── TOPICS SECTION ─── */
.topics-bg{background:var(--off);}
.topics-head{display:flex;justify-content:space-between;align-items:flex-end;flex-wrap:wrap;gap:24px;margin-bottom:52px;}
.topics-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;align-items:stretch;}

.topic-card{
  background:#ffffff;border-radius:24px;padding:32px 28px;
  border:1px solid rgba(196,81,110,0.12);
  box-shadow:0 4px 24px rgba(45,16,32,0.06);
  transition:all .3s cubic-bezier(.34,1.56,.64,1);
  cursor:pointer;text-decoration:none;
  display:flex;flex-direction:column;
  position:relative;overflow:hidden;
  opacity:1 !important;transform:none !important;
  visibility:visible !important;
}
.topic-card::after{
  content:'';position:absolute;inset:0;border-radius:24px;
  background:linear-gradient(135deg,transparent 60%,rgba(196,81,110,0.03));
  opacity:0;transition:opacity .3s;
}
.topic-card:hover{transform:translateY(-5px) !important;box-shadow:0 20px 50px rgba(45,16,32,0.12),0 0 0 1px rgba(196,81,110,0.15);}
.topic-card:hover::after{opacity:1;}

.topic-card.surgery{background:linear-gradient(145deg,#1a0a14,#2d1020);border-color:rgba(196,81,110,0.3);}

.t-icon{
  width:60px;height:60px;border-radius:18px;
  display:flex;align-items:center;justify-content:center;margin-bottom:22px;
  transition:transform .3s;
}
.topic-card:hover .t-icon{transform:scale(1.08) rotate(-3deg);}
.ti1{background:#fef0f3;} .ti2{background:#f0f4fe;} .ti3{background:#f2fef5;} .ti4{background:#fff6f0;} .ti5{background:#f3f0fe;} .ti6{background:rgba(196,81,110,0.12);}
.t-icon svg{width:28px;height:28px;fill:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;}
.ti1 svg{stroke:#c8526a;} .ti2 svg{stroke:#5178c8;} .ti3 svg{stroke:#3ba86a;} .ti4 svg{stroke:#c87035;} .ti5 svg{stroke:#6b52c8;} .ti6 svg{stroke:#e8839a;}

.t-name{font-size:17px;font-weight:700;color:var(--plum);margin-bottom:8px;line-height:1.35;}
.surgery .t-name{color:white;}
.t-fr{font-family:var(--dp);font-style:italic;font-size:12px;color:var(--rose2);margin-bottom:14px;}
.surgery .t-fr{color:var(--rose2);}
.t-desc{font-size:13px;color:var(--muted);line-height:1.7;flex:1;}
.surgery .t-desc{color:rgba(255,255,255,0.55);}
.t-arrow{
  display:inline-flex;align-items:center;gap:6px;
  margin-top:auto;padding-top:20px;font-size:12px;font-weight:700;color:var(--rose);
}
.surgery .t-arrow{color:var(--rose2);}
.t-arrow svg{width:14px;height:14px;stroke:var(--rose);fill:none;stroke-width:2.5;transition:transform .2s;}
.surgery .t-arrow svg{stroke:var(--rose2);}
.topic-card:hover .t-arrow svg{transform:translateX(-4px);}

/* ─── HOW IT WORKS ─── */
.how-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;margin-top:56px;}
.steps{display:flex;flex-direction:column;gap:0;}
.step{display:flex;gap:20px;align-items:flex-start;padding:24px 0;border-bottom:1px solid rgba(196,81,110,0.1);position:relative;}
.step:last-child{border:none;}
.step-num{
  width:44px;height:44px;border-radius:14px;flex-shrink:0;
  background:linear-gradient(135deg,var(--plum2),var(--rose));
  display:flex;align-items:center;justify-content:center;
  font-family:var(--dp);font-size:18px;font-weight:700;color:white;
  box-shadow:0 4px 16px rgba(196,81,110,0.3);
}
.step-body h4{font-size:16px;font-weight:700;color:var(--plum);margin-bottom:6px;}
.step-body p{font-size:14px;color:var(--muted);line-height:1.7;}
.how-visual{
  background:linear-gradient(145deg,var(--plum2),var(--plum));
  border-radius:32px;padding:44px 36px;
  box-shadow:0 32px 80px rgba(45,16,32,0.25);
  position:relative;overflow:hidden;
}
.how-visual::before{
  content:'';position:absolute;
  width:300px;height:300px;border-radius:50%;
  background:radial-gradient(circle,rgba(196,81,110,0.2),transparent 70%);
  top:-80px;right:-80px;
}
.hv-title{font-family:var(--dp);font-size:13px;font-weight:400;font-style:italic;color:rgba(255,255,255,0.5);margin-bottom:28px;}
.hv-claim{font-family:var(--dp);font-size:clamp(24px,2.5vw,34px);font-weight:700;color:white;line-height:1.3;margin-bottom:32px;}
.hv-claim em{font-style:italic;color:var(--rose2);}
.hv-badges{display:flex;flex-direction:column;gap:12px;}
.hv-badge{
  display:flex;align-items:center;gap:14px;
  background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.1);
  border-radius:14px;padding:14px 16px;
}
.hv-badge-icon{width:36px;height:36px;border-radius:10px;background:rgba(196,81,110,0.2);display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.hv-badge-icon svg{width:18px;height:18px;stroke:var(--rose2);fill:none;stroke-width:1.8;}
.hv-badge-text{font-size:14px;font-weight:600;color:white;line-height:1.4;}
.hv-badge-sub{font-size:11px;color:rgba(255,255,255,0.45);margin-top:2px;}

/* ─── TESTIMONIALS ─── */
.testi-bg{background:linear-gradient(170deg,var(--plum) 0%,var(--plum2) 100%);overflow:hidden;position:relative;}
.testi-bg::before{
  content:'';position:absolute;inset:0;
  background:
    radial-gradient(ellipse 50% 60% at 10% 50%,rgba(196,81,110,0.12),transparent),
    radial-gradient(ellipse 40% 50% at 90% 30%,rgba(201,169,110,0.08),transparent);
}
.testi-head{text-align:center;margin-bottom:56px;position:relative;z-index:2;}
.testi-head .sec-label{justify-content:center;}
.testi-head .sec-label::before{display:none;}
.testi-head .sec-h2{color:white;}
.testi-head .sec-desc{color:rgba(255,255,255,0.6);margin:0 auto;}

.testi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;position:relative;z-index:2;}
.testi-card{
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:24px;padding:28px;
  backdrop-filter:blur(10px);
  transition:all .3s;
}
.testi-card:hover{background:rgba(255,255,255,0.1);transform:translateY(-4px);}
.testi-card.featured{
  background:linear-gradient(145deg,rgba(196,81,110,0.2),rgba(255,255,255,0.06));
  border-color:rgba(196,81,110,0.35);
  grid-column:1/-1;display:grid;grid-template-columns:1fr 1fr;gap:32px;align-items:center;
}
.stars{display:flex;gap:3px;margin-bottom:16px;}
.star{width:14px;height:14px;fill:var(--gold);color:var(--gold);}
.testi-text{font-size:15px;color:rgba(255,255,255,0.85);line-height:1.8;margin-bottom:20px;font-style:italic;}
.testi-card.featured .testi-text{font-size:20px;font-family:var(--dp);font-weight:400;}
.testi-author{display:flex;align-items:center;gap:12px;}
.t-avatar{
  width:42px;height:42px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-family:var(--dp);font-size:16px;font-weight:700;color:white;flex-shrink:0;
}
.av1{background:linear-gradient(135deg,#c8526a,#8b3a52);}
.av2{background:linear-gradient(135deg,#5178c8,#2a4a8b);}
.av3{background:linear-gradient(135deg,#3ba86a,#1a6a3a);}
.av4{background:linear-gradient(135deg,#c87035,#8b4a1a);}
.t-name-block .t-nm{font-size:14px;font-weight:700;color:white;}
.t-name-block .t-city{font-size:12px;color:rgba(255,255,255,0.45);}
.testi-tag{
  background:rgba(196,81,110,0.15);border:1px solid rgba(196,81,110,0.25);
  color:var(--rose2);font-size:11px;font-weight:700;
  padding:6px 14px;border-radius:50px;margin-bottom:20px;display:inline-block;
}
.testi-card.featured .testi-visual{
  display:flex;align-items:center;justify-content:center;
}
.big-quote{
  font-family:var(--dp);font-size:140px;line-height:1;
  color:rgba(196,81,110,0.15);text-align:center;
  animation:float 5s ease-in-out infinite;
}

/* ─── SURGERY WARNING ─── */
.surgery-section{background:var(--cream);}
.surgery-inner{
  background:linear-gradient(150deg,var(--plum) 0%,#5a1a2e 100%);
  border-radius:32px;padding:60px 56px;
  display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center;
  box-shadow:0 40px 100px rgba(45,16,32,0.2);
  overflow:hidden;position:relative;
}
.surgery-inner::before{
  content:'';position:absolute;
  width:400px;height:400px;border-radius:50%;
  background:radial-gradient(circle,rgba(196,81,110,0.15),transparent 70%);
  top:-100px;left:-100px;pointer-events:none;
}
.surg-label{font-size:11px;font-weight:700;color:var(--rose2);letter-spacing:.15em;text-transform:uppercase;margin-bottom:16px;}
.surg-title{font-family:var(--dp);font-size:clamp(26px,2.5vw,38px);font-weight:700;color:white;line-height:1.25;margin-bottom:20px;}
.surg-title em{font-style:italic;color:var(--rose2);}
.surg-sub{font-size:15px;color:rgba(255,255,255,0.6);line-height:1.8;margin-bottom:32px;}
.surg-risks{display:flex;flex-direction:column;gap:12px;}
.risk-item{
  display:flex;align-items:center;gap:12px;
  background:rgba(255,255,255,0.05);border:1px solid rgba(255,80,80,0.2);
  border-radius:12px;padding:12px 16px;
}
.risk-icon{font-size:18px;flex-shrink:0;}
.risk-text{font-size:14px;color:rgba(255,255,255,0.75);line-height:1.5;}
.risk-text strong{color:white;}
.vs-box{
  background:rgba(255,255,255,0.05);border:1px solid rgba(255,255,255,0.12);
  border-radius:20px;padding:28px;
}
.vs-box h4{font-family:var(--dp);font-size:18px;font-weight:700;color:white;margin-bottom:20px;font-style:italic;}
.vs-row{
  display:flex;gap:12px;margin-bottom:12px;
}
.vs-col{
  flex:1;border-radius:14px;padding:16px;text-align:center;
}
.vs-op{background:rgba(255,60,60,0.08);border:1px solid rgba(255,80,80,0.2);}
.vs-nov{background:rgba(196,81,110,0.12);border:1px solid rgba(196,81,110,0.25);}
.vs-col-label{font-size:11px;font-weight:700;margin-bottom:10px;letter-spacing:0;}
.vs-op .vs-col-label{color:rgba(255,120,120,0.9);}
.vs-nov .vs-col-label{color:var(--rose2);}
.vs-item{font-size:13px;line-height:1.9;}
.vs-op .vs-item{color:rgba(255,150,150,0.7);}
.vs-nov .vs-item{color:rgba(255,255,255,0.8);font-weight:500;}
.vs-cta{
  display:block;background:white;color:var(--plum);
  font-family:var(--fn);font-size:14px;font-weight:700;
  padding:14px;border-radius:14px;text-align:center;
  text-decoration:none;margin-top:20px;
  transition:all .25s;
  box-shadow:0 4px 20px rgba(0,0,0,0.2);
}
.vs-cta:hover{background:var(--rose4);color:var(--rose);}

/* ─── FOOTER ─── */
.footer{background:var(--plum);padding:72px 5vw 40px;}
.footer-grid{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:1fr;gap:48px;padding-bottom:48px;border-bottom:1px solid rgba(255,255,255,0.08);}
.footer-brand .logo-text{color:white;font-size:20px;margin-bottom:16px;display:block;}
.footer-brand p{font-size:14px;color:rgba(255,255,255,0.45);line-height:1.8;max-width:280px;}
.f-social{display:flex;gap:10px;margin-top:24px;}
.f-soc-btn{
  width:38px;height:38px;border-radius:10px;
  background:rgba(255,255,255,0.07);border:1px solid rgba(255,255,255,0.1);
  display:flex;align-items:center;justify-content:center;
  transition:all .2s;cursor:pointer;text-decoration:none;
}
.f-soc-btn:hover{background:rgba(196,81,110,0.2);border-color:rgba(196,81,110,0.3);}
.f-soc-btn svg{width:16px;height:16px;fill:rgba(255,255,255,0.6);}

.footer-col h5{font-size:12px;font-weight:700;color:rgba(255,255,255,0.35);letter-spacing:.12em;text-transform:uppercase;margin-bottom:20px;}
.footer-col a{display:flex;align-items:center;gap:8px;font-size:14px;color:rgba(255,255,255,0.55);text-decoration:none;padding:5px 0;transition:color .2s;}
.footer-col a:hover{color:var(--rose2);}
.footer-col .fclink-dot{width:5px;height:5px;border-radius:50%;flex-shrink:0;}

.footer-newsletter{background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.08);border-radius:18px;padding:24px;}
.footer-newsletter h5{font-size:14px;font-weight:700;color:white;margin-bottom:8px;}
.footer-newsletter p{font-size:12px;color:rgba(255,255,255,0.4);margin-bottom:18px;line-height:1.6;}
.f-input-wrap{display:flex;flex-direction:column;gap:8px;}
.f-input{
  background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.12);
  border-radius:10px;padding:11px 14px;
  font-family:var(--fn);font-size:13px;color:white;outline:none;
  transition:border-color .2s;
  direction:rtl;text-align:right;
}
.f-input::placeholder{color:rgba(255,255,255,0.45);}
.f-input:focus{border-color:rgba(196,81,110,0.4);}
.f-sub-btn{
  background:linear-gradient(135deg,var(--plum2),var(--rose));
  color:white;font-family:var(--fn);font-size:13px;font-weight:700;
  padding:11px;border-radius:10px;border:none;cursor:pointer;
  transition:all .2s;display:flex;align-items:center;justify-content:center;gap:8px;
}
.f-sub-btn:hover{opacity:.9;transform:translateY(-1px);}
.wa-btn{background:linear-gradient(135deg,#1db954,#128c7e) !important;}
.wa-btn:hover{box-shadow:0 4px 20px rgba(18,140,126,0.4) !important;}

.footer-bottom{max-width:1200px;margin:0 auto;padding-top:28px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px;}
.footer-bottom p{font-size:12px;color:rgba(255,255,255,0.45);}
.f-legal{display:flex;gap:20px;}
.f-legal a{font-size:12px;color:rgba(255,255,255,0.45);text-decoration:none;transition:color .2s;}
.f-legal a:hover{color:rgba(255,255,255,0.5);}

/* ─── SCROLL ANIM ─── */
.reveal{opacity:0;transform:translateY(28px);transition:opacity .6s ease,transform .6s ease;}
.reveal.visible{opacity:1;transform:translateY(0);}

/* ─── RESPONSIVE ─── */

/* ── TABLET 900px ── */
@media(max-width:900px){
  /* nav */
  .nav{padding:0 20px;height:60px;}
  .nav-pages{display:none;}
  .logo-name{font-size:20px;}

  /* hero */
  .hero{height:auto;max-height:none;min-height:auto;margin-top:60px;}
  .hero-wrap{grid-template-columns:1fr;padding:32px 20px 0;gap:24px;}
  .hero-r{padding:16px 0 0;}
  .h-visual{width:220px;height:220px;}
  .h-big-n{font-size:50px;}
  .h-r2,.h-r3{font-size:clamp(32px,10vw,46px);}
  .hb2,.hb4{display:none;}

  /* topics */
  .topics-grid{grid-template-columns:1fr 1fr;gap:14px;}
  .topic-card{padding:26px 22px;}
  .topic-card.surgery{grid-column:span 2;}

  /* how */
  .how-grid{grid-template-columns:1fr;gap:40px;}

  /* testimonials */
  .testi-grid{grid-template-columns:1fr;}
  .testi-card.featured{grid-column:auto;grid-template-columns:1fr;}
  .testi-card.featured .testi-visual{display:none;}

  /* surgery */
  .surgery-inner{grid-template-columns:1fr;padding:32px 24px;gap:32px;}

  /* footer */
  .footer{padding:48px 5vw 32px;}
  .footer-grid{grid-template-columns:1fr;gap:40px;}
  .footer-bottom{flex-direction:column;text-align:center;gap:16px;}
}

/* ── MOBILE 600px ── */
@media(max-width:600px){
  /* nav */
  .nav{padding:0 16px;height:56px;}
  .nav-cta{font-size:12px;padding:8px 14px;}

  /* hero */
  .hero{margin-top:56px;}
  .hero-wrap{padding:24px 16px 0;}
  .h-visual{width:180px;height:180px;}
  .h-big-n{font-size:40px;}
  .h-r2,.h-r3{font-size:clamp(28px,12vw,40px);}
  .hb1,.hb3{font-size:10px;padding:5px 10px;}

  /* section padding */
  .section{padding:56px 16px;}

  /* topics */
  .topics-grid{grid-template-columns:1fr !important;gap:12px;}
  .topic-card{padding:22px 18px;border-radius:18px;}
  .topic-card.surgery{grid-column:auto !important;}
  .t-name{font-size:16px;}
  .t-desc{font-size:13px;}

  /* how */
  .how-visual{padding:28px 20px;border-radius:20px;}
  .hv-claim{font-size:22px;}
  .step{padding:18px 0;}

  /* testimonials */
  .testi-head{margin-bottom:32px;}
  .testi-card{padding:20px;}
  .testi-card.featured{padding:20px;}

  /* surgery */
  .surgery-inner{padding:24px 16px;border-radius:20px;}
  .surg-title{font-size:24px;}
  .surg-sub{font-size:14px;}
  .vs-row{flex-direction:column;gap:8px;}
  .vs-col{padding:12px;}

  /* footer */
  .footer{padding:40px 16px 24px;}
  .footer-grid{grid-template-columns:1fr;gap:32px;}
  .f-legal{flex-direction:column;align-items:center;gap:10px;}

  /* marquee */
  .mq-track span{font-size:10px;}
}

/* ── FORCE 1COL TOPICS 700px ── */
@media(max-width:700px){
  .topics-grid{grid-template-columns:1fr !important;}
  .topic-card.surgery{grid-column:auto !important;}
  .topics-head{flex-direction:column;align-items:flex-start;}
}

/* ── SMALL MOBILE 380px ── */
@media(max-width:380px){
  .hero h1{font-size:26px;}
  .hsm-num{font-size:48px;}
  .nav-cta{font-size:11px;padding:7px 12px;}
  .logo-name{font-size:18px;}
}

/* ── MOBILE NAV DRAWER ── */
.nav-toggle{
  display:none;
  flex-direction:column;gap:5px;
  cursor:pointer;padding:8px;background:none;border:none;
}
.nav-toggle span{
  width:22px;height:2px;background:var(--plum);border-radius:2px;
  transition:all .3s;display:block;
}
.nav-toggle.open span:nth-child(1){transform:rotate(45deg) translate(5px,5px);}
.nav-toggle.open span:nth-child(2){opacity:0;}
.nav-toggle.open span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px);}

.nav-drawer{
  display:none;
  position:fixed;top:106px;right:0;left:0;z-index:999;
  background:rgba(255,250,248,0.97);
  backdrop-filter:blur(20px);
  border-bottom:1px solid rgba(196,81,110,0.12);
  padding:16px 20px 20px;
  flex-direction:column;gap:4px;
  box-shadow:0 16px 40px rgba(45,16,32,0.1);
}
.nav-drawer.open{display:flex;}
.nav-drawer .nav-page{
  padding:12px 16px;border-radius:10px;
  font-size:14px;border:none;
  justify-content:flex-start;
}
.drawer-cta{
  margin-top:8px;
  background:linear-gradient(135deg,var(--plum2),var(--rose));
  color:white;font-family:var(--fn);font-size:14px;font-weight:700;
  padding:14px;border-radius:12px;text-align:center;
  text-decoration:none;display:block;
}

@media(max-width:900px){
  .nav-toggle{display:flex;}
  .nav-cta{display:none;}
}


.fn-badge{
  display:inline-block;
  background:linear-gradient(135deg,var(--rose),var(--plum2));
  color:white;font-size:10px;font-weight:700;
  padding:3px 10px;border-radius:50px;
  letter-spacing:.1em;margin-bottom:10px;
}
.footer-newsletter h5{
  font-size:15px !important;font-weight:700 !important;
  color:white !important;margin-bottom:8px !important;
  text-transform:none !important;letter-spacing:0 !important;
}
.fn-trust{
  font-size:11px;color:rgba(255,255,255,0.45);
  margin-top:10px;text-align:center;
}

.f-select{
  appearance:none;-webkit-appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:left 14px center;
  cursor:pointer;
  color:rgba(255,255,255,0.45);
}
.f-select option{background:#3d2030;color:white;}
.f-select:valid{color:white;}

/* ─── FOOTER REBUILD ─── */
.footer{background:var(--plum);padding:72px 5vw 0;}
.footer-top-grid{
  display:grid;
  grid-template-columns:1.6fr 1fr 1fr 1fr;
  gap:56px;
  padding-bottom:64px;
  border-bottom:1px solid rgba(255,255,255,0.08);
  align-items:start;
}
.footer-logo{
  font-family:var(--dp);font-size:30px;font-weight:700;
  font-style:italic;color:white;margin-bottom:18px;
  letter-spacing:-.01em;
}
.footer-brand-desc{
  font-size:14px;color:rgba(255,255,255,0.5);
  line-height:1.85;margin-bottom:24px;max-width:300px;
}
.footer-contact{display:flex;flex-direction:column;gap:10px;margin-bottom:24px;width:fit-content;}
.footer-contact-item{
  display:flex;align-items:center;gap:10px;
  font-size:13px;color:rgba(255,255,255,0.5);
  text-decoration:none;transition:color .2s;
}
.footer-contact-item:hover{color:white;}
.footer-socials{display:flex;gap:10px;}
.fsoc{
  width:38px;height:38px;border-radius:10px;
  background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.1);
  display:flex;align-items:center;justify-content:center;
  color:rgba(255,255,255,0.5);
  text-decoration:none;transition:all .2s;
}
.fsoc:hover{background:rgba(196,81,110,0.2);border-color:rgba(196,81,110,0.35);color:var(--rose2);}
.fsoc svg{width:16px;height:16px;}

.footer-col-title{
  font-size:11px;font-weight:700;
  color:rgba(255,255,255,0.4);
  letter-spacing:.18em;text-transform:uppercase;
  margin-bottom:20px;padding-bottom:12px;
  border-bottom:1px solid rgba(255,255,255,0.07);
}
.footer-link-col ul{list-style:none;display:flex;flex-direction:column;gap:0;}
.footer-link-col ul li a{
  font-size:14px;color:rgba(255,255,255,0.55);
  text-decoration:none;padding:7px 0;display:block;
  border-bottom:1px solid rgba(255,255,255,0.04);
  transition:all .2s;
}
.footer-link-col ul li a:hover{color:white;padding-right:4px;}
.footer-link-col ul li:last-child a{border:none;}

.footer-divider{height:1px;background:rgba(255,255,255,0.07);margin:0;}
.footer-bottom-row{
  display:flex;align-items:center;justify-content:space-between;
  flex-wrap:wrap;gap:12px;
  padding:22px 0;
}
.footer-bottom-row p{font-size:13px;color:rgba(255,255,255,0.45);}
.footer-bottom-note{font-size:12px;color:rgba(255,255,255,0.18);font-style:italic;}

@media(max-width:900px){
  .footer{padding:56px 5vw 0;}
  .footer-top-grid{grid-template-columns:1fr 1fr;gap:36px;}
  .footer-brand-col{grid-column:span 2;}
}
@media(max-width:500px){
  .footer-top-grid{grid-template-columns:1fr 1fr;}
  .footer-brand-col{grid-column:span 2;}
  .footer{padding:48px 20px 0;}
  .footer-bottom-row{flex-direction:column;text-align:center;}
  .footer-link-col ul li a{font-size:13px;}
}


@media(max-width:700px){
  #pain-points [style*="grid-template-columns:repeat(3,1fr)"]{
    display:grid !important;
    grid-template-columns:1fr !important;
  }
}
@media(max-width:900px){
  #pain-points [style*="grid-template-columns:repeat(3,1fr)"]{
    grid-template-columns:1fr 1fr !important;
  }
}


/* ─── EXPERT TEAM ─── */
.expert-section{background:white;padding:60px 5vw;border-top:1px solid var(--line);border-bottom:1px solid var(--line);}
.expert-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin-top:40px;}
.expert-card{background:var(--off);border:1px solid var(--line);border-radius:20px;padding:28px 20px;text-align:center;}
.expert-av{width:80px;height:80px;border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 14px;box-shadow:0 6px 24px rgba(196,81,110,0.2);}
.expert-av svg{fill:white;opacity:.9;}
.expert-role{font-size:10px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;margin-bottom:6px;}
.expert-name{font-family:var(--dp);font-size:16px;font-weight:700;color:var(--plum);margin-bottom:6px;}
.expert-desc{font-size:12px;color:var(--muted);line-height:1.6;}
.expert-tags{display:flex;flex-wrap:wrap;justify-content:center;gap:10px;margin-top:28px;}
.expert-tag{display:flex;align-items:center;gap:6px;font-size:12px;font-weight:600;color:var(--plum);background:white;border:1px solid var(--line);border-radius:50px;padding:6px 14px;}
.expert-tag svg{stroke:var(--rose);fill:none;stroke-width:2;stroke-linecap:round;}
@media(max-width:860px){.expert-grid{grid-template-columns:1fr 1fr;}}
@media(max-width:480px){.expert-grid{grid-template-columns:1fr 1fr;gap:12px;}.expert-section{padding:48px 20px;}}


/* ─── BLOG SECTION ─── */
.blog-section{background:var(--plum);padding:88px 5vw;position:relative;overflow:hidden;}
.blog-section::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 60% 50% at 30% 50%,rgba(196,81,110,0.1),transparent 60%);pointer-events:none;}
.blog-inner{max-width:1200px;margin:0 auto;position:relative;z-index:2;}
.blog-header{display:flex;align-items:flex-end;justify-content:space-between;margin-bottom:40px;flex-wrap:wrap;gap:16px;}
.blog-view-all{display:inline-flex;align-items:center;gap:6px;font-size:13px;font-weight:600;color:rgba(255,255,255,0.4);text-decoration:none;border:1px solid rgba(255,255,255,0.12);border-radius:50px;padding:8px 18px;transition:all .2s;}
.blog-view-all:hover{color:white;border-color:rgba(196,81,110,0.4);}
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;align-items:stretch;}
.blog-card{background:rgba(255,255,255,0.05);border:1px solid rgba(255,255,255,0.09);border-radius:20px;overflow:hidden;transition:all .28s;text-decoration:none;display:flex;flex-direction:column;}
.blog-card:hover{transform:translateY(-5px);box-shadow:0 20px 50px rgba(0,0,0,0.25);border-color:rgba(196,81,110,0.3);background:rgba(255,255,255,0.08);}
.blog-color-bar{height:3px;}
.blog-cat-bar{padding:18px 20px 0;}
.blog-cat{display:inline-flex;align-items:center;gap:5px;font-size:10px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;border-radius:50px;padding:4px 12px;}
.blog-body{padding:14px 20px 20px;flex:1;display:flex;flex-direction:column;}
.blog-title{font-family:var(--dp);font-size:16px;font-weight:700;color:rgba(255,255,255,0.9);line-height:1.4;margin-bottom:10px;}
.blog-card:hover .blog-title{color:white;}
.blog-desc{font-size:13px;color:rgba(255,255,255,0.4);line-height:1.7;margin-bottom:16px;flex:1;}
.blog-footer{display:flex;align-items:center;justify-content:space-between;padding-top:14px;border-top:1px solid rgba(255,255,255,0.07);margin-top:auto;}
.blog-time{font-size:11px;color:rgba(255,255,255,0.45);}
.blog-read{display:inline-flex;align-items:center;gap:5px;font-size:12px;font-weight:700;padding:6px 14px;border-radius:50px;transition:all .2s;}
.blog-read svg{width:11px;height:11px;fill:none;stroke-width:2.5;stroke-linecap:round;}
@media(max-width:860px){.blog-grid{grid-template-columns:1fr 1fr;}}
@media(max-width:560px){.blog-grid{grid-template-columns:1fr;}.blog-section{padding:56px 20px;}}


.f-err{font-size:11px;color:#e53935;margin-top:4px;padding-right:4px;display:block;min-height:16px;}


/* ══════ PREMIUM UPGRADES ══════ */

/* ── Glassmorphism Navbar ── */
#navbar{
  background:rgba(255,255,255,0.72) !important;
  backdrop-filter:blur(20px) saturate(1.8) !important;
  -webkit-backdrop-filter:blur(20px) saturate(1.8) !important;
  border-bottom:1px solid rgba(196,81,110,0.1) !important;
  box-shadow:0 1px 0 rgba(255,255,255,0.8),0 4px 24px rgba(45,16,32,0.06) !important;
}
#navbar.up{
  background:rgba(255,255,255,0.88) !important;
}
.nav-logo{color:var(--plum) !important;}

/* ── White space between sections ── */
.section{padding:96px 5vw !important;}
.how-section, .topics-bg{padding:96px 5vw !important;}
#pain-points{padding:96px 5vw !important;}
.blog-section{padding:96px 5vw !important;}
.expert-section{padding:80px 5vw !important;}
.wa-section{padding:96px 5vw !important;}

/* ── 3D Soft Shadows on cards ── */
.topic-card{
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06),
    0 4px 8px rgba(45,16,32,0.06),
    0 16px 32px rgba(45,16,32,0.06),
    0 40px 80px rgba(45,16,32,0.04) !important;
  transition:transform .3s cubic-bezier(.34,1.3,.64,1),box-shadow .3s !important;
}
.topic-card:hover{
  transform:translateY(-8px) scale(1.01) !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08),
    0 8px 16px rgba(45,16,32,0.08),
    0 24px 48px rgba(196,81,110,0.1),
    0 60px 100px rgba(45,16,32,0.08) !important;
}

/* ── 3D Button effect ── */
.nav-cta, .hero-cta-btn{
  box-shadow:
    0 1px 0 rgba(255,255,255,0.25) inset,
    0 -1px 0 rgba(0,0,0,0.15) inset,
    0 4px 12px rgba(196,81,110,0.3),
    0 8px 24px rgba(196,81,110,0.15) !important;
  transition:all .22s cubic-bezier(.34,1.3,.64,1) !important;
}
.nav-cta:hover, .hero-cta-btn:hover{
  transform:translateY(-2px) !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.25) inset,
    0 -1px 0 rgba(0,0,0,0.15) inset,
    0 8px 20px rgba(196,81,110,0.4),
    0 16px 40px rgba(196,81,110,0.2) !important;
}
.nav-cta:active, .hero-cta-btn:active{
  transform:translateY(1px) !important;
  box-shadow:0 2px 8px rgba(196,81,110,0.2) !important;
}

/* ── Glassmorphism blog cards ── */
.blog-card{
  backdrop-filter:blur(8px) !important;
  -webkit-backdrop-filter:blur(8px) !important;
}

/* ── Micro interactions ── */
.topic-card .t-arrow{transition:transform .22s cubic-bezier(.34,1.5,.64,1) !important;}
.topic-card:hover .t-arrow{transform:translateX(-6px) !important;}

.blog-read{transition:all .22s cubic-bezier(.34,1.3,.64,1) !important;}
.blog-card:hover .blog-read{transform:translateX(-3px) !important;}

.fsoc{transition:all .22s cubic-bezier(.34,1.5,.64,1) !important;}
.fsoc:hover{transform:translateY(-3px) scale(1.1) !important;}

.expert-card{transition:transform .3s cubic-bezier(.34,1.3,.64,1),box-shadow .3s !important;}
.expert-card:hover{transform:translateY(-6px) !important;box-shadow:0 16px 40px rgba(45,16,32,0.12) !important;}

.wa-card{transition:transform .3s cubic-bezier(.34,1.3,.64,1),box-shadow .3s !important;}
.wa-card:hover{transform:translateY(-5px) scale(1.01) !important;box-shadow:0 16px 40px rgba(45,16,32,0.1) !important;}

/* ── Smooth link hover ── */
.footer-list li a, .nd-item, .md-item{
  transition:all .18s ease !important;
}
.footer-list li a:hover{padding-right:6px !important;}

/* ── Section separator breathing space ── */
.section + .section,
.blog-section + .expert-section,
.expert-section + .wa-section{
  border-top:1px solid rgba(0,0,0,0.04);
}

/* ── Hero CTA button 3D ── */
.f-sub-btn{
  box-shadow:
    0 1px 0 rgba(255,255,255,0.2) inset,
    0 -2px 0 rgba(0,0,0,0.15) inset,
    0 6px 16px rgba(196,81,110,0.3) !important;
  transition:all .22s cubic-bezier(.34,1.3,.64,1) !important;
}
.f-sub-btn:hover{
  transform:translateY(-2px) !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.2) inset,
    0 -2px 0 rgba(0,0,0,0.15) inset,
    0 10px 28px rgba(196,81,110,0.4) !important;
}

/* ── Step numbers 3D ── */
.step-num{
  box-shadow:
    0 1px 0 rgba(255,255,255,0.15) inset,
    0 4px 12px rgba(196,81,110,0.25),
    0 8px 24px rgba(196,81,110,0.1) !important;
}

/* ── Smooth image-less hero gradient depth ── */
.hero-body::after{
  content:'';
  position:absolute;
  bottom:0;left:0;right:0;
  height:120px;
  background:linear-gradient(to bottom,transparent,rgba(13,8,16,0.4));
  pointer-events:none;
}


/* ── HERO MINI FORM ── */
.hero-form{
  display:flex;gap:10px;align-items:stretch;
  margin-bottom:28px;
  max-width:440px;
  opacity:0;animation:hup .6s .55s forwards;
}
.hero-form input{
  flex:1;background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.15);
  border-radius:10px;padding:12px 16px;
  font-family:var(--fn);font-size:14px;color:white;
  outline:none;transition:all .2s;
  backdrop-filter:blur(8px);
}
.hero-form input::placeholder{color:rgba(255,255,255,0.35);}
.hero-form input:focus{background:rgba(255,255,255,0.13);border-color:rgba(196,81,110,0.5);}
.hero-form-btn{
  background:var(--rose);color:white;
  font-family:var(--fn);font-size:13px;font-weight:700;
  padding:0 20px;border-radius:10px;border:none;cursor:pointer;
  white-space:nowrap;transition:all .22s cubic-bezier(.34,1.3,.64,1);
  box-shadow:0 4px 16px rgba(196,81,110,0.35);
}
.hero-form-btn:hover{background:#a03050;transform:translateY(-2px);}
@media(max-width:480px){
  .hero-form{flex-direction:column;max-width:100%;}
  .hero-form-btn{padding:12px;border-radius:10px;}
}


/* ══════════════════════════════
   PREMIUM DESIGN SYSTEM V2
   Dark Luxury Medical Platform
══════════════════════════════ */

/* ── 1. ROOT VARIABLES ENHANCEMENT ── */
:root{
  --shadow-card: 0 1px 0 rgba(255,255,255,0.05),0 4px 8px rgba(45,16,32,0.05),0 12px 28px rgba(45,16,32,0.08),0 32px 64px rgba(45,16,32,0.05);
  --shadow-card-hover: 0 1px 0 rgba(255,255,255,0.07),0 8px 16px rgba(45,16,32,0.08),0 24px 48px rgba(196,81,110,0.1),0 48px 96px rgba(45,16,32,0.1);
  --shadow-btn: 0 1px 0 rgba(255,255,255,0.25) inset, 0 -2px 0 rgba(0,0,0,0.18) inset, 0 4px 16px rgba(196,81,110,0.3), 0 8px 32px rgba(196,81,110,0.15);
  --shadow-btn-hover: 0 1px 0 rgba(255,255,255,0.25) inset, 0 -2px 0 rgba(0,0,0,0.18) inset, 0 8px 24px rgba(196,81,110,0.45), 0 16px 48px rgba(196,81,110,0.2);
  --shadow-btn-active: 0 0px 0 rgba(255,255,255,0.25) inset, 0 1px 0 rgba(0,0,0,0.18) inset, 0 2px 8px rgba(196,81,110,0.2);
  --glow-rose: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(196,81,110,0.15), transparent 70%);
  --glow-gold: radial-gradient(ellipse 40% 30% at 70% 30%, rgba(201,169,110,0.08), transparent 60%);
}

/* ── 2. GLASSMORPHISM NAVBAR ── */
#navbar{
  background:rgba(255,253,252,0.75) !important;
  backdrop-filter:blur(24px) saturate(2) brightness(1.05) !important;
  -webkit-backdrop-filter:blur(24px) saturate(2) brightness(1.05) !important;
  border-bottom:1px solid rgba(196,81,110,0.08) !important;
  box-shadow:0 1px 0 rgba(255,255,255,0.9),0 4px 32px rgba(45,16,32,0.07) !important;
  transition:background .3s,box-shadow .3s !important;
}
#navbar.up{
  background:rgba(255,253,252,0.92) !important;
  box-shadow:0 1px 0 rgba(255,255,255,1),0 8px 40px rgba(45,16,32,0.1) !important;
}

/* ── 3. HERO RADIAL GLOWS ── */
.hero-body::before{
  background:
    radial-gradient(ellipse 70% 60% at 80% 40%, rgba(196,81,110,0.18), transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(74,26,48,0.5), transparent 55%),
    radial-gradient(ellipse 30% 25% at 60% 20%, rgba(201,169,110,0.07), transparent 50%) !important;
}

/* ── 4. PREMIUM CARDS ── */
.topic-card{
  border-radius:24px !important;
  box-shadow:var(--shadow-card) !important;
  transition:transform .35s cubic-bezier(.34,1.3,.64,1), box-shadow .35s ease !important;
  border:1px solid rgba(255,255,255,0.06) !important;
}
.topic-card:hover{
  transform:translateY(-10px) scale(1.02) !important;
  box-shadow:var(--shadow-card-hover) !important;
}

.blog-card{
  border-radius:22px !important;
  transition:transform .3s cubic-bezier(.34,1.3,.64,1), box-shadow .3s, border-color .3s !important;
}
.blog-card:hover{
  transform:translateY(-7px) !important;
  box-shadow:var(--shadow-card-hover) !important;
}

.expert-card{
  border-radius:22px !important;
  box-shadow:var(--shadow-card) !important;
  transition:transform .3s cubic-bezier(.34,1.3,.64,1), box-shadow .3s !important;
}
.expert-card:hover{
  transform:translateY(-8px) scale(1.02) !important;
  box-shadow:var(--shadow-card-hover) !important;
}

.wa-card{
  border-radius:20px !important;
  box-shadow:var(--shadow-card) !important;
  transition:transform .3s cubic-bezier(.34,1.3,.64,1), box-shadow .3s !important;
}
.wa-card:hover{
  transform:translateY(-6px) !important;
  box-shadow:var(--shadow-card-hover) !important;
}

/* ── 5. 3D FLOATING BUTTONS ── */
.nav-cta,
.f-sub-btn,
.hero-form-btn,
.art-cta-btn{
  box-shadow:var(--shadow-btn) !important;
  transition:all .22s cubic-bezier(.34,1.3,.64,1) !important;
  position:relative;
}
.nav-cta::after,
.f-sub-btn::after,
.hero-form-btn::after{
  content:'';
  position:absolute;inset:0;border-radius:inherit;
  background:linear-gradient(180deg,rgba(255,255,255,0.15) 0%,transparent 50%);
  pointer-events:none;
}
.nav-cta:hover,
.f-sub-btn:hover,
.hero-form-btn:hover{
  transform:translateY(-3px) !important;
  box-shadow:var(--shadow-btn-hover) !important;
}
.nav-cta:active,
.f-sub-btn:active,
.hero-form-btn:active{
  transform:translateY(1px) !important;
  box-shadow:var(--shadow-btn-active) !important;
}

/* ── 6. SECTION TRANSITIONS ── */
.section{padding:104px 5vw !important;}
.hero-body{padding:100px 5vw 48px !important;}

/* Alternating backgrounds for visual rhythm */
.section:nth-child(odd){background:var(--cream);}
.section:nth-child(even){background:var(--off);}

/* ── 7. SECTION GLOW OVERLAYS ── */
#pain-points::after{
  content:'';position:absolute;inset:0;pointer-events:none;
  background:var(--glow-gold);
}

/* ── 8. STEP NUMBERS PREMIUM ── */
.step-num{
  background:linear-gradient(135deg, var(--rose), var(--plum2)) !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.2) inset,
    0 6px 20px rgba(196,81,110,0.35),
    0 12px 40px rgba(196,81,110,0.15) !important;
  border:none !important;
}

/* ── 9. INPUT FIELDS PREMIUM ── */
.f-input{
  border-radius:12px !important;
  border:1.5px solid var(--line) !important;
  transition:all .2s !important;
  box-shadow:0 2px 8px rgba(45,16,32,0.04) !important;
}
.f-input:focus{
  border-color:var(--rose3) !important;
  box-shadow:0 0 0 3px rgba(196,81,110,0.08), 0 2px 8px rgba(45,16,32,0.04) !important;
}

/* ── 10. MICRO-INTERACTIONS ── */
.t-icon{transition:transform .3s cubic-bezier(.34,1.5,.64,1) !important;}
.topic-card:hover .t-icon{transform:scale(1.12) rotate(-5deg) !important;}

.t-arrow svg{transition:transform .25s cubic-bezier(.34,1.5,.64,1) !important;}
.topic-card:hover .t-arrow svg{transform:translateX(-6px) !important;}

.fsoc{
  transition:all .25s cubic-bezier(.34,1.5,.64,1) !important;
  box-shadow:0 2px 8px rgba(45,16,32,0.1) !important;
}
.fsoc:hover{
  transform:translateY(-4px) scale(1.12) !important;
  box-shadow:0 8px 24px rgba(196,81,110,0.25) !important;
  background:var(--rose) !important;
  border-color:var(--rose) !important;
  color:white !important;
}

.blog-read{transition:all .22s cubic-bezier(.34,1.5,.64,1) !important;}
.blog-card:hover .blog-read{transform:translateX(-4px) scale(1.05) !important;}

.nav-link{transition:all .18s cubic-bezier(.34,1.3,.64,1) !important;}
.nav-link:hover{transform:translateY(-1px) !important;}

/* ── 11. FOOTER ENHANCEMENT ── */
.footer{
  background:linear-gradient(160deg, #1a0a14 0%, #0f0508 60%, #1a0a14 100%) !important;
}
.footer-divider{
  background:linear-gradient(90deg,transparent,rgba(196,81,110,0.2),transparent) !important;
  height:1px !important;
}

/* ── 12. SCROLL ANIMATIONS ── */
.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .6s ease, transform .6s cubic-bezier(.34,1.2,.64,1) !important;
}
.reveal.visible{opacity:1;transform:none;}


/* ─── HERO VIDEO ─── */
.hero-video-wrap{margin:32px 0 0;max-width:560px;}
.hero-video-label{
  display:flex;align-items:center;gap:8px;
  font-size:11px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;
  color:rgba(255,255,255,0.35);margin-bottom:12px;
}
.hero-video-label::before{content:'';width:24px;height:1px;background:rgba(255,255,255,0.2);}
.hero-video-container{position:relative;width:100%;height:0;padding-bottom:56.25%;border-radius:20px;overflow:hidden;box-shadow:0 8px 32px rgba(0,0,0,0.4);border:1px solid rgba(255,255,255,0.1);background:#1a0a14;}
.hero-video-container iframe{position:absolute;top:0;left:0;width:100%;height:100%;border:none;display:block;}
.hero-video-cta{
  display:flex;align-items:center;justify-content:center;gap:10px;
  margin-top:14px;
  background:linear-gradient(135deg,#25d366,#128c7e);
  color:white;font-family:var(--fn);font-size:14px;font-weight:700;
  padding:12px 24px;border-radius:12px;text-decoration:none;
  box-shadow:0 4px 20px rgba(37,211,102,0.3);
  transition:all .22s cubic-bezier(.34,1.3,.64,1);
}
.hero-video-cta:hover{transform:translateY(-2px);box-shadow:0 8px 28px rgba(37,211,102,0.45);}
.hero-video-cta svg{width:18px;height:18px;fill:white;flex-shrink:0;}
@media(max-width:600px){.hero-video-wrap{max-width:100%;}.hero-video-container{border-radius:14px;}}


/* ─── VIDEO MODAL ─── */
#videoModal{
  display:none;position:fixed;top:0;left:0;width:100%;height:100%;
  background:rgba(0,0,0,0.92);z-index:99999;
  align-items:center;justify-content:center;
  backdrop-filter:blur(6px);
}
#videoModal.open{display:flex !important;}
.vm-close{
  position:absolute;top:-44px;right:0;color:white;
  font-size:32px;cursor:pointer;line-height:1;
  width:40px;height:40px;display:flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,0.1);border-radius:50%;
  transition:background .2s;
}
.vm-close:hover{background:var(--rose);}
.vm-box{width:90%;max-width:800px;position:relative;}
.vm-frame{padding-bottom:56.25%;position:relative;height:0;border-radius:14px;overflow:hidden;}
.vm-frame iframe{position:absolute;top:0;left:0;width:100%;height:100%;border:0;}


/* ─── LIVE INDICATOR ─── */
.live-dot{display:inline-block;width:8px;height:8px;border-radius:50%;background:#25d366;flex-shrink:0;animation:live-pulse 2s ease-in-out infinite;}
@keyframes live-pulse{0%,100%{box-shadow:0 0 0 0 rgba(37,211,102,0.5);}50%{box-shadow:0 0 0 6px rgba(37,211,102,0);}}
.live-badge{display:inline-flex;align-items:center;gap:6px;font-size:11px;color:rgba(255,255,255,0.55);font-family:var(--fn);font-weight:600;}
.live-badge-dark{color:var(--muted);}


/* ─── FAQ SECTION ─── */
.faq-section{background:var(--off);padding:72px 5vw;}
.faq-inner{max-width:780px;margin:0 auto;}
.faq-list{margin-top:40px;}
.faq-item{border-bottom:1px solid var(--line);}
.faq-item:first-child{border-top:1px solid var(--line);}
.faq-q{display:flex;align-items:center;justify-content:space-between;padding:18px 0;cursor:pointer;gap:16px;user-select:none;}
.faq-q-text{font-size:15px;font-weight:600;color:var(--plum);flex:1;line-height:1.4;}
.faq-item.open .faq-q-text{color:var(--rose);}
.faq-icon{width:26px;height:26px;border-radius:50%;background:var(--rose4);border:1px solid var(--rose3);display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:all .25s;}
.faq-item.open .faq-icon{background:var(--rose);border-color:var(--rose);}
.faq-icon svg{width:12px;height:12px;stroke:var(--rose);fill:none;stroke-width:2.5;stroke-linecap:round;transition:transform .25s;}
.faq-item.open .faq-icon svg{stroke:white;transform:rotate(45deg);}
.faq-a{max-height:0;overflow:hidden;transition:max-height .35s ease;}
.faq-item.open .faq-a{max-height:300px;}
.faq-a-text{font-size:14px;color:var(--muted);line-height:1.85;padding-bottom:18px;border-right:2px solid var(--rose3);padding-right:14px;}



/* ═══ ARTICLE PAGE CLEAN ═══ */
body{background:var(--cream);}
.article-hero{
  margin-top:68px;
  background:linear-gradient(160deg,var(--plum) 0%,var(--plum2) 100%);
  padding:64px 24px 56px;
  text-align:center;
  position:relative;overflow:hidden;
}
.article-hero::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse 60% 50% at 50% 50%,rgba(196,81,110,0.12),transparent 70%);
}
.article-hero-inner{max-width:720px;margin:0 auto;position:relative;z-index:2;}
.art-cat{
  display:inline-flex;align-items:center;gap:6px;
  border-radius:50px;padding:5px 16px;
  font-size:11px;font-weight:700;letter-spacing:.08em;
  margin-bottom:20px;
}
.article-h1{
  font-family:var(--dp);
  font-size:clamp(26px,5vw,42px);
  font-weight:900;color:white;
  line-height:1.2;margin-bottom:16px;
}
.article-h1 em{color:var(--rose2);font-style:italic;display:block;}
.art-intro{
  font-size:clamp(14px,3vw,17px);
  color:rgba(255,255,255,0.55);
  line-height:1.8;margin-bottom:24px;
  max-width:580px;margin-left:auto;margin-right:auto;
}
.art-meta{
  display:flex;align-items:center;justify-content:center;
  gap:20px;font-size:12px;color:rgba(255,255,255,0.3);flex-wrap:wrap;
}
.art-meta-item{display:flex;align-items:center;gap:5px;}

/* ARTICLE BODY */
.article-body{padding:56px 24px 80px;}
.article-inner{
  max-width:720px;margin:0 auto;
  font-family:var(--fn);
}
.article-inner h2{
  font-family:var(--dp);font-size:clamp(20px,4vw,28px);
  font-weight:700;color:var(--plum);
  margin:48px 0 18px;line-height:1.3;
  padding-bottom:12px;border-bottom:2px solid var(--rose3);
}
.article-inner h3{
  font-family:var(--dp);font-size:clamp(17px,3vw,21px);
  font-weight:700;color:var(--plum2);
  margin:32px 0 14px;
}
.article-inner p{
  font-size:clamp(14px,3vw,16px);color:#2a0e1a;
  line-height:1.95;margin-bottom:20px;
}
.article-inner ul,.article-inner ol{
  padding-right:28px;margin-bottom:20px;
}
.article-inner li{
  font-size:clamp(14px,3vw,16px);color:#2a0e1a;
  line-height:1.85;margin-bottom:10px;
}
.article-inner strong{color:var(--plum);font-weight:700;}
.article-inner em{color:var(--rose);}
.article-inner p a,.article-inner li a{color:var(--rose);text-decoration:underline;}

/* TIP BOX */
.art-tip{
  background:var(--rose4);border-right:3px solid var(--rose);
  border-radius:0 14px 14px 0;padding:18px 20px;
  margin:28px 0;font-size:14px;color:var(--plum);line-height:1.8;
}
.art-warning{
  background:#fff8e7;border-right:3px solid #f0a500;
  border-radius:0 14px 14px 0;padding:18px 20px;
  margin:28px 0;font-size:14px;color:#7a4a00;line-height:1.8;
}

/* INLINE CTA */
.art-cta-box{
  background:linear-gradient(145deg,var(--plum),var(--plum2));
  border-radius:22px;padding:36px 28px;text-align:center;
  margin:48px 0;
}
.art-cta-box h3{
  font-family:var(--dp);font-size:22px;font-weight:700;
  color:white;margin-bottom:10px;
}
.art-cta-box p{
  font-size:14px;color:rgba(255,255,255,0.5);
  line-height:1.7;margin-bottom:24px;
}
.art-cta-btn{
  display:inline-flex;align-items:center;gap:10px;
  background:linear-gradient(135deg,#25d366,#128c7e);
  color:white;font-family:var(--fn);font-size:15px;font-weight:700;
  padding:14px 28px;border-radius:12px;text-decoration:none;
  box-shadow:0 4px 20px rgba(37,211,102,0.3);
  transition:all .22s;
}
.art-cta-btn:hover{transform:translateY(-2px);box-shadow:0 8px 28px rgba(37,211,102,0.4);}

/* BREADCRUMB */
.breadcrumb{
  max-width:720px;margin:0 auto;
  padding:16px 24px 0;
  font-size:12px;color:var(--muted);
  display:flex;align-items:center;gap:6px;
}
.breadcrumb a{color:var(--muted);text-decoration:none;}
.breadcrumb a:hover{color:var(--rose);}

@media(max-width:600px){
  .article-hero{padding:48px 20px 40px;margin-top:60px;}
  .article-body{padding:36px 20px 60px;}
}

