:root{
  --navy:#04152E;
  --navy-2:#071C3A;
  --navy-3:#020b1c;
  --purple:#8636ED;
  --cyan:#15D3EE;
  --white:#fff;
  --off:#f7f7f3;
  --ink:#061832;
  --muted:#6f7d92;
  --line:rgba(255,255,255,.16);
  --dark-shadow:0 30px 80px rgba(0,0,0,.35);
  --soft-shadow:0 22px 60px rgba(4,21,46,.12);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Manrope",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--ink);
  background:var(--off);
  line-height:1.45;
}
img{display:block;max-width:100%}
a{text-decoration:none;color:inherit}
ul{margin:0;padding:0;list-style:none}

.container{width:min(1180px,calc(100% - 40px));margin-inline:auto}
.section-dark{background:var(--navy);color:#fff;position:relative;overflow:hidden}
.section-light{background:var(--off);position:relative;overflow:hidden}

.site-header{
  position:fixed;z-index:100;top:20px;left:50%;transform:translateX(-50%);
  width:min(1270px,calc(100% - 32px));display:flex;align-items:center;justify-content:space-between;
  padding:14px 18px;border-radius:999px;border:1px solid rgba(255,255,255,.13);
  background:rgba(3,14,34,.74);backdrop-filter:blur(18px);box-shadow:0 18px 50px rgba(0,0,0,.24)
}
.brand img{width:200px;height:auto; padding: 4px;}
.main-nav{display:flex;align-items:center;gap:28px;font-size:14px;font-weight:700;color:rgba(255,255,255,.82)}
.main-nav a{transition:.2s ease;color:rgba(255,255,255,.82)}
.main-nav a:hover{color:var(--cyan)}
.nav-cta{padding:12px 20px;border-radius:10px;background:linear-gradient(90deg,var(--purple),var(--cyan));     border-radius: 32px;color:#fff!important;box-shadow:0 10px 30px rgba(21,211,238,.22); font-size: 16px;}
.nav-cta span,.btn span{font-size:24px;line-height:0;margin-left:8px}
.menu-toggle{display:none;background:none;border:0;width:44px;height:44px;cursor:pointer}
.menu-toggle span{display:block;height:2px;background:#fff;margin:8px;border-radius:2px}

.hero{min-height:850px;padding:150px 0 80px;display:flex;align-items:center;background:
  radial-gradient(circle at 74% 45%,rgba(21,211,238,.12),transparent 28%),
  radial-gradient(circle at 20% 22%,rgba(134,54,237,.16),transparent 24%),var(--navy)}
.hero-grid{position:relative;z-index:2}
.eyebrow,.kicker{margin:0 0 16px;text-transform:uppercase;letter-spacing:.16em;font-size:12px;font-weight:800;color:var(--cyan)}
h1,h2,h3,p{margin-top:0}
h1{font-size:clamp(48px,5.4vw,68px);line-height:.98;letter-spacing:-.055em;margin-bottom:26px;font-weight:800;max-width:620px}
h1 span{background:linear-gradient(90deg,var(--cyan),#4ea3ff,var(--purple));-webkit-background-clip:text;background-clip:text;color:transparent}
h2{font-size:clamp(30px,3.6vw,54px);line-height:1.06;letter-spacing:-.045em;margin-bottom:18px;font-weight:800}
h3{font-size:19px;line-height:1.22;margin-bottom:10px;font-weight:800}
.hero-copy p:not(.eyebrow){font-size:18px;color:rgba(255,255,255,.78);max-width:570px;margin-bottom:0}
.hero-actions{display:flex;gap:14px;margin-top:32px;flex-wrap:wrap}
.btn{display:inline-flex;align-items:center;justify-content:center;min-height:52px;padding:14px 22px;border-radius:8px;font-size:16px;font-weight:800;transition:.2s ease;border:1px solid transparent;white-space:nowrap}
.btn:hover{transform:translateY(-2px)}
.btn-primary{background:linear-gradient(90deg,var(--purple),var(--cyan));color:#fff;box-shadow:0 16px 36px rgba(21,211,238,.2); border-radius: 32px;}
.hero-tags{display:flex;gap:28px;margin-top:28px;color:rgba(255,255,255,.82);font-size:13px;font-weight:700;flex-wrap:wrap}
.hero-tags span{position:relative;padding-left:24px}.hero-tags span:before{content:"";position:absolute;left:0;top:2px;width:15px;height:15px;border:1px solid rgba(255,255,255,.55);border-radius:50%}

.hero-floating{
  position:absolute;
  right: -100px;
  bottom: -40px;
  width:min(58vw,700px);
  z-index:1;
  pointer-events:none;
  filter:drop-shadow(0 28px 45px rgba(0,0,0,.35));
}
.hero-visual{
  width:100%;
  max-width:100%;
  height:auto;
  margin:0;
  object-fit:contain;
  object-position:center;
  opacity:0;
  transform:translateY(24px) scale(.97);
}
.hero-floating.is-visible .hero-visual{
  animation:heroReveal .95s cubic-bezier(.2,.8,.2,1) .1s forwards;
}
@keyframes heroReveal{
  from{
    opacity:0;
    transform:translateY(24px) scale(.97);
  }
  to{
    opacity:1;
    transform:translateY(0) scale(1);
  }
}
.bg-lines:before,.bg-lines:after,.light-lines:before,.light-lines:after{content:"";position:absolute;pointer-events:none;border:1px solid rgba(255,255,255,.15);transform:rotate(-30deg)}
.bg-lines:before{width:620px;height:620px;right:-200px;top:110px}.bg-lines:after{width:560px;height:560px;left:-260px;bottom:-260px}.bg-lines.soft:before,.bg-lines.soft:after{opacity:.55}.glow{position:absolute;border-radius:50%;filter:blur(55px);opacity:.5;pointer-events:none}.glow-purple{width:300px;height:300px;background:var(--purple);left:7%;top:20%}.glow-cyan{width:360px;height:360px;background:var(--cyan);right:4%;bottom:2%;opacity:.25}

.problem-solution{padding:72px 0;background:linear-gradient(90deg,#fff,var(--off));position:relative}
.ps-grid{display:grid;grid-template-columns:1fr 44px 1fr;gap:54px;align-items:start;position:relative;z-index:2}.ps-block h2{font-size:clamp(27px,3vw,41px);max-width:520px}.ps-block p{color:#425066;max-width:560px}.divider-shape{height:330px;position:relative;background:linear-gradient(rgba(4,21,46,.24),rgba(4,21,46,.24)) center/1px 100% no-repeat}.divider-shape:before{content:"";position:absolute;left:50%;top:45%;transform:translate(-1px,-50%);width:0;height:0;border-top:30px solid transparent;border-bottom:30px solid transparent;border-left:35px solid rgba(4,21,46,.3)}.divider-shape:after{content:"";position:absolute;left:50%;top:45%;transform:translate(-2px,-50%);width:0;height:0;border-top:28px solid transparent;border-bottom:28px solid transparent;border-left:33px solid #fbfbfb}
.check-list{display:grid;gap:16px;margin-top:24px}.check-list li{position:relative;padding-left:34px;color:#192842}.check-list li:before{content:"×";position:absolute;left:0;top:0;width:20px;height:20px;border:1px solid var(--purple);border-radius:50%;display:grid;place-items:center;font-size:13px;color:var(--purple);font-weight:800}.solution-list li:before{content:"✓";border-color:var(--cyan);color:var(--cyan)}.light-lines:before{width:360px;height:360px;right:-110px;top:20px;border-color:rgba(21,211,238,.32)}.light-lines:after{width:300px;height:300px;right:80px;bottom:-180px;border-color:rgba(134,54,237,.12)}

.process-section{padding:72px 0 90px;background:linear-gradient(180deg,var(--navy),#061c3c)}
.section-heading{text-align:center;max-width:780px;margin:0 auto 46px}
.section-heading h2{margin-bottom:0}
.timeline{position:relative;display:grid;grid-template-columns:repeat(6,1fr);gap:14px;padding-bottom:44px}
.timeline-line{position:absolute;left:2%;right:2%;bottom:4px;height:4px;background:rgba(255,255,255,.12);border-radius:999px;overflow:hidden}
.timeline-line span{display:block;width:0;height:100%;background:linear-gradient(90deg,var(--cyan),var(--purple));border-radius:inherit;transition:width 1.3s ease}
.timeline.is-visible .timeline-line span{width:100%}
.step{position:relative;text-align:center;padding:10px 10px 0;opacity:.55;transform:translateY(10px)}
.timeline.is-visible .step{animation:stepReveal .55s ease-out forwards}
.timeline.is-visible .step:nth-of-type(1){animation-delay:.1s}
.timeline.is-visible .step:nth-of-type(2){animation-delay:.28s}
.timeline.is-visible .step:nth-of-type(3){animation-delay:.46s}
.timeline.is-visible .step:nth-of-type(4){animation-delay:.64s}
.timeline.is-visible .step:nth-of-type(5){animation-delay:.82s}
.timeline.is-visible .step:nth-of-type(6){animation-delay:1s}
.step:not(:last-child):after{content:"→";position:absolute;right:-14px;top:43px;color:var(--cyan);font-size:28px}
.step-number{position:absolute;left:20px;top:0;width:26px;height:26px;border-radius:50%;display:grid;place-items:center;font-size:13px;font-weight:800;background:linear-gradient(135deg,var(--cyan),var(--purple));z-index:2}
.step-icon{width:72px;height:72px;border:1px solid rgba(255,255,255,.42);border-radius:50%;display:grid;place-items:center;margin:14px auto 18px;background:rgba(255,255,255,.04);box-shadow:0 0 22px rgba(21,211,238,.12);color:#fff}
.step-icon svg{width:32px;height:32px;stroke:currentColor;fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.timeline.is-visible .step .step-icon{animation:stepPulse 6s ease-in-out infinite both,stepColor 6s ease-in-out infinite both}
.timeline.is-visible .step:nth-of-type(1) .step-icon{animation-delay:0s}
.timeline.is-visible .step:nth-of-type(2) .step-icon{animation-delay:1s}
.timeline.is-visible .step:nth-of-type(3) .step-icon{animation-delay:2s}
.timeline.is-visible .step:nth-of-type(4) .step-icon{animation-delay:3s}
.timeline.is-visible .step:nth-of-type(5) .step-icon{animation-delay:4s}
.timeline.is-visible .step:nth-of-type(6) .step-icon{animation-delay:5s}
.step h3{font-size:16px;color:#fff}
.step p{font-size:13px;color:rgba(255,255,255,.72);margin:0}
@keyframes stepReveal{from{opacity:.35;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}
@keyframes stepPulse{0%,100%{box-shadow:0 0 22px rgba(21,211,238,.12)}14%{box-shadow:0 0 30px rgba(21,211,238,.35)}26%{box-shadow:0 0 22px rgba(21,211,238,.12)}}
@keyframes stepColor{0%,100%{color:#fff;border-color:rgba(255,255,255,.42);background:rgba(255,255,255,.04)}14%{color:var(--cyan);border-color:rgba(21,211,238,.9);background:rgba(21,211,238,.1)}26%{color:#fff;border-color:rgba(255,255,255,.42);background:rgba(255,255,255,.04)}}

.services-section{padding:72px 0 70px;background:#fff}.services-section .section-heading .kicker{color:var(--cyan)}.services-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}.service-card{padding:28px 24px;min-height:290px;border:1px solid rgba(4,21,46,.1);border-radius:12px;background:#fff;box-shadow:0 16px 38px rgba(4,21,46,.08);position:relative;overflow:hidden}.service-card:after{content:"";position:absolute;right:-44px;top:-44px;width:120px;height:120px;border-radius:50%;background:linear-gradient(135deg,var(--purple),var(--cyan));filter:blur(25px);opacity:.18}.service-icon{width:42px;height:42px;border-radius:50%;display:grid;place-items:center;background:linear-gradient(135deg,rgba(134,54,237,.12),rgba(21,211,238,.15));color:var(--purple);font-size:24px;margin-bottom:24px}.service-card p{color:#445269;font-size:14px}.service-card strong{display:block;color:var(--cyan);font-size:14px;line-height:1.5}.custom-note{display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:18px;margin-top:24px;border:1px solid rgba(21,211,238,.35);border-radius:8px;background:linear-gradient(90deg,rgba(21,211,238,.06),rgba(134,54,237,.05));padding:16px 22px}.custom-note span{width:32px;height:32px;border-radius:50%;display:grid;place-items:center;border:1px solid var(--cyan);color:var(--cyan);font-weight:800}.custom-note p{margin:0;color:#415067;font-size:14px}.custom-note img{width:42px}.diagnosis-intro{display:grid;grid-template-columns:48px 1fr;gap:18px;max-width:860px;margin:28px auto 24px}.diagnosis-intro .star{font-size:42px;line-height:1;color:var(--purple)}.diagnosis-intro h3{margin-bottom:4px}.diagnosis-intro p{margin:0;color:#445269}.diagnosis-card{display:grid;grid-template-columns:230px 1fr 170px;gap:24px;align-items:center;background:linear-gradient(90deg,var(--navy),#09244b);color:#fff;border-radius:8px;overflow:hidden;padding:28px;border:1px solid rgba(21,211,238,.32);box-shadow:var(--dark-shadow)}.diagnosis-title span,.price-box span{text-transform:uppercase;letter-spacing:.14em;font-size:11px;color:var(--cyan);font-weight:800}.diagnosis-title h3{font-size:24px;margin:12px 0 0}.diagnosis-list{display:grid;grid-template-columns:repeat(2,1fr);gap:8px 28px}.diagnosis-list li{font-size:13px;color:rgba(255,255,255,.82);padding-left:20px;position:relative}.diagnosis-list li:before{content:"✓";position:absolute;left:0;color:var(--cyan)}.price-box{border-left:1px solid rgba(255,255,255,.18);padding-left:28px}.price-box strong{display:block;font-size:34px;margin-top:10px}.diagnosis-foot{grid-column:1/-1;margin:0 -28px -28px;padding:12px 28px;text-align:center;background:rgba(255,255,255,.06);font-size:13px;color:rgba(255,255,255,.78)}

.differentials{padding:48px 0;background:radial-gradient(circle at 80% 50%,rgba(134,54,237,.7),transparent 42%),linear-gradient(90deg,var(--navy),#06234b)}.differentials-grid{display:grid;grid-template-columns:1.3fr repeat(5,1fr);gap:0;align-items:stretch}.diff-intro,.diff-item{padding:22px 26px;border-right:1px solid rgba(255,255,255,.18)}.diff-intro h2{font-size:34px}.diff-intro p,.diff-item p{color:rgba(255,255,255,.75);margin:0;font-size:14px}.diff-item{text-align:center}.diff-item span{display:block;font-size:36px;color:var(--cyan);margin-bottom:12px}.diff-item h3{font-size:16px;color:var(--cyan)}

.audience-section{padding:70px 0;background:linear-gradient(90deg,#fff,var(--off))}.audience-grid{display:grid;grid-template-columns:.55fr 1fr;gap:56px;align-items:center}.audience-image{height:360px;border-radius:0 90px 0 90px;clip-path:polygon(0 0,100% 0,84% 100%,0 100%);box-shadow:var(--soft-shadow);overflow:hidden;background:linear-gradient(135deg,rgba(4,21,46,.03),rgba(21,211,238,.08));display:flex}.audience-visual{width:100%;height:100%;object-fit:cover;object-position:left center}.audience-copy h2{max-width:760px}.audience-cards{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}.audience-cards article{padding:24px;border:1px solid rgba(4,21,46,.1);border-radius:14px;background:#fff;box-shadow:0 14px 38px rgba(4,21,46,.06)}.audience-cards p{color:#445269;margin:0}

.final-cta{padding:52px 0;background:#fff;overflow:hidden}.final-grid{display:grid;grid-template-columns:260px 1fr auto;gap:40px;align-items:center}.cta-photo{height:170px;background:url("assets/03-07.png") center/cover;clip-path:polygon(0 0,100% 0,78% 100%,0 100%);box-shadow:var(--soft-shadow)}.cta-copy h2{font-size:38px;max-width:600px}.cta-copy p{color:#445269;margin:0}.final-grid .btn{min-width:240px}

.site-footer{background:var(--navy);color:#fff;padding:60px 0 0}
.footer-grid{display:grid;grid-template-columns:minmax(0,1.2fr) minmax(0,1fr) minmax(0,1fr);gap:30px}
.footer-column{min-width:0}
.footer-brand-column{display:flex;align-items:flex-start}
.footer-logo{width:450px;max-width:100%}
.footer-title{margin:0 0 14px;font-size:13px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:rgba(255,255,255,.66)}
.footer-links-list{display:grid;gap:12px}
.footer-contact{display:inline-flex;align-items:center;gap:10px;color:rgba(255,255,255,.82);font-weight:700;transition:color .2s ease}
.footer-contact:hover{color:var(--cyan)}
.footer-icon{width:30px;height:30px;border-radius:50%;display:grid;place-items:center;border:1px solid rgba(255,255,255,.28);background:rgba(255,255,255,.05);flex-shrink:0}
.footer-icon svg{width:16px;height:16px;stroke:currentColor;fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.footer-subfooter{margin-top:26px;border-top:1px solid rgba(255,255,255,.14);padding:14px 0}
.footer-subfooter-inner p{margin:0;font-size:14px;color:rgba(255,255,255,.72);text-align:center}

.reveal{opacity:0;transform:translateY(22px);transition:opacity .75s ease,transform .75s ease}.reveal.is-visible{opacity:1;transform:translateY(0)}.delay-1{transition-delay:.08s}.delay-2{transition-delay:.16s}.delay-3{transition-delay:.24s}.delay-4{transition-delay:.32s}.delay-5{transition-delay:.40s}

.services-section{position:relative;isolation:isolate;overflow:hidden;background-image: url('../partnex-landing/assets/bg-servicios.png');background-repeat: no-repeat; background-size: cover; background-position: center;}
.services-section .container{position:relative;z-index:2}
.services-section .bg-lines:before,.services-section .bg-lines:after{border-color:rgba(4,21,46,.14)}
.services-section .bg-lines:before{width:520px;height:520px;right:-120px;top:20px}
.services-section .bg-lines:after{width:420px;height:420px;left:auto;right:40px;bottom:-210px}

.services-pillars{margin-top:8px;border-top:1px solid rgba(4,21,46,.14)}
.service-row{display:grid;grid-template-columns:72px 1fr;gap:18px;align-items:start;padding:18px 0;border-bottom:1px solid rgba(4,21,46,.14)}
.service-row-index{width:56px;height:56px;border-radius:14px;display:grid;place-items:center;background:linear-gradient(135deg,var(--purple),var(--cyan));box-shadow:0 12px 22px rgba(21,211,238,.2)}
.service-row-index svg{width:26px;height:26px;stroke:#fff;fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.service-row h3{margin-bottom:8px;font-size:26px}
.service-row p{margin:0;color:#445269}

.plans-heading{margin:28px auto 16px;max-width:700px;text-align:center}
.plans-heading h3{margin:0;font-size:clamp(28px,3vw,40px);line-height:1.08;letter-spacing:-.03em}

.services-subtitle{
  margin:10px auto 0;
  max-width:620px;
  font-size:16px;
  line-height:1.45;
  color:#3a4d69;
  font-weight:600;
}

.programs-board{margin-top:24px;display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}
.program-card{padding:24px;border:1px solid rgba(4,21,46,.14);border-radius:14px;background:#fff;box-shadow:0 14px 36px rgba(4,21,46,.08);display:flex;flex-direction:column}
.program-card-diagnosis{background:linear-gradient(170deg,#f9fdff,#f5f8ff)}
.program-tag{margin:0 0 10px;font-size:11px;font-weight:800;letter-spacing:.14em;text-transform:uppercase;color:#4b5c75}
.program-card h3{margin-bottom:10px;font-size:26px;line-height:1.04}
.program-limit{margin:0 0 12px;color:#354865;font-weight:700}
.program-card ul{display:grid;gap:10px;margin-bottom:14px}
.program-card li{position:relative;padding-left:20px;color:#22314a;font-size:14px}
.program-card li:before{content:"";position:absolute;left:0;top:.55em;width:8px;height:8px;border-radius:50%;background:linear-gradient(135deg,var(--purple),var(--cyan));transform:translateY(-50%)}
.program-price-prefix{margin:0;min-height:14px;font-size:12px;line-height:1.2;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:#5c6f8c;margin-top:auto}
.program-price-prefix-empty{color:transparent}
.program-price{margin:4px 0 4px;font-size:30px;line-height:1;font-weight:800;color:#051a38}
.program-foot{margin:0;color:var(--cyan);font-weight:800;font-size:12px;letter-spacing:.08em;text-transform:uppercase}
.program-foot-empty{opacity:0;min-height:14px}
.program-cta{margin-top:14px;min-height:46px;padding:10px 14px;border-radius:9px;font-size:16px;width:100%; border-radius: 32px;}

.audience-section{padding:70px 0;background:linear-gradient(90deg,#fff,var(--off));position:relative}
.audience-grid{display:grid;grid-template-columns:1fr;gap:56px;align-items:center;position:relative;min-height:420px}
.audience-floating{position:absolute;left:0;top: 0;transform:translateY(-50%); height: 100%; width: auto;overflow:hidden;}
.audience-visual{width:100%;height:100%;object-fit:cover;object-position:left center}
.audience-copy{padding-left:min(50%,540px)}

.final-cta{padding:74px 0;background:radial-gradient(circle at 82% 28%,rgba(134,54,237,.22),transparent 36%),radial-gradient(circle at 6% 70%,rgba(21,211,238,.22),transparent 32%),linear-gradient(105deg,var(--navy),#092a57);position:relative;overflow:hidden}
.final-cta .bg-lines:before,.final-cta .bg-lines:after{opacity:.65}
.final-cta .glow-purple{left:-4%;top:44%;opacity:.33}
.final-cta .glow-cyan{right:-2%;bottom:35%;opacity:.24}
.final-grid{display:grid;grid-template-columns:1fr auto;gap:32px;align-items:end;position:relative;z-index:2}
.cta-copy h2{font-size:clamp(32px,3.6vw,52px);max-width:760px;color:#fff;margin-bottom:14px}
.cta-copy p{color:rgba(255,255,255,.78);max-width:700px;margin:0}
.final-grid .btn{min-width:270px;align-self:center}

@media (max-width:1050px){
  .hero-grid,.ps-grid,.audience-grid,.final-grid{grid-template-columns:1fr}.services-section:before{left:-220px;top:100px;width:500px;height:500px;opacity:.16}.services-section .bg-lines:before{width:380px;height:380px;right:-140px;top:70px}.services-section .bg-lines:after{width:320px;height:320px;right:40px;bottom:-170px}.programs-board{grid-template-columns:repeat(2,minmax(0,1fr))}.service-row h3{font-size:23px}.divider-shape{display:none}.hero-floating{right:-140px;top:168px;width:min(70vw,760px)}.timeline,.services-grid{grid-template-columns:repeat(2,1fr)}.step:not(:last-child):after{display:none}.diagnosis-card{grid-template-columns:1fr}.price-box{border-left:0;border-top:1px solid rgba(255,255,255,.18);padding:22px 0 0}.differentials-grid{grid-template-columns:repeat(2,1fr)}.diff-intro{grid-column:1/-1}.footer-grid{grid-template-columns:1fr 1fr;gap:26px}.footer-brand-column{grid-column:1/-1}.footer-logo{width:320px}.final-grid .btn{justify-self:start}.timeline-line{display:none}
}
@media (max-width:760px){
  .container{width:min(100% - 28px,1180px)}.site-header{top:10px;border-radius:22px;flex-wrap:wrap;align-items:flex-start}.brand img{width:138px}.menu-toggle{display:block;margin-left:auto}.main-nav{display:none;width:100%;flex-direction:column;align-items:stretch;gap:0;padding-top:12px}.main-nav.is-open{display:flex}.main-nav a{padding:13px 6px;border-top:1px solid rgba(255,255,255,.1)}.nav-cta{text-align:center;margin-top:8px}.hero{padding-top:130px;min-height:auto}.hero-grid{gap:36px}h1{font-size:43px}h2{font-size:32px}.hero-copy p:not(.eyebrow){font-size:16px}.hero-tags{gap:14px}.hero-floating{position:relative;right:auto;top:auto;width:min(96vw,560px);margin:22px 0 0 auto}.problem-solution,.process-section,.services-section,.audience-section{padding:58px 0}.timeline,.services-grid,.audience-cards,.diagnosis-list,.differentials-grid,.programs-board{grid-template-columns:1fr}.service-row{grid-template-columns:56px 1fr;gap:14px}.service-row h3{font-size:21px}.step{padding:10px 20px 24px;border-bottom:1px solid rgba(255,255,255,.12)}.custom-note{grid-template-columns:1fr}.custom-note img{display:none}.diagnosis-card{padding:22px}.diagnosis-foot{margin:0 -22px -22px}.diff-intro,.diff-item{border-right:0;border-bottom:1px solid rgba(255,255,255,.16)}.final-grid{gap:24px}.cta-copy h2{font-size:30px}.btn{width:100%}.final-grid .btn{justify-self:stretch;min-width:0}.audience-grid{min-height:0}.audience-floating{position:relative;top:auto;left:auto;transform:none;width:100%;height:260px}.audience-copy{padding-left:0}.section-heading{text-align:left}.footer-grid{grid-template-columns:1fr;gap:20px}.footer-logo{width:250px}.footer-contact{font-size:15px}.footer-title{margin-bottom:10px}
}

@media (max-width:760px){
  .hero{
    padding-top:118px;
    padding-bottom:0;
  }

  .hero-copy{
    max-width:100%;
  }

  .hero-copy h1{
    font-size:clamp(35px,11.4vw,46px);
    line-height:1.02;
    letter-spacing:-.035em;
    margin-bottom:18px;
    max-width:12ch;
  }

  .hero-copy p:not(.eyebrow){
    max-width:100%;
    font-size:15px;
    line-height:1.5;
  }

  .hero-actions{
    margin-top:24px;
  }

  .hero-actions .btn{
    width:100%;
    max-width:420px;
  }

  .hero-tags{
    gap:10px 16px;
    margin-top:20px;
  }

  .hero-floating{
    width:min(92vw,420px);
    margin:18px auto 0;
  }

  .hero-visual{
    width:100%;
    max-width:100%;
  }
}

@media (max-width:430px){
  .hero-copy h1{
    max-width:11.2ch;
  }

  .hero-tags{
    font-size:12px;
  }
}

@media (max-width: 760px){
  .hero{
    flex-direction: column;
    align-items: stretch;
  }

  .hero .container{
    width: min(100% - 28px, 1180px);
  }

  .hero-floating{
    position: relative;
    /*right: auto;*/
    left: -20px;
    top: auto;
    bottom: auto;
    width: min(92vw, 420px);
    margin: 24px auto 0;
  }

  .hero-visual{
    width: 100%;
    height: auto;
  }
}
