:root{
  --navy:#17416f;
  --navy-deep:#0d2d50;
  --navy-soft:#285c87;
  --sky:#a7e9f4;
  --sky-soft:#e9f9fc;
  --ink:#152c42;
  --muted:#607386;
  --paper:#fff;
  --warm:#f7f6f2;
  --mist:#f4f8fa;
  --line:#d9e3e8;
  --shadow:0 18px 55px rgba(18,53,84,.12);
  --shadow-soft:0 8px 28px rgba(18,53,84,.08);
}

*,
*::before,
*::after{box-sizing:border-box}

html{
  max-width:100%;
  /* Needed on html AND body: on body alone the body clips but the document
     still scrolls sideways. */
  overflow-x:hidden;
  scroll-behavior:smooth;
  /* Offsets in-page anchor jumps so the sticky header does not cover the
     top of the target section. Without this, #enquire lands half-hidden. */
  scroll-padding-top:96px;
}

[id]{scroll-margin-top:96px}

/* #enquire sits on .lead-form-card - the white form box itself - so the jump
   lands directly on the first input. Not on the <section> (its padding put the
   fields a screen below) and not on an absolute marker (the section's former
   overflow:hidden clipped it). scroll-margin-top clears the sticky header and
   shows a little of the heading above the card. */
.lead-form-card[id]{scroll-margin-top:380px}

/* The card also carries .reveal, which sets opacity:0 and translateY(18px).
   A transform makes the element its own containing block and it is still
   animating when the anchor jump resolves, so the browser measures a stale
   position and lands on the wrong place. The form must never be hidden or
   animated - it is the conversion point and the anchor target. */
.lead-form-card.reveal{
  opacity:1;
  transform:none;
  transition:none;
}


@media(max-width:760px){
  html{scroll-padding-top:80px}
  [id]{scroll-margin-top:80px}
  .lead-form-card[id]{scroll-margin-top:90px}
}

body{
  max-width:100%;
  margin:0;
  overflow-x:hidden;
  background:var(--paper);
  color:var(--ink);
  font:400 16px/1.65 Inter,Arial,sans-serif;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

/* Removed: fixed 4px gradient strip across the top of the viewport. It read as
   a stalled progress bar rather than a brand accent. */

img,
video{display:block;max-width:100%}

a{color:inherit;text-decoration:none}

button,
input,
select,
textarea{font:inherit}

h1,
h2,
h3,
p,
figure,
ul,
ol{margin-top:0}

h1,
h2,
h3{
  margin-bottom:0;
  font-family:Inter,Arial,sans-serif;
  letter-spacing:-.035em;
  overflow-wrap:break-word;
}

h1{
  color:var(--navy);
  font-size:clamp(2.2rem,3.55vw,3.25rem);
  font-weight:600;
  line-height:1.04;
}

h2{
  color:var(--navy);
  font-size:clamp(1.9rem,2.9vw,2.75rem);
  font-weight:600;
  line-height:1.07;
}

h3{
  color:var(--navy);
  font-size:1.08rem;
  font-weight:600;
  line-height:1.3;
}

p{margin-bottom:1rem}
strong,
b{font-weight:600}

svg{
  width:1.25em;
  height:1.25em;
  flex:0 0 auto;
  fill:none;
  stroke:currentColor;
  stroke-linecap:round;
  stroke-linejoin:round;
  stroke-width:2;
}

.wrap{
  width:min(1160px,calc(100% - 48px));
  margin-inline:auto;
}

.skip-link{
  position:fixed;
  z-index:10000;
  top:10px;
  left:10px;
  padding:10px 15px;
  border-radius:3px;
  background:#fff;
  color:var(--navy);
  font-weight:600;
  transform:translateY(-150%);
  transition:transform .2s;
}

.skip-link:focus{transform:none}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:15px;
  color:var(--navy);
  font:600 .73rem/1.3 Inter,Arial,sans-serif;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.eyebrow::before{
  width:28px;
  height:2px;
  background:var(--sky);
  content:"";
}

.site-header{
  position:relative;
  z-index:100;
  border-bottom:1px solid var(--line);
  background:rgba(255,255,255,.97);
}

.header-inner{
  display:flex;
  min-height:78px;
  align-items:center;
  justify-content:space-between;
  gap:25px;
}

.brand{
  display:inline-flex;
  align-items:center;
  flex:0 0 auto;
}

.brand-logo{
  display:block;
  width:auto;
  height:50px;
  max-width:min(245px,46vw);
  object-fit:contain;
  object-position:left center;
}

.header-actions{
  display:flex;
  align-items:center;
  gap:22px;
}

.header-phone{
  display:flex;
  align-items:center;
  gap:9px;
  color:var(--navy);
}

.header-phone svg{width:22px;height:22px}
.header-phone span{display:flex;flex-direction:column}
.header-phone small{color:var(--muted);font-size:.67rem;line-height:1.2}
.header-phone strong{font-size:.91rem;line-height:1.35}

.button{
  position:relative;
  display:inline-flex;
  max-width:100%;
  min-width:0;
  min-height:51px;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:13px 20px;
  border:1px solid transparent;
  border-radius:4px;
  overflow:hidden;
  font:600 .82rem/1.25 Inter,Arial,sans-serif;
  isolation:isolate;
  text-align:center;
  transition:transform .25s ease,box-shadow .25s ease,background .25s ease,color .25s ease;
}

.button span{
  position:relative;
  z-index:1;
  min-width:0;
  overflow-wrap:anywhere;
}

.button svg{
  position:relative;
  z-index:1;
  transition:transform .25s ease;
}

.button-primary::before,
.button-header::before,
.button-sky::before{
  position:absolute;
  z-index:0;
  top:-60%;
  bottom:-60%;
  left:-45%;
  width:34%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.62),transparent);
  content:"";
  pointer-events:none;
  transform:translateX(-180%) skewX(-20deg);
  animation:cta-shine 3.8s ease-in-out infinite;
}

