:root{
  --ink:#07182c;
  --navy:#102d48;
  --muted:#526a7d;
  --blue:#0a7fe8;
  --blue2:#51bfff;
  --aqua:#9eeaff;
  --mint:#59d8b5;
  --coral:#ff8e72;
  --gold:#f4c95d;
  --violet:#7968ff;
  --pale:#f7fcff;
  --line:rgba(55,158,235,.24);
  --glass:rgba(255,255,255,.72);
  --shadow:0 22px 70px rgba(20,99,166,.14);
  --deep-shadow:0 34px 110px rgba(6,36,78,.18);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
html{scroll-padding-top:105px}
body{
  margin:0;
  font-family:Inter,system-ui,sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at 76% 8%,rgba(81,191,255,.24),transparent 30%),
    radial-gradient(circle at 12% 20%,rgba(89,216,181,.18),transparent 26%),
    radial-gradient(circle at 78% 74%,rgba(244,201,93,.16),transparent 30%),
    linear-gradient(145deg,#fff 0%,#f6fcff 43%,#e8f8ff 100%);
  overflow-x:hidden;
}
body.cursor-ready,
body.cursor-ready a,
body.cursor-ready button,
body.cursor-ready input,
body.cursor-ready textarea{cursor:none}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}

.cursor-core,
.cursor-aura{
  position:fixed;
  left:0;
  top:0;
  z-index:90;
  pointer-events:none;
  opacity:0;
  transform:translate3d(-50%,-50%,0);
}
.cursor-core{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#07182c;
  box-shadow:0 0 0 4px rgba(255,255,255,.85),0 0 22px rgba(81,191,255,.6);
}
.cursor-aura{
  width:42px;
  height:42px;
  border:1px solid rgba(10,127,232,.38);
  border-radius:50%;
  background:radial-gradient(circle,rgba(89,216,181,.16),transparent 62%);
  mix-blend-mode:multiply;
  transition:width .22s ease,height .22s ease,border-color .22s ease,background .22s ease;
}
body.cursor-ready .cursor-core,
body.cursor-ready .cursor-aura{opacity:1}
body.cursor-active .cursor-aura{
  width:68px;
  height:68px;
  border-color:rgba(121,104,255,.48);
  background:radial-gradient(circle,rgba(81,191,255,.22),rgba(255,142,114,.12),transparent 68%);
}
.click-spark{
  position:fixed;
  left:0;
  top:0;
  z-index:88;
  width:12px;
  height:12px;
  pointer-events:none;
  border-radius:50%;
  transform:translate(-50%,-50%);
  background:radial-gradient(circle,#fff 0 16%,var(--mint) 17% 28%,var(--blue2) 29% 44%,transparent 45%);
  box-shadow:0 0 0 0 rgba(81,191,255,.42),0 0 34px rgba(121,104,255,.35);
  animation:clickSpark .68s ease-out forwards;
}

.scroll-progress{
  position:fixed;
  top:0;
  left:0;
  z-index:60;
  width:100%;
  height:3px;
  transform:scaleX(0);
  transform-origin:left;
  background:linear-gradient(90deg,var(--mint),var(--blue2),var(--violet),var(--coral));
  box-shadow:0 0 18px rgba(81,191,255,.58);
}

.ambient,
.cinema-vignette,
#particleCanvas{
  position:fixed;
  inset:0;
  pointer-events:none;
}
.ambient{
  z-index:-4;
  background:
    linear-gradient(115deg,rgba(255,255,255,.86),transparent 36%,rgba(167,229,255,.24)),
    radial-gradient(circle at 45% 85%,rgba(10,127,232,.1),transparent 34%),
    conic-gradient(from 120deg at 50% 50%,rgba(89,216,181,.08),transparent 26%,rgba(255,142,114,.08),transparent 58%,rgba(121,104,255,.08),rgba(89,216,181,.08));
  animation:ambientShift 15s ease-in-out infinite alternate;
}
#particleCanvas{width:100%;height:100%;z-index:-3;opacity:.76}
.cinema-vignette{
  z-index:-2;
  background:
    linear-gradient(90deg,rgba(4,16,31,.08),transparent 18%,transparent 82%,rgba(4,16,31,.07)),
    linear-gradient(180deg,rgba(255,255,255,.18),transparent 24%,rgba(5,45,83,.06));
}

