:root {
  --navy-950: #041321;
  --navy-900: #071a2f;
  --navy-800: #0a2947;
  --navy-700: #0d3b62;
  --blue-600: #0b82bc;
  --blue-500: #0ea5d8;
  --cyan-400: #43d5c2;
  --ice-100: #edf8fc;
  --ice-50: #f7fbfd;
  --white: #ffffff;
  --ink: #10263a;
  --muted: #63788a;
  --line: #dce9ef;
  --shadow: 0 24px 70px rgba(4, 32, 54, .12);
  --shadow-soft: 0 14px 40px rgba(9, 47, 76, .08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--white);
  color: var(--navy-900);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(4, 19, 33, .82);
  backdrop-filter: blur(18px);
  transition: .28s ease;
}

.site-header.scrolled {
  background: rgba(4, 19, 33, .96);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .16);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  flex-shrink: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(67,213,194,.16), rgba(14,165,216,.12));
  border: 1px solid rgba(120,225,240,.25);
}

.brand-mark svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--cyan-400);
  stroke-width: 2;
  stroke-linecap: round;
}

.brand-text {
  display: grid;
  line-height: 1;
  gap: 4px;
}

.brand-text strong {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  letter-spacing: .14em;
}

.brand-text small {
  font-size: 9px;
  letter-spacing: .48em;
  color: #9dc4d7;
}

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

.main-nav > a:not(.nav-cta) {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.76);
  transition: .2s ease;
}

.main-nav > a:not(.nav-cta):hover {
  color: var(--white);
}

.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan-400), #21bce4);
  color: #062035;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(43, 210, 208, .22);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: .2s ease;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 148px 0 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 25%, rgba(14,165,216,.18), transparent 34%),
    radial-gradient(circle at 10% 70%, rgba(67,213,194,.08), transparent 31%),
    linear-gradient(135deg, var(--navy-950) 0%, #071d33 52%, #0a2a48 100%);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .27;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  width: 360px;
  height: 360px;
  right: -160px;
  top: 120px;
  border: 1px solid rgba(72, 210, 223, .12);
  box-shadow: 0 0 160px rgba(14,165,216,.08) inset;
}

.hero-glow-two {
  width: 520px;
  height: 520px;
  left: -320px;
  bottom: -250px;
  border: 1px solid rgba(72, 210, 223, .08);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 62px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.eyebrow {
  color: #87dce7;
  margin-bottom: 22px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan-400);
  box-shadow: 0 0 0 6px rgba(67,213,194,.1);
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: clamp(48px, 6.1vw, 78px);
  line-height: 1.03;
  letter-spacing: -.045em;
}

.hero h1 span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(192, 235, 244, .62);
}

.hero-lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: #bfd0db;
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.btn {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

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

.btn svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.btn-primary {
  color: #04223a;
  background: linear-gradient(135deg, var(--cyan-400), #3abdec);
  box-shadow: 0 14px 34px rgba(29, 201, 211, .2);
}

.btn-primary:hover {
  box-shadow: 0 18px 38px rgba(29, 201, 211, .3);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.18);
}

.btn-secondary:hover {
  background: rgba(255,255,255,.09);
}

.btn-light {
  background: var(--white);
  color: var(--navy-900);
}

.btn-white {
  background: var(--white);
  color: var(--navy-900);
  box-shadow: 0 12px 36px rgba(0,0,0,.12);
}

.appointment-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: #9fb9c8;
  font-size: 14px;
}

.note-icon {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(67,213,194,.11);
  color: var(--cyan-400);
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.medical-card {
  position: relative;
  width: min(100%, 470px);
  min-height: 515px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(145,221,238,.18);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 42%, rgba(28, 141, 190, .18), transparent 46%),
    linear-gradient(150deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
  box-shadow: 0 36px 90px rgba(0,0,0,.26), inset 0 1px rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
}

.medical-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -35% 10%;
  height: 260px;
  background: radial-gradient(circle, rgba(67,213,194,.11), transparent 65%);
}