@keyframes cta-shine{
  0%,56%{transform:translateX(-180%) skewX(-20deg)}
  76%,100%{transform:translateX(620%) skewX(-20deg)}
}

.button:hover,
.button:focus-visible{
  transform:translateY(-2px);
  box-shadow:0 12px 25px rgba(13,45,80,.17);
}

.button:hover svg{transform:translateX(3px)}

.button-primary,
.button-header{
  background:var(--navy);
  color:#fff;
}

.button-header{min-height:45px;padding:10px 16px}

.button-secondary{
  border-color:rgba(23,65,111,.28);
  background:#fff;
  color:var(--navy);
}

.button-sky{
  background:var(--sky);
  color:var(--navy-deep);
}

.button-outline-light{
  border-color:rgba(255,255,255,.45);
  background:transparent;
  color:#fff;
}

.hero{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 5% 5%,rgba(167,233,244,.34),transparent 27%),
    linear-gradient(90deg,#f7fbfc,#fff 58%);
}

.hero::after{
  position:absolute;
  right:-100px;
  bottom:-150px;
  width:440px;
  height:440px;
  border:1px solid rgba(23,65,111,.08);
  border-radius:50%;
  box-shadow:0 0 0 45px rgba(167,233,244,.08),0 0 0 90px rgba(167,233,244,.045);
  content:"";
}

.hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  min-height:520px;
  grid-template-columns:minmax(0,1fr) minmax(460px,.88fr);
  gap:clamp(38px,4.5vw,58px);
  align-items:center;
  padding-block:47px 52px;
}

.hero-copy{max-width:680px}
.hero-copy,
.hero-grid>*{min-width:0}

.hero-copy{
  grid-column:1;
  grid-row:1;
}

.hero-media{
  grid-column:2;
  grid-row:1;
}

.hero-lede{
  max-width:650px;
  margin:22px 0 0;
  color:var(--muted);
  font-size:clamp(1rem,1.5vw,1.16rem);
  line-height:1.68;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:11px;
  margin-top:27px;
}