.section{
  position:relative;
  padding:84px max(24px,calc((100vw - 1180px)/2));
}
.section-sm{
  padding:22px max(24px,calc((100vw - 1180px)/2)) 54px;
}

.site-header{
  position:fixed;
  top:16px;
  left:50%;
  z-index:50;
  width:min(94vw,1180px);
  min-height:84px;
  transform:translateX(-50%);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:12px 18px;
  isolation:isolate;
  border:1px solid rgba(118,201,255,.58);
  border-radius:24px;
  background:linear-gradient(135deg,#ffffff 0%,#f7fcff 56%,#edf9ff 100%);
  box-shadow:0 22px 70px rgba(9,69,124,.18),0 0 0 8px rgba(255,255,255,.5);
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
  font-weight:900;
}
.logo-frame{
  flex:0 0 auto;
  width:86px;
  height:66px;
  display:grid;
  place-items:center;
  border-radius:18px;
  background:linear-gradient(145deg,#fff 0%,#f5fbff 100%);
  box-shadow:inset 0 0 0 1px rgba(124,205,255,.58),0 14px 28px rgba(10,127,232,.16),0 0 0 6px rgba(255,255,255,.56);
}
.brand img{
  width:76px;
  height:56px;
  object-fit:contain;
  filter:drop-shadow(0 8px 14px rgba(10,127,232,.24));
}
.brand-copy{
  display:flex;
  flex-direction:column;
  gap:4px;
  min-width:0;
  padding-left:12px;
  border-left:1px solid rgba(10,127,232,.22);
}
.brand-copy strong{
  font-family:"Playfair Display",Georgia,serif;
  font-size:25px;
  line-height:.94;
  font-weight:700;
  color:#05172c;
  white-space:nowrap;
}
.brand-copy em{
  font-style:normal;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:9px;
  color:var(--blue);
  font-weight:900;
}
.desktop-nav{
  display:flex;
  align-items:center;
  gap:18px;
  color:#18334c;
  font-size:13px;
  font-weight:800;
}
.desktop-nav a{
  position:relative;
  padding:10px 0;
  transition:color .25s ease,transform .25s ease;
}
.desktop-nav a:after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:3px;
  height:2px;
  transform:scaleX(0);
  transform-origin:left;
  border-radius:999px;
  background:linear-gradient(90deg,var(--mint),var(--blue),var(--violet));
  transition:transform .28s ease;
}
.desktop-nav a:hover,
.desktop-nav a.active{color:var(--blue);transform:translateY(-2px)}
.desktop-nav a:hover:after,
.desktop-nav a.active:after{transform:scaleX(1)}

.book-pill,
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:0;
  cursor:pointer;
  border-radius:16px;
  font-family:inherit;
  font-weight:900;
  transition:transform .25s ease,box-shadow .25s ease,filter .25s ease;
}
.book-pill{
  flex:0 0 auto;
  padding:15px 20px;
  color:#fff;
  background:
    linear-gradient(135deg,rgba(255,255,255,.28),transparent 38%) padding-box,
    linear-gradient(135deg,var(--mint),var(--blue2),var(--blue)) border-box;
  border:1px solid rgba(255,255,255,.4);
  box-shadow:0 16px 34px rgba(10,127,232,.26),inset 0 1px 0 rgba(255,255,255,.34),inset 0 -12px 24px rgba(2,56,120,.14);
}
.btn{
  padding:14px 20px;
  font-size:14px;
}
.btn:hover,
.book-pill:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow);
  filter:saturate(1.08);
}
.btn.primary{
  color:#fff;
  border:1px solid rgba(255,255,255,.38);
  background:
    linear-gradient(135deg,rgba(255,255,255,.24),transparent 36%) padding-box,
    linear-gradient(135deg,var(--mint),var(--blue2) 42%,var(--blue)) border-box;
  box-shadow:0 16px 36px rgba(10,127,232,.22),inset 0 1px 0 rgba(255,255,255,.38),inset 0 -12px 22px rgba(3,64,129,.12);
}
.btn.secondary{
  color:#074477;
  background:linear-gradient(145deg,rgba(255,255,255,.96),rgba(247,253,255,.82));
  border:1px solid rgba(124,205,255,.38);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.8),0 12px 30px rgba(11,79,132,.08);
}
.btn:focus-visible,
.book-pill:focus-visible,
.icon-link:focus-visible,
.therapy-tabs button:focus-visible,
.slider-btn:focus-visible{
  outline:3px solid rgba(89,216,181,.36);
  outline-offset:4px;
}

