/* ============================================================
   Agathisha — Inner page styles
   ============================================================ */

/* ---------- Header: logo left, everything right-aligned ---------- */
.hdr { background: #fff; position: sticky; top: 0; z-index: 100; transition: box-shadow 0.3s; }
.hdr.is-stuck { box-shadow: 0 6px 26px rgba(16, 33, 69, 0.16); }
.hdr__in { display: flex; align-items: center; gap: 30px; padding-top: 15px; padding-bottom: 15px; transition: padding 0.3s; }
.hdr__logo {
  flex: 0 0 auto; animation: hdrFromLeft 0.6s 0.05s both;
  position: relative; display: inline-block; overflow: hidden; border-radius: 8px;
}
.hdr__logo img {
  height: 46px; width: auto; transition: height 0.3s, transform 0.3s;
  animation: logoPulse 3s ease-in-out infinite;
}
.hdr__logo:hover img { transform: scale(1.03); }
.hdr__logo::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 54px; left: -90px;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.75), transparent);
  transform: skewX(-20deg); pointer-events: none;
  animation: logoShine 3s ease-in-out infinite;
}
@keyframes logoShine {
  0%       { left: -90px; }
  40%, 100% { left: 115%; }
}
@keyframes logoPulse {
  0%, 12%, 100% { transform: scale(1); }
  6%            { transform: scale(1.035); }
}
.hdr.is-stuck .hdr__logo img { height: 42px; }
.hdr.is-stuck .hdr__in { padding-top: 10px; padding-bottom: 10px; }
.hdr__right { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 11px; align-items: flex-end; }
.hdr__line1 {
  display: flex; align-items: center; justify-content: flex-end; gap: 26px;
  border-bottom: 1px dashed var(--border); padding-bottom: 10px;
  width: 100%; animation: hdrFromTop 0.6s 0.15s both;
}
.hdr__contact { display: flex; gap: 22px; align-items: center; font-size: 13px; color: var(--body); white-space: nowrap; }
.hdr__contact b { color: var(--heading); font-weight: 600; }
.hdr__actions { display: flex; align-items: center; gap: 16px; }

@keyframes hdrFromLeft {
  from { opacity: 0; transform: translateX(-26px); }
  to   { opacity: 1; transform: none; }
}
@keyframes hdrFromTop {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: none; }
}
@keyframes hdrPillIn {
  from { opacity: 0; transform: translateX(22px); }
  to   { opacity: 1; transform: none; }
}
.hdr__open {
  display: flex; gap: 7px; align-items: center;
  font-size: 12.5px; font-weight: 600; color: var(--teal); white-space: nowrap;
}
.hdr__open-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green-lite);
  animation: pulseDot 1.8s ease-out infinite;
}
.hdr__book { padding: 9px 18px; font-size: 13px; white-space: nowrap; }
.hdr__pills { display: flex; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }
.hdr__pill {
  font-family: var(--font-head); font-weight: 700; font-size: 12.5px; color: var(--heading);
  background: var(--mint); border-radius: 999px; padding: 8px 12px;
  transition: all 0.22s; white-space: nowrap;
  animation: hdrPillIn 0.5s both;
}
.hdr__pill:nth-child(1) { animation-delay: 0.25s; }
.hdr__pill:nth-child(2) { animation-delay: 0.32s; }
.hdr__pill:nth-child(3) { animation-delay: 0.39s; }
.hdr__pill:nth-child(4) { animation-delay: 0.46s; }
.hdr__pill:nth-child(5) { animation-delay: 0.53s; }
.hdr__pill:nth-child(6) { animation-delay: 0.6s; }
.hdr__pill:nth-child(7) { animation-delay: 0.67s; }
.hdr__pill:hover { background: #DFEDEB; color: var(--teal); transform: translateY(-2px); box-shadow: 0 6px 14px rgba(4, 128, 117, 0.14); }
.hdr__pill.is-active {
  background: linear-gradient(120deg, var(--teal), #12A98E); color: #fff;
  box-shadow: 0 5px 14px rgba(4, 128, 117, 0.3);
}
.hdr__book { position: relative; overflow: hidden; }
.hdr__book::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 46px; left: -70px;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  animation: bookShine 3.6s ease-in-out infinite;
}
@keyframes bookShine {
  0%, 55% { left: -70px; }
  75%, 100% { left: 120%; }
}
@media (max-width: 1240px) {
  .hdr__mail { display: none; }
}
@media (max-width: 1000px) {
  .hdr__contact { display: none; }
  .hdr__line1 { border-bottom: none; padding-bottom: 0; justify-content: flex-end; }
  .hdr__in { align-items: center; }
}
@media (max-width: 900px) {
  .hdr__pills { display: none; }
  .hamburger { display: flex; }
  .hdr__right { gap: 0; }
  .hdr.nav-open .hdr__pills {
    display: flex; flex-direction: column; align-items: stretch; gap: 6px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; padding: 16px 24px 20px;
    box-shadow: 0 20px 40px rgba(16, 33, 69, 0.18);
  }
  .hdr.nav-open .hdr__pill { text-align: center; }
  .hdr__book { display: none; }
}
.nav__link.is-active { color: var(--teal); position: relative; }
.nav__link.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px;
  height: 2.5px; border-radius: 2px; background: var(--orange);
}