.micro-proof{
  display:flex;
  align-items:center;
  gap:8px;
  margin:18px 0 0;
  color:#47637b;
  font-size:.76rem;
  font-weight:600;
}

.micro-proof svg{
  width:18px;
  height:18px;
  padding:3px;
  border-radius:50%;
  background:var(--sky);
  color:var(--navy);
  stroke-width:3;
}

.hero-media{
  margin:0;
  min-width:0;
}

.video-shell{
  position:relative;
  width:100%;
  /* No fixed ratio: the video sets the height, so there is nothing to letterbox.
     Fallback ratio applies only to .hero-still (image, no intrinsic sizing). */
  overflow:hidden;
  line-height:0;
  border:6px solid #fff;
  border-radius:14px;
  outline:1px solid var(--line);
  background:#091a2b;
  box-shadow:var(--shadow);
}

.video-shell video{
  display:block;
  width:100%;
  height:auto;
}

/* Still-image variant has no intrinsic ratio to follow, so keep 16/9 + cover. */
.hero-still{aspect-ratio:16/9}
.hero-still img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

.video-play{
  position:absolute;
  z-index:3;
  bottom:14px;
  left:14px;
  display:flex;
  align-items:center;
  gap:9px;
  padding:11px 19px 11px 14px;
  overflow:hidden;
  border:0;
  border-radius:999px;
  background:linear-gradient(135deg,var(--navy) 0%,var(--navy-deep) 100%);
  color:#fff;
  font:600 .82rem/1 Inter,Arial,sans-serif;
  letter-spacing:.01em;
  cursor:pointer;
  box-shadow:0 3px 14px rgba(9,26,43,.4),inset 0 1px 0 rgba(255,255,255,.16);
  transition:transform .2s ease,box-shadow .2s ease,opacity .22s ease;
}

/* Sheen sweeps across every few seconds to draw the eye without nagging. */
.video-play::after{
  position:absolute;
  z-index:0;
  top:0;
  left:0;
  width:55%;
  height:100%;
  background:linear-gradient(100deg,transparent,rgba(255,255,255,.42),transparent);
  content:"";
  transform:translateX(-160%) skewX(-18deg);
  animation:videoPlayShine 5.5s ease-in-out 1.6s infinite;
}

@keyframes videoPlayShine{
  0%,72%{transform:translateX(-160%) skewX(-18deg)}
  88%,100%{transform:translateX(320%) skewX(-18deg)}
}

.video-play:hover{
  transform:translateY(-1px);
  box-shadow:0 6px 20px rgba(9,26,43,.48),inset 0 1px 0 rgba(255,255,255,.2);
}

.video-play:focus-visible{
  outline:3px solid var(--sky);
  outline-offset:3px;
}

.video-play-icon{
  position:relative;
  z-index:1;
  display:grid;
  width:26px;
  height:26px;
  place-items:center;
  border:0;
  border-radius:50%;
  background:var(--sky);
  box-shadow:none;
  transition:transform .2s ease;
}

.video-play:hover .video-play-icon{transform:scale(1.07)}

.video-play-icon svg{
  width:12px;
  height:12px;
  margin-left:1px;
  fill:var(--navy-deep);
  stroke:none;
}

.video-play-label{
  position:relative;
  z-index:1;
  padding:0;
  border:0;
  border-radius:0;
  background:none;
  color:#fff;
  font-size:.82rem;
  font-weight:600;
  line-height:1;
  box-shadow:none;
  backdrop-filter:none;
}

.video-shell.previewing .video-play{
  pointer-events:auto;
  opacity:1;
}

.video-shell.engaged .video-play{
  pointer-events:none;
  opacity:0;
  transform:scale(.94);
}

.hero-media figcaption{
  display:flex;
  align-items:center;
  gap:8px;
  margin-top:12px;
  color:#526b80;
  font-size:.72rem;
  font-weight:500;
}