.medical-card-top {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  color: #a7c5d5;
}

.status-pill {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(67,213,194,.11);
  color: #76e2d6;
  letter-spacing: .06em;
}

.joint-illustration {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 10px 0 0;
}

.visual-tags {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.visual-tags span {
  padding: 7px 11px;
  border: 1px solid rgba(120, 213, 230, .15);
  border-radius: 999px;
  background: rgba(3, 27, 46, .72);
  color: #a9c8d8;
  font-size: 11px;
}

.floating-info {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 155px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(6, 28, 47, .86);
  box-shadow: 0 20px 44px rgba(0,0,0,.2);
  backdrop-filter: blur(12px);
}

.floating-one {
  left: -10px;
  bottom: 95px;
}

.floating-two {
  right: -14px;
  top: 104px;
}

.floating-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(67,213,194,.18), rgba(14,165,216,.18));
  color: var(--cyan-400);
  font-weight: 800;
  font-size: 20px;
}

.floating-icon.pin {
  font-size: 26px;
}

.floating-info small,
.floating-info strong {
  display: block;
  line-height: 1.3;
}

.floating-info small {
  color: #779aac;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .11em;
}

.floating-info strong {
  margin-top: 3px;
  color: var(--white);
  font-size: 12px;
}

.quick-strip {
  position: relative;
  z-index: 3;
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1.3fr .8fr .7fr;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,.035);
  backdrop-filter: blur(10px);
}

.quick-strip article {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 92px;
  padding: 18px 22px;
}

.quick-strip article + article {
  border-left: 1px solid rgba(255,255,255,.09);
}

.quick-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(67,213,194,.09);
}