/* ---------- Page banner ---------- */
.banner {
  position: relative; overflow: hidden;
  background: linear-gradient(115deg, var(--navy-900) 0%, var(--navy-800) 55%, #0A3155 100%);
  padding: 64px 0 68px; text-align: center;
}
.banner::before, .banner::after {
  content: ""; position: absolute; width: 170px; height: 170px;
  background-image: radial-gradient(rgba(243, 120, 46, 0.5) 2px, transparent 2.5px);
  background-size: 18px 18px;
}
.banner::before { left: -30px; top: 20px; }
.banner::after { right: -30px; bottom: 10px; }
.banner__crumb { font-size: 13.5px; color: #B6C4DA; margin-bottom: 12px; }
.banner__crumb a { color: var(--green-lite); }
.banner__crumb a:hover { text-decoration: underline; }
.banner__title { color: #fff; font-size: 40px; font-weight: 800; letter-spacing: -0.6px; }
.banner__sub { color: #C7D2E2; font-size: 16px; max-width: 620px; margin: 14px auto 0; }

/* ---------- Generic sections ---------- */
.section { padding: 84px 0; }
.section--mint { background: var(--mint); }
.section--gray { background: var(--gray-bg); }
.section--dark { background: var(--navy-800); }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.section__head .h2 { margin-bottom: 14px; }
.section__head p { font-size: 16px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-head); font-size: 13px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase; color: var(--teal-ink);
  margin-bottom: 14px;
}
.eyebrow::before, .eyebrow::after { content: ""; width: 26px; height: 2px; background: #F0B08A; border-radius: 2px; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.about-grid__media img { border-radius: 18px; box-shadow: var(--shadow); }
.about-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
.about-strip figure { margin: 0; border-radius: 14px; overflow: hidden; position: relative; box-shadow: var(--shadow); }
.about-strip img { width: 100%; height: 190px; object-fit: cover; transition: transform 0.4s; }
.about-strip figure:hover img { transform: scale(1.06); }
.about-strip figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 14px 12px; text-align: center;
  font-family: var(--font-head); font-size: 13.5px; font-weight: 700; color: #fff;
  background: linear-gradient(transparent, rgba(2, 28, 63, 0.85));
}
.about-grid p { margin-bottom: 16px; }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.vm-card { border-radius: 18px; padding: 40px 38px; position: relative; overflow: hidden; }
.vm-card--vision { background: var(--navy-800); }
.vm-card--mission { background: var(--card-mint); border: 1px solid #DBEAE8; }
.vm-card__icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
}
.vm-card--vision .vm-card__icon { background: rgba(255, 255, 255, 0.1); }
.vm-card--mission .vm-card__icon { background: #fff; box-shadow: 0 4px 14px rgba(4, 128, 117, 0.15); }
.vm-card h3 { font-size: 24px; font-weight: 800; margin-bottom: 14px; }
.vm-card--vision h3 { color: #fff; }
.vm-card--vision p { color: #AAB6C9; font-size: 14.5px; }
.vm-card--mission p { font-size: 14.5px; }
.vm-card ul { margin-top: 12px; }
.vm-card li {
  position: relative; padding-left: 26px; margin-bottom: 10px;
  font-size: 14.5px; color: var(--body);
}
.vm-card li::before { content: "\2713"; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.check-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.check-item {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 18px 20px; font-family: var(--font-head);
  font-size: 15px; font-weight: 700; color: var(--heading);
  transition: all 0.25s;
}
.check-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #CBE2DF; }
.check-item__tick {
  flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%;
  background: rgba(4, 128, 117, 0.1); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800;
}
.coe-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.coe-item {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px; padding: 18px 20px; transition: all 0.25s;
}
.coe-item:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-3px); }
.coe-item__emoji { font-size: 24px; }
.coe-item span:last-child { font-family: var(--font-head); font-size: 14.5px; font-weight: 700; color: #E8ECF4; }

/* ---------- Treatments ---------- */
.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.svc-card {
  background: #fff; border: 1px solid var(--border); border-radius: 18px;
  padding: 34px 34px 30px; transition: all 0.25s; position: relative; overflow: hidden;
}
.svc-card__photo {
  margin: -34px -34px 22px; height: 190px; overflow: hidden;
}
.svc-card__photo img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s;
}
.svc-card:hover .svc-card__photo img { transform: scale(1.05); }
.svc-card .svc-card__icon {
  margin-top: -64px; position: relative; border: 4px solid #fff;
  box-shadow: 0 6px 16px rgba(16, 33, 69, 0.15);
}
.svc-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--teal); opacity: 0; transition: opacity 0.25s;
}
.svc-card:nth-child(even)::before { background: var(--orange); }
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.svc-card:hover::before { opacity: 1; }
.svc-card__icon { width: 58px; height: 58px; border-radius: 16px; margin-bottom: 18px; }
.svc-card h3 { font-size: 19px; font-weight: 800; margin-bottom: 10px; }
.svc-card p { font-size: 14.5px; }
.svc-card__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tag {
  font-size: 12px; font-weight: 600; color: var(--teal-dark);
  background: rgba(4, 128, 117, 0.08); border-radius: 999px; padding: 4px 12px;
}

/* (Conditions styles now live in the split-layout block further down.) */

/* ---------- Regenerative ---------- */
.therapy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.therapy-card {
  background: #fff; border-radius: 18px; border: 1px solid var(--border);
  padding: 36px 30px; text-align: center; transition: all 0.25s; position: relative;
  overflow: hidden;
}
.therapy-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.therapy-card__photo { margin: -36px -30px 0; height: 160px; overflow: hidden; }
.therapy-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.therapy-card:hover .therapy-card__photo img { transform: scale(1.05); }
.therapy-card__photo + .therapy-card__abbr {
  margin-top: -37px; position: relative; border: 4px solid #fff;
}
.therapy-card__abbr {
  width: 74px; height: 74px; margin: 0 auto 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 19px; font-weight: 800; color: #fff;
}
.therapy-card:nth-child(1) .therapy-card__abbr { background: var(--teal); }
.therapy-card:nth-child(2) .therapy-card__abbr { background: var(--navy-btn); }
.therapy-card:nth-child(3) .therapy-card__abbr { background: var(--orange); }
.therapy-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.therapy-card p { font-size: 14px; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; text-align: center; padding: 0 10px; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  display: flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; margin: 0 auto 16px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.08); border: 1.5px solid rgba(255, 255, 255, 0.25);
  font-family: var(--font-head); font-size: 17px; font-weight: 800; color: var(--green-lite);
}
.step + .step::after {
  content: ""; position: absolute; top: 28px; left: calc(-50% + 40px); width: calc(100% - 80px);
  border-top: 2px dashed rgba(255, 255, 255, 0.25);
}
.step h4 { color: #fff; font-size: 15.5px; font-weight: 700; margin-bottom: 8px; }
.step p { color: #AAB6C9; font-size: 13px; line-height: 1.55; }

/* ---------- Specialists ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  overflow: hidden; transition: all 0.25s;
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.team-card img { width: 100%; aspect-ratio: 160 / 118; object-fit: cover; }
.team-card__body { padding: 20px 20px 22px; }
.team-card h4 { font-size: 16px; font-weight: 800; }
.team-card__role { font-size: 13px; color: var(--teal); font-weight: 600; margin: 4px 0 10px; }
.team-card p { font-size: 13px; line-height: 1.55; }

/* ---------- Resources ---------- */
.res-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.res-card {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 30px 28px; transition: all 0.25s;
}
.res-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.res-card__icon {
  width: 50px; height: 50px; border-radius: 12px; font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(4, 128, 117, 0.09); margin-bottom: 16px;
}
.res-card h4 { font-size: 16.5px; font-weight: 800; margin-bottom: 8px; }
.res-card p { font-size: 13.5px; margin-bottom: 14px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 50px; align-items: start; }
.info-card {
  display: flex; gap: 16px; background: #fff; border: 1px solid var(--border);
  border-radius: 14px; padding: 20px 22px; margin-bottom: 14px; transition: all 0.25s;
}
.info-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.info-card__icon {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 12px; font-size: 19px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(4, 128, 117, 0.09);
}
.info-card h4 { font-size: 15px; font-weight: 800; margin-bottom: 3px; }
.info-card p { font-size: 13.5px; line-height: 1.55; }
.contact-form {
  background: #fff; border: 1px solid var(--border); border-radius: 18px;
  box-shadow: var(--shadow); padding: 38px 36px;
}
.contact-form h3 { font-size: 21px; font-weight: 800; margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-family: var(--font-head); font-size: 13px; font-weight: 700;
  color: var(--heading); margin-bottom: 7px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; border: 1.5px solid var(--border); border-radius: 10px;
  padding: 12px 14px; font-family: var(--font-body); font-size: 14px;
  color: var(--heading); background: #FCFDFD; outline: none; transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--teal); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-msg { margin-top: 14px; font-size: 14px; font-weight: 600; color: var(--teal); min-height: 20px; }
.map-box {
  margin-top: 10px; border-radius: 18px; overflow: hidden;
  background: var(--card-mint); border: 1px solid #DBEAE8;
  display: flex; align-items: center; justify-content: center;
  min-height: 220px; text-align: center; padding: 30px;
}
.map-box p { font-size: 14px; }
.map-box .pin { font-size: 34px; display: block; margin-bottom: 10px; }

/* ---------- Patient journey ---------- */
.pj-banner { background: linear-gradient(180deg, #fff, var(--mint)); overflow: hidden; }
.pj-banner__in { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; padding-top: 56px; padding-bottom: 64px; }
.pj-banner__title { font-size: 44px; line-height: 1.15; color: var(--heading); margin: 10px 0 16px; }
.pj-banner__title em { font-style: italic; }
.pj-banner__sub { font-size: 16px; margin-bottom: 26px; max-width: 460px; }
.pj-banner .banner__crumb { text-align: left; color: var(--body); }
.pj-banner .banner__crumb a { color: var(--teal); }
.pj-banner__media { position: relative; }
.pj-banner__media img { border-radius: 20px; box-shadow: 0 20px 50px rgba(16, 33, 69, 0.18); }
.pj-banner__chip {
  position: absolute; left: 22px; bottom: -16px;
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border-radius: 999px; padding: 10px 18px;
  font-size: 13px; font-weight: 600; color: var(--heading);
  box-shadow: 0 10px 26px rgba(16, 33, 69, 0.16);
}

.pj-timeline { position: relative; max-width: 980px; margin: 0 auto; padding: 10px 0 6px; }
.pj-timeline::before {
  content: ""; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px;
  transform: translateX(-50%);
  background: repeating-linear-gradient(180deg, #BFD8D4 0 8px, transparent 8px 16px);
}
.pj-step { position: relative; width: 50%; padding: 0 44px 34px 0; }
.pj-step--right { margin-left: 50%; padding: 0 0 34px 44px; }
.pj-step__dot {
  position: absolute; top: 34px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--teal); border: 4px solid #fff; box-shadow: 0 0 0 2px #BFD8D4;
}
.pj-step .pj-step__dot { right: -8px; }
.pj-step--right .pj-step__dot { left: -8px; }
.pj-step__card {
  display: flex; background: #fff; border: 1px solid var(--border); border-radius: 16px;
  overflow: hidden; transition: all 0.25s;
}
.pj-step__card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pj-step__img { width: 132px; object-fit: cover; flex: 0 0 auto; }
.pj-step__body { padding: 20px 22px; position: relative; }
.pj-step__icon {
  position: absolute; top: 18px; right: 18px;
  width: 38px; height: 38px; border-radius: 10px; font-size: 17px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(4, 128, 117, 0.09);
}
.pj-step__body h3 { font-size: 18px; color: var(--heading); margin-bottom: 8px; padding-right: 44px; }
.pj-step__no { color: var(--orange); }
.pj-step__body p { font-size: 13.5px; text-align: justify; hyphens: auto; }

.pj-bring { background: var(--navy-800); padding: 72px 0; }
.pj-bring__in { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: center; }
.pj-bring__sub { color: #AAB6C9; font-size: 15px; margin-top: 14px; }
.pj-bring__list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pj-bring__item {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px; padding: 14px 18px;
  color: #E8ECF4; font-size: 14px; font-weight: 500; transition: all 0.25s;
}
.pj-bring__item:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-2px); }
.pj-bring__item span {
  width: 26px; height: 26px; border-radius: 50%; flex: 0 0 auto;
  background: rgba(47, 201, 143, 0.18); color: var(--green-lite);
  display: flex; align-items: center; justify-content: center; font-size: 12px;
}

.pj-promises { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 1040px; margin: 0 auto; }
.pj-promise {
  display: flex; gap: 20px; background: #fff; border: 1px solid #DBEAE8;
  border-radius: 16px; padding: 26px 28px; transition: all 0.25s;
}
.pj-promise:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pj-promise__no {
  flex: 0 0 auto; font-family: var(--font-head); font-size: 38px; line-height: 1;
  color: var(--teal); opacity: 0.85;
}
.pj-promise h4 { font-size: 17px; color: var(--heading); margin-bottom: 6px; }
.pj-promise p { font-size: 13.5px; text-align: justify; hyphens: auto; }

/* ---------- Page CTA strip ---------- */
.page-cta {
  background: linear-gradient(115deg, var(--cta-1) 0%, #0E4149 55%, var(--cta-2) 100%);
  padding: 56px 0;
}
.page-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.page-cta h2 { color: #fff; font-size: 27px; font-weight: 800; }
.page-cta h2 em { color: var(--orange-text); }
.page-cta p { color: #AFC8CB; font-size: 14.5px; margin-top: 6px; }

/* ---------- Crisp icon tiles ---------- */
.ico-tile {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 14px; flex: 0 0 auto;
  transition: transform .28s, background .28s;
}
.ico-tile--teal   { background: rgba(4, 128, 117, .1);  color: var(--teal); }
.ico-tile--orange { background: rgba(243, 120, 46, .12); color: var(--orange); }
.ico-tile--navy   { background: rgba(16, 33, 69, .08);  color: var(--heading); }
.ico-tile--green  { background: rgba(47, 201, 143, .16); color: #0F8A63; }
.ico-tile--glass  { background: rgba(255, 255, 255, .1); color: var(--green-lite); }
.ico { display: block; }

/* stats row */
.stats__icon { width: 52px; height: 52px; border-radius: 15px; }
.stats__item:hover .ico-tile { transform: translateY(-3px) scale(1.05); }

/* dark section rows + pillars */
.dark__row-icon { width: 42px; height: 42px; border-radius: 12px; }
.pillar .pillar__ico {
  display: flex; align-items: center; justify-content: center;
  width: 50px; height: 50px; min-height: 0; margin: 0 auto 12px;
  padding: 0; line-height: 0; font-size: 0;
  border-radius: 50%; color: var(--green-lite);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  transition: transform .28s, background .28s;
}
.pillar .pillar__ico svg { width: 24px; height: 24px; display: block; }
.pillar:hover .pillar__ico { transform: translateY(-4px); background: rgba(47, 201, 143, .16); }

/* programs carousel circles */
.program__circle { border-radius: 50%; }

/* ---------- Stacked circular avatars ---------- */
.avatars { display: inline-flex; align-items: center; }
.avatars__img {
  width: 40px; height: 40px; border-radius: 50%;
  border: 2.5px solid #fff; object-fit: cover;
  box-shadow: 0 3px 10px rgba(16, 33, 69, .16);
  transition: transform .25s;
}
.avatars__img + .avatars__img { margin-left: -13px; }
.avatars:hover .avatars__img { transform: translateY(-2px); }
.avatars__more {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; margin-left: -13px; border-radius: 50%;
  border: 2.5px solid #fff; background: var(--teal); color: #fff;
  font-size: 11.5px; font-weight: 600; letter-spacing: .2px;
  box-shadow: 0 3px 10px rgba(16, 33, 69, .16);
}
.avatars--sm .avatars__img { width: 34px; height: 34px; border-width: 2px; margin-left: -11px; }
.avatars--sm .avatars__img:first-child { margin-left: 0; }
.avatars--light .avatars__img, .avatars--light .avatars__more {
  border-color: rgba(255, 255, 255, .85);
}
.avatars--light .avatars__more { background: var(--orange); }

/* ---------- Partner logo strip (home, left column) ---------- */
.partners { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.partners__item {
  display: flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid #DCEAE7; border-radius: 12px;
  padding: 10px 14px; height: 54px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.partners__item img { height: 30px; width: auto; object-fit: contain; }
.partners__item:hover { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(16,33,69,.1); border-color: #B9DBD5; }

/* ---------- Image showcase (home, right of "Helping patients") ---------- */
.shw { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.shw__stage {
  position: relative; flex: 1; min-height: 380px;
  border-radius: 22px; overflow: hidden; background: var(--navy-800);
  box-shadow: 0 20px 48px rgba(16, 33, 69, .18);
}
.shw__photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transform: scale(1.06);
  transition: opacity .7s ease, transform 6s ease;
}
.shw__photo.is-active { opacity: 1; transform: scale(1); }
.shw__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(2,28,63,.15) 20%, rgba(2,28,63,.72) 62%, rgba(2,28,63,.94));
}
.shw__count {
  position: absolute; top: 18px; right: 20px; z-index: 3;
  font-family: var(--font-head); font-size: 12.5px; letter-spacing: 1px;
  color: rgba(255,255,255,.6);
}
.shw__count b { color: #fff; font-weight: 400; font-size: 16px; }
.shw__caption {
  position: absolute; left: 24px; right: 24px; bottom: 22px; z-index: 3;
  opacity: 0; transform: translateY(14px); pointer-events: none;
  transition: opacity .5s ease, transform .5s ease;
}
.shw__caption.is-active { opacity: 1; transform: none; pointer-events: auto; }
.shw__stat {
  display: inline-block; margin-bottom: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: .8px; text-transform: uppercase;
  color: var(--navy-900); background: var(--green-lite);
  border-radius: 999px; padding: 4px 12px;
}
.shw__caption h3 { font-size: 24px; color: #fff; margin-bottom: 7px; }
.shw__caption p { font-size: 13.5px; line-height: 1.6; color: rgba(255,255,255,.82); max-width: 400px; text-align: left; }
.shw__link {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 12px;
  font-family: var(--font-body); font-weight: 600; font-size: 13.5px; color: var(--green-lite);
}
.shw__link:hover { color: #fff; }

.shw__thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.shw__thumb {
  position: relative; overflow: hidden; text-align: left;
  display: flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid #DCEAE7; border-radius: 14px;
  padding: 8px 10px 11px; transition: all .25s;
}
.shw__thumb img { width: 38px; height: 38px; border-radius: 9px; object-fit: cover; flex: 0 0 auto; }
.shw__thumb span {
  font-family: var(--font-head); font-size: 12.5px; line-height: 1.25; color: var(--heading);
}
.shw__thumb:hover { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(16,33,69,.1); }
.shw__thumb.is-active { border-color: var(--teal); background: #F4FBF9; }
.shw__bar {
  position: absolute; left: 0; bottom: 0; height: 3px; width: 100%;
  background: rgba(4,128,117,.14);
}
.shw__bar::after {
  content: ""; display: block; height: 100%; width: 100%;
  background: linear-gradient(90deg, var(--teal), var(--green-lite));
  transform: scaleX(0); transform-origin: left;
}
.shw__thumb.is-active .shw__bar::after { animation: shwBar 5s linear forwards; }
@keyframes shwBar { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.shw__cta {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid #DCEAE7; border-radius: 16px; padding: 12px 16px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.shw__cta:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(16,33,69,.12); border-color: #B9DBD5; }
.shw__cta-av { height: 36px; width: auto; border-radius: 8px; flex: 0 0 auto; }
.shw__cta-text { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.shw__cta-text b { font-family: var(--font-head); font-weight: 400; font-size: 15px; color: var(--heading); }
.shw__cta-text span { font-size: 12.5px; color: var(--body); }
.shw__cta-arrow {
  width: 36px; height: 36px; flex: 0 0 auto; border-radius: 50%;
  background: var(--orange); color: #fff; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s;
}
.shw__cta:hover .shw__cta-arrow { transform: translateX(4px); }

/* ---------- Care bento panel (home, right of "Helping patients") ---------- */
.care { display: flex; flex-direction: column; gap: 16px; min-width: 0; }
.eyebrow--solo::after { display: none; }
.care__head { margin-bottom: 2px; }
.care__title { font-size: 25px; line-height: 1.3; color: var(--heading); }
.care__grid {
  flex: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  grid-template-rows: 1fr 1fr; gap: 14px;
}
.care__tile {
  position: relative; overflow: hidden;
  background: #fff; border: 1px solid #DCEAE7; border-radius: 18px;
  padding: 20px 20px 18px;
  display: flex; flex-direction: column;
  transition: transform .28s, box-shadow .28s, border-color .28s;
}
.care__tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(16, 33, 69, .12);
  border-color: #B9DBD5;
}
.care__tile--hero { grid-row: 1 / span 2; padding: 0; }
.care__no {
  position: absolute; top: 14px; right: 16px; z-index: 2;
  font-family: var(--font-head); font-size: 12px; letter-spacing: 1px;
  color: var(--teal); opacity: .55;
}
.care__tile--hero .care__no { color: #fff; opacity: .9; }
.care__img { width: 100%; height: 150px; object-fit: cover; display: block; transition: transform .5s; }
.care__tile--hero:hover .care__img { transform: scale(1.06); }
.care__body { display: flex; flex-direction: column; padding: 18px 20px 20px; flex: 1; }
.care__icon { width: 46px; height: 46px; border-radius: 12px; margin-bottom: 12px; }
.care__tile--hero .care__icon { margin-top: -44px; border: 3px solid #fff; background: #fff; box-shadow: 0 6px 16px rgba(16,33,69,.14); }
.care__tile b, .care__body b {
  font-family: var(--font-head); font-weight: 400; font-size: 17px;
  color: var(--heading); margin-bottom: 6px;
}
.care__tile > span:not(.care__no):not(.care__chips):not(.care__meter):not(.care__meter-label),
.care__body > span:not(.care__chips) { font-size: 13px; line-height: 1.6; color: var(--body); }
.care__chips { display: flex; gap: 6px; margin-top: 12px; }
.care__chips span {
  font-size: 11px; font-weight: 600; letter-spacing: .4px;
  color: var(--teal-dark); background: rgba(4,128,117,.09);
  border-radius: 999px; padding: 4px 11px;
}
.care__meter {
  display: block; height: 5px; border-radius: 3px;
  background: rgba(4,128,117,.12); margin: 14px 0 7px; overflow: hidden;
}
.care__meter i {
  display: block; height: 100%; width: var(--fill, 70%);
  background: linear-gradient(90deg, var(--teal), var(--green-lite));
  border-radius: 3px; transform-origin: left;
  animation: meterGrow 1.2s cubic-bezier(.22,.61,.36,1) both;
}
@keyframes meterGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.care__meter-label {
  font-family: var(--font-head); font-size: 11.5px; color: var(--teal-dark);
  letter-spacing: .2px;
}
.care__cta {
  display: flex; align-items: center; gap: 14px;
  background: linear-gradient(115deg, var(--navy-800), #0C3A5E);
  border-radius: 18px; padding: 18px 20px;
  transition: transform .28s, box-shadow .28s;
}
.care__cta:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(6, 32, 66, .28); }
.care__cta-icon {
  width: 42px; height: 42px; flex: 0 0 auto; border-radius: 12px;
  background: rgba(255,255,255,.1); font-size: 19px;
  display: flex; align-items: center; justify-content: center;
}
.care__cta-text { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.care__cta-text b { font-family: var(--font-head); font-weight: 400; font-size: 15.5px; color: #fff; }
.care__cta-text span { font-size: 12.5px; color: #AAB6C9; }
.care__cta-arrow {
  width: 36px; height: 36px; flex: 0 0 auto; border-radius: 50%;
  background: var(--orange); color: #fff; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: transform .28s;
}
.care__cta:hover .care__cta-arrow { transform: translateX(4px); }

/* ---------- Decorated light sections (glow + floating clinic icons) ---------- */
.deco-host { position: relative; overflow: hidden; }
.deco-host > .container { position: relative; z-index: 2; }
.deco-host::before, .deco-host::after {
  content: ""; position: absolute; border-radius: 50%;
  filter: blur(70px); pointer-events: none; z-index: 0;
}
.deco-host::before {
  width: 420px; height: 420px; top: -140px; right: -100px;
  background: radial-gradient(circle, rgba(4, 128, 117, 0.13), transparent 70%);
  animation: glowDrift 11s ease-in-out infinite alternate;
}
.deco-host::after {
  width: 380px; height: 380px; bottom: -130px; left: -90px;
  background: radial-gradient(circle, rgba(243, 120, 46, 0.10), transparent 70%);
  animation: glowDrift 13s ease-in-out infinite alternate-reverse;
}
@keyframes glowDrift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-36px, 26px) scale(1.12); }
}
.deco-ico {
  position: absolute; z-index: 1; pointer-events: none;
  color: var(--teal); opacity: 0.07;
  animation: decoFloat ease-in-out infinite alternate;
}
.deco-ico svg { width: 100%; height: 100%; display: block; }
.deco-ico--orange { color: var(--orange); opacity: 0.08; }
.deco-ico--navy { color: var(--heading); opacity: 0.05; }
@keyframes decoFloat {
  from { transform: translateY(0) rotate(var(--rot, 0deg)); }
  to   { transform: translateY(-16px) rotate(calc(var(--rot, 0deg) + 6deg)); }
}

/* softer, non-flat backgrounds for the light sections */
.burnout { background: linear-gradient(180deg, #F3F7F8 0%, #E9F1F0 100%); }
.programs { background: linear-gradient(180deg, #F8F9FA 0%, #EFF3F5 100%); }
.voices { background: linear-gradient(180deg, #FFFFFF 0%, #F3F7F8 100%); }
.faculty { background: linear-gradient(180deg, #FCFCFB 0%, #F2F6F4 100%); }
.faq { background: linear-gradient(180deg, #F7F6F5 0%, #EEF0EF 100%); }

/* lift the flat white cards with soft glow shadows */
.faq__item, .stats__card {
  box-shadow: 0 10px 34px rgba(16, 33, 69, 0.08), 0 2px 8px rgba(4, 128, 117, 0.05);
}
.program__circle { box-shadow: 0 8px 22px rgba(16, 33, 69, 0.1); }
.article__img { box-shadow: 0 8px 20px rgba(16, 33, 69, 0.09); }
.faculty__item img { filter: drop-shadow(0 4px 8px rgba(16, 33, 69, 0.12)); }
.programs__title, .faculty__title, .voices__left .h3, .voices__head .h3 { position: relative; }

/* ---------- Hero video card + lightbox (home) ---------- */
.hero__video {
  position: absolute; z-index: 8;
  display: flex; align-items: center; gap: 14px;
  background: rgba(4, 32, 66, 0.82);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px; padding: 14px 18px;
  cursor: pointer; text-align: left;
  box-shadow: 0 16px 40px rgba(2, 28, 63, 0.45);
  transition: transform 0.25s, box-shadow 0.25s;
  left: 44px; bottom: 44px;
}
.hero__video:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 22px 50px rgba(2, 28, 63, 0.55); }
.hero__play {
  position: relative; flex: 0 0 auto;
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), #12A98E);
  display: flex; align-items: center; justify-content: center;
}
.hero__play svg { margin-left: 3px; position: relative; z-index: 2; }
.hero__play-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(47, 201, 143, 0.75);
  animation: playRing 2.4s ease-out infinite;
}
.hero__play-ring--2 { animation-delay: 1.2s; }
@keyframes playRing {
  0%   { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(1.9); opacity: 0; }
}
.hero__video-text { display: flex; flex-direction: column; line-height: 1.35; }
.hero__video-text b { font-family: var(--font-head); font-weight: 400; font-size: 16px; color: #fff; }
.hero__video-text span { font-size: 12.5px; color: #B9C7DB; }
.hero__video-live {
  display: inline-flex; align-items: center; gap: 6px; align-self: flex-start;
  margin-left: 6px; font-size: 11px; font-weight: 600; color: #fff;
  background: rgba(243, 120, 46, 0.9); border-radius: 999px; padding: 3px 9px;
}
.hero__video-live span {
  width: 6px; height: 6px; border-radius: 50%; background: #fff;
  animation: pulseDot 1.6s ease-out infinite;
}

.vmodal {
  position: fixed; inset: 0; z-index: 400;
  background: rgba(2, 16, 36, 0.85);
  backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.vmodal.is-open { display: flex; animation: fadeIn 0.3s; }
.vmodal__box { position: relative; width: min(960px, 94vw); animation: heroUp 0.35s; }
.vmodal__close {
  position: absolute; top: -46px; right: 0;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.12); color: #fff; font-size: 22px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.vmodal__close:hover { background: var(--orange); transform: rotate(90deg); }
.vmodal__frame {
  position: relative; padding-top: 56.25%;
  border-radius: 16px; overflow: hidden;
  background: #000; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.vmodal__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ---------- Why-choose marquee ribbon (home) ---------- */
.marquee {
  background: linear-gradient(90deg, var(--teal), #0A6B62 55%, var(--teal-dark));
  overflow: hidden; padding: 13px 0; position: relative;
}
.marquee__track {
  display: inline-flex; align-items: center; gap: 26px;
  white-space: nowrap; will-change: transform;
  animation: marqueeMove 34s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex; align-items: center; gap: 9px;
  color: #EAF6F3; font-size: 13.5px; font-weight: 500; letter-spacing: 0.4px;
}
.marquee__tick {
  width: 20px; height: 20px; border-radius: 50%; flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.16); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10.5px;
}
.marquee__sep { color: rgba(255, 255, 255, 0.45); font-size: 11px; }
@keyframes marqueeMove { to { transform: translateX(-50%); } }

/* ---------- Home team cards (dark section) ---------- */
.mentors--team .mentors__card { position: relative; background: #0B2B50; }
.mentors--team img { aspect-ratio: 160 / 108; object-fit: cover; }
.mentors__label { padding: 10px 12px 12px; text-align: center; }
.mentors__label b {
  display: block; font-family: var(--font-head); font-weight: 400;
  color: #fff; font-size: 13.5px; line-height: 1.3;
}
.mentors__label span { font-size: 11.5px; color: #9DB1CC; }

/* ============================================================
   Premium typography pass — Marcellus (headings) + Work Sans (body/UI)
   ============================================================ */

/* Marcellus ships only weight 400 — kill synthetic bold on all headings */
h1, h2, h3, h4, h5, h6,
.h2, .h3, .hero__title, .banner__title, .stats__value,
.burnout__card-title, .feature__title, .dark__row-title, .programs__title,
.program__label, .quote-card__name, .article__title, .faculty__name,
.cta__card h4, .cta__experts h4, .faq__q, .footer__col h5, .footer__contact h5,
.footer__cta-text h3, .footer__news-label, .page-cta h2,
.vm-card h3, .svc-card h3, .cond-card h4, .therapy-card h3, .step h4,
.team-card h4, .res-card h4, .info-card h4, .contact-form h3, .hero__trust-label {
  font-weight: 400 !important;
  letter-spacing: 0.3px;
}
.hero__title, .banner__title, .h2 { letter-spacing: 0.2px; }

/* UI elements stay in Work Sans (Marcellus is for display text only) */
.btn, .pill, .hdr__pill, .link-teal, .hero__badge, .eyebrow, .tag,
.footer__motto, .therapy-card__abbr, .form-group label, .cond-card__num,
.check-item, .coe-item span:last-child, .article__cat, .hdr__open,
.footer__open, .pillar span, .step::before, .o4-book {
  font-family: var(--font-body);
}
.btn { font-weight: 600; }
.pill, .hdr__pill { font-weight: 600; }

/* Justified paragraphs for long-form text */
.lead, .hero__text, .about-grid p, .vm-card p, .vm-card li,
.svc-card p, .cond-card p, .therapy-card p, .res-card p, .team-card p,
.faq__a p, .quote-card__text, .dark__lead, .footer__tag,
.section__head p, .step p, .cta__card p, .cta__experts p {
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}
/* keep centered blocks centered, not justified */
.section__head p, .therapy-card p, .step p, .feature__text { text-align: center; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .check-grid, .coe-grid, .therapy-grid, .res-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step + .step::after { display: none; }
  .about-grid, .vm-grid, .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 1100px) {
  .about-strip { grid-template-columns: 1fr 1fr; }
  /* stacked: copy first, showcase under it */
  .burnout__left { grid-column: 1; grid-row: 1; }
  .shw { grid-column: 1; grid-row: 2; }
  .care__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .care__tile--hero { grid-row: 1; grid-column: 1 / span 2; }
  .care__img { height: 180px; }
  .pj-banner__in, .pj-bring__in { grid-template-columns: 1fr; gap: 40px; }
  .pj-timeline::before { left: 8px; }
  .pj-step, .pj-step--right { width: 100%; margin-left: 0; padding: 0 0 26px 34px; }
  .pj-step .pj-step__dot, .pj-step--right .pj-step__dot { left: 0; right: auto; }
  .pj-promises { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  /* keep pre-reveal transforms from widening the page on phones */
  .reveal-left { transform: translateX(-18px); }
  .reveal-right { transform: translateX(18px); }

  /* ticker: keep the headline, drop the extras on phones */
  .topbar { font-size: 12px; }
  .topbar__inner { gap: 12px; }
  .ticker { gap: 9px; }
  .ticker__icon { width: 21px; height: 21px; }
  .ticker__cta, .ticker__dots, .ticker__tag { display: none; }
  .ticker__text { font-size: 11.5px; }
  .topbar__socials a { width: 21px; height: 21px; border-radius: 5px; }
  .topbar__socials a svg { width: 11px; height: 11px; }

  /* breathing room around the logo row on phones */
  .hdr__in { padding-top: 20px; padding-bottom: 20px; }
  .hdr.is-stuck .hdr__in { padding-top: 14px; padding-bottom: 14px; }

  /* mobile play pill sits bottom-left (see style.css hero block) */
  .hero__video {
    left: 40px; right: auto; top: auto; bottom: 24px;
    border-radius: 999px; text-align: left;
  }
  .hero__video-live { display: none; }
  .hero__play-ring { border-width: 2.5px; }
  .hero__video-text b {
    font-size: 13px; color: #fff;
    text-shadow: 0 2px 10px rgba(2, 28, 63, .55);
  }
  .hero__video-text span, .hero__video-live { display: none; }

  .banner__title { font-size: 30px; }
  .section { padding: 60px 0; }
  .check-grid, .coe-grid, .therapy-grid, .res-grid,
  .team-grid, .steps, .svc-grid, .form-row, .about-strip, .pj-bring__list { grid-template-columns: 1fr; }
  .care__grid { grid-template-columns: 1fr; }
  .care__tile--hero { grid-column: 1; }
  .care__title { font-size: 21px; }
  .shw__stage { min-height: 320px; }
  .shw__caption h3 { font-size: 20px; }
  .shw__thumb { flex-direction: column; align-items: flex-start; gap: 6px; padding: 8px 8px 11px; }
  .shw__thumb span { font-size: 11px; }
  .partners__item { padding: 8px 11px; height: 46px; }
  .partners__item img { height: 24px; }
  .stats__item { gap: 11px; min-width: 0; }
  .stats__icon { width: 44px; height: 44px; border-radius: 13px; }
  .stats__icon svg { width: 21px; height: 21px; }
  .stats__item > div { min-width: 0; }
  .pj-banner__title { font-size: 32px; }
  .pj-step__img { display: none; }
}

/* ============================================================
   Accessibility & performance pass
   ============================================================ */

/* --- Visible keyboard focus everywhere --- */
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
  border-radius: 6px;
}
.hero__video:focus-visible,
.topbar__socials a:focus-visible,
.footer__socials a:focus-visible,
.ticker__dot:focus-visible,
.shw__thumb:focus-visible { outline-offset: 4px; }
/* on dark surfaces use the light ring */
.topbar :focus-visible,
.dark :focus-visible,
.footer :focus-visible,
.cta :focus-visible,
.pj-bring :focus-visible,
.shw__stage :focus-visible { outline-color: var(--green-lite); }

/* --- Skip to content --- */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 500;
  background: var(--navy-900); color: #fff;
  padding: 10px 18px; border-radius: 0 0 10px 10px;
  font-size: 14px; font-weight: 600;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* --- Touch targets: keep interactive things >= ~40px tall --- */
.ticker__dot {
  position: relative; width: 8px; height: 8px;
}
.ticker__dot::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 34px; height: 34px; transform: translate(-50%, -50%);
}
.topbar__socials a, .footer__socials a { min-width: 34px; min-height: 34px; }
.quote-card__dots .dot { position: relative; }
.quote-card__dots .dot::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 40px; height: 40px; transform: translate(-50%, -50%);
}
.quote-card__dots { gap: 14px; }
.link-teal, .shw__link { display: inline-flex; align-items: center; min-height: 34px; }
.pill { min-height: 36px; display: inline-flex; align-items: center; }
.footer__bottom-links a { display: inline-block; padding: 6px 2px; }

/* Motion is intentional here — the brand relies on it, so no reduced-motion kill switch. */

/* ============================================================
   Patient testimonials — a distinct colour identity per story
   ============================================================ */
.quote-card { position: relative; }
.quote-card__slide {
  position: relative; overflow: hidden;
  border-radius: 18px; padding: 26px 28px 22px;
  border: 1px solid var(--qc-line);
  background: linear-gradient(150deg, var(--qc-bg) 0%, #fff 78%);
  box-shadow: 0 12px 34px var(--qc-shadow);
}
/* colour identities */
.qc--teal   { --qc-ink:#04756B; --qc-bg:#E4F3F0; --qc-line:#BFE0DA; --qc-shadow:rgba(4,128,117,.14); }
.qc--orange { --qc-ink:#C25309; --qc-bg:#FBEDE4; --qc-line:#F2CDB4; --qc-shadow:rgba(196,86,11,.14); }
.qc--navy   { --qc-ink:#1B3E77; --qc-bg:#E8EEF8; --qc-line:#C4D2E8; --qc-shadow:rgba(16,33,69,.14); }
/* accent bar down the left edge */
.quote-card__slide::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px;
  background: var(--qc-ink);
}
.quote-card__mark {
  font-family: Georgia, serif; font-size: 62px; line-height: .7;
  color: var(--qc-ink); opacity: .28;
  position: absolute; right: 22px; top: 18px;
}
.quote-card__tag {
  display: inline-block; margin-bottom: 14px;
  font-size: 11px; font-weight: 600; letter-spacing: .7px; text-transform: uppercase;
  color: #fff; background: var(--qc-ink);
  border-radius: 999px; padding: 5px 13px;
}
.quote-card__text {
  font-size: 16px; line-height: 1.72; color: #24344F;
  margin-bottom: 20px; text-align: justify; hyphens: auto;
}
.quote-card__person {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px dashed var(--qc-line); padding-top: 16px;
}
.quote-card__person > img {
  width: 46px; height: 46px; border-radius: 50%; flex: 0 0 auto;
  object-fit: cover; border: 2.5px solid #fff;
  box-shadow: 0 0 0 2px var(--qc-ink);
}
.quote-card__person > span { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.quote-card__name {
  font-family: var(--font-head); font-weight: 400 !important;
  font-size: 15.5px; color: var(--heading); line-height: 1.3;
}
.quote-card__role { font-size: 12.5px; color: var(--qc-ink); font-weight: 600; }
.quote-card__stars { color: #E8A33D; letter-spacing: 2px; font-size: 13px; flex: 0 0 auto; }

/* dots pick up each story's colour */
.quote-card__dots .dot { border-color: #A9BCC6; }
.quote-card__dots .dot:nth-child(1).is-active { background: #04756B; border-color: #04756B; }
.quote-card__dots .dot:nth-child(2).is-active { background: #C25309; border-color: #C25309; }
.quote-card__dots .dot:nth-child(3).is-active { background: #1B3E77; border-color: #1B3E77; }

@media (max-width: 760px) {
  .quote-card__slide { padding: 22px 20px 18px; }
  .quote-card__text { font-size: 14.5px; }
  .quote-card__mark { font-size: 48px; right: 16px; }
  .quote-card__person { flex-wrap: wrap; gap: 10px; }
  .quote-card__stars { width: 100%; }
}

/* ============================================================
   Latest from Agathisha — refined article cards
   ============================================================ */
.voices__head { align-items: baseline; }
.voices__pills { flex-wrap: wrap; }
.pill {
  font-family: var(--font-body); font-weight: 600; font-size: 13px;
  border-radius: 999px; padding: 8px 16px;
  border: 1px solid #D8E3E1; background: #fff; color: var(--heading);
  transition: all .22s;
}
.pill:hover { background: var(--mint); border-color: #B9DBD5; color: var(--teal-ink); transform: translateY(-1px); }
.pill.is-active {
  background: var(--navy-btn); border-color: var(--navy-btn); color: #fff;
  box-shadow: 0 5px 14px rgba(7, 36, 73, .22);
}

.articles { gap: 20px; }
.article {
  display: flex; flex-direction: column; overflow: hidden;
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  box-shadow: 0 6px 18px rgba(16, 33, 69, .06);
  transition: transform .28s, box-shadow .28s, border-color .28s;
}
.article:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(16, 33, 69, .14);
  border-color: var(--art-line, #CBE2DF);
}
.article__media { position: relative; display: block; overflow: hidden; }
.article__img {
  width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block;
  border-radius: 0; margin: 0; box-shadow: none;
  transition: transform .5s ease;
}
.article:hover .article__img { transform: scale(1.07); }
.article__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(2, 28, 63, .45));
}
/* category badge — one colour per topic */
.article__cat {
  position: absolute; left: 10px; bottom: 10px; z-index: 2;
  font-size: 10.5px; font-weight: 600; letter-spacing: .7px; text-transform: uppercase;
  color: #fff; background: var(--art-ink, #04756B);
  border-radius: 999px; padding: 4px 11px;
  box-shadow: 0 4px 12px rgba(2, 28, 63, .28);
}
.art--research { --art-ink:#04756B; --art-line:#BFE0DA; }
.art--insights { --art-ink:#1B3E77; --art-line:#C4D2E8; }
.art--news     { --art-ink:#C25309; --art-line:#F2CDB4; }
.art--events   { --art-ink:#7A3E9D; --art-line:#DCC9E8; }

.article__body {
  display: flex; flex-direction: column; flex: 1;
  padding: 14px 16px 16px;
}
.article__title {
  font-size: 15.5px; line-height: 1.4; margin: 0 0 10px;
  color: var(--heading); transition: color .22s;
}
.article:hover .article__title { color: var(--art-ink, var(--teal-ink)); }
.article__meta {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: #7A879B; margin-bottom: 12px;
}
.article__meta .article__read { position: relative; padding-left: 12px; }
.article__meta .article__read::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--art-ink, var(--teal)); transform: translateY(-50%); opacity: .6;
}
.article__more {
  margin-top: auto; display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 600; color: var(--art-ink, var(--teal-ink));
  opacity: 0; transform: translateY(4px);
  transition: opacity .28s, transform .28s;
}
.article:hover .article__more, .article:focus-visible .article__more { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .article__more { opacity: 1; transform: none; }
}
@media (max-width: 760px) {
  .articles { gap: 16px; }
  .article__body { padding: 13px 14px 15px; }
  .article__title { font-size: 15px; }
}

/* the articles sit in a side column — two roomy cards per row reads better than four narrow ones */
.articles { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 620px) { .articles { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ — visual left column + iconised questions
   ============================================================ */
.faq__left { display: flex; flex-direction: column; }
.faq__left .lead { margin-bottom: 24px; }
.faq__figure {
  margin: 0 0 16px; position: relative;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 14px 32px rgba(16, 33, 69, .14);
}
.faq__figure img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; }
.faq__figure figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; gap: 10px;
  padding: 26px 14px 12px;
  font-size: 12.5px; font-weight: 500; color: #fff;
  background: linear-gradient(transparent, rgba(2, 28, 63, .88));
}
.faq__figure-ico {
  width: 28px; height: 28px; flex: 0 0 auto; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, .16); color: var(--green-lite);
}
.faq__help {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 12px 14px; transition: all .25s;
}
.faq__help:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(16, 33, 69, .12); border-color: #B9DBD5; }
.faq__help-text { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.faq__help-text b { font-family: var(--font-head); font-weight: 400; font-size: 14.5px; color: var(--heading); }
.faq__help-text span { font-size: 12px; color: var(--body); }
.faq__help-arrow {
  width: 32px; height: 32px; flex: 0 0 auto; border-radius: 50%;
  background: var(--teal); color: #fff; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s;
}
.faq__help:hover .faq__help-arrow { transform: translateX(3px); }

/* questions with a topic icon */
.faq__q { gap: 14px; align-items: center; }
.faq__q-ico {
  width: 36px; height: 36px; flex: 0 0 auto; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(4, 128, 117, .09); color: var(--teal-ink);
  transition: background .25s, color .25s;
}
.faq__q-text { flex: 1; }
.faq__item.is-open .faq__q-ico { background: var(--teal); color: #fff; }
.faq__item { border: 1px solid transparent; transition: border-color .25s, box-shadow .25s; }
.faq__item.is-open { border-color: #BFE0DA; box-shadow: 0 10px 26px rgba(4, 128, 117, .1); }
.faq__a p { padding-left: 74px; }

@media (max-width: 1100px) {
  .faq__figure { max-width: 420px; }
}
@media (max-width: 760px) {
  .faq__q { gap: 10px; }
  .faq__q-ico { width: 32px; height: 32px; }
  .faq__a p { padding-left: 24px; }
}

/* ============================================================
   Footer brand name — Poppins, clean and unfussy
   ============================================================ */
.footer__name {
  font-family: 'Poppins', 'Segoe UI', sans-serif !important;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .3px;
}
.footer__watermark {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-weight: 600;
  letter-spacing: 14px;
}
.footer__motto {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-weight: 500;
}

/* ============================================================
   Latest from Agathisha — single-row slider, 3 cards in view
   ============================================================ */
.articles__wrap { position: relative; }
.articles {
  display: flex !important;
  grid-template-columns: none !important;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px 2px 8px;
  margin: 0 -2px;
}
.articles::-webkit-scrollbar { display: none; }
.article {
  flex: 0 0 calc((100% - 36px) / 3);   /* 3 across, two 18px gaps */
  scroll-snap-align: start;
}
/* arrows sit on the row's edges */
.articles__wrap .car-btn {
  position: absolute; top: 38%; z-index: 4;
  width: 38px; height: 38px; font-size: 19px;
  background: #fff; color: var(--heading);
  box-shadow: 0 6px 18px rgba(16, 33, 69, .18);
  opacity: 0; transform: translateY(-50%) scale(.9);
  transition: opacity .25s, transform .25s, background .25s, color .25s;
}
.articles__wrap:hover .car-btn,
.articles__wrap .car-btn:focus-visible { opacity: 1; transform: translateY(-50%) scale(1); }
.articles__wrap .car-btn:hover { background: var(--navy-btn); color: #fff; }
.articles__wrap .car-btn--prev { left: -14px; }
.articles__wrap .car-btn--next { right: -14px; }
.articles__wrap .car-btn[disabled] { opacity: 0 !important; pointer-events: none; }

@media (max-width: 1100px) {
  .article { flex-basis: calc((100% - 18px) / 2); }
  .articles__wrap .car-btn { opacity: 1; transform: translateY(-50%) scale(1); }
  .articles__wrap .car-btn--prev { left: -6px; }
  .articles__wrap .car-btn--next { right: -6px; }
}
@media (max-width: 620px) {
  .article { flex-basis: 82%; }
}

/* ============================================================
   Conditions We Treat — split layout with a sticky visual side
   ============================================================ */
.cond-tabs { display: flex; justify-content: center; gap: 12px; margin-bottom: 44px; flex-wrap: wrap; }
.cond-pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 16px 9px 9px; font-size: 13.5px;
}
.cond-pill__ico {
  width: 30px; height: 30px; border-radius: 9px; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  background: rgba(4, 128, 117, .1); color: var(--teal-ink);
  transition: background .22s, color .22s;
}
.cond-pill.is-active .cond-pill__ico { background: rgba(255, 255, 255, .16); color: #fff; }
.cond-pill__n {
  font-size: 11px; font-weight: 600; line-height: 1;
  padding: 3px 7px; border-radius: 999px;
  background: rgba(16, 33, 69, .07); color: var(--body);
}
.cond-pill.is-active .cond-pill__n { background: rgba(255, 255, 255, .18); color: #fff; }

.cond-panel { display: none; }
.cond-panel.is-active {
  display: grid !important;
  grid-template-columns: 320px 1fr;
  gap: 34px; align-items: start;
  animation: fadeIn .45s;
}

/* --- sticky visual side --- */
.cond-side { position: sticky; top: 150px; }
.cond-side__figure {
  margin: 0 0 16px; position: relative;
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 16px 36px rgba(16, 33, 69, .16);
}
.cond-side__figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.cond-side__figure figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; gap: 10px;
  padding: 30px 16px 14px;
  font-family: var(--font-head); font-size: 16px; color: #fff;
  background: linear-gradient(transparent, rgba(2, 28, 63, .88));
}
.cond-side__ico {
  width: 32px; height: 32px; flex: 0 0 auto; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, .16); color: var(--green-lite);
}
.cond-side__blurb { font-size: 14px; line-height: 1.65; text-align: justify; hyphens: auto; margin-bottom: 16px; }
.cond-side__stat {
  display: flex; align-items: baseline; gap: 10px;
  background: #fff; border: 1px solid #DCEAE7; border-radius: 14px;
  padding: 14px 18px; margin-bottom: 14px;
}
.cond-side__stat b {
  font-family: var(--font-head); font-weight: 400;
  font-size: 26px; color: var(--teal-ink); line-height: 1;
}
.cond-side__stat span { font-size: 13px; color: var(--body); }
.cond-side__cta {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: var(--navy-800); color: #fff;
  border-radius: 14px; padding: 14px 18px;
  font-family: var(--font-head); font-size: 14.5px;
  transition: transform .25s, box-shadow .25s;
}
.cond-side__cta:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(6, 32, 66, .3); }

/* --- condition cards --- */
.cond-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cond-card {
  position: relative; overflow: hidden;
  display: flex; gap: 14px;
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 20px 20px 18px;
  transition: transform .28s, box-shadow .28s, border-color .28s;
}
.cond-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--teal); opacity: 0; transition: opacity .28s;
}
.cond-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(16, 33, 69, .13);
  border-color: #BFE0DA;
}
.cond-card:hover::before { opacity: 1; }
.cond-card__ico {
  width: 44px; height: 44px; flex: 0 0 auto; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(4, 128, 117, .09); color: var(--teal-ink);
  transition: background .28s, color .28s;
}
.cond-card:hover .cond-card__ico { background: var(--teal); color: #fff; }
.cond-card__body { flex: 1; min-width: 0; }
.cond-card__body h4 { font-size: 16.5px; margin-bottom: 7px; color: var(--heading); }
.cond-card__body p { font-size: 13.5px; line-height: 1.6; text-align: justify; hyphens: auto; margin-bottom: 10px; }
.cond-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 600; color: var(--teal-ink);
  opacity: 0; transform: translateY(4px);
  transition: opacity .28s, transform .28s;
}
.cond-card:hover .cond-card__link { opacity: 1; transform: none; }
.cond-card__num {
  position: absolute; right: 14px; top: 12px;
  font-family: var(--font-head); font-size: 13px;
  color: var(--teal); opacity: .28;
}

@media (max-width: 1100px) {
  .cond-panel.is-active { grid-template-columns: 1fr; gap: 26px; }
  .cond-side { position: static; display: grid; grid-template-columns: 260px 1fr; gap: 20px; align-items: center; }
  .cond-side__figure { margin: 0; grid-row: span 3; }
  .cond-side__blurb, .cond-side__stat { margin-bottom: 0; }
  .cond-card__link { opacity: 1; transform: none; }
}
@media (max-width: 760px) {
  .cond-list { grid-template-columns: 1fr; }
  .cond-side { grid-template-columns: 1fr; }
  .cond-side__figure { grid-row: auto; }
  .cond-pill { font-size: 12.5px; padding: 7px 13px 7px 7px; }
  .cond-pill__ico { width: 26px; height: 26px; }
}

/* ============================================================
   Mini mega menu — Our Specialists
   ============================================================ */
.hdr__has-mega { position: relative; display: inline-flex; }
.hdr__has-mega .hdr__pill { display: inline-flex; align-items: center; gap: 6px; }
.hdr__chev { transition: transform .25s; opacity: .7; }
.hdr__has-mega:hover .hdr__chev,
.hdr__has-mega:focus-within .hdr__chev { transform: rotate(180deg); }

.mega {
  position: absolute; top: calc(100% + 14px); right: 0; z-index: 120;
  width: 690px; padding: 22px 22px 16px;
  background: #fff; border: 1px solid #E1EDEA; border-radius: 18px;
  box-shadow: 0 26px 60px rgba(16, 33, 69, .18);
  opacity: 0; visibility: hidden; transform: translateY(10px) scale(.985);
  transform-origin: top right;
  transition: opacity .26s ease, transform .26s cubic-bezier(.22,.61,.36,1), visibility .26s;
}
/* little arrow pointing at the pill */
.mega::before {
  content: ""; position: absolute; top: -7px; right: 46px;
  width: 13px; height: 13px; background: #fff;
  border-left: 1px solid #E1EDEA; border-top: 1px solid #E1EDEA;
  transform: rotate(45deg); border-radius: 3px 0 0 0;
}
/* hover bridge so the gap doesn't close the menu */
.hdr__has-mega::after {
  content: ""; position: absolute; top: 100%; right: 0; width: 100%; height: 18px;
}
.hdr__has-mega:hover .mega,
.hdr__has-mega:focus-within .mega,
.hdr__has-mega.is-open .mega {
  opacity: 1; visibility: visible; transform: translateY(0) scale(1);
}

.mega__head {
  position: relative; z-index: 1;
  margin: -22px -22px 16px; padding: 18px 22px 16px;
  background: linear-gradient(120deg, var(--navy-900) 0%, #0B3560 55%, #0E4A62 100%);
  border-radius: 18px 18px 0 0; border-bottom: 0;
}
.mega__head::after {
  content: ""; position: absolute; left: 22px; right: 22px; bottom: 0; height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--green-lite), transparent);
  border-radius: 2px;
}
.mega__eyebrow {
  display: block; font-size: 10.5px; font-weight: 600;
  letter-spacing: 1.6px; text-transform: uppercase; color: var(--green-lite);
  margin-bottom: 5px;
}
.mega__title { font-size: 17.5px; color: #fff; font-weight: 400; letter-spacing: .2px; }

.mega__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.mega__item {
  position: relative; display: flex; align-items: center; gap: 11px;
  padding: 10px 11px; border-radius: 12px;
  border: 1px solid transparent;
  transition: background .22s, border-color .22s, transform .22s;
}
.mega__item:hover {
  background: var(--navy-800);
  border-color: var(--navy-800);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(6, 32, 66, .28);
}
.mega__ico {
  width: 42px; height: 48.5px; flex: 0 0 auto;
  display: grid; place-items: center; position: relative;
  color: var(--green-lite);
  background: linear-gradient(150deg, var(--green-lite), var(--teal) 55%, rgba(47, 201, 143, .7));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: transform .22s, filter .22s;
}
.mega__ico i {
  position: absolute; inset: 1.6px; clip-path: inherit;
  background: linear-gradient(150deg, #0C2C50, var(--navy-900));
}
.mega__ico .ico { position: relative; z-index: 2; }
.mega__item:hover .mega__ico { transform: scale(1.07); filter: drop-shadow(0 0 8px rgba(47, 201, 143, .5)); }
.mega__item:hover .mega__text b { color: #fff; }
.mega__item:hover .mega__text span { color: #AEBED6; }
.mega__text { display: flex; flex-direction: column; min-width: 0; padding-right: 16px; }
.mega__text b {
  font-family: var(--font-head); font-weight: 400; font-size: 13.5px;
  color: var(--heading); line-height: 1.3; margin-bottom: 2px;
}
.mega__text span { font-size: 11.5px; color: var(--body); line-height: 1.4; }
.mega__arr {
  position: absolute; right: 11px; top: 50%; margin-top: -8px;
  font-size: 14px; color: var(--green-lite);
  opacity: 0; transform: translateX(-5px); transition: all .22s;
}
.mega__item:hover .mega__arr { opacity: 1; transform: none; }

.mega__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  margin-top: 14px; padding: 12px 14px;
  background: var(--mint); border-radius: 12px;
}
.mega__foot-text {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; color: var(--heading);
}
.mega__foot-cta {
  font-family: var(--font-head); font-size: 13px; color: var(--teal-ink);
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
}
.mega__foot-cta:hover { color: var(--teal); }

/* --- tablet / mobile: menu becomes part of the stacked nav --- */
@media (max-width: 900px) {
  .hdr__has-mega { display: block; width: 100%; }
  .hdr__has-mega .hdr__pill { width: 100%; justify-content: center; }
  .hdr__has-mega::after { display: none; }
  .mega {
    position: static; width: 100%; margin-top: 8px; padding: 14px;
    box-shadow: none; border-radius: 14px; transform: none;
    display: none; opacity: 1; visibility: visible;
  }
  .mega::before { display: none; }
  .hdr__has-mega.is-open .mega { display: block; }
  .hdr__has-mega:hover .mega, .hdr__has-mega:focus-within .mega { display: none; }
  .hdr__has-mega.is-open:hover .mega { display: block; }
  .mega__grid { grid-template-columns: 1fr; }
  .mega__head { text-align: center; }
  .mega__foot { flex-direction: column; text-align: center; }
}

/* ============================================================
   Mega menu — drifting stem-cell backdrop
   ============================================================ */
.mega { overflow: hidden; }
.mega__bg {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
  border-radius: inherit;
  background: linear-gradient(140deg, #F6FCFB 0%, #FFFFFF 45%, #F4F9FD 100%);
}
.mega__bg svg { width: 100%; height: 100%; display: block; }
/* keep the menu content above the artwork */
.mega__head, .mega__grid, .mega__foot { position: relative; z-index: 1; }

/* floating cells */
.mega__cells .cell { opacity: .5; }
.cell--1 { transform: translate(72px, 96px);  animation-duration: 17s; animation-timing-function: ease-in-out; animation-iteration-count: infinite; animation-direction: alternate; }
.cell--2 { transform: translate(232px, 46px); animation-duration: 13s; animation-timing-function: ease-in-out; animation-iteration-count: infinite; animation-direction: alternate-reverse; }
.cell--3 { transform: translate(586px, 128px); animation-duration: 21s; animation-timing-function: ease-in-out; animation-iteration-count: infinite; animation-direction: alternate; }
.cell--4 { transform: translate(430px, 372px); animation-duration: 15s; animation-timing-function: ease-in-out; animation-iteration-count: infinite; animation-direction: alternate-reverse; }
.cell--5 { transform: translate(126px, 356px); animation-duration: 19s; animation-timing-function: ease-in-out; animation-iteration-count: infinite; animation-direction: alternate; }
.cell--1 { animation-name: drift1; }
.cell--2 { animation-name: drift2; }
.cell--3 { animation-name: drift3; }
.cell--4 { animation-name: drift4; }
.cell--5 { animation-name: drift5; }
@keyframes drift1 { from { transform: translate(72px, 96px)  scale(1); }   to { transform: translate(104px, 66px)  scale(1.12); } }
@keyframes drift2 { from { transform: translate(232px, 46px) scale(1); }   to { transform: translate(198px, 82px)  scale(.9); } }
@keyframes drift3 { from { transform: translate(586px, 128px) scale(1); }  to { transform: translate(548px, 168px) scale(1.08); } }
@keyframes drift4 { from { transform: translate(430px, 372px) scale(1); }  to { transform: translate(468px, 336px) scale(.92); } }
@keyframes drift5 { from { transform: translate(126px, 356px) scale(1); }  to { transform: translate(92px, 320px)  scale(1.1); } }

/* slow-travelling helix ribbon */
.mega__helix {
  opacity: .22;
  transform: translate(-40px, 300px);
  animation: helixFlow 26s linear infinite;
}
@keyframes helixFlow {
  from { transform: translate(-260px, 300px); }
  to   { transform: translate(700px, 300px); }
}

/* the dark hover tile needs to sit above the artwork cleanly */
.mega__item { background: transparent; }
.mega__item:hover { z-index: 2; }

@media (max-width: 900px) {
  .mega__bg { background: linear-gradient(160deg, #F6FCFB, #FFFFFF); }
  .mega__helix { display: none; }
}

/* question badge in the mega-menu footer */
.mega__foot-ico {
  width: 26px; height: 26px; flex: 0 0 auto; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(4, 128, 117, .12); color: var(--teal-ink);
  transition: background .22s, color .22s, transform .22s;
}
.mega__foot:hover .mega__foot-ico { background: var(--teal); color: #fff; transform: rotate(-8deg); }

/* ============================================================
   Specialities showcase (home) — rail + full-bleed viewer
   ============================================================ */
.spec {
  position: relative; overflow: hidden;
  background: linear-gradient(150deg, var(--navy-900) 0%, #072A55 55%, #0A3F52 100%);
  padding: 92px 0 96px;
}
.spec > .container { position: relative; z-index: 2; }
.spec__glow { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.spec__glow--a {
  width: 520px; height: 520px; top: -180px; left: -140px;
  background: radial-gradient(circle, rgba(47, 201, 143, .28), transparent 70%);
  animation: glowDrift 15s ease-in-out infinite alternate;
}
.spec__glow--b {
  width: 460px; height: 460px; bottom: -180px; right: -120px;
  background: radial-gradient(circle, rgba(243, 120, 46, .20), transparent 70%);
  animation: glowDrift 19s ease-in-out infinite alternate-reverse;
}
.spec .section__head { margin-bottom: 42px; }
.spec .eyebrow { color: var(--green-lite); }
.spec__lead { color: #B9C9E0; font-size: 15.5px; margin-top: 12px; }

.spec__stage { display: grid; grid-template-columns: 330px 1fr; gap: 26px; align-items: stretch; }

/* --- rail --- */
.spec__rail { display: flex; flex-direction: column; gap: 4px; }
.spec__tab {
  position: relative; overflow: hidden;
  display: flex; align-items: center; gap: 12px;
  padding: 13px 14px; border-radius: 12px;
  text-align: left; color: #C3D2E6;
  border: 1px solid transparent;
  transition: background .25s, color .25s, border-color .25s, transform .25s;
}
.spec__tab:hover { background: rgba(255, 255, 255, .06); color: #fff; transform: translateX(3px); }
.spec__tab.is-active {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(47, 201, 143, .4);
  color: #fff;
}
.spec__tab-ico {
  width: 34px; height: 34px; flex: 0 0 auto; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, .08); color: var(--green-lite);
  border: 1px solid rgba(255, 255, 255, .12);
  transition: background .25s, color .25s, border-color .25s;
}
.spec__tab:hover .spec__tab-ico { background: rgba(47, 201, 143, .18); }
.spec__tab.is-active .spec__tab-ico {
  background: var(--green-lite); color: var(--navy-900); border-color: var(--green-lite);
}
.spec__tab-name {
  flex: 1; font-family: var(--font-head); font-size: 14.5px; line-height: 1.3;
}
.spec__tab-arr {
  flex: 0 0 auto; font-size: 14px; color: var(--green-lite);
  opacity: 0; transform: translateX(-5px); transition: all .25s;
}
.spec__tab.is-active .spec__tab-arr, .spec__tab:hover .spec__tab-arr { opacity: 1; transform: none; }
.spec__tab-bar {
  position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: rgba(47, 201, 143, .18);
  transform: scaleX(0); transform-origin: left;
}
.spec__tab.is-active .spec__tab-bar {
  background: linear-gradient(90deg, var(--teal), var(--green-lite));
  animation: specBar 6s linear forwards;
}
@keyframes specBar { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* --- viewer --- */
.spec__viewer {
  position: relative; min-height: 460px;
  border-radius: 22px; overflow: hidden;
  box-shadow: 0 26px 60px rgba(2, 16, 40, .5);
}
.spec__panel {
  position: absolute; inset: 0; margin: 0;
  opacity: 0; visibility: hidden;
  transition: opacity .6s ease, visibility .6s;
}
.spec__panel.is-active { opacity: 1; visibility: visible; }
.spec__panel img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transform: scale(1.05); transition: transform 7s ease;
}
.spec__panel.is-active img { transform: scale(1); }
.spec__panel figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 90px 30px 26px;
  background: linear-gradient(transparent, rgba(2, 20, 48, .82) 42%, rgba(2, 20, 48, .95));
}
.spec__badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 12px; margin-bottom: 12px;
  background: rgba(47, 201, 143, .18); color: var(--green-lite);
  border: 1px solid rgba(47, 201, 143, .35);
  backdrop-filter: blur(6px);
}
.spec__panel figcaption h3 { font-size: 25px; color: #fff; margin-bottom: 8px; }
.spec__panel figcaption p {
  font-size: 14px; line-height: 1.65; color: #C3D2E6;
  max-width: 520px; margin-bottom: 14px;
}
.spec__tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 16px; }
.spec__tags span {
  font-size: 11.5px; font-weight: 500; color: #DCEBE6;
  background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px; padding: 4px 12px;
}
.spec__cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange-btn); color: #fff;
  font-family: var(--font-head); font-size: 14px;
  border-radius: 10px; padding: 11px 20px;
  box-shadow: 0 8px 22px rgba(196, 86, 11, .38);
  transition: transform .25s, background .25s;
}
.spec__cta:hover { background: #A84606; transform: translateY(-2px); }

@media (max-width: 1100px) {
  .spec__stage { grid-template-columns: 1fr; gap: 18px; }
  .spec__rail {
    flex-direction: row; overflow-x: auto; gap: 8px;
    scrollbar-width: none; padding-bottom: 4px;
  }
  .spec__rail::-webkit-scrollbar { display: none; }
  .spec__tab { flex: 0 0 auto; padding: 10px 14px; }
  .spec__tab-name { font-size: 13px; white-space: nowrap; }
  .spec__tab-arr { display: none; }
  .spec__tab-ico { width: 30px; height: 30px; }
  .spec__viewer { min-height: 420px; }
}
@media (max-width: 760px) {
  .spec { padding: 64px 0 70px; }
  .spec__viewer { min-height: 380px; }
  .spec__panel figcaption { padding: 70px 18px 20px; }
  .spec__panel figcaption h3 { font-size: 20px; }
  .spec__panel figcaption p { font-size: 13px; }
}

/* ============================================================
   Hero mosaic — each frame cycles through the speciality photos
   ============================================================ */
.hero__frame {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
  opacity: 0; visibility: hidden;
  transform: scale(1.06);
  transition: opacity .9s ease, transform 1.2s ease, visibility .9s;
}
.hero__frame.is-active { opacity: 1; visibility: visible; transform: scale(1); }
/* the outgoing shot drifts the other way so the swap reads as a dissolve */
.hero__frame.is-leaving { opacity: 0; visibility: visible; transform: scale(1.03); }

/* a soft sweep of light travels across a frame as it changes */
.hero__rot::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, .38) 50%, transparent 65%);
  transform: translateX(-120%);
  opacity: 0; pointer-events: none;
}
.hero__rot.is-swapping::after { animation: heroSweep .95s ease-out; }
@keyframes heroSweep {
  0%   { transform: translateX(-120%); opacity: 0; }
  35%  { opacity: 1; }
  100% { transform: translateX(120%); opacity: 0; }
}

/* mobile keeps a single frame, so only the main slot rotates */
@media (max-width: 760px) {
  .hero__photo--main .hero__frame { border-radius: 0; }
}

/* mobile hero: clear the desktop mosaic grid padding so the photo bleeds fully */
@media (max-width: 760px) {
  .hero__media { padding: 0; display: block; }
}

/* ============================================================
   Hero photo labels — names the speciality in each frame
   ============================================================ */
.hero__photo { position: relative; }
.hero__label {
  position: absolute; left: 12px; bottom: 12px; z-index: 4;
  display: inline-flex; align-items: center; gap: 9px;
  max-width: calc(100% - 24px);
  padding: 7px 14px 7px 14px;
  border-radius: 10px;
  background: linear-gradient(118deg, rgba(2, 28, 63, .94) 0%, rgba(10, 58, 94, .92) 55%, rgba(11, 90, 90, .9) 100%);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(47, 201, 143, .35);
  font-family: var(--font-head); font-weight: 400;
  font-size: 12.5px; letter-spacing: .35px; color: #fff; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
  box-shadow: 0 8px 20px rgba(2, 20, 48, .42);
  transition: opacity .35s ease, transform .35s ease, border-color .3s;
}
/* green accent bar down the leading edge */
.hero__label::after {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--green-lite), var(--teal));
}
.hero__photo:hover .hero__label { border-color: rgba(47, 201, 143, .7); }
/* small green dot marks it as a live speciality */
.hero__label::before {
  content: ""; width: 7px; height: 7px; flex: 0 0 auto;
  background: var(--green-lite); transform: rotate(45deg);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(47, 201, 143, .8);
}
.hero__label--static::before { animation: labelPulse 2.4s ease-in-out infinite; }
@keyframes labelPulse {
  0%, 100% { transform: rotate(45deg) scale(1);   box-shadow: 0 0 10px rgba(47, 201, 143, .8); }
  50%      { transform: rotate(45deg) scale(1.25); box-shadow: 0 0 16px rgba(47, 201, 143, 1); }
}
/* the label fades out and back as its photo swaps */
.hero__label.is-changing { opacity: 0; transform: translateY(6px); }

.hero__photo--circle .hero__label {
  left: 12px; bottom: 12px; transform: none;
  font-size: 10.5px; padding: 5px 11px 5px 9px;
}
.hero__photo--circle .hero__label.is-changing { transform: translateY(6px); }

@media (max-width: 760px) {
  /* On a phone the hero photo becomes a full-bleed background, so its caption
     lands in the top-left corner — straight underneath the "Centre of
     Excellence" badge. The badge says the same thing better, so the caption
     goes rather than fighting it for the space. */
  .hero__label { display: none; }
}

/* keep the main label clear of the play card, and the small labels inside their frames */
.hero__photo--main .hero__label { bottom: auto; top: 14px; left: 14px; }
@media (max-width: 1100px) {
  .hero__photo--circle .hero__label {
    left: 10px; right: auto; transform: none;
    max-width: calc(100% - 20px);
  }
  .hero__photo--circle .hero__label.is-changing { transform: translateY(6px); }
}

/* below desktop the mosaic bleeds past the screen edge, so keep only the main
   label and nudge it clear of the bleed */
@media (max-width: 1100px) {
  .hero__photo--wide .hero__label,
  .hero__photo--circle .hero__label { display: none; }
  .hero__photo--main .hero__label { left: 34px; top: 18px; }
}

/* ============================================================
   Hero credibility badge — split mark + label, with a slow shine
   ============================================================ */
.hero__badge {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 0;
  padding: 0; margin-bottom: 24px;
  border: 1px solid rgba(47, 201, 143, .32); border-radius: 14px;
  background: linear-gradient(118deg, var(--navy-900) 0%, #0A3A5E 52%, #0B5A5A 100%);
  box-shadow: 0 10px 26px rgba(6, 32, 66, .3);
  letter-spacing: 0;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.hero__badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(6, 32, 66, .42);
  border-color: rgba(47, 201, 143, .6);
}
/* teal mark block on the left */
.hero__badge-mark {
  display: flex; align-items: center; justify-content: center;
  align-self: stretch; flex: 0 0 auto;
  width: 44px; color: var(--navy-900);
  background: linear-gradient(150deg, var(--green-lite), #17B583);
}
.hero__badge-text {
  display: flex; flex-direction: column; line-height: 1.25;
  padding: 8px 12px 8px 13px;
}
.hero__badge-text b {
  font-family: var(--font-head); font-weight: 400;
  font-size: 13.5px; color: #fff; letter-spacing: .3px;
}
.hero__badge-text span {
  font-family: var(--font-body); font-size: 10.5px; font-weight: 500;
  letter-spacing: .9px; text-transform: uppercase; color: var(--green-lite);
}
.hero__badge-stars {
  flex: 0 0 auto; padding-right: 14px;
  font-size: 10px; letter-spacing: 1.5px; color: #FFC24D;
}
/* light sweep, matching the logo treatment */
.hero__badge::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 46px; left: -80px;
  background: linear-gradient(100deg, transparent, rgba(47, 201, 143, .38) 40%, rgba(255, 255, 255, .3) 55%, transparent);
  transform: skewX(-20deg); pointer-events: none;
  animation: badgeShine 5s ease-in-out infinite;
}
@keyframes badgeShine {
  0%, 55%  { left: -80px; }
  80%, 100% { left: 115%; }
}

@media (max-width: 760px) {
  .hero__badge { margin-bottom: 16px; border-radius: 12px; }
  .hero__badge-mark { width: 34px; }
  .hero__badge-mark svg { width: 13px; height: 13px; }
  .hero__badge-text { padding: 6px 10px 6px 11px; }
  .hero__badge-text b { font-size: 12px; }
  .hero__badge-text span { font-size: 9px; letter-spacing: .7px; }
  .hero__badge-stars { padding-right: 11px; font-size: 9px; }
}

/* ============================================================
   "Talk to a Specialist" — live chat tooltip
   ============================================================ */
.talk { position: relative; display: inline-flex; }
.talk__btn { position: relative; }

/* small live dot on the button itself */
.talk__live {
  position: absolute; top: -5px; right: -5px;
  width: 13px; height: 13px; border-radius: 50%;
  background: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 6px rgba(16, 33, 69, .2);
}
.talk__live span {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green-lite);
  animation: pulseDot 1.8s ease-out infinite;
}

/* the popup */
.talk__pop {
  position: absolute; left: 50%; bottom: calc(100% + 16px); z-index: 60;
  width: 290px; padding: 14px 14px 12px;
  border-radius: 16px;
  background: linear-gradient(150deg, #FFFFFF 0%, #F5FBFA 100%);
  border: 1px solid #DCEAE7;
  box-shadow: 0 22px 48px rgba(16, 33, 69, .22);
  opacity: 0; visibility: hidden;
  transform: translate(-50%, 12px) scale(.94);
  transform-origin: bottom center;
  transition: opacity .3s ease, transform .35s cubic-bezier(.22,1.2,.36,1), visibility .3s;
  text-align: left;
}
/* pointer */
.talk__pop::after {
  content: ""; position: absolute; left: 50%; bottom: -7px; margin-left: -7px;
  width: 13px; height: 13px; background: #F5FBFA;
  border-right: 1px solid #DCEAE7; border-bottom: 1px solid #DCEAE7;
  transform: rotate(45deg); border-radius: 0 0 3px 0;
}
/* hover bridge */
.talk::after { content: ""; position: absolute; left: 0; right: 0; bottom: 100%; height: 18px; }
.talk:hover .talk__pop,
.talk:focus-within .talk__pop {
  opacity: 1; visibility: visible; transform: translate(-50%, 0) scale(1);
}

/* header row */
.talk__head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.talk__avatars { position: relative; display: inline-flex; flex: 0 0 auto; }
.talk__avatars img {
  width: 34px; height: 34px; border-radius: 50%; object-fit: cover;
  border: 2px solid #fff; box-shadow: 0 2px 8px rgba(16, 33, 69, .18);
}
.talk__avatars img + img { margin-left: -12px; }
.talk:hover .talk__avatars img:nth-child(1) { animation: avPop .5s .05s both; }
.talk:hover .talk__avatars img:nth-child(2) { animation: avPop .5s .13s both; }
.talk:hover .talk__avatars img:nth-child(3) { animation: avPop .5s .21s both; }
@keyframes avPop {
  from { opacity: 0; transform: translateY(8px) scale(.7); }
  to   { opacity: 1; transform: none; }
}
/* expanding ring behind the avatars */
.talk__ring {
  position: absolute; left: 17px; top: 50%; width: 34px; height: 34px;
  margin: -17px 0 0 -17px; border-radius: 50%;
  border: 2px solid rgba(47, 201, 143, .8);
}
.talk:hover .talk__ring { animation: talkRing 2s ease-out infinite; }
@keyframes talkRing {
  0%   { transform: scale(1); opacity: .8; }
  100% { transform: scale(2.1); opacity: 0; }
}
.talk__who { display: flex; flex-direction: column; min-width: 0; }
.talk__who b {
  font-family: var(--font-head); font-weight: 400; font-size: 14px;
  color: var(--heading); line-height: 1.3;
}
.talk__status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--teal-ink);
}
.talk__status i {
  width: 6px; height: 6px; border-radius: 50%; background: var(--green-lite);
  animation: pulseDot 1.8s ease-out infinite;
}

/* chat bubbles */
.talk__bubble {
  display: block; max-width: 88%; margin-bottom: 7px;
  padding: 8px 12px; font-size: 12px; line-height: 1.45;
  opacity: 0; transform: translateY(8px);
}
.talk__bubble--in {
  background: #EDF5F4; color: #24344F;
  border-radius: 12px 12px 12px 4px;
}
.talk__bubble--out {
  margin-left: auto; text-align: right;
  background: linear-gradient(120deg, var(--teal), #12A98E); color: #fff;
  border-radius: 12px 12px 4px 12px;
}
.talk:hover .talk__bubble:nth-of-type(1) { animation: bubbleIn .45s .30s both; }
.talk:hover .talk__bubble:nth-of-type(2) { animation: bubbleIn .45s .95s both; }
.talk:hover .talk__bubble:nth-of-type(3) { animation: bubbleIn .45s 1.55s both; }
@keyframes bubbleIn {
  from { opacity: 0; transform: translateY(8px) scale(.96); }
  to   { opacity: 1; transform: none; }
}
/* typing indicator */
.talk__bubble--typing { display: flex; gap: 4px; width: max-content; padding: 10px 12px; }
.talk__bubble--typing i {
  width: 5px; height: 5px; border-radius: 50%; background: #7FA8A2;
}
.talk:hover .talk__bubble--typing i:nth-child(1) { animation: typeDot 1.1s 1.7s infinite; }
.talk:hover .talk__bubble--typing i:nth-child(2) { animation: typeDot 1.1s 1.85s infinite; }
.talk:hover .talk__bubble--typing i:nth-child(3) { animation: typeDot 1.1s 2s infinite; }
@keyframes typeDot {
  0%, 60%, 100% { transform: translateY(0); opacity: .45; }
  30%           { transform: translateY(-4px); opacity: 1; }
}

/* footer cta */
.talk__foot {
  display: flex; align-items: center; gap: 8px;
  margin-top: 10px; padding-top: 10px;
  border-top: 1px dashed #DCEAE7;
  font-family: var(--font-head); font-size: 12.5px; color: var(--teal-ink);
}
.talk__foot-ico { font-size: 13px; }
.talk__foot .arr { margin-left: auto; }

@media (max-width: 900px) {
  /* no hover on touch — keep the button clean */
  .talk__pop { display: none; }
}

/* --- the tooltip CTA is a real button --- */
.talk__pop { pointer-events: none; }            /* hidden panel never blocks clicks */
.talk:hover .talk__pop,
.talk:focus-within .talk__pop { pointer-events: auto; }

.talk__foot {
  display: flex; align-items: center; gap: 8px;
  margin-top: 12px; padding: 10px 14px;
  border-top: 0; border-radius: 10px;
  background: linear-gradient(120deg, var(--teal), #12A98E);
  font-family: var(--font-head); font-size: 12.5px; color: #fff;
  box-shadow: 0 6px 16px rgba(4, 128, 117, .3);
  transition: transform .22s, box-shadow .22s, background .22s;
  cursor: pointer;
}
.talk__foot:hover {
  background: linear-gradient(120deg, #036A61, #0F9C7F);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(4, 128, 117, .42);
}
.talk__foot:active { transform: translateY(0); }
.talk__foot:focus-visible { outline: 3px solid var(--green-lite); outline-offset: 3px; }
.talk__foot .arr { margin-left: auto; }
.talk__foot-ico { font-size: 13px; }

/* the hero entrance animations create stacking contexts, so the CTA row
   needs an explicit layer for the tooltip to sit above the copy */
.hero__cta { position: relative; z-index: 6; }
.talk { z-index: 7; }

/* ============================================================
   Stat cards — one card per figure, accent per metric
   ============================================================ */
.stats { background: linear-gradient(180deg, #FAFBFB 0%, #F1F6F7 100%); }
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.stat {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  padding: 18px 18px 16px;
  background: #fff; border: 1px solid var(--border); border-radius: 18px;
  box-shadow: 0 8px 24px rgba(16, 33, 69, .06);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
/* accent bar along the top, grows on hover */
.stat::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px;
  background: linear-gradient(90deg, var(--st-a), var(--st-b));
  transform: scaleX(.28); transform-origin: left;
  transition: transform .45s cubic-bezier(.22,.61,.36,1);
}
.stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px var(--st-shadow);
  border-color: var(--st-line);
}
.stat:hover::before { transform: scaleX(1); }

/* per-metric palette */
.stat--teal   { --st-a:#048075; --st-b:#2FC98F; --st-ink:#04756B; --st-soft:rgba(4,128,117,.09);  --st-line:#BFE0DA; --st-shadow:rgba(4,128,117,.18); }
.stat--orange { --st-a:#C4560B; --st-b:#F3782E; --st-ink:#C25309; --st-soft:rgba(196,86,11,.09);  --st-line:#F2CDB4; --st-shadow:rgba(196,86,11,.18); }
.stat--navy   { --st-a:#0B3560; --st-b:#2E6FB7; --st-ink:#1B3E77; --st-soft:rgba(27,62,119,.09);  --st-line:#C4D2E8; --st-shadow:rgba(16,33,69,.18); }
.stat--green  { --st-a:#0F8A63; --st-b:#5FD9A8; --st-ink:#0F8A63; --st-soft:rgba(15,138,99,.09);  --st-line:#BFE6D4; --st-shadow:rgba(15,138,99,.18); }

/* oversized watermark icon in the corner */
.stat__ghost {
  position: absolute; right: -14px; bottom: -16px;
  color: var(--st-a); opacity: .07; pointer-events: none;
  transition: transform .45s ease, opacity .3s;
}
.stat:hover .stat__ghost { transform: rotate(-8deg) scale(1.08); opacity: .11; }

.stat__ico {
  position: relative; z-index: 1;
  width: 34px; height: 34px; border-radius: 10px; margin-bottom: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--st-soft); color: var(--st-ink);
  transition: background .3s, color .3s, transform .3s;
}
.stat:hover .stat__ico {
  background: linear-gradient(135deg, var(--st-a), var(--st-b));
  color: #fff; transform: translateY(-2px);
}
.stat__value {
  position: relative; z-index: 1;
  font-family: var(--font-head); font-weight: 400 !important;
  font-size: 28px; line-height: 1; color: var(--heading);
  letter-spacing: -0.4px; margin-bottom: 4px;
}
.stat__label {
  position: relative; z-index: 1;
  font-family: var(--font-head); font-size: 13px; color: var(--heading);
  line-height: 1.3; margin-bottom: 3px;
}
.stat__note {
  position: relative; z-index: 1;
  font-size: 11px; color: var(--body); line-height: 1.4;
}
/* thin bottom rule that fills as the card appears */
.stat__bar {
  position: absolute; left: 18px; right: 18px; bottom: 0; height: 2px;
  background: var(--st-soft); border-radius: 2px; overflow: hidden;
}
.stat__bar::after {
  content: ""; display: block; height: 100%; width: 100%;
  background: linear-gradient(90deg, var(--st-a), var(--st-b));
  transform: scaleX(0); transform-origin: left;
  transition: transform 1.1s cubic-bezier(.22,.61,.36,1);
}
.stat.is-visible .stat__bar::after, .stat:hover .stat__bar::after { transform: scaleX(1); }

@media (max-width: 1100px) {
  .stats__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat { padding: 15px 14px 13px; }
  .stat__value { font-size: 24px; }
  .stat__label { font-size: 12px; }
  .stat__note { display: none; }
}

/* ══════════ Booking dialog ══════════ */
.bk { position: fixed; inset: 0; z-index: 900; display: grid; place-items: center; padding: 22px; }
.bk[hidden] { display: none; }
.bk__scrim {
  position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 50% 0%, rgba(4,40,78,.72), rgba(2,20,44,.86));
  backdrop-filter: blur(5px); animation: bkFade .25s ease;
}
.bk__panel {
  position: relative; z-index: 2;
  width: 100%; max-width: 880px; max-height: 92vh;
  display: grid; grid-template-columns: 292px 1fr;
  background: #fff; border-radius: 24px; overflow: hidden;
  box-shadow: 0 40px 90px rgba(2,20,44,.5), 0 0 0 1px rgba(255,255,255,.08);
  animation: bkUp .34s cubic-bezier(.22,.61,.36,1);
}
@keyframes bkFade { from { opacity: 0 } to { opacity: 1 } }
@keyframes bkUp { from { opacity: 0; transform: translateY(26px) scale(.97) } to { opacity: 1; transform: none } }

.bk__x {
  position: absolute; right: 14px; top: 14px; z-index: 5;
  width: 34px; height: 34px; display: grid; place-items: center;
  border: 0; border-radius: 50%; cursor: pointer;
  background: rgba(255,255,255,.9); color: var(--heading);
  box-shadow: 0 3px 12px rgba(2,28,63,.18); transition: background .2s, transform .2s;
}
.bk__x svg { width: 16px; height: 16px; }
.bk__x:hover { background: #fff; transform: rotate(90deg); }

/* ── Brand side ─────────────────────────────────────── */
.bk__aside {
  position: relative; overflow: hidden;
  background: linear-gradient(155deg, #021C3F 0%, #062A4E 48%, #0A3B58 100%);
  padding: 32px 26px;
  display: flex; flex-direction: column;
}
.bk__cells { position: absolute; inset: 0; opacity: .9; pointer-events: none; }
.bk__cells svg { width: 100%; height: 100%; display: block; }
.bk__aside-in { position: relative; z-index: 2; display: flex; flex-direction: column; height: 100%; }
.bk__logo { width: 132px; height: auto; margin-bottom: 24px; filter: brightness(0) invert(1); opacity: .95; }
.bk__title {
  font-family: var(--font-head); font-size: 27px; line-height: 1.18;
  color: #fff; font-weight: 400; letter-spacing: -.3px; margin-bottom: 10px;
}
.bk__blurb { font-size: 13px; line-height: 1.65; color: #A9C2DC; }

.bk__points { list-style: none; margin: 22px 0 0; padding: 0; }
.bk__points li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 12.5px; line-height: 1.5; color: #CFE0EF; margin-bottom: 12px;
}
.bk__points span {
  flex: none; width: 24px; height: 24px; border-radius: 7px;
  display: grid; place-items: center; margin-top: -1px;
  background: rgba(47,201,143,.16); color: var(--green-lite);
  border: 1px solid rgba(47,201,143,.28);
}

.bk__call {
  margin-top: auto; display: flex; align-items: center; gap: 11px;
  padding: 12px 14px; border-radius: 13px; text-decoration: none;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  transition: background .22s, border-color .22s;
}
.bk__call:hover { background: rgba(255,255,255,.12); border-color: rgba(47,201,143,.4); }
.bk__call > span:first-child {
  flex: none; width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center;
  background: rgba(47,201,143,.18); color: var(--green-lite);
}
.bk__call b { display: block; font-size: 11px; color: #8FAEC9; font-weight: 600; letter-spacing: .4px; text-transform: uppercase; }
.bk__call > span:last-child { font-size: 14px; color: #fff; font-family: var(--font-head); }

/* ── Form side ──────────────────────────────────────── */
.bk__main { display: flex; flex-direction: column; min-width: 0; max-height: 92vh; }

.bk__rail {
  display: flex; align-items: center; gap: 7px;
  padding: 20px 62px 16px 28px; border-bottom: 1px solid var(--border); flex: none;
}
.bk__dot { display: flex; align-items: center; gap: 7px; }
.bk__dot i {
  width: 23px; height: 23px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-style: normal;
  font-size: 11.5px; font-weight: 700;
  background: #EDF1F6; color: #8C99AC; transition: all .3s;
}
.bk__dot b { font-size: 12px; font-weight: 600; color: #8C99AC; transition: color .3s; }
.bk__dot.is-on i { background: var(--teal); color: #fff; box-shadow: 0 0 0 4px rgba(4,128,117,.13); }
.bk__dot.is-on b { color: var(--heading); }
.bk__dot.is-done i { background: var(--green-lite); color: #04352C; }
.bk__line { flex: 1; height: 2px; border-radius: 2px; background: #EDF1F6; }

.bk__body { padding: 22px 28px 26px; overflow-y: auto; flex: 1; }
.bk__sub { font-size: 14px; color: var(--heading); font-weight: 500; margin-bottom: 16px; }

.bk__step { display: none; }
.bk__step.is-on { display: block; animation: bkIn .3s ease both; }
@keyframes bkIn { from { opacity: 0; transform: translateY(8px) } to { opacity: 1; transform: none } }

/* choice cards */
.bk__pick { display: grid; gap: 11px; }
.bk__opt {
  display: flex; align-items: center; gap: 14px; width: 100%; text-align: left; cursor: pointer;
  padding: 15px 16px; border-radius: 15px; background: #fff;
  border: 1.5px solid var(--border); transition: all .24s;
}
.bk__opt:hover {
  border-color: var(--teal); background: #F8FCFC;
  transform: translateY(-2px); box-shadow: 0 12px 26px rgba(4,128,117,.13);
}
.bk__hex {
  position: relative; flex: none; display: grid; place-items: center;
  width: 42px; height: 48.5px; color: var(--green-lite);
  background: linear-gradient(150deg, var(--green-lite), var(--teal) 50%, rgba(47,201,143,.75));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.bk__hex i { position: absolute; inset: 2px; clip-path: inherit; background: linear-gradient(150deg, #0C2C50, var(--navy-900)); }
.bk__hex .ico { position: relative; z-index: 2; }
.bk__opt-t { flex: 1; min-width: 0; }
.bk__opt-t b { display: block; font-family: var(--font-head); font-size: 16.5px; color: var(--heading); font-weight: 400; }
.bk__opt-t span { display: block; font-size: 12.5px; color: var(--body); margin-top: 2px; }
.bk__arrow { flex: none; color: var(--teal); font-size: 17px; opacity: 0; transform: translateX(-5px); transition: all .24s; }
.bk__opt:hover .bk__arrow { opacity: 1; transform: none; }

/* fields */
.bk__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bk__f { margin-bottom: 14px; }
.bk__f > label { display: block; font-size: 12.5px; font-weight: 600; color: var(--heading); margin-bottom: 6px; }
.bk__req { color: var(--orange-ink); }
.bk__opt-lbl {
  font-weight: 500; font-size: 10.5px; color: var(--body); text-transform: uppercase;
  letter-spacing: .6px; background: #F0F3F7; padding: 1px 7px; border-radius: 99px; margin-left: 4px;
}
.bk__in {
  width: 100%; padding: 11px 13px; border: 1.5px solid #DCE3EC; border-radius: 11px;
  font-family: var(--font-body); font-size: 14px; color: var(--heading); background: #fff;
  transition: border-color .18s, box-shadow .18s, background .18s;
}
.bk__in::placeholder { color: #9AA6B8; }
.bk__in:focus { outline: 0; border-color: var(--teal); background: #FCFEFE; box-shadow: 0 0 0 4px rgba(4,128,117,.11); }
.bk__in--lg { padding: 13px 15px; font-size: 15px; letter-spacing: .3px; }
textarea.bk__in { resize: vertical; min-height: 70px; }
.bk__sel {
  appearance: none; padding-right: 34px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%2344506A' stroke-width='1.7' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center;
}
.bk__hint { display: block; font-size: 11.5px; color: var(--body); opacity: .85; margin-top: 5px; }
.bk__hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.bk__err[hidden] { display: none; }
.bk__err {
  display: flex; gap: 8px; align-items: flex-start;
  background: #FDECEC; border: 1px solid #F3C9C7; color: #A93A34;
  padding: 10px 13px; border-radius: 11px; font-size: 13px; margin-bottom: 12px;
  animation: bkShake .34s ease;
}
@keyframes bkShake { 0%,100%{transform:translateX(0)} 25%{transform:translateX(-5px)} 75%{transform:translateX(5px)} }
.bk__note { font-size: 12.5px; color: var(--body); text-align: center; margin-top: 16px; }
.bk__note a { color: var(--teal-ink); font-weight: 600; text-decoration: underline; }

.bk__acts { display: flex; gap: 10px; margin-top: 18px; }
.bk__btn {
  flex: 1; padding: 12px 18px; border-radius: 11px; border: 1.5px solid transparent;
  font-family: var(--font-body); font-size: 14px; font-weight: 600; cursor: pointer;
  transition: all .22s; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.bk__btn--go {
  background: linear-gradient(135deg, var(--orange), #C4560B); color: #fff;
  box-shadow: 0 8px 20px rgba(196,86,11,.28);
}
.bk__btn--go:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(196,86,11,.36); }
.bk__btn--go[disabled] { opacity: .62; cursor: wait; transform: none; box-shadow: none; }
.bk__go-arr { transition: transform .22s; }
.bk__btn--go:hover .bk__go-arr { transform: translateX(3px); }
.bk__btn--ghost { background: #fff; border-color: var(--border); color: var(--heading); flex: 0 0 auto; padding: 12px 20px; }
.bk__btn--ghost:hover { border-color: #C3CEDD; background: #FAFBFD; }

/* found record */
.bk__card { border: 1.5px solid var(--border); border-radius: 15px; padding: 16px; margin-bottom: 12px; }
.bk__card-top, .bk__who { display: flex; align-items: center; gap: 12px; margin-bottom: 13px; }
.bk__who { padding: 13px 15px; background: var(--card-mint); border-radius: 13px; margin-bottom: 16px; border: 1px solid #D8E7E4; }
.bk__av {
  width: 42px; height: 42px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--teal), var(--green-lite)); color: #fff;
  font-family: var(--font-head); font-size: 18px;
}
.bk__card-top b, .bk__who b { display: block; font-family: var(--font-head); font-size: 16.5px; color: var(--heading); font-weight: 400; }
.bk__code { display: block; font-size: 11.5px; color: var(--body); letter-spacing: .7px; margin-top: 1px; }

.bk__has { background: #F5FAF9; border: 1px solid #DCEBE8; border-radius: 13px; padding: 13px 15px; }
.bk__has > b {
  display: block; font-size: 11px; color: var(--teal-ink); margin-bottom: 9px;
  text-transform: uppercase; letter-spacing: 1px;
}
.bk__apt { display: flex; flex-wrap: wrap; gap: 5px 10px; align-items: center; padding: 9px 0; border-top: 1px solid #E4EFEC; }
.bk__apt:first-of-type { border-top: 0; padding-top: 0; }
.bk__apt-when { font-size: 13.5px; font-weight: 600; color: var(--heading); }
.bk__apt-sub, .bk__apt-ref { font-size: 11.5px; color: var(--body); width: 100%; }
.bk__apt-ref { letter-spacing: .4px; opacity: .7; }
.bk__tag { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; padding: 3px 9px; border-radius: 99px; }
.bk__tag--pending { background: #FDF0DC; color: #9A6212; }
.bk__tag--confirmed { background: #E4F7EE; color: #0F7A55; }
.bk__tag--rescheduled { background: #E7EFFB; color: #2456A6; }
.bk__no-apt {
  font-size: 13px; color: var(--body); padding: 11px 14px;
  background: #F7F9FC; border-radius: 11px; border: 1px dashed #D6DEE9;
}
.bk__none { text-align: center; padding: 10px 0; }
.bk__none b { font-family: var(--font-head); font-size: 17px; color: var(--heading); }
.bk__none p { font-size: 13.5px; margin-top: 6px; }

/* done */
.bk__done { text-align: center; padding: 10px 0; }
.bk__tick {
  display: grid; place-items: center; width: 62px; height: 62px; border-radius: 50%;
  background: linear-gradient(140deg, #E4F7EE, #D2F1E3); color: #0F7A55; margin: 0 auto 16px;
  animation: bkPop .5s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes bkPop { from { transform: scale(.4); opacity: 0 } to { transform: none; opacity: 1 } }
.bk__tick svg { width: 28px; height: 28px; }
.bk__done h3 { font-size: 21px; margin-bottom: 8px; }
.bk__done p { font-size: 13.5px; }
.bk__ref {
  margin: 16px 0 6px; padding: 13px; border-radius: 13px;
  background: var(--card-mint); border: 1px solid #D8E7E4;
  font-size: 10.5px; color: var(--body); letter-spacing: 1.2px; text-transform: uppercase;
}
.bk__ref b {
  display: block; font-family: var(--font-head); font-size: 19px; color: var(--heading);
  letter-spacing: .8px; text-transform: none; margin-top: 4px;
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 780px) {
  .bk { padding: 0; place-items: end center; }
  .bk__panel {
    grid-template-columns: 1fr; max-width: none; max-height: 95vh;
    border-radius: 22px 22px 0 0;
  }
  .bk__aside { padding: 20px 22px 18px; }
  .bk__aside-in { display: block; }
  .bk__logo { width: 108px; margin-bottom: 14px; }
  .bk__title { font-size: 21px; }
  .bk__title br { display: none; }
  .bk__blurb, .bk__points, .bk__call { display: none; }
  .bk__main { max-height: none; }
  .bk__rail { padding: 15px 20px 13px; }
  .bk__dot b { display: none; }
  .bk__dot.is-on b { display: block; }
  .bk__body { padding: 18px 20px 22px; }
  .bk__row { grid-template-columns: 1fr; gap: 0; }
  .bk__acts { flex-wrap: wrap; }
  .bk__btn--ghost { flex: 1 1 100%; order: 2; }
}
@media (max-width: 400px) {
  .bk__opt { padding: 13px; gap: 11px; }
  .bk__opt-t b { font-size: 15px; }
}
/* booking — mobile-number step */
.bk__tel { position: relative; display: flex; align-items: stretch; }
.bk__cc {
  display: grid; place-items: center; padding: 0 13px;
  background: #F2F6FA; border: 1.5px solid #DCE3EC; border-right: 0;
  border-radius: 11px 0 0 11px; font-size: 15px; font-weight: 600;
  color: var(--heading); letter-spacing: .3px;
}
.bk__in--tel {
  border-radius: 0 11px 11px 0; flex: 1;
  font-size: 17px; letter-spacing: 1.2px; padding: 13px 15px;
}
.bk__tel:focus-within .bk__cc { border-color: var(--teal); background: #EAF5F4; }

/* confirmed-number chip on the new-patient step */
.bk__chip {
  display: flex; align-items: center; gap: 11px;
  padding: 11px 13px; margin-bottom: 16px;
  background: var(--card-mint); border: 1px solid #D8E7E4; border-radius: 13px;
}
.bk__chip-ico {
  flex: none; width: 34px; height: 34px; border-radius: 10px;
  display: grid; place-items: center;
  background: #fff; color: var(--teal); border: 1px solid #D8E7E4;
}
.bk__chip > span:nth-child(2) { flex: 1; min-width: 0; }
.bk__chip b { display: block; font-size: 15px; color: var(--heading); letter-spacing: .4px; }
.bk__chip span span { display: block; font-size: 11.5px; color: var(--body); }
.bk__chip-edit {
  flex: none; background: #fff; border: 1px solid #D8E7E4; color: var(--teal-ink);
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  padding: 6px 12px; border-radius: 8px; cursor: pointer; transition: all .2s;
}
.bk__chip-edit:hover { border-color: var(--teal); background: #F3FAF9; }

/* booking — "we'll arrange the time" note */
.bk__when {
  display: flex; align-items: flex-start; gap: 9px;
  margin: 4px 0 2px; padding: 11px 13px;
  background: #F5FAF9; border: 1px solid #DCEBE8; border-radius: 11px;
  font-size: 12.5px; line-height: 1.55; color: var(--teal-ink);
}
.bk__when > span {
  flex: none; width: 22px; height: 22px; border-radius: 7px;
  display: grid; place-items: center; margin-top: -1px;
  background: #fff; color: var(--teal); border: 1px solid #DCEBE8;
}
.bk__when svg { width: 13px; height: 13px; }

/* ---------- Narrow phones: keep the header on one clean line ----------
   The logo is a wide lockup (881×160). Below ~560px it was running off the
   left edge and colliding with the "Open Now" pill. */
@media (max-width: 620px) {
  .hdr__open { display: none; }
  .hdr__logo img { height: 40px; max-width: calc(100vw - 92px); object-fit: contain; object-position: left center; }
}
@media (max-width: 400px) {
  .hdr__logo img { height: 36px; }
}

/* ============================================================
   Mobile layout fixes — 2026-09-05
   ============================================================ */

/* The testimonials grid was 512px wide inside a 375px screen, pushing its
   own content off the right edge. Grid items default to min-width:auto, so
   the articles carousel inside refused to shrink and stretched the column.
   Letting the column shrink lets the carousel scroll inside itself again. */
.voices__inner > * { min-width: 0; }

@media (max-width: 620px) {
  /* Justified text needs room to distribute spaces. On a phone it opens
     rivers of white space between words, which is what made the hero
     paragraph look broken. Ragged-right reads better at this width. */
  .lead, .hero__text, .about-grid p, .vm-card p, .vm-card li,
  .svc-card p, .cond-card p, .therapy-card p, .res-card p, .team-card p,
  .faq__a p, .quote-card__text, .dark__lead, .footer__tag,
  .section__head p, .step p, .cta__card p, .cta__experts p,
  .pj-step__body p, .pj-promise p, .cond-side__blurb, .cond-card__body p {
    text-align: left;
  }

  /* The social icons took 154px of a 375px bar, leaving the announcement
     139px — about a third of a sentence. The same links are in the footer,
     so the bar gives its width to the message instead. */
  .topbar__socials { display: none; }

  /* Icon, label and text in one 335px row squeezed the label to 62px and
     cut "Rehabilitate". The text now takes its own line underneath. */
  .dark__row { flex-wrap: wrap; }
  .dark__row-title { flex: 0 0 auto; }
  .dark__row-text { flex: 1 0 100%; }
}