.hero-media figcaption span{
  width:7px;
  height:7px;
  flex:0 0 auto;
  border-radius:50%;
  background:var(--sky);
  box-shadow:0 0 0 4px rgba(167,233,244,.25);
}

.trust-bar{
  border-block:1px solid rgba(23,65,111,.11);
  background:var(--sky-soft);
}

.trust-bar ul{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  margin:0;
  padding:0;
  list-style:none;
}

.trust-bar li{
  display:flex;
  min-height:75px;
  align-items:center;
  justify-content:center;
  gap:9px;
  padding:14px 18px;
  color:var(--navy);
  font-size:.77rem;
  font-weight:600;
  text-align:center;
}

.trust-bar li+li{border-left:1px solid rgba(23,65,111,.11)}

.trust-bar svg{
  width:21px;
  height:21px;
  padding:4px;
  border-radius:50%;
  background:#fff;
  stroke-width:3;
}

.section{padding:66px 0}

.overview{background:#fff}

.overview-grid{
  display:grid;
  grid-template-columns:minmax(330px,.76fr) minmax(0,1fr);
  gap:clamp(48px,7vw,84px);
  align-items:center;
}

.overview-photo{
  position:relative;
  min-height:420px;
}

.overview-photo::before{
  position:absolute;
  top:-14px;
  right:-14px;
  width:42%;
  height:42%;
  border-top:4px solid var(--sky);
  border-right:4px solid var(--sky);
  content:"";
}

.overview-photo img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border-radius:3px;
  object-fit:cover;
  box-shadow:var(--shadow-soft);
}

.photo-note{
  position:absolute;
  right:-24px;
  bottom:22px;
  display:flex;
  min-width:255px;
  flex-direction:column;
  padding:17px 20px;
  border-left:4px solid var(--sky);
  background:var(--navy);
  color:#fff;
  box-shadow:0 12px 32px rgba(13,45,80,.24);
}

.photo-note strong{
  font:600 .88rem/1.3 Inter,Arial,sans-serif;
}

.photo-note span{
  margin-top:3px;
  color:rgba(255,255,255,.7);
  font-size:.66rem;
}

.overview-copy>p{
  max-width:670px;
  margin-top:17px;
  color:var(--muted);
}

.check-list{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px 18px;
  margin:23px 0 0;
  padding:0;
  list-style:none;
}

.check-list li{
  display:grid;
  grid-template-columns:21px 1fr;
  gap:8px;
  align-items:start;
  color:#34526b;
  font-size:.8rem;
  font-weight:600;
  line-height:1.45;
}

.check-list svg{
  width:20px;
  height:20px;
  padding:4px;
  border-radius:50%;
  background:var(--sky-soft);
  color:var(--navy);
  stroke-width:3;
}

.details-section{
  border-block:1px solid rgba(23,65,111,.08);
  background:var(--warm);
}

.section-heading{
  max-width:720px;
  margin-bottom:31px;
}

.care-tabs{
  display:grid;
  grid-template-columns:245px 1fr;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:4px;
  background:#fff;
  box-shadow:var(--shadow-soft);
}

.tab-list{
  display:flex;
  min-width:0;
  max-width:100%;
  flex-direction:column;
  padding:10px;
  background:var(--navy);
}

.tab-button{
  position:relative;
  min-width:0;
  max-width:100%;
  min-height:58px;
  overflow-wrap:anywhere;
  padding:14px 18px;
  border:0;
  border-bottom:1px solid rgba(255,255,255,.12);
  background:transparent;
  color:rgba(255,255,255,.72);
  cursor:pointer;
  font:600 .78rem/1.35 Inter,Arial,sans-serif;
  text-align:left;
  transition:.2s ease;
}

.tab-button:last-child{border-bottom:0}

