/* ================================================================
   SafeHeart · Heart Valve Specialist in Jaipur — v3
   Brand: red #DB2020 · blue #1F65A1 (sampled from logo)
   ================================================================ */

:root {
  --red: #DB2020;
  --red-dk: #B31818;
  --red-lt: #F0555A;
  --red-soft: #FDEDED;
  --blue: #1F65A1;
  --blue-dk: #164B78;
  --blue-lt: #3D86C4;
  --blue-soft: #EAF2F9;
  --ink: #0C1F33;
  --ink-2: #15304C;
  --slate: #242424;
  --mist: #F5F8FB;
  --tint: #EDF3F9;
  --line: #E0E9F2;
  --line-2: #EEF3F8;
  --white: #fff;
  --green: #189A5B;

  --g-deep: linear-gradient(135deg, #0C1F33 0%, #164B78 60%, #1F65A1 100%);
  --g-blue: linear-gradient(135deg, #1F65A1 0%, #164B78 100%);
  --g-red: linear-gradient(135deg, #DB2020 0%, #B31818 100%);
  --g-mist: linear-gradient(180deg, #F5F8FB 0%, #FFFFFF 100%);
  --g-tint: linear-gradient(180deg, #FFFFFF 0%, #EDF3F9 100%);

  --head: "Poppins", "Segoe UI", system-ui, sans-serif;
  --body: "Open Sans", "Segoe UI", system-ui, -apple-system, sans-serif;

  --wrap: 1280px;
  --gut: 20px;
  --sec: clamp(40px, 4.4vw, 58px);
  --r-s: 8px;
  --r-m: 13px;
  --r-l: 18px;
  --sh-1: 0 1px 3px rgba(12, 31, 51, .06);
  --sh-2: 0 6px 18px rgba(12, 31, 51, .09);
  --sh-3: 0 14px 36px rgba(12, 31, 51, .14);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 80px
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--body);
  font-size: 14.6px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden
}

img {
  max-width: 100%;
  display: block;
  border: 0
}

a {
  color: inherit;
  text-decoration: none
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit
}

ul {
  margin: 0;
  padding: 0;
  list-style: none
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--head);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.015em
}

p {
  margin: 0 0 10px
}

p:last-child {
  margin-bottom: 0
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 6px
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap
}

/* Type — sized so short headings stay on one line */
h1 {
  font-size: clamp(29px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.1
}

h2 {
  font-size: clamp(21px, 2.5vw, 28px);
  font-weight: 600
}

h3 {
  font-size: clamp(15.5px, 1.7vw, 18px)
}

.lede {
  font-size: 14.4px;
  color: var(--slate);
  line-height: 1.7
}

.eyebrow {
  font-family: var(--head);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px
}

.eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  flex: none
}

.eyebrow.center {
  justify-content: center
}

.eyebrow.lt {
  color: #FFA8A8
}

.eyebrow.lt::before {
  background: #FFA8A8
}

/* Layout */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut)
}

.sec {
  padding-block: var(--sec);
  position: relative
}

.sec--mist {
  background:
    radial-gradient(680px 360px at 88% 4%, rgba(31, 101, 161, .07), transparent 66%),
    radial-gradient(520px 300px at 4% 96%, rgba(219, 32, 32, .045), transparent 66%),
    linear-gradient(180deg, #F5F8FB 0%, #FFFFFF 100%)
}

.sec--tint {
  background:
    radial-gradient(640px 340px at 6% 6%, rgba(31, 101, 161, .10), transparent 66%),
    radial-gradient(560px 320px at 94% 92%, rgba(219, 32, 32, .055), transparent 66%),
    #EDF3F9
}

.sec--mist::before,
.sec--tint::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(31, 101, 161, .22), transparent)
}

.head {
  max-width: 640px;
  margin-bottom: 26px
}

.head.center {
  margin-inline: auto;
  text-align: center
}

.head h2 {
  margin-bottom: 7px
}

.grid {
  display: grid;
  gap: 15px
}

.grid>* {
  min-width: 0
}

.g2 {
  grid-template-columns: repeat(2, 1fr)
}

.g3 {
  grid-template-columns: repeat(3, 1fr)
}

.g4 {
  grid-template-columns: repeat(4, 1fr)
}

.g6 {
  grid-template-columns: repeat(6, 1fr)
}

.ratio {
  position: relative;
  overflow: hidden;
  background: var(--tint)
}

.ratio>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease)
}

.r-16-9 {
  aspect-ratio: 16/9
}

.r-3-2 {
  aspect-ratio: 3/2
}

.r-4-3 {
  aspect-ratio: 4/3
}

.r-1-1 {
  aspect-ratio: 1/1
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  font-family: var(--head);
  font-weight: 600;
  font-size: 13.6px;
  cursor: pointer;
  line-height: 1.2;
  text-align: center;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s, border-color .2s
}

.btn:active {
  transform: translateY(1px)
}

.btn--red {
  background: var(--g-red);
  color: #fff;
  box-shadow: 0 7px 20px rgba(219, 32, 32, .28)
}

.btn--red:hover {
  transform: translateY(-2px);
  box-shadow: 0 11px 26px rgba(219, 32, 32, .36)
}

.btn--blue {
  background: var(--g-blue);
  color: #fff;
  box-shadow: 0 7px 20px rgba(31, 101, 161, .26)
}

.btn--blue:hover {
  transform: translateY(-2px)
}

.btn--ghost {
  background: #fff;
  border-color: var(--line);
  color: var(--ink)
}

.btn--ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-soft)
}