.quick-icon svg {
  width: 20px;
  fill: none;
  stroke: var(--cyan-400);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-strip small,
.quick-strip strong {
  display: block;
}

.quick-strip small {
  color: #789bac;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.quick-strip strong {
  margin-top: 3px;
  font-size: 13px;
  color: #e2edf3;
  line-height: 1.4;
}

.section {
  padding: 104px 0;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading.align-left {
  margin: 0;
  text-align: left;
}

.section-kicker {
  color: var(--blue-600);
  margin-bottom: 14px;
}

.section-kicker.light {
  color: #74e3da;
}

.section-heading h2,
.feature-copy h2,
.schedule-copy h2,
.contact-cta h2,
.social-card h2 {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: clamp(34px, 4.5vw, 52px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.section-heading p,
.schedule-copy p {
  max-width: 650px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 17px;
}

.section-heading.align-left p {
  margin-inline: 0;
}

.specialties {
  background:
    linear-gradient(180deg, #fff 0%, #fbfdfe 100%);
}

.specialty-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.specialty-card {
  position: relative;
  min-height: 250px;
  grid-column: span 2;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.specialty-card:nth-child(4),
.specialty-card:nth-child(5) {
  grid-column: span 3;
}

.specialty-card:hover {
  transform: translateY(-6px);
  border-color: #b8dbe8;
  box-shadow: 0 22px 50px rgba(9, 47, 76, .12);
}

.specialty-card::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -48px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,216,.1), transparent 65%);
}

.card-number {
  position: absolute;
  top: 20px;
  right: 22px;
  color: #d8e8ee;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}

.card-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #ebf9fb, #eef7ff);
}

.card-icon svg {
  width: 30px;
  fill: none;
  stroke: var(--blue-600);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.specialty-card h3 {
  max-width: 220px;
  margin: 62px 0 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 22px;
  line-height: 1.22;
  letter-spacing: -.02em;
}

.feature-band {
  position: relative;
  overflow: hidden;
  padding: 95px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 50%, rgba(67,213,194,.13), transparent 30%),
    linear-gradient(135deg, var(--navy-950), #0a2d4d);
}

.feature-band::after {
  content: "";
  position: absolute;
  right: -180px;
  top: -180px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(116, 214, 231, .09);
  border-radius: 50%;
}

.feature-band-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 84px;
}

.feature-art {
  min-height: 330px;
  display: grid;
  place-items: center;
}

.orb {
  position: relative;
  width: 230px;
  height: 230px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(90, 219, 222, .2);
  background: radial-gradient(circle, rgba(67,213,194,.12), rgba(14,165,216,.02) 55%, transparent 70%);
  box-shadow: 0 0 90px rgba(14,165,216,.1);
}

.orb-core {
  width: 95px;
  height: 95px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: linear-gradient(135deg, #40d2c2, #1bb7e4);
  color: #06223a;
  font-size: 54px;
  font-weight: 300;
  box-shadow: 0 20px 50px rgba(20, 194, 212, .25);
}

.orb-ring {
  position: absolute;
  border: 1px solid rgba(86, 210, 225, .13);
  border-radius: 50%;
}

.ring-one {
  width: 300px;
  height: 300px;
}

.ring-two {
  width: 370px;
  height: 370px;
  border-style: dashed;
}

.feature-copy p {
  max-width: 650px;
  color: #b4cbd8;
  font-size: 17px;
  margin: 22px 0 30px;
}

.training {
  background: var(--ice-50);
}

.training-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.training-list {
  display: grid;
  gap: 14px;
}

.training-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(6, 46, 72, .05);
}

.training-step {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--navy-900);
  color: #6ae0d2;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.training-item small {
  display: block;
  margin-bottom: 4px;
  color: var(--blue-600);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.training-item h3 {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.35;
}

.training-item p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.brand-section {
  padding: 34px 0 90px;
  background: var(--ice-50);
}

.brand-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 42px 48px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(125deg, rgba(67,213,194,.06), rgba(14,165,216,.03)),
    var(--navy-900);
  color: var(--white);
  box-shadow: var(--shadow);
}

.brand-panel::after {
  content: "+";
  position: absolute;
  right: -10px;
  top: -62px;
  color: rgba(255,255,255,.035);
  font-size: 240px;
  line-height: 1;
}

.mini-label {
  color: #6dded5;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
}

.brand-panel h2 {
  margin: 6px 0 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: clamp(34px, 5vw, 52px);
  letter-spacing: -.045em;
}

.brand-panel h2 span {
  color: #7ec8e3;
}

.brand-panel p {
  margin: 7px 0 0;
  color: #9eb7c5;
}

.brand-topics {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
  max-width: 420px;
}

.brand-topics span {
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: #bfd0d9;
  font-size: 12px;
  background: rgba(255,255,255,.04);
}

.schedule-section {
  background: var(--white);
}

.schedule-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.schedule-copy p {
  margin-inline: 0;
  margin-bottom: 28px;
}

.schedule-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #ffffff, #f9fcfd);
  box-shadow: var(--shadow);
}

.schedule-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px 2px;
}

.schedule-row small,
.schedule-row strong {
  display: block;
}

.schedule-row small {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.schedule-row strong {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: clamp(23px, 3vw, 32px);
  letter-spacing: -.03em;
}

.calendar-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #ebf8fb;
  color: var(--blue-600);
  font-size: 13px;
  font-weight: 800;
}

.schedule-divider {
  height: 1px;
  margin: 16px 0;
  background: var(--line);
}

.schedule-note {
  margin-top: 23px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 14px;
  background: var(--navy-900);
  color: #d4e4ec;
  font-size: 14px;
}

.schedule-note span {
  color: var(--cyan-400);
  font-weight: 800;
}

.location-section {
  background: var(--ice-50);
}

.location-card {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow);
}

.location-visual {
  min-height: 490px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(67,213,194,.10), transparent 25%),
    linear-gradient(145deg, #09233c, #0c3b60);
}