.tab-button:hover,
.tab-button:focus-visible{color:#fff}

.tab-button.active{
  border-radius:3px;
  background:#fff;
  color:var(--navy);
}

.tab-button.active::after{
  position:absolute;
  top:50%;
  right:13px;
  width:8px;
  height:8px;
  border-top:2px solid currentColor;
  border-right:2px solid currentColor;
  content:"";
  transform:translateY(-50%) rotate(45deg);
}

.tab-panels{min-height:365px}

.tab-panel{
  display:grid;
  grid-template-columns:minmax(0,.78fr) minmax(300px,1fr);
  gap:40px;
  padding:36px;
}

.tab-panel[hidden]{display:none}

.tab-panel.solo{grid-template-columns:1fr}
.tab-panel.solo .tab-intro{max-width:760px}

.tab-intro p{
  margin-top:15px;
  color:var(--muted);
  font-size:.9rem;
}

.panel-checks{
  grid-template-columns:1fr;
  align-content:start;
  margin-top:2px;
}

.step-list{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  margin:0;
  padding:0;
  list-style:none;
}

.step-list li{
  display:grid;
  grid-template-columns:36px 1fr;
  gap:11px;
  align-items:start;
  padding:14px;
  border:1px solid var(--line);
  border-radius:3px;
  color:#35526a;
  font-size:.78rem;
  font-weight:600;
  line-height:1.45;
}

.step-list b{
  display:grid;
  width:34px;
  height:34px;
  place-items:center;
  border-radius:2px;
  background:var(--navy);
  color:var(--sky);
  font-size:.67rem;
}

.step-list span{padding-top:6px}

.support-list{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
}

.support-list article{
  padding:15px;
  border:1px solid var(--line);
  border-radius:3px;
  background:#fbfdfe;
}

.support-list h3{font-size:.91rem}

.support-list p{
  margin:7px 0 0;
  color:var(--muted);
  font-size:.74rem;
  line-height:1.5;
}

.human-section{background:#fff}

.human-card{
  display:grid;
  grid-template-columns:360px 1fr;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:4px;
  background:#fff;
  box-shadow:var(--shadow);
}

.human-photo{min-height:420px;background:var(--navy)}

.human-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.human-copy{
  position:relative;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:48px 54px;
}

.human-copy::after{
  position:absolute;
  top:0;
  right:0;
  width:125px;
  height:125px;
  border-bottom-left-radius:100%;
  background:var(--sky-soft);
  content:"";
}

.human-copy h2,
.human-copy p,
.human-copy ul,
.human-copy .eyebrow,
.human-copy .inline-actions{position:relative;z-index:1}

.human-copy>p{
  max-width:670px;
  margin-top:15px;
  color:var(--muted);
}

.human-copy .check-list{
  grid-template-columns:1fr;
  max-width:680px;
  margin-top:15px;
}

.inline-actions{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:19px;
  margin-top:23px;
}

.lead-form-section{
  position:relative;
  /* Was overflow:hidden - that clipped the #enquire anchor target and made the
     browser resolve the jump against this box rather than the page, so the
     scroll landed on the previous section. clip-path contains the decorative
     gradient without interfering with anchor scrolling. */
  clip-path:inset(0);
  padding-block:70px;
  background:
    radial-gradient(circle at 5% 8%,rgba(167,233,244,.16),transparent 25%),
    linear-gradient(130deg,var(--navy-deep),var(--navy));
  color:#fff;
}

.lead-form-section::after{
  position:absolute;
  right:-110px;
  bottom:-160px;
  width:390px;
  height:390px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:50%;
  box-shadow:0 0 0 45px rgba(167,233,244,.04);
  content:"";
}

.lead-form-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(280px,.58fr) minmax(460px,.9fr);
  gap:clamp(45px,7vw,85px);
  align-items:start;
}

.lead-form-copy{
  position:sticky;
  top:28px;
  padding-top:25px;
}

.lead-form-copy .eyebrow{color:var(--sky)}
.lead-form-copy h2{color:#fff}

.lead-form-copy>p{
  max-width:480px;
  margin:17px 0 0;
  color:rgba(255,255,255,.74);
}

.form-points{
  display:grid;
  gap:11px;
  margin:24px 0 0;
  padding:0;
  list-style:none;
}

.form-points li{
  display:grid;
  grid-template-columns:23px 1fr;
  gap:9px;
  align-items:start;
  color:rgba(255,255,255,.9);
  font-size:.81rem;
  font-weight:500;
}

.form-points svg{
  width:21px;
  height:21px;
  padding:4px;
  border-radius:50%;
  background:rgba(167,233,244,.15);
  color:var(--sky);
  stroke-width:3;
}

.form-phone{
  display:inline-flex;
  align-items:center;
  gap:11px;
  margin-top:30px;
  color:#fff;
}

.form-phone>svg{
  width:42px;
  height:42px;
  padding:10px;
  border:1px solid rgba(255,255,255,.25);
  border-radius:50%;
  color:var(--sky);
}

.form-phone>span{display:flex;flex-direction:column}

.form-phone small{
  color:rgba(255,255,255,.62);
  font-size:.69rem;
}

.form-phone strong{
  margin-top:2px;
  font-size:.94rem;
}

.lead-form-card{
  padding:8px;
  border:1px solid rgba(255,255,255,.22);
  border-radius:12px;
  background:#fff;
  box-shadow:0 24px 65px rgba(0,0,0,.22);
}

.lead-form-card iframe{display:block}

.team-section{
  border-block:1px solid rgba(23,65,111,.08);
  background:var(--mist);
}

.team-heading{
  max-width:760px;
  margin-bottom:30px;
}

.team-heading>p{
  margin:16px 0 0;
  color:var(--muted);
}

.team-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}

.team-card{
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:4px;
  background:#fff;
  box-shadow:var(--shadow-soft);
}

.team-photo{
  height:215px;
  overflow:hidden;
  border-bottom:1px solid var(--line);
  background:
    radial-gradient(circle at 50% 25%,rgba(167,233,244,.65),transparent 34%),
    linear-gradient(145deg,#edf9fb,#dceaf0);
}

.team-photo img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center bottom;
  transition:transform .35s ease;
}

.team-card:hover .team-photo img{transform:scale(1.025)}

.team-card-copy{
  min-height:90px;
  padding:17px 18px;
}

.team-card-copy h3{font-size:1rem}

.team-card-copy p{
  margin:5px 0 0;
  color:var(--muted);
  font-size:.72rem;
  font-weight:500;
}

.team-card.exercise-physiology{
  border-color:rgba(167,233,244,.9);
}

.team-card.exercise-physiology .team-card-copy{
  border-left:4px solid var(--sky);
}

.text-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--navy);
  font-size:.8rem;
  font-weight:600;
}