.btn--light {
  background: rgba(255, 255, 255, .13);
  border-color: rgba(255, 255, 255, .32);
  color: #fff;
  backdrop-filter: blur(6px)
}

.btn--light:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff
}

.btn--wa {
  background: linear-gradient(135deg, #25B457, #188E44);
  color: #fff;
  box-shadow: 0 7px 20px rgba(24, 154, 91, .26)
}

.btn--wa:hover {
  transform: translateY(-2px)
}

.btn--sm {
  min-height: 37px;
  padding: 0 15px;
  font-size: 12.8px
}

.btn--block {
  width: 100%
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px
}

.btn-row.center {
  justify-content: center
}

/* Topbar */
.topbar {
  background: var(--ink);
  color: #A3BBD1;
  font-size: 12px
}

.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 34px
}

.topbar a,
.topbar .ti {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #A3BBD1;
  transition: color .2s
}

.topbar a:hover {
  color: #fff
}

.topbar svg {
  width: 12px;
  height: 12px;
  flex: none;
  color: var(--red-lt)
}

.tb-left {
  display: flex;
  gap: 18px;
  flex-wrap: wrap
}

.tb-soc {
  display: flex;
  gap: 6px
}

.tb-soc a {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .09);
  display: grid;
  place-items: center;
  transition: .22s
}

.tb-soc a:hover {
  background: var(--red)
}

.tb-soc img {
  width: 13px;
  height: 13px
}

/* Header */
.hdr {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s
}

.hdr.stuck {
  box-shadow: 0 4px 16px rgba(12, 31, 51, .09)
}

.hdr .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 62px
}

.brand img {
  height: 38px;
  width: auto
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px
}

.nav a {
  font-family: var(--head);
  font-size: 13px;
  font-weight: 500;
  position: relative;
  padding-block: 5px;
  transition: color .2s
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--g-red);
  border-radius: 2px;
  transition: width .28s var(--ease)
}

.nav a:hover {
  color: var(--red)
}

.nav a:hover::after {
  width: 100%
}

.hdr-cta {
  display: flex;
  align-items: center;
  gap: 9px
}

.hdr-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--head);
  font-weight: 600;
  font-size: 13px
}

.hdr-phone i {
  width: 30px;
  height: 30px;
  background: var(--red-soft);
  color: var(--red);
  border-radius: 50%;
  display: grid;
  place-items: center
}

.hdr-phone svg {
  width: 14px;
  height: 14px
}

.burger {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer
}

.burger span {
  width: 17px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s, opacity .2s
}

.burger.on span:nth-child(1) {
  transform: translateY(6px) rotate(45deg)
}

.burger.on span:nth-child(2) {
  opacity: 0
}

.burger.on span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg)
}

.drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(84vw, 310px);
  background: #fff;
  z-index: 95;
  transform: translateX(102%);
  transition: transform .36s var(--ease);
  box-shadow: -18px 0 40px rgba(12, 31, 51, .2);
  display: flex;
  flex-direction: column;
  padding: 15px 17px calc(18px + env(safe-area-inset-bottom));
  overflow-y: auto
}

.drawer.open {
  transform: translateX(0)
}

.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px
}

.drawer-top img {
  height: 34px
}

.drawer-x {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  font-size: 20px;
  cursor: pointer;
  color: var(--slate)
}

.drawer nav a {
  display: block;
  padding: 11px 4px;
  border-bottom: 1px solid var(--line-2);
  font-family: var(--head);
  font-weight: 500;
  font-size: 14px
}

.drawer .btn {
  margin-top: 12px
}

.scrim {
  position: fixed;
  inset: 0;
  background: rgba(12, 31, 51, .5);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: .3s
}

.scrim.on {
  opacity: 1;
  visibility: visible
}

/* ============ HERO — layered background image + scrim ============ */
.hero {
  position: relative;
  background: #0C1F33;
  color: #fff;
  overflow: hidden;
  min-height: clamp(400px, 48vw, 486px);
  display: flex;
  align-items: center;
  padding-block: clamp(32px, 4vw, 46px)
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  filter: saturate(.82) contrast(1.04);
  transform: scale(1.02)
}

/* scrim: heavy on the left for the headline, plus a soft pool on the right so the
   doctor card always sits on clean tone whatever the photo contains */
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(96deg, rgba(8, 22, 37, .975) 0%, rgba(11, 34, 56, .945) 32%, rgba(17, 56, 92, .82) 56%, rgba(24, 78, 124, .60) 100%),
    radial-gradient(560px 440px at 86% 52%, rgba(8, 22, 37, .70), transparent 72%),
    linear-gradient(180deg, rgba(8, 22, 37, .34) 0%, transparent 26%, transparent 68%, rgba(8, 22, 37, .52) 100%)
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .05;
  background-image: linear-gradient(rgba(255, 255, 255, .65) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .65) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(72% 66% at 42% 46%, #000, transparent);
  mask-image: radial-gradient(72% 66% at 42% 46%, #000, transparent)
}

.hero .wrap {
  position: relative;
  z-index: 2;
  width: 100%
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) 300px;
  gap: clamp(26px, 4vw, 52px);
  align-items: center
}

.hero-grid>* {
  min-width: 0
}

.hero h1 {
  margin-bottom: 11px;
  max-width: 17ch;
  display: contents;
  margin-bottom: 20px;
}

.hero h1 span {
  color: #FFB3B3
}