.social-rail{
  position:fixed;
  right:18px;
  top:50%;
  z-index:45;
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:10px 8px;
  transform:translateY(-50%);
  border:0;
  background:transparent;
  box-shadow:none;
  backdrop-filter:none;
}
.icon-link{
  --brand:#0a7fe8;
  position:relative;
  display:grid;
  place-items:center;
  width:44px;
  min-height:44px;
  border:1px solid transparent;
  border-radius:50%;
  color:#06213a;
  background:var(--brand);
  font-size:11px;
  font-weight:900;
  isolation:isolate;
  overflow:visible;
  box-shadow:0 12px 26px color-mix(in srgb,var(--brand) 22%,transparent), inset 0 0 0 1px rgba(255,255,255,.34);
  transition:transform .2s ease,box-shadow .2s ease,filter .2s ease;
}
.icon-link:before{
  content:"";
  position:absolute;
  inset:-5px;
  z-index:-1;
  opacity:.42;
  border-radius:50%;
  background:radial-gradient(circle,color-mix(in srgb,var(--brand) 28%,white),transparent 66%);
  transition:opacity .28s ease,transform .28s ease;
}
.icon-link:after{
  content:attr(title);
  position:absolute;
  right:54px;
  top:50%;
  height:auto;
  padding:8px 12px;
  transform:translateY(-50%) translateX(8px);
  border-radius:999px;
  color:#05172c;
  background:rgba(255,255,255,.92);
  box-shadow:0 14px 34px rgba(10,48,86,.12);
  opacity:0;
  white-space:nowrap;
  transition:opacity .22s ease,transform .22s ease;
}
.icon-link svg{
  width:21px;
  height:21px;
  fill:#fff;
  filter:drop-shadow(0 8px 14px rgba(4,20,34,.22));
  transition:transform .28s ease,filter .28s ease;
}
.icon-link:hover{
  transform:translateX(-4px) scale(1.05);
  filter:saturate(1.06);
  box-shadow:0 24px 58px color-mix(in srgb,var(--brand) 38%,transparent), inset 0 0 0 1px rgba(255,255,255,.44);
}
.icon-link:hover:before{opacity:.74;transform:scale(1.16)}
.icon-link:hover:after{opacity:1;transform:translateY(-50%) translateX(0)}
.icon-link:hover svg{transform:scale(1.08)}
.icon-link.tiktok{--brand:#000}
.icon-link.tiktok svg{filter:drop-shadow(-2px 1px 0 #25f4ee) drop-shadow(2px -1px 0 #fe2c55)}
.icon-link.whatsapp{--brand:#25d366}
.icon-link.instagram{--brand:#e4405f}
.icon-link.instagram:before{
  background:radial-gradient(circle at 30% 20%,rgba(254,218,117,.45),transparent 32%),radial-gradient(circle at 70% 30%,rgba(250,126,30,.42),transparent 34%),radial-gradient(circle at 50% 70%,rgba(214,41,118,.42),transparent 38%),linear-gradient(135deg,rgba(150,47,191,.4),rgba(79,91,213,.4));
}
.icon-link.instagram{background:radial-gradient(circle at 30% 110%,#feda75 0 18%,#fa7e1e 32%,#d62976 54%,#962fbf 76%,#4f5bd5 100%)}
.icon-link.instagram svg{fill:#fff}
.icon-link.facebook{--brand:#1877f2}
.icon-link.map{--brand:#4285f4}
.icon-link.map{background:linear-gradient(135deg,#34a853,#4285f4 48%,#fbbc05 76%,#ea4335)}
.icon-link.map svg{filter:drop-shadow(0 7px 12px rgba(13,64,129,.26))}
.icon-link span{
  position:absolute;
  width:1px;
  height:1px;
  overflow:hidden;
  clip:rect(0 0 0 0);
}

.hero{
  min-height:92vh;
  display:grid;
  grid-template-columns:.94fr 1.06fr;
  align-items:center;
  gap:44px;
  padding-top:176px;
  perspective:1300px;
}
.hero-copy{
  position:relative;
  padding:22px 0;
}
.hero-copy:before{
  content:"";
  position:absolute;
  inset:-24px -18px -28px -28px;
  z-index:-1;
  border:1px solid rgba(124,205,255,.34);
  border-radius:34px;
  background:linear-gradient(135deg,rgba(255,255,255,.56),rgba(224,248,255,.28));
  box-shadow:0 28px 90px rgba(10,127,232,.08);
}
.hero-copy:after{
  content:"";
  position:absolute;
  right:10%;
  bottom:-34px;
  width:150px;
  height:2px;
  background:linear-gradient(90deg,transparent,var(--mint),var(--blue2),transparent);
  opacity:.82;
  animation:scanLine 4.8s ease-in-out infinite;
}
.kicker{
  margin:0 0 8px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:#0b5799;
  font-size:10px;
  font-weight:900;
  line-height:1.4;
  padding:8px 12px;
  border:1px solid rgba(91,183,255,.28);
  border-radius:999px;
  background:linear-gradient(135deg,rgba(255,255,255,.86),rgba(235,250,255,.66));
  box-shadow:0 10px 28px rgba(12,98,165,.08),inset 0 1px 0 rgba(255,255,255,.72);
}
.kicker:before{
  content:"";
  width:24px;
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--mint),var(--blue2),var(--violet));
}
.hero h1,
h2{
  font-family:"Playfair Display",Georgia,serif;
  margin:16px 0;
  color:var(--ink);
  font-weight:700;
  text-wrap:balance;
  text-shadow:0 16px 36px rgba(6,24,44,.06);
}
.hero h1{
  max-width:610px;
  font-size:clamp(38px,4.2vw,62px);
  line-height:.95;
}
.hero h1 span,
h2 span{
  color:transparent;
  background:linear-gradient(120deg,var(--blue),var(--violet) 45%,var(--mint));
  -webkit-background-clip:text;
  background-clip:text;
  text-shadow:0 10px 32px rgba(10,127,232,.14);
}
.lead{
  max-width:540px;
  color:#284a64;
  font-size:16px;
  line-height:1.78;
  font-weight:560;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:26px;
}

.hero-visual{
  position:relative;
  min-height:500px;
  overflow:hidden;
  display:grid;
  place-items:center;
  border:1px solid rgba(124,205,255,.62);
  border-radius:36px;
  background:linear-gradient(145deg,rgba(255,255,255,.86),rgba(214,245,255,.74));
  box-shadow:var(--deep-shadow);
  transform-style:preserve-3d;
  animation:heroFloat 8s ease-in-out infinite;
}
.hero-visual img{
  width:150%;
  max-width:none;
  height:500px;
  object-fit:cover;
  object-position:72% center;
  transform:translateX(-24%);
  filter:saturate(1.04) contrast(1.02);
}
.hero-visual:before,
.hero-visual:after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
}
.hero-visual:before{
  z-index:2;
  inset:15px;
  border:1px solid rgba(255,255,255,.82);
  border-radius:27px;
}
.hero-visual:after{
  z-index:3;
  background:
    radial-gradient(circle at 66% 62%,rgba(81,191,255,.22),transparent 24%),
    linear-gradient(103deg,rgba(255,255,255,.42),transparent 43%);
  mix-blend-mode:screen;
}
.motion-grid{
  position:absolute;
  inset:auto -16% 8% -16%;
  height:34%;
  z-index:4;
  background:
    linear-gradient(rgba(10,127,232,.18) 1px,transparent 1px),
    linear-gradient(90deg,rgba(10,127,232,.16) 1px,transparent 1px);
  background-size:34px 22px;
  transform:rotateX(68deg) translateY(18px);
  transform-origin:bottom;
  opacity:.44;
  animation:gridFlow 4.5s linear infinite;
}
.kinetic-orb{
  position:absolute;
  right:8%;
  top:16%;
  z-index:5;
  width:102px;
  aspect-ratio:1;
  border-radius:50%;
  transform-style:preserve-3d;
  animation:orbFloat 7s ease-in-out infinite;
}
.kinetic-orb span,
.halo-ring{
  position:absolute;
  inset:0;
  border:1.5px solid rgba(135,224,255,.62);
  border-radius:50%;
  box-shadow:0 0 30px rgba(81,191,255,.22);
}
.kinetic-orb span:nth-child(1){transform:rotateX(64deg)}
.kinetic-orb span:nth-child(2){transform:rotateY(66deg)}
.kinetic-orb span:nth-child(3){transform:rotateZ(45deg) scale(.72)}
.halo-ring{
  left:50%;
  top:54%;
  width:58%;
  height:23%;
  inset:auto;
  z-index:5;
  transform:translate(-50%,-50%) rotate(-12deg);
  animation:orbit 8s linear infinite;
}
.ring-two{
  width:72%;
  height:31%;
  animation-duration:12s;
  transform:translate(-50%,-50%) rotate(18deg);
}
.orbit-label{
  position:absolute;
  z-index:6;
  padding:8px 13px;
  border:1px solid var(--line);
  border-radius:999px;
  color:var(--blue);
  background:rgba(255,255,255,.82);
  box-shadow:0 12px 30px rgba(10,127,232,.13);
  font-size:12px;
  font-weight:900;
}
.strength{top:19%;left:18%}
.mobility{top:31%;right:12%}
.balance{bottom:22%;left:13%}

.trust-row{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-top:-18px;
  z-index:4;
}
.trust-row article,
.about-copy,
.doctor-card,
.condition-grid span,
.process-grid article,
.contact-copy,
.contact-form,
.slider-shell{
  border:1px solid var(--line);
  border-radius:22px;
  background:var(--glass);
  box-shadow:var(--shadow);
}
.trust-row article{display:grid;gap:5px;padding:22px}
.trust-row article,
.condition-grid span,
.process-grid article,
.credential-grid span{
  position:relative;
  overflow:hidden;
  transition:transform .28s ease,box-shadow .28s ease,border-color .28s ease;
}
.trust-row article:before,
.condition-grid span:before,
.process-grid article:before,
.credential-grid span:before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,rgba(89,216,181,.14),transparent 36%,rgba(244,201,93,.1));
  opacity:0;
  transition:opacity .28s ease;
}
.trust-row article:hover,
.condition-grid span:hover,
.process-grid article:hover,
.credential-grid span:hover{
  transform:translateY(-6px);
  border-color:rgba(89,216,181,.36);
  box-shadow:0 24px 74px rgba(16,122,188,.16);
}
.trust-row article:hover:before,
.condition-grid span:hover:before,
.process-grid article:hover:before,
.credential-grid span:hover:before{opacity:1}
.trust-row b,
.trust-row span{color:var(--ink);font-size:16px;font-weight:900}
.trust-row p,
.about-copy p,
.section-title p,
.process-grid p,
.contact p,
.therapy-slide p{
  color:var(--muted);
  line-height:1.72;
}

.about{
  display:grid;
  grid-template-columns:.82fr 1.18fr;
  align-items:center;
  gap:24px;
  max-width:1180px;
  margin:52px auto;
  padding:28px;
  border:1px solid rgba(124,205,255,.38);
  border-radius:34px;
  background:linear-gradient(135deg,rgba(255,255,255,.72),rgba(232,248,255,.64));
  box-shadow:0 28px 90px rgba(10,127,232,.1);
}
.doctor-card{padding:0;background:transparent;border:0;box-shadow:none}
.doctor-photo{
  min-height:480px;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:26px;
  box-shadow:0 24px 70px rgba(6,36,78,.16);
  background:#fff;
}
.doctor-photo img{
  width:100%;
  height:480px;
  object-fit:cover;
  object-position:center top;
}
.about-copy{padding:32px;background:rgba(255,255,255,.66)}
.about-copy h2,
.section-title h2,
.contact h2{
  font-family:"Playfair Display",Georgia,serif;
  font-size:clamp(34px,4vw,56px);
  line-height:1.06;
  letter-spacing:-.025em;
}
.credential-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:22px;
}
.credential-grid span{
  padding:16px;
  border:1px solid var(--line);
  border-radius:16px;
  color:var(--muted);
  background:rgba(255,255,255,.72);
  line-height:1.48;
}
.credential-grid b{display:block;margin-bottom:5px;color:var(--blue)}

.section-title{
  position:relative;
  max-width:780px;
  margin:0 auto 34px;
  text-align:center;
}
.section-title .kicker{
  justify-content:center;
  margin-left:auto;
  margin-right:auto;
}
.section-title:after{
  content:"";
  display:block;
  width:128px;
  height:2px;
  margin:20px auto 0;
  border-radius:999px;
  background:linear-gradient(90deg,transparent,var(--mint),var(--blue2),var(--violet),transparent);
  opacity:.78;
}
.section-title p{max-width:640px;margin-left:auto;margin-right:auto}
.techniques{
  border-radius:34px;
  background:
    radial-gradient(circle at 18% 18%,rgba(89,216,181,.16),transparent 28%),
    radial-gradient(circle at 84% 70%,rgba(121,104,255,.12),transparent 28%),
    linear-gradient(180deg,rgba(255,255,255,.18),rgba(235,249,255,.64));
}
.slider-shell{
  position:relative;
  overflow:hidden;
  padding:16px;
  border-radius:30px;
  background:linear-gradient(135deg,rgba(255,255,255,.92),rgba(239,251,255,.8));
}
.therapy-tabs{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:8px;
  margin:0 0 14px;
}
.therapy-tabs button{
  position:relative;
  min-height:58px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  overflow:hidden;
  border:1px solid rgba(55,158,235,.22);
  border-radius:16px;
  color:#17334d;
  background:rgba(255,255,255,.72);
  box-shadow:0 10px 28px rgba(10,127,232,.08);
  font:inherit;
  font-size:12px;
  font-weight:900;
  cursor:pointer;
  transition:transform .24s ease,border-color .24s ease,box-shadow .24s ease,color .24s ease;
}
.therapy-tabs button:before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,rgba(89,216,181,.22),rgba(81,191,255,.18),rgba(121,104,255,.18));
  opacity:0;
  transition:opacity .24s ease;
}
.therapy-tabs span{
  position:relative;
  display:grid;
  place-items:center;
  width:25px;
  height:25px;
  border-radius:50%;
  color:#07548d;
  background:rgba(255,255,255,.72);
  box-shadow:inset 0 0 0 1px rgba(10,127,232,.16);
}
.therapy-tabs button.active,
.therapy-tabs button:hover{
  transform:translateY(-3px);
  color:#04192d;
  border-color:rgba(89,216,181,.48);
  box-shadow:0 18px 46px rgba(10,127,232,.16);
}
.therapy-tabs button.active:before,
.therapy-tabs button:hover:before{opacity:1}
.therapy-tabs button.active:after{
  content:"";
  position:absolute;
  left:16px;
  right:16px;
  bottom:8px;
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--mint),var(--blue2),var(--violet));
}
.therapy-track{
  display:flex;
  transition:transform .75s cubic-bezier(.22,1,.36,1);
}
.therapy-slide{
  min-width:100%;
  display:grid;
  grid-template-columns:1.02fr .98fr;
  align-items:center;
  gap:26px;
  padding:12px;
}
.therapy-slide.active img{
  animation:imageLift .8s cubic-bezier(.22,1,.36,1) both;
}
.therapy-slide.active div:last-child{
  animation:copyLift .75s cubic-bezier(.22,1,.36,1) .08s both;
}
.therapy-slide img{
  width:100%;
  height:390px;
  object-fit:cover;
  border-radius:24px;
  box-shadow:0 18px 50px rgba(10,127,232,.14);
}
.therapy-slide div:last-child{padding:18px}
.therapy-slide small{
  display:inline-grid;
  place-items:center;
  width:46px;
  height:46px;
  border-radius:50%;
  color:#06395b;
  background:linear-gradient(135deg,var(--gold),#d8f6ff,var(--blue2));
  font-weight:900;
}
.therapy-slide h3{
  margin:16px 0 10px;
  font-family:"Playfair Display",Georgia,serif;
  font-size:clamp(34px,3.9vw,54px);
  line-height:1.04;
  letter-spacing:-.025em;
  color:var(--ink);
}
.therapy-slide p{font-size:16px}
.therapy-slide ul{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin:20px 0 0;
  padding:0;
  list-style:none;
}
.therapy-slide li{
  padding:11px 13px;
  border:1px solid var(--line);
  border-radius:999px;
  color:#07548d;
  background:rgba(255,255,255,.76);
  font-size:14px;
  font-weight:900;
}
.therapy-slide li:before{content:"+";margin-right:7px;color:var(--blue)}
.slider-btn{
  position:absolute;
  top:50%;
  z-index:8;
  width:46px;
  height:46px;
  transform:translateY(-50%);
  border:1px solid var(--line);
  border-radius:50%;
  color:var(--blue);
  background:#fff;
  box-shadow:var(--shadow);
  font-size:32px;
  line-height:1;
  cursor:pointer;
  transition:transform .24s ease,box-shadow .24s ease,background .24s ease;
}
.slider-btn:hover{
  transform:translateY(-50%) scale(1.08);
  background:linear-gradient(135deg,#fff,rgba(231,251,246,.96));
  box-shadow:0 18px 48px rgba(10,127,232,.18);
}
.prev{left:16px}
.next{right:16px}
.dots{
  display:flex;
  justify-content:center;
  gap:9px;
  margin:10px 0 2px;
}
.dots button{
  width:9px;
  height:9px;
  border:0;
  border-radius:999px;
  background:rgba(10,127,232,.25);
  cursor:pointer;
}
.dots button.active{
  width:30px;
  background:linear-gradient(90deg,var(--mint),var(--blue2),var(--violet));
}

.condition-grid,
.process-grid{
  display:grid;
  gap:14px;
}
.condition-grid{grid-template-columns:repeat(4,1fr)}
.condition-grid span{
  padding:18px;
  color:#083050;
  text-align:center;
  font-weight:900;
  background:linear-gradient(145deg,rgba(255,255,255,.92),rgba(247,253,255,.78));
}
.condition-grid span:nth-child(3n + 1){box-shadow:0 20px 60px rgba(89,216,181,.12)}
.condition-grid span:nth-child(3n + 2){box-shadow:0 20px 60px rgba(10,127,232,.12)}
.condition-grid span:nth-child(3n + 3){box-shadow:0 20px 60px rgba(244,201,93,.12)}
.process-grid{grid-template-columns:repeat(5,1fr)}
.process-grid article{
  padding:22px;
  background:linear-gradient(145deg,rgba(255,255,255,.94),rgba(247,253,255,.8));
}
.process-grid b{
  display:inline-block;
  color:transparent;
  background:linear-gradient(120deg,var(--blue),var(--violet),var(--mint));
  -webkit-background-clip:text;
  background-clip:text;
  font-size:28px;
}
.process-grid h3{margin:12px 0 5px;font-size:19px}

.contact{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
  border:1px solid rgba(124,205,255,.38);
  border-radius:34px;
  background:linear-gradient(135deg,rgba(255,255,255,.55),rgba(229,248,255,.62));
}
.contact-copy,
.contact-form{
  padding:32px;
  background:linear-gradient(145deg,rgba(255,255,255,.92),rgba(247,253,255,.8));
}
.contact a{color:#0967b5;font-weight:900}
.contact-form{display:grid;gap:12px}
input,
textarea{
  width:100%;
  padding:14px 15px;
  border:1px solid var(--line);
  border-radius:14px;
  outline:none;
  color:var(--ink);
  background:rgba(255,255,255,.88);
  font:inherit;
  font-weight:700;
}
input:focus,
textarea:focus{
  border-color:var(--mint);
  box-shadow:0 0 0 4px rgba(89,216,181,.16),0 14px 34px rgba(10,127,232,.08);
}
textarea{min-height:128px;resize:vertical}

footer{
  padding:30px 22px;
  color:var(--muted);
  text-align:center;
  font-size:14px;
  font-weight:800;
}
footer:before{
  content:"";
  display:block;
  width:160px;
  height:78px;
  margin:0 auto 12px;
  background:url("assets/logo.png") center/contain no-repeat;
  filter:drop-shadow(0 14px 22px rgba(10,127,232,.18));
}

.reveal{
  opacity:1;
  transform:none;
  transition:box-shadow .22s ease,border-color .22s ease;
}
.reveal.in{transform:none}
.delay{transition-delay:.15s}

@keyframes orbit{to{rotate:360deg}}
@keyframes ambientShift{
  to{transform:translate3d(0,-18px,0) scale(1.04)}
}
@keyframes heroFloat{
  0%,100%{transform:rotateX(0deg) rotateY(0deg) translateY(0)}
  50%{transform:rotateX(1.2deg) rotateY(-2deg) translateY(-8px)}
}
@keyframes orbFloat{
  0%,100%{transform:translate3d(0,0,45px) rotateZ(0deg)}
  50%{transform:translate3d(-8px,12px,75px) rotateZ(28deg)}
}
@keyframes gridFlow{
  to{background-position:34px 22px}
}
@keyframes clickSpark{
  0%{opacity:1;transform:translate(-50%,-50%) scale(.45);box-shadow:0 0 0 0 rgba(81,191,255,.42)}
  100%{opacity:0;transform:translate(-50%,-50%) scale(7);box-shadow:0 0 0 18px rgba(81,191,255,0)}
}
@keyframes scanLine{
  0%,100%{transform:translateX(-40px);opacity:.2}
  50%{transform:translateX(42px);opacity:.9}
}
@keyframes imageLift{
  from{transform:translateY(12px) scale(.99);filter:saturate(.94)}
  to{transform:none;filter:saturate(1.04)}
}
@keyframes copyLift{
  from{opacity:.25;transform:translateY(16px)}
  to{opacity:1;transform:none}
}

@media(max-width:1120px){
  .desktop-nav{display:none}
  .hero,
  .about,
  .contact{grid-template-columns:1fr}
  .site-header{min-height:78px}
  .hero{padding-top:126px}
  .hero-visual,
  .hero-visual img{height:auto;min-height:440px}
  .trust-row,
  .condition-grid{grid-template-columns:repeat(2,1fr)}
  .process-grid{grid-template-columns:repeat(2,1fr)}
  .therapy-tabs{grid-template-columns:repeat(3,1fr)}
  .therapy-slide{grid-template-columns:1fr}
  .therapy-slide img{height:320px}
  .social-rail{right:10px}
  .icon-link span{display:none}
  .icon-link{width:42px;min-height:42px;border-radius:50%}
  .credential-grid{grid-template-columns:1fr}
}

@media(max-width:680px){
  .section{padding:64px 18px}
  .section-sm{padding:18px 18px 40px}
  .site-header{
    top:10px;
    width:95vw;
    min-height:62px;
    padding:8px 10px;
    border-radius:20px;
  }
  .logo-frame{width:68px;height:54px;border-radius:16px}
  .brand img{width:60px;height:46px}
  .brand-copy{padding-left:7px;border-left:0}
  .brand-copy strong{font-size:21px}
  .brand-copy em{display:none}
  .book-pill{display:none}
  .hero{min-height:auto;padding-top:96px;gap:30px}
  .hero-copy:before{inset:-16px -12px -18px;border-radius:26px}
  .hero h1{font-size:38px}
  .kicker{font-size:9px;letter-spacing:.1em;padding:7px 10px}
  .kicker:before{width:18px}
  .lead{font-size:15px}
  .hero-visual{min-height:350px;border-radius:27px}
  .hero-visual img{height:350px;min-height:350px}
  .hero-visual img{width:165%;transform:translateX(-30%)}
  .motion-grid{height:28%}
  .kinetic-orb{width:76px}
  .orbit-label{font-size:11px;padding:7px 10px}
  .trust-row,
  .condition-grid,
  .process-grid{grid-template-columns:1fr}
  .about{margin:34px 10px;padding:14px;border-radius:28px}
  .doctor-photo,
  .doctor-photo img{height:380px;min-height:380px}
  .about-copy,
  .contact-copy,
  .contact-form{padding:24px}
  .about-copy h2,
  .section-title h2,
  .contact h2{font-size:36px}
  .therapy-tabs{
    display:flex;
    overflow-x:auto;
    padding:2px 2px 10px;
    scroll-snap-type:x mandatory;
  }
  .therapy-tabs button{
    flex:0 0 170px;
    scroll-snap-align:start;
  }
  .therapy-slide{padding:8px}
  .therapy-slide img{height:250px}
  .therapy-slide div:last-child{padding:14px 4px}
  .therapy-slide ul{grid-template-columns:1fr}
  .slider-btn{width:40px;height:40px;font-size:28px}
  .contact{padding:12px;border-radius:28px}
  .social-rail{
    left:auto;
    right:6px;
    top:auto;
    bottom:92px;
    flex-direction:column;
    transform:none;
    gap:7px;
    padding:0;
    background:transparent;
    box-shadow:none;
    border-radius:0;
  }
  .icon-link{
    width:32px;
    min-height:32px;
    border-radius:50%;
    box-shadow:0 8px 18px color-mix(in srgb,var(--brand) 16%,transparent);
  }
  .icon-link svg{width:15px;height:15px}
  .icon-link:before,
  .icon-link:after{display:none}
  body.cursor-ready,
  body.cursor-ready a,
  body.cursor-ready button,
  body.cursor-ready input,
  body.cursor-ready textarea{cursor:auto}
  .cursor-core,
  .cursor-aura{display:none}
  footer{padding-bottom:92px}
}

@media(prefers-reduced-motion:reduce){
  *,
  *:before,
  *:after{
    animation-duration:.001ms!important;
    animation-iteration-count:1!important;
    scroll-behavior:auto!important;
    transition-duration:.001ms!important;
  }
}