.text-link:hover span,
.text-link:focus-visible span{text-decoration:underline}

.faq-section{
  border-top:1px solid rgba(23,65,111,.08);
  background:var(--mist);
}

.faq-grid{
  display:grid;
  grid-template-columns:minmax(245px,.45fr) minmax(0,1fr);
  gap:65px;
  align-items:start;
}

.faq-heading{position:sticky;top:28px}

.faq-heading p{
  max-width:340px;
  margin:15px 0 20px;
  color:var(--muted);
  font-size:.88rem;
}

.accordion{
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:4px;
  background:#fff;
}

.accordion details+details{border-top:1px solid var(--line)}

.accordion summary{
  display:flex;
  min-height:62px;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:16px 19px;
  color:var(--navy);
  cursor:pointer;
  font:600 .88rem/1.4 Inter,Arial,sans-serif;
  list-style:none;
}

.accordion summary::-webkit-details-marker{display:none}

.accordion summary span{
  position:relative;
  width:27px;
  height:27px;
  flex:0 0 auto;
  border-radius:50%;
  background:var(--sky-soft);
}

.accordion summary span::before,
.accordion summary span::after{
  position:absolute;
  top:50%;
  left:50%;
  width:10px;
  height:2px;
  background:var(--navy);
  content:"";
  transform:none;
}