.hero-sub {
  font-size: 14.8px;
    color: #ffffff;
  line-height: 1.66;
  margin-bottom: 15px;
  max-width: 80ch;
  margin-top: 15px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 17px
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 11.8px;
  font-weight: 600;
  background: rgba(255, 255, 255, .11);
  border: 1px solid rgba(255, 255, 255, .19);
  color: #DCE9F4;
  backdrop-filter: blur(6px)
}

.chip svg {
  width: 12px;
  height: 12px;
  color: #66E5A8;
  flex: none
}

/* Compact doctor chip-card */
.hdoc {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 300px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F7FAFD 100%);
  border-radius: var(--r-l);
  padding: 18px 16px 16px;
  text-align: center;
  color: var(--ink);
  box-shadow: 0 20px 44px rgba(6, 18, 31, .34), 0 2px 6px rgba(6, 18, 31, .2);
  border: 1px solid rgba(255, 255, 255, .75)
}


.hdoc-av {
    width: 125px;
    height: 125px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 10px;
  position: relative;
  background: var(--tint);
  box-shadow: 0 0 0 3px #fff, 0 0 0 5px rgba(31, 101, 161, .16), 0 6px 16px rgba(12, 31, 51, .2)
}

.hdoc-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center
}

.hdoc h2 {
  font-size: 17px;
  margin-bottom: 2px
}

.hdoc-role {
  font-size: 11.4px;
  color: var(--red);
  font-family: var(--head);
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 9px
}

.hdoc-meta {
  font-size: 11.6px;
  color: var(--slate);
  line-height: 1.5;
  padding-block: 9px;
  border-block: 1px solid var(--line-2);
  margin-bottom: 10px
}

.hdoc-rate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-bottom: 11px
}

.hdoc-rate img {
  height: 17px
}

.hdoc-rate b {
  font-family: var(--head);
  font-size: 13px
}

.hdoc-rate span {
  font-size: 11px;
  color: var(--slate)
}

/* Trust band */
.band {
  background: linear-gradient(120deg, #164B78 0%, #1F65A1 52%, #2A79BC 100%);
  color: #fff;
  position: relative;
  overflow: hidden
}

.band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(620px 200px at 76% 0, rgba(255, 255, 255, .17), transparent 62%),
    radial-gradient(420px 180px at 8% 100%, rgba(219, 32, 32, .24), transparent 66%)
}

.band::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent 55%)
}

.band .wrap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr)
}

.bstat {
  padding: 16px 10px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .18)
}

.bstat:last-child {
  border-right: 0
}

.bstat b {
  display: block;
  font-family: var(--head);
  font-size: clamp(19px, 2.4vw, 26px);
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .14)
}

.bstat span {
  display: block;
  font-size: 16px;
  margin-top: 4px;
  color: #CBDEEE;
  line-height: 1.35
}

/* Image card (symptoms / conditions / treatments) */
.ic {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .34s var(--ease), box-shadow .34s var(--ease), border-color .34s
}

.ic::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  z-index: 3;
  background: linear-gradient(90deg, var(--red), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease)
}

.ic:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(12, 31, 51, .16);
  border-color: #BFD8EE
}

.ic:hover::after {
  transform: scaleX(1)
}

.ic .ratio>img {
  filter: saturate(.94)
}

.ic:hover .ratio>img {
  transform: scale(1.08);
  filter: saturate(1.04)
}

.ic .ratio::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 31, 51, 0) 34%, rgba(12, 31, 51, .46) 62%, rgba(9, 24, 40, .86) 100%);
  transition: opacity .34s
}

.ic:hover .ratio::after {
  opacity: .9
}

.ic-tag {
  position: absolute;
  left: 9px;
  top: 9px;
  z-index: 2;
  background: rgba(255, 255, 255, .95);
  color: var(--blue-dk);
  font-family: var(--head);
  font-size: 9.6px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 100px;
  box-shadow: 0 2px 6px rgba(12, 31, 51, .16);
  display: none;
}

.ic-tag.red {
  background: var(--g-red);
  color: #fff;
  box-shadow: 0 2px 8px rgba(219, 32, 32, .36)
}

.ic-name {
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 10px;
  z-index: 2;
  color: #fff;
  font-family: var(--head);
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1.28;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .55)
}

.ic-body {
  padding: 13px 15px 15px;
  display: flex;
  flex-direction: column;
  flex: 1
}

.ic-body p {
  font-size: 14px;
  color: var(--slate);
  margin: 0 0 11px;
  flex: 1;
  line-height: 1.6
}

.ic-body .btn {
  align-self: flex-start
}

/* ============ STICKY IMAGE + SCROLL PANES ============ */
.sticky-split {
  display: grid;
  grid-template-columns: 400px minmax(0, 1fr);
  gap: 36px;
  align-items: start
}

.sticky-split>* {
  min-width: 0
}

.sticky-col {
  position: sticky;
  top: 84px
}

.simg {
  position: relative;
  border-radius: var(--r-l);
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 4/3.4;
  box-shadow: 0 20px 44px rgba(12, 31, 51, .20), 0 0 0 1px rgba(255, 255, 255, .5) inset
}

.simg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .6s var(--ease), transform 9s linear;
  filter: saturate(.92)
}

.simg img.on {
  opacity: 1;
  transform: scale(1.05)
}

.simg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 24, 40, .28) 0%, rgba(9, 24, 40, 0) 32%, rgba(9, 24, 40, .52) 66%, rgba(6, 18, 31, .9) 100%)
}

.simg-cap {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  color: #fff
}

.simg-cap b {
  display: block;
  font-family: var(--head);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px
}