.location-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(32deg, transparent 43%, rgba(255,255,255,.055) 44%, rgba(255,255,255,.055) 45%, transparent 46%),
    linear-gradient(118deg, transparent 53%, rgba(255,255,255,.045) 54%, rgba(255,255,255,.045) 55%, transparent 56%);
  background-size: 120px 120px, 165px 165px;
}

.map-lines {
  position: absolute;
  inset: 0;
}

.road {
  position: absolute;
  display: block;
  height: 2px;
  background: rgba(152, 213, 230, .16);
  transform-origin: left center;
}

.r1 { width: 130%; left: -10%; top: 30%; transform: rotate(21deg); }
.r2 { width: 120%; left: -10%; top: 68%; transform: rotate(-17deg); }
.r3 { width: 120%; left: 20%; top: 10%; transform: rotate(78deg); }
.r4 { width: 90%; left: 8%; top: 52%; transform: rotate(5deg); }

.map-pin {
  position: absolute;
  left: 51%;
  top: 47%;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(67,213,194,.12);
  box-shadow: 0 0 0 18px rgba(67,213,194,.05), 0 0 0 36px rgba(67,213,194,.025);
}

.map-pin svg {
  width: 38px;
  fill: var(--cyan-400);
  stroke: var(--cyan-400);
  stroke-width: 1.4;
}

.location-copy {
  padding: 54px;
}

.location-badge {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: #eaf8fb;
  color: var(--blue-600);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.location-copy h3 {
  margin: 18px 0 5px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
  letter-spacing: -.035em;
}

.location-copy > p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 17px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.contact-symbol {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #f0f9fb;
}

.contact-symbol svg {
  width: 21px;
  fill: none;
  stroke: var(--blue-600);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-row small,
.contact-row strong,
.contact-row a {
  display: block;
}

.contact-row small {
  color: var(--muted);
  font-size: 11px;
}

.contact-row strong,
.contact-row a {
  font-weight: 800;
}

.location-copy .btn {
  margin-top: 28px;
}

.contact-cta {
  padding: 78px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(67,213,194,.15), transparent 25%),
    linear-gradient(135deg, #062039, #0c3d64);
}

.contact-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.contact-cta h2 {
  max-width: 720px;
  margin-top: 2px;
}

.contact-cta p {
  margin: 12px 0 0;
  color: #aac2cf;
  font-size: 17px;
}

.social-section {
  padding-block: 72px;
}

.social-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #f8fcfe, #fff);
}

.social-card h2 {
  font-size: 30px;
}

.facebook-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #0c4a78;
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: 34px;
  font-weight: 700;
}

.site-footer {
  padding: 58px 0 28px;
  background: var(--navy-950);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  padding-bottom: 36px;
}

.footer-brand {
  margin-bottom: 16px;
}

.site-footer p {
  margin: 0;
  color: #8eabb9;
}

.footer-info {
  justify-self: end;
  display: grid;
  gap: 8px;
  text-align: right;
  color: #a7bdc8;
  font-size: 14px;
}

.footer-info a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.09);
  color: #648493;
  font-size: 11px;
  letter-spacing: .16em;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #21c78a;
  color: var(--white);
  box-shadow: 0 15px 35px rgba(10, 99, 72, .28);
  transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 18px 42px rgba(10, 99, 72, .38);
}

.whatsapp-float svg {
  width: 30px;
  fill: currentColor;
}

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

.js-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}

.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }

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