.accordion summary span::after{
  transform:translate(-50%,-50%) rotate(90deg);
  transition:transform .2s;
}

.accordion details[open] summary span::after{transform:translate(-50%,-50%) rotate(0)}

.answer{
  padding:0 65px 18px 19px;
  color:var(--muted);
  font-size:.8rem;
}

.answer p{margin:0}

.final-cta{
  position:relative;
  overflow:hidden;
  padding:72px 0;
  background:
    radial-gradient(circle at 88% 12%,rgba(167,233,244,.24),transparent 25%),
    linear-gradient(128deg,var(--navy-deep),var(--navy));
  color:#fff;
}

.final-cta::before{
  position:absolute;
  top:-115px;
  left:-60px;
  width:300px;
  height:300px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:50%;
  content:"";
}

.final-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1fr auto;
  gap:55px;
  align-items:center;
}

.final-cta .eyebrow{color:var(--sky)}
.final-cta h2{max-width:760px;color:#fff}

.final-cta p{
  max-width:760px;
  margin:17px 0 0;
  color:rgba(255,255,255,.73);
}

.final-actions{
  display:flex;
  min-width:320px;
  flex-direction:column;
  gap:10px;
}

.site-footer{
  border-top:1px solid var(--line);
  background:#fff;
}

.footer-inner{
  display:grid;
  min-height:108px;
  grid-template-columns:1fr auto auto;
  gap:35px;
  align-items:center;
}

.footer-inner .brand-logo{height:42px}

.footer-inner p{
  margin:0;
  color:var(--muted);
  font-size:.7rem;
}

.footer-inner nav{display:flex;gap:17px}

.footer-inner nav a{
  color:var(--muted);
  font-size:.7rem;
  font-weight:600;
}

.footer-inner nav a:hover{text-decoration:underline}

.reveal{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .65s ease,transform .65s ease;
}

.reveal.visible{
  opacity:1;
  transform:none;
}

.hub-page{background:var(--warm)}
.hub-main{padding:75px 0}
.hub-main h1{max-width:700px}
.hub-main>div>p{margin:18px 0 35px;color:var(--muted)}

.hub-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}

.hub-card{
  position:relative;
  display:flex;
  min-height:155px;
  flex-direction:column;
  justify-content:center;
  padding:25px 65px 25px 25px;
  border:1px solid var(--line);
  border-radius:4px;
  background:#fff;
  box-shadow:var(--shadow-soft);
  transition:.25s ease;
}

.hub-card:hover{
  border-color:var(--sky);
  transform:translateY(-3px);
}