.simg-cap span {
  font-size: 11.6px;
  color: #C6D8E8
}

.simg-dots {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 2;
  display: flex;
  gap: 5px
}

.simg-dots i {
  width: 20px;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, .35);
  transition: .35s
}

.simg-dots i.on {
  background: var(--red);
  width: 30px
}

.panes {
  display: grid;
  gap: 13px
}

.pane {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  padding: 20px;
  border-left: 3px solid var(--line);
  transition: border-color .35s, box-shadow .35s, transform .35s
}

.pane.active {
  border-left-color: var(--red);
  box-shadow: var(--sh-2);
  transform: translateX(2px)
}

.pane-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 7px
}

.pane-n {
  width: 31px;
  height: 31px;
  border-radius: 9px;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-family: var(--head);
  font-weight: 700;
  font-size: 12.5px;
  flex: none;
  transition: .35s
}

.pane.active .pane-n {
  background: var(--g-red);
  color: #fff
}

.pane-top h3 {
  margin: 0
}

.pane-tag {
  font-family: var(--head);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 7px
}

.pane p {
  font-size: 13.2px;
  color: var(--slate);
  line-height: 1.65
}

.pane-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px
}

.pf {
  background: var(--mist);
  border: 1px solid var(--line-2);
  border-radius: var(--r-s);
  padding: 9px 11px
}

.pf b {
  display: block;
  font-family: var(--head);
  font-size: 9.6px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 2px
}

.pf span {
  font-size: 12.4px;
  line-height: 1.45
}

/* Pitch */
.pitch {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  padding-block: clamp(34px, 4.2vw, 48px)
}

.pitch-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden
}

.pitch-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.8);
  transform: scale(1.02)
}

.pitch-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(98deg, rgba(8, 22, 37, .97) 0%, rgba(16, 54, 90, .93) 46%, rgba(28, 90, 145, .74) 78%, rgba(31, 101, 161, .58) 100%),
    radial-gradient(520px 300px at 88% 20%, rgba(219, 32, 32, .26), transparent 70%)
}

.pitch--red {
  background: var(--red-dk)
}

.pitch--red .pitch-scrim {
  background: linear-gradient(98deg, rgba(140, 16, 16, .97) 0%, rgba(179, 24, 24, .93) 46%, rgba(219, 32, 32, .80) 100%),
    radial-gradient(480px 300px at 86% 18%, rgba(255, 255, 255, .16), transparent 70%)
}

.pitch .wrap {
  position: relative;
  z-index: 2
}

.pitch-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, .65fr);
  gap: 28px;
  align-items: center
}

.pitch h2 {
  margin-bottom: 8px
}

.pitch p {
  color: #D2E1EE;
  font-size: 14px;
  max-width: 70ch;
}

.pitch--red p {
  color: #FFE0E0
}

.plist {
  display: grid;
  gap: 6px;
  margin-top: 12px
}

.plist li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 13.2px;
  color: #DCE9F4
}

.pitch--red .plist li {
  color: #FFEAEA
}

.plist svg {
  width: 16px;
  height: 16px;
  color: #66E5A8;
  flex: none;
  margin-top: 3px
}

.pitch--red .plist svg {
  color: #fff
}

/* Doctor — sticky image */
.doc-media .ratio {
  aspect-ratio: 1/1.16;
  border-radius: var(--r-l);
  box-shadow: var(--sh-3)
}

.doc-media .ratio>img {
  object-position: top center
}

.doc-media {
  position: relative
}

.doc-float {
  position: absolute;
  right: -10px;
  bottom: -14px;
  background: #fff;
  border-radius: var(--r-m);
  padding: 11px 15px;
  box-shadow: var(--sh-3);
  border: 1px solid var(--line);
  text-align: center;
  min-width: 110px
}

.doc-float b {
  display: block;
  font-family: var(--head);
  font-size: 23px;
  font-weight: 700;
  color: var(--red);
  line-height: 1
}

.doc-float span {
  font-size: 10.6px;
  color: var(--slate);
  line-height: 1.3;
  display: block;
  margin-top: 3px
}

.doc-rate {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 12px 0 14px;
  padding: 10px 13px;
  background: var(--g-mist);
  border: 1px solid var(--line);
  border-radius: var(--r-m)
}

.doc-rate img {
  height: 19px
}

.doc-rate b {
  font-family: var(--head);
  font-size: 15.5px;
  display: block;
  line-height: 1.15
}

.doc-rate span {
  font-size: 11px;
  color: var(--slate)
}

.doc-rate .vr {
  width: 1px;
  height: 28px;
  background: var(--line)
}

.creds {
  border-top: 1px solid var(--line);
  margin-top: 14px
}

.cred {
  display: grid;
  grid-template-columns: 124px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-2)
}

.cred dt {
  font-family: var(--head);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--blue);
  padding-top: 2px
}

.cred dd {
  margin: 0;
  font-size: 12.8px
}

.cred dd small {
  display: block;
  color: var(--slate);
  font-size: 11.4px;
  margin-top: 2px
}

/* Fellowships */
.fel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  overflow: hidden;
  transition: .3s
}

.fel:hover {
  box-shadow: var(--sh-2);
  transform: translateY(-4px)
}

.fel:hover .ratio>img {
  transform: scale(1.06)
}

.fel-body {
  padding: 13px 14px 15px
}

.fel-yr {
  font-family: var(--head);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red)
}

.fel-body h3 {
  font-size: 14.6px;
  margin: 4px 0 2px
}

.fel-place {
  font-size: 11.8px;
  color: var(--blue);
  font-weight: 600
}