@media (max-width: 980px) {
  .container {
    width: min(100% - 32px, 760px);
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 77px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 3px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    background: rgba(4, 19, 33, .98);
    box-shadow: 0 24px 60px rgba(0,0,0,.28);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: .22s ease;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav > a:not(.nav-cta) {
    padding: 12px 14px;
    border-radius: 10px;
  }

  .nav-cta {
    margin-top: 4px;
    text-align: center;
  }

  .hero {
    padding-top: 128px;
  }

  .hero-grid,
  .feature-band-grid,
  .training-grid,
  .schedule-grid,
  .location-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 25px;
  }

  .hero-copy {
    max-width: 690px;
  }

  .hero-visual {
    min-height: 520px;
    margin-top: 5px;
  }

  .medical-card {
    width: min(100%, 520px);
  }

  .quick-strip {
    grid-template-columns: 1fr;
  }

  .quick-strip article + article {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.09);
  }

  .specialty-card,
  .specialty-card:nth-child(4),
  .specialty-card:nth-child(5) {
    grid-column: span 3;
  }

  .feature-band-grid {
    gap: 32px;
  }

  .feature-art {
    min-height: 320px;
  }

  .feature-copy {
    text-align: center;
  }

  .training-grid,
  .schedule-grid {
    gap: 46px;
  }

  .brand-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-topics {
    justify-content: flex-start;
  }

  .location-visual {
    min-height: 360px;
  }

  .contact-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 540px);
  }

  .nav-wrap {
    min-height: 72px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-text strong {
    font-size: 16px;
  }

  .brand-text small {
    font-size: 8px;
  }

  .main-nav {
    top: 70px;
    left: 12px;
    right: 12px;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 28px;
  }

  .eyebrow {
    margin-bottom: 16px;
  }

  .hero h1 {
    font-size: clamp(43px, 14vw, 58px);
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.7;
    margin-top: 21px;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-visual {
    min-height: 435px;
  }

  .medical-card {
    min-height: 405px;
    padding: 16px;
    border-radius: 26px;
  }

  .joint-illustration {
    margin-top: -18px;
  }

  .floating-info {
    min-width: 132px;
    padding: 11px 12px;
  }

  .floating-one {
    left: 3px;
    bottom: 55px;
  }

  .floating-two {
    right: 4px;
    top: 80px;
  }

  .floating-icon {
    width: 30px;
    height: 30px;
  }

  .quick-strip {
    margin-top: 30px;
  }

  .quick-strip article {
    min-height: 78px;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading h2,
  .feature-copy h2,
  .schedule-copy h2,
  .contact-cta h2 {
    font-size: 34px;
  }

  .section-heading p,
  .schedule-copy p,
  .feature-copy p {
    font-size: 15px;
  }

  .specialty-grid {
    grid-template-columns: 1fr;
  }

  .specialty-card,
  .specialty-card:nth-child(4),
  .specialty-card:nth-child(5) {
    grid-column: auto;
    min-height: 210px;
  }

  .specialty-card h3 {
    margin-top: 48px;
  }

  .feature-band {
    padding: 74px 0;
  }

  .feature-art {
    min-height: 280px;
  }

  .orb {
    width: 180px;
    height: 180px;
  }

  .ring-one { width: 235px; height: 235px; }
  .ring-two { width: 280px; height: 280px; }

  .training-item {
    grid-template-columns: 50px 1fr;
    padding: 19px;
  }

  .training-step {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

  .training-item h3 {
    font-size: 17px;
  }

  .brand-panel {
    padding: 30px 24px;
  }

  .brand-panel h2 {
    font-size: 36px;
  }

  .schedule-card {
    padding: 20px;
    border-radius: 24px;
  }

  .schedule-row strong {
    font-size: 23px;
  }

  .calendar-mark {
    width: 50px;
    height: 50px;
  }

  .location-visual {
    min-height: 300px;
  }

  .location-copy {
    padding: 30px 24px 34px;
  }

  .contact-cta {
    padding: 64px 0;
  }

  .contact-cta .btn {
    width: 100%;
  }

  .social-card {
    padding: 28px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-info {
    justify-self: start;
    text-align: left;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    right: 15px;
    bottom: 15px;
  }
}

@media (max-width: 380px) {
  .brand-text strong { font-size: 14px; }
  .brand-text small { letter-spacing: .35em; }
  .hero h1 { font-size: 39px; }
  .floating-two { top: 64px; }
  .floating-info { min-width: 118px; }
  .floating-info strong { font-size: 11px; }
}