.hub-card span{
  margin-bottom:7px;
  color:var(--muted);
  font-size:.7rem;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.hub-card strong{
  color:var(--navy);
  font:600 1.12rem/1.35 Inter,Arial,sans-serif;
}

.hub-card svg{
  position:absolute;
  right:24px;
  bottom:24px;
  color:var(--navy);
}

@media(max-width:980px){
  .header-phone small{display:none}
  .hero-grid{grid-template-columns:1fr;gap:34px}
  .hero-media{width:min(760px,100%);grid-column:1;grid-row:1}
  .hero-copy{grid-column:1;grid-row:2}
  .lead-form-grid{grid-template-columns:minmax(250px,.5fr) minmax(430px,.82fr);gap:38px}
  .team-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .overview-grid{grid-template-columns:320px 1fr;gap:45px}
  .overview-photo{min-height:390px}
  .tab-panel{grid-template-columns:1fr;gap:25px}
  .tab-panels{min-height:420px}
}

@media(max-width:760px){
  .wrap{width:min(100% - 32px,680px)}
  .header-inner{min-height:68px}
  .brand-logo{height:43px;max-width:min(220px,65vw)}
  .header-actions .button-header{display:none}
  .header-phone span{display:none}
  .header-phone{
    display:grid;
    width:42px;
    height:42px;
    place-items:center;
    border:1px solid var(--line);
    border-radius:50%;
  }
  .hero-grid{
    min-height:0;
    grid-template-columns:1fr;
    gap:14px;
    padding-block:24px 28px;
  }
  h1{font-size:clamp(1.3rem,5.3vw,1.85rem);line-height:1.18}
  .hero-lede{font-size:.92rem;margin-top:9px;line-height:1.5}
  /* Caption sits between video and headline on mobile - hide it to close the gap. */
  .hero-media figcaption{display:none}
  .hero-actions{margin-top:16px}
  .video-shell{border-width:5px;border-radius:10px}
  .lead-form-grid{grid-template-columns:1fr;gap:18px}

  /* Form-first on mobile: the copy block was 360px of a 679px usable screen,
     pushing the form out of view. Keep the eyebrow and heading for context,
     drop the rest - the phone number is already in the sticky header. */
  .lead-form-copy>p,
  .lead-form-copy .form-points,
  .lead-form-copy .form-phone{display:none}
  .lead-form-copy h2{margin-bottom:0}
  .lead-form-copy{position:static;padding-top:0}
  .trust-bar ul{grid-template-columns:1fr 1fr}
  .trust-bar li{min-height:64px;justify-content:flex-start;text-align:left}
  .trust-bar li:nth-child(odd){border-left:0}
  .trust-bar li:nth-child(n+3){border-top:1px solid rgba(23,65,111,.11)}
  .section{padding:59px 0}
  .overview-grid{grid-template-columns:1fr;gap:39px}
  .overview-photo{min-height:370px}
  .photo-note{right:15px;bottom:15px}
  .care-tabs{grid-template-columns:1fr}
  .tab-list{
    flex-direction:row;
    overflow-x:auto;
    padding:7px;
    scrollbar-width:thin;
  }
  .tab-button{
    min-width:155px;
    min-height:50px;
    flex:1 0 auto;
    border-right:1px solid rgba(255,255,255,.12);
    border-bottom:0;
    text-align:center;
  }
  .tab-button.active::after{display:none}
  .tab-panels{min-height:0}
  .tab-panel{padding:29px 24px}
  .human-card{grid-template-columns:1fr}
  .human-photo{min-height:360px}
  .human-copy{padding:34px 29px}
  .faq-grid{grid-template-columns:1fr;gap:30px}
  .faq-heading{position:static}
  .final-grid{grid-template-columns:1fr;gap:30px}
  .final-actions{min-width:0}
  .footer-inner{
    grid-template-columns:1fr auto;
    padding-block:25px;
  }
  .footer-inner p{grid-column:1/-1;grid-row:2}
  .hub-grid{grid-template-columns:1fr}
}

@media(max-width:520px){
  .hero-actions{display:grid}
  .hero-actions .button{width:100%}
  .hero-media figcaption{font-size:.7rem}
  .video-play{padding:9px 16px 9px 12px;font-size:.76rem;bottom:11px;left:11px}
  .video-play-icon{width:23px;height:23px}
  .video-play-label{font-size:.76rem}
  .lead-form-section{padding-block:55px}
  .lead-form-card{padding:4px}
  .team-grid{grid-template-columns:1fr}
  .team-photo{height:240px}
  .trust-bar ul{grid-template-columns:1fr}
  .trust-bar li+li{border-top:1px solid rgba(23,65,111,.11);border-left:0}
  .overview-photo{min-height:315px}
  .check-list,
  .step-list,
  .support-list{grid-template-columns:1fr}
  .tab-panel{padding:27px 19px}
  .human-photo{min-height:310px}
  .inline-actions{display:grid}
  .inline-actions .button{width:100%}
  .final-cta{padding:59px 0}
  .footer-inner{grid-template-columns:1fr}
  .footer-inner nav{grid-row:auto}
  .footer-inner p{grid-column:auto;grid-row:auto}
}

@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,
  *::before,
  *::after{
    scroll-behavior:auto!important;
    transition-duration:.01ms!important;
    animation-duration:.01ms!important;
    animation-iteration-count:1!important;
  }
  .reveal{opacity:1;transform:none}
}