/* Certificates — exactly 4, name only */
.certs4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px
}

.cert {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  overflow: hidden;
  cursor: zoom-in;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s
}

.cert:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-3);
  border-color: var(--blue)
}

.cert .ratio {
  aspect-ratio: 3/3.8;
  background: #fff
}

.cert .ratio>img {
  object-fit: contain;
  object-position: center;
  padding: 8px
}

.cert figcaption {
  padding: 11px 12px 13px;
  text-align: center;
  font-family: var(--head);
  font-size: 12.4px;
  font-weight: 600;
  line-height: 1.35;
  border-top: 1px solid var(--line-2);
  background: var(--mist)
}

.lb {
  position: fixed;
  inset: 0;
  background: rgba(6, 17, 29, .94);
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px
}

.lb.on {
  display: flex
}

.lb img {
  max-width: min(94vw, 820px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  background: #fff
}

.lb-x {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
  font-size: 22px;
  cursor: pointer
}

/* Comparison */
.cmp {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  overflow: hidden;
  box-shadow: var(--sh-1)
}

.cmp table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px
}

.cmp th,
.cmp td {
  padding: 11px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line-2);
  vertical-align: top
}

.cmp thead th {
  font-family: var(--head);
  font-size: 13px;
  font-weight: 600;
  background: var(--ink);
  color: #fff
}

.cmp thead th:nth-child(2) {
  background: var(--g-red)
}

.cmp tbody th {
  font-weight: 600;
  width: 27%;
  background: var(--mist);
  font-family: var(--head);
  font-size: 12.4px
}

.cmp td {
  color: var(--slate)
}

.cmp td:nth-child(2) {
  background: #FFF8F8;
  color: var(--ink)
}

.cmp tbody tr:last-child th,
.cmp tbody tr:last-child td {
  border-bottom: 0
}

.cmp-note {
  font-size: 11.8px;
  color: var(--slate);
  margin-top: 10px;
  font-style: italic
}

/* Process */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 11px
}

.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  padding: 16px 14px;
  transition: .3s;
  position: relative;
  overflow: hidden
}

.step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 3px;
  width: 0;
  background: var(--g-red);
  transition: width .4s var(--ease)
}

.step:hover::before {
  width: 100%
}

.step:hover {
  box-shadow: var(--sh-2);
  transform: translateY(-4px)
}

.step-n {
  font-family: var(--head);
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: var(--g-blue);
  width: 27px;
  height: 27px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  margin-bottom: 10px
}

.step h3 {
  font-size: 13.8px;
  margin-bottom: 4px
}

.step p {
  font-size: 12.2px;
  color: var(--slate);
  margin: 0;
  line-height: 1.55
}

/* Self-check with side image */
.check-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 26px;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  overflow: hidden;
  box-shadow: var(--sh-2)
}

.check-img {
  position: relative;
  min-height: 100%;
  background: var(--tint)
}

.check-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.check-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(359deg, #1b5a90 0%, #ffffff00 46.44%);
}

.check-img-txt {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  color: #fff
}

.check-img-txt b {
  display: block;
  font-family: var(--head);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 5px
}

.check-img-txt p {
  font-size: 12.4px;
  color: #C6D8E8;
  margin: 0
}

.check-body {
  padding: 22px
}

.qs {
  display: grid;
  gap: 7px
}

.q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 13px;
  padding: 10px 13px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-s);
  transition: .25s
}

.q.on {
  border-color: var(--red);
  background: var(--red-soft)
}

.q span {
  font-size: 13px;
  line-height: 1.4
}

.q-toggle {
  flex: none;
  width: 44px;
  height: 25px;
  border-radius: 100px;
  background: var(--line);
  position: relative;
  cursor: pointer;
  border: 0;
  transition: .25s
}

.q-toggle::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #fff;
  transition: .25s var(--ease);
  box-shadow: 0 2px 5px rgba(0, 0, 0, .2)
}

.q.on .q-toggle {
  background: var(--g-red)
}

.q.on .q-toggle::after {
  transform: translateX(19px)
}

.check-out {
  margin-top: 15px;
  padding: 15px;
  border-radius: var(--r-m);
  background: var(--g-mist);
  border: 1px solid var(--line)
}

.check-bar {
  height: 6px;
  border-radius: 100px;
  background: var(--line);
  overflow: hidden;
  margin-bottom: 11px
}

.check-bar i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--blue), var(--red));
  transition: width .5s var(--ease)
}

.check-out h4 {
  font-family: var(--head);
  font-size: 14.6px;
  font-weight: 600;
  margin-bottom: 4px
}

.check-out p {
  font-size: 12.8px;
  color: var(--slate);
  margin-bottom: 11px
}

/* Diagnostics strip */
.dx {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  padding: 14px 12px;
  text-align: center;
  transition: .3s
}

.dx:hover {
  box-shadow: var(--sh-2);
  transform: translateY(-4px);
  border-color: #C4DBEF
}

.dx-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 9px;
  border: 2px solid var(--line);
  position: relative
}

.dx-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.dx h3 {
  font-size: 12.8px;
  margin-bottom: 3px
}

.dx p {
  font-size: 11.4px;
  color: var(--slate);
  margin: 0;
  line-height: 1.5
}

/* Videos */
.vid {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  overflow: hidden;
  transition: .3s;
  display: block
}

.vid:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-2)
}

.vid:hover .ratio>img {
  transform: scale(1.06)
}

.vid .ratio {
  aspect-ratio: 16/9;
  background: var(--ink)
}

.vid-play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  background: rgba(12, 31, 51, .26);
  transition: .3s
}

.vid:hover .vid-play {
  background: rgba(12, 31, 51, .1)
}

.vid-play i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--g-red);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(219, 32, 32, .4)
}

.vid-play svg {
  width: 16px;
  height: 16px;
  color: #fff;
  margin-left: 3px
}

.vid-body {
  padding: 11px 13px 13px
}

.vid-body h3 {
  font-family: var(--head);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0
}

/* ============ REVIEWS SLIDER ============ */
.rev-wrap {
  position: relative
}

.rev-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap
}

.rev-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 8px 16px;
  box-shadow: var(--sh-1)
}

.rev-badge img {
  height: 19px
}

.rev-badge b {
  font-family: var(--head);
  font-size: 15.5px;
  display: block;
  line-height: 1.15
}

.rev-badge span {
  font-size: 11px;
  color: var(--slate)
}

.rev-nav {
  display: flex;
  gap: 8px
}

.rev-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: .25s;
  color: var(--ink)
}

.rev-btn:hover {
  background: var(--g-blue);
  border-color: transparent;
  color: #fff
}

.rev-btn:disabled {
  opacity: .35;
  cursor: default;
  background: #fff;
  color: var(--ink);
  border-color: var(--line)
}

.rev-btn svg {
  width: 16px;
  height: 16px
}

.rev-view {
  overflow: hidden
}

.rev-track {
  display: flex;
  gap: 16px;
  transition: transform .55s var(--ease);
  will-change: transform
}

.rev-card {
  flex: 0 0 calc((100% - 32px)/3);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  padding: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: .3s
}

.rev-card:hover {
  box-shadow: var(--sh-2);
  border-color: #C4DBEF
}

.rev-card::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 16px;
  width: 26px;
  height: 20px;
  opacity: .14;
  background: var(--blue);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M7 7h4v4a4 4 0 0 1-4 4V7Zm6 0h4v4a4 4 0 0 1-4 4V7Z'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M7 7h4v4a4 4 0 0 1-4 4V7Zm6 0h4v4a4 4 0 0 1-4 4V7Z'/></svg>") center/contain no-repeat
}

.rev-stars {
  color: #F5A623;
  font-size: 12.5px;
  letter-spacing: 2px;
  margin-bottom: 8px;
  position: relative;
  z-index: 1
}

.rev-card p {
  font-size: 12.8px;
  color: var(--slate);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 12px;
  position: relative;
  z-index: 1
}

.rev-who {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 11px;
  border-top: 1px solid var(--line-2)
}

.rev-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--g-blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--head);
  font-weight: 700;
  font-size: 13.5px;
  flex: none
}

.rev-who b {
  display: block;
  font-size: 12.8px;
  font-family: var(--head);
  font-weight: 600
}

.rev-who span {
  font-size: 10.8px;
  color: #fff;
}

.rev-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 16px
}

.rev-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: var(--line);
  cursor: pointer;
  transition: .25s;
  padding: 0
}

.rev-dots button.on {
  background: var(--red);
  width: 22px;
  border-radius: 100px
}

/* ============ LOCATIONS — 2 cards + map in one row ============ */
.loc-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 15px;
  align-items: stretch
}

.loc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: .3s
}

.loc:hover {
  box-shadow: var(--sh-2)
}

.loc:hover .ratio>img {
  transform: scale(1.05)
}

.loc .ratio {
  aspect-ratio: 16/8
}

.loc-body {
  padding: 14px 15px 16px;
  display: flex;
  flex-direction: column;
  flex: 1
}

.loc-body h3 {
  font-size: 15px;
  margin-bottom: 1px
}

.loc-role {
  font-family: var(--head);
  font-size: 9.6px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px
}

.loc-list {
  flex: 1
}

.loc-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  padding-block: 5px;
  font-size: 12.2px;
  color: var(--slate);
  line-height: 1.5
}

.loc-list li+li {
  border-top: 1px dashed var(--line-2)
}

.loc-list svg {
  width: 14px;
  height: 14px;
  color: var(--blue);
  flex: none;
  margin-top: 3px
}

.loc-list a {
  color: var(--ink);
  font-weight: 600
}

.loc-list a:hover {
  color: var(--red)
}

.map-card {
  border-radius: var(--r-m);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--sh-1);
  min-height: 100%;
  display: flex
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 330px;
  border: 0;
  display: block
}

/* ============ BOOKING — dark blue ============ */
.book {
  position: relative;
  background: #08161F;
  color: #fff;
  overflow: hidden;
  padding-block: clamp(40px, 4.6vw, 58px)
}

.book-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden
}

.book-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.7);
  transform: scale(1.03)
}

.book-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(7, 20, 34, .985) 0%, rgba(14, 48, 79, .96) 48%, rgba(24, 84, 134, .90) 100%),
    radial-gradient(620px 340px at 82% 88%, rgba(31, 101, 161, .42), transparent 72%),
    radial-gradient(420px 260px at 6% 8%, rgba(219, 32, 32, .20), transparent 70%)
}

.book-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .055;
  background-image: linear-gradient(rgba(255, 255, 255, .7) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .7) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(78% 68% at 46% 42%, #000, transparent);
  mask-image: radial-gradient(78% 68% at 46% 42%, #000, transparent)
}

.book .wrap {
  position: relative;
  z-index: 2
}

.book-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 3.4vw, 40px);
  align-items: center
}

.book h2 {
  margin-bottom: 8px
}

.book-lede {
  color: #C6D8E8;
  font-size: 14px;
  margin-bottom: 16px;
  max-width: 44ch
}

.book-list {
  display: grid;
  gap: 8px;
  margin-bottom: 18px
}

.book-list li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 13px;
  color: #DCE9F4
}

.book-list svg {
  width: 16px;
  height: 16px;
  color: #66E5A8;
  flex: none;
  margin-top: 3px
}

.book-cta {
  display: flex;
  gap: 9px;
  flex-wrap: wrap
}

.book-card {
  background: rgba(255, 255, 255, .98);
  border-radius: var(--r-l);
  padding: 22px;
  box-shadow: var(--sh-3);
  color: var(--ink)
}

.book-card h3 {
  font-size: 16.5px;
  margin-bottom: 3px
}

.book-card>p {
  font-size: 12.4px;
  color: var(--slate);
  margin-bottom: 14px
}

.field {
  margin-bottom: 11px
}

.field label {
  display: block;
  font-family: var(--head);
  font-size: 11.4px;
  font-weight: 600;
  margin-bottom: 4px
}

.field label i {
  color: var(--red);
  font-style: normal
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 42px;
  padding: 9px 12px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-s);
  background: #fff;
  font-size: 13.6px;
  transition: .22s;
  font-family: var(--body)
}

.field textarea {
  min-height: 72px;
  resize: vertical
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(31, 101, 161, .1);
  outline: 0
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px
}

.form-note {
  font-size: 11px;
  color: var(--slate);
  margin-top: 9px;
  text-align: center;
  line-height: 1.5
}

/* FAQ */
.faq {
  max-width: 860px;
  margin-inline: auto
}

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  margin-bottom: 8px;
  overflow: hidden;
  transition: .3s
}

.faq details[open] {
  border-color: var(--blue);
  box-shadow: var(--sh-1)
}

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 44px 14px 16px;
  position: relative;
  font-family: var(--head);
  font-weight: 600;
  font-size: 14.2px;
  line-height: 1.42
}

.faq summary::-webkit-details-marker {
  display: none
}

.faq summary::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 19px;
  width: 8px;
  height: 8px;
  border-right: 2.2px solid var(--blue);
  border-bottom: 2.2px solid var(--blue);
  transform: rotate(45deg);
  transition: transform .3s var(--ease)
}

.faq details[open] summary::after {
  transform: rotate(-135deg);
  top: 22px
}

.faq summary:hover {
  color: var(--blue)
}

.faq-a {
  padding: 13px 16px 16px;
  font-size: 13.2px;
  color: var(--slate);
  line-height: 1.72;
  border-top: 1px solid var(--line-2)
}

.faq-a p {
  margin-bottom: 8px
}

.faq-a strong {
  color: var(--ink)
}

.faq-a ul {
  margin: 7px 0 0;
  display: grid;
  gap: 4px
}

.faq-a ul li {
  padding-left: 16px;
  position: relative;
  font-size: 12.8px
}

.faq-a ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red)
}

/* Footer */
.ftr {
  background: var(--ink);
  color: #98B2C9;
  padding-block: 38px 0;
  font-size: 12.6px
}

.ftr-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 26px
}

.ftr h4 {
  color: #fff;
  font-family: var(--head);
  font-size: 13.4px;
  font-weight: 600;
  margin-bottom: 12px
}

.ftr .flogo {
  height: 42px;
  margin-bottom: 12px
}

.ftr p {
  line-height: 1.68;
  font-size: 12.6px
}

.ftr li {
  margin-bottom: 6px
}

.ftr a:hover {
  color: #fff
}

.ftr-soc {
  display: flex;
  gap: 7px;
  margin-top: 12px
}

.ftr-soc a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: grid;
  place-items: center;
  transition: .25s
}

.ftr-soc a:hover {
  background: var(--red);
  transform: translateY(-2px)
}

.ftr-soc img {
  width: 14px;
  height: 14px
}

.ftr-contact li {
  display: flex;
  gap: 8px;
  align-items: flex-start
}

.ftr-contact svg {
  width: 14px;
  height: 14px;
  color: var(--red-lt);
  flex: none;
  margin-top: 3px
}

.ftr-disc {
  font-size: 11px;
  line-height: 1.62;
  color: #728DA6;
  margin-top: 18px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, .04);
  border-radius: var(--r-s);
  border-left: 3px solid var(--red)
}

.ftr-bot {
  margin-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-block: 14px calc(14px + env(safe-area-inset-bottom));
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 11.4px
}

/* Floating */
.fab {
  position: fixed;
  right: 16px;
  bottom: 20px;
  z-index: 70;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25B457, #188E44);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(24, 154, 91, .42);
  transition: transform .25s var(--ease)
}

.fab:hover {
  transform: scale(1.08)
}

.fab svg {
  width: 26px;
  height: 26px;
  color: #fff
}

.fab::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25B457;
  animation: pulse 2.4s ease-out infinite
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: .7
  }

  100% {
    transform: scale(1.5);
    opacity: 0
  }
}

.mbar {
  display: none
}

.rv {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease)
}

.rv.in {
  opacity: 1;
  transform: none
}

/* ================= RESPONSIVE ================= */
@media (max-width:1080px) {
  .sticky-split {
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 24px
  }

  .loc-row {
    grid-template-columns: 1fr 1fr
  }

  .map-card {
    grid-column: 1/-1;
    min-height: 260px
  }

  .map-card iframe {
    min-height: 260px
  }

  .steps {
    grid-template-columns: repeat(3, 1fr)
  }

  .g6 {
    grid-template-columns: repeat(3, 1fr)
  }

  .ftr-grid {
    grid-template-columns: 1fr 1fr
  }

  .rev-card {
    flex: 0 0 calc((100% - 16px)/2)
  }
}

@media (max-width:940px) {
  html {
    scroll-padding-top: 70px
  }

  .nav,
  .hdr-phone {
    display: none
  }

  .burger {
    display: flex
  }

  .hero {
    min-height: 0
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .hdoc {
    justify-self: center;
    margin-inline: auto;
    max-width: 340px
  }

  .hero-grain {
    opacity: .035
  }

  .hero-scrim {
    background: linear-gradient(180deg, rgba(8, 22, 37, .96) 0%, rgba(13, 42, 69, .93) 55%, rgba(20, 66, 107, .90) 100%)
  }

  .hero h1 {
    max-width: none
  }

  .sticky-split {
    grid-template-columns: 1fr;
    gap: 18px
  }

  .sticky-col {
    position: static
  }

  .simg {
    max-width: 440px;
    margin-inline: auto;
    aspect-ratio: 16/11
  }

  .doc-sticky {
    position: static !important
  }

  .doc-media {
    max-width: 320px;
    margin-inline: auto;
    width: 100%
  }

  .doc-split {
    grid-template-columns: 1fr !important;
    gap: 44px
  }

  .pitch-grid,
  .book-grid {
    grid-template-columns: 1fr;
    gap: 22px
  }

  .check-grid {
    grid-template-columns: 1fr
  }

  .check-img {
    min-height: 210px
  }

  .g3,
  .g4 {
    grid-template-columns: repeat(2, 1fr)
  }

  .band .wrap {
    grid-template-columns: repeat(3, 1fr)
  }

  .bstat:nth-child(3) {
    border-right: 0
  }

  .bstat:nth-child(n+4) {
    border-top: 1px solid rgba(255, 255, 255, .16)
  }

  .certs4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px
  }
}

@media (max-width:700px) {
  :root {
    --gut: 15px;
    --sec: clamp(34px, 7vw, 44px)
  }

  body {
    font-size: 14.2px
  }

  .topbar {
    display: none
  }

  .hdr .wrap {
    min-height: 56px
  }

  .brand img {
    height: 33px
  }

  .head {
    margin-bottom: 18px
  }

  .g2,
  .g3,
  .g4,
  .g6 {
    grid-template-columns: 1fr
  }

  .grid {
    gap: 12px
  }

  .hero {
    padding-block: 26px 30px
  }

  .hero-grain {
    display: none
  }

  .steps {
    grid-template-columns: 1fr
  }

  .band .wrap {
    grid-template-columns: repeat(2, 1fr)
  }

  .bstat {
    padding: 13px 8px;
    border-top: 1px solid rgba(255, 255, 255, .16)
  }

  .bstat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, .16)
  }

  .bstat:nth-child(even) {
    border-right: 0
  }

  .bstat:last-child {
    grid-column: 1/-1;
    border-right: 0
  }

  .cred {
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 9px 0
  }

  .doc-float {
    right: 8px;
    bottom: -12px;
    padding: 9px 12px;
    min-width: 98px
  }

  .doc-float b {
    font-size: 20px
  }

  .cmp {
    overflow-x: auto
  }

  .cmp table {
    min-width: 520px
  }

  .rev-card {
    flex: 0 0 100%
  }

  .rev-head {
    justify-content: center
  }

  .loc-row {
    grid-template-columns: 1fr
  }

  .pane-facts {
    grid-template-columns: 1fr
  }

  .field-row {
    grid-template-columns: 1fr
  }

  .book-card {
    padding: 17px
  }

  .check-body {
    padding: 17px
  }

  .certs4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 11px
  }

  .cert figcaption {
    font-size: 11.2px;
    padding: 9px 8px 11px
  }

  .ftr-grid {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .ftr-bot {
    flex-direction: column;
    text-align: center;
    padding-bottom: calc(86px + env(safe-area-inset-bottom))
  }

  .fab {
    display: none
  }

  .faq summary {
    font-size: 13.6px;
    padding: 12px 40px 12px 14px
  }

  .faq-a {
    padding: 11px 14px 14px
  }

  .btn {
    width: 100%
  }

  .btn-row .btn {
    flex: 1 1 100%
  }

  .rev-nav {
    display: none
  }

  .mbar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 75;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -5px 18px rgba(12, 31, 51, .12);
    padding-bottom: env(safe-area-inset-bottom)
  }

  .mbar a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 8px 5px;
    font-family: var(--head);
    font-size: 10px;
    font-weight: 600;
    border-right: 1px solid var(--line-2)
  }

  .mbar a:last-child {
    border-right: 0
  }

  .mbar a:active {
    background: var(--mist)
  }

  .mbar svg {
    width: 18px;
    height: 18px
  }

  .mbar .m-call svg {
    color: var(--red)
  }

  .mbar .m-wa svg {
    color: #189A5B
  }

  .mbar .m-book svg {
    color: var(--blue)
  }
}

@media (prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important
  }

  html {
    scroll-behavior: auto
  }

  .rv {
    opacity: 1;
    transform: none
  }
}

@media print {

  .hdr,
  .mbar,
  .fab,
  .topbar,
  .drawer,
  .scrim {
    display: none
  }
}

#valves .head {
  margin: auto;
  justify-content: center;
  text-align: center;
  margin-bottom: 40px;
}

#valves .eyebrow {
  justify-content: center;
}

#doctor .head {
  margin-bottom: 10px;
}