:root {
  --brand-cyan: #03adda;
  --brand-cyan-bright: #04caf4;
  --brand-pink: #d32c6a;
  --brand-pink-dark: #c32c5f;
  --ink: #07364c;
  --ink-soft: #075873;
  --paper: #f3fbfd;
  --paper-bright: #ffffff;
  --copper: var(--brand-pink);
  --copper-soft: var(--brand-cyan-bright);
  --sage: var(--brand-cyan);
  --line: rgba(3, 87, 118, 0.16);
  --muted: #526b75;
  --white: #fff;
  --shadow: 0 28px 80px rgba(3, 77, 103, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 10%, rgba(211, 44, 106, 0.1), transparent 27rem),
    radial-gradient(circle at 91% 36%, rgba(4, 202, 244, 0.16), transparent 30rem);
  z-index: -2;
}

.grain {
  position: fixed;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  z-index: 10;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}

a {
  color: inherit;
}

.site-header {
  width: min(1240px, calc(100% - 48px));
  height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 132px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-cyan-bright), var(--brand-pink));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand-mark,
.footer-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-cyan), #087899);
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-name {
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.brand-name strong {
  color: var(--copper);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-page-link {
  position: relative;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

.header-page-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-cyan), var(--brand-pink));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.header-page-link:hover::after,
.header-page-link:focus-visible::after {
  transform: scaleX(1);
}

.location {
  color: var(--muted);
  font-size: 13px;
}

.language-toggle {
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.55);
  color: #8a9699;
  padding: 9px 12px;
  cursor: pointer;
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  box-shadow: inset 0 0 0 1px var(--line);
}

.language-toggle .active {
  color: var(--copper);
}

main {
  overflow: hidden;
}

.hero,
.approach,
.profile {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100svh - 88px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(40px, 6vw, 88px);
  padding: 90px 0 118px;
  position: relative;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--copper);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  font-family: "Manrope", sans-serif;
}

h1 {
  max-width: 730px;
  margin: 0;
  font-size: clamp(3.25rem, 6.2vw, 6.35rem);
  line-height: 0.97;
  letter-spacing: -0.066em;
  font-weight: 600;
}

.hero-intro {
  max-width: 610px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.19rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--ink);
  color: var(--white);
}

.button-primary:hover {
  background: var(--copper);
}

.button svg,
.panel-action svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.microcopy {
  color: var(--muted);
  font-size: 13px;
}

.microcopy::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 9px;
  background: var(--sage);
}

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

.portrait-card {
  width: min(390px, 76vw);
  aspect-ratio: 0.78;
  position: relative;
  overflow: hidden;
  border-radius: 210px 210px 12px 12px;
  background: #dfe9ec;
  box-shadow: 0 0 0 2px rgba(4, 202, 244, 0.42), var(--shadow);
}

.portrait-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.1), transparent 48%);
  pointer-events: none;
}

.portrait-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  z-index: 1;
  background: linear-gradient(transparent, rgba(8, 31, 40, 0.72));
  pointer-events: none;
}

.profile-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
  filter: saturate(0.93) contrast(1.02);
}

.portrait-copy {
  position: absolute;
  z-index: 2;
  left: 32px;
  bottom: 30px;
  color: var(--paper);
}

.portrait-copy p {
  margin: 0 0 5px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.portrait-copy span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(11, 38, 52, 0.13);
  border-radius: 50%;
}

.orbit-one {
  width: 510px;
  height: 510px;
  border-color: rgba(4, 202, 244, 0.3);
}

.orbit-two {
  width: 620px;
  height: 620px;
  border-style: dashed;
  border-color: rgba(211, 44, 106, 0.22);
  opacity: 0.55;
}

.credential-pill {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 17px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 99px;
  background: rgba(251, 250, 247, 0.84);
  box-shadow: 0 14px 35px rgba(7, 32, 42, 0.12);
  backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 600;
}

.pill-one {
  left: -4px;
  top: 117px;
}

.pill-two {
  right: -6px;
  bottom: 109px;
}

.pill-icon {
  color: var(--copper);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #68a276;
  box-shadow: 0 0 0 4px rgba(104, 162, 118, 0.14);
}

.vegas-line {
  position: absolute;
  z-index: -1;
  bottom: 23px;
  width: 114%;
  fill: none;
  stroke: rgba(11, 38, 52, 0.13);
  stroke-width: 1.3;
}

.trust-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.trust-strip > div {
  padding: 0 24px;
  border-right: 1px solid var(--line);
}

.trust-strip > div:first-child {
  padding-left: 0;
}

.trust-strip > div:last-child {
  border: 0;
}

.trust-label {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-strip strong {
  font-family: "Manrope", sans-serif;
  font-size: 15px;
}

.approach {
  width: 100%;
  max-width: none;
  background: linear-gradient(145deg, var(--ink) 0%, #07536d 100%);
  color: var(--paper);
  padding: 118px max(24px, calc((100vw - 1240px) / 2));
}

.section-heading {
  display: grid;
  grid-template-columns: 0.72fr 1.7fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 62px;
}

.section-heading h2,
.profile h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
  font-weight: 600;
}

.section-heading > p:last-child {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.7;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.focus-card {
  min-height: 355px;
  position: relative;
  padding: 34px 34px 38px;
  border-right: 1px solid rgba(255, 255, 255, 0.17);
}

.focus-card:last-child {
  border: 0;
}

.feature-card {
  background: var(--paper);
  color: var(--ink);
  box-shadow: inset 0 4px 0 var(--brand-pink);
}

.card-number {
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.feature-card .card-number {
  color: var(--copper);
}

.card-icon {
  width: 42px;
  height: 42px;
  display: block;
  margin: 62px 0 30px;
  fill: none;
  stroke: var(--copper-soft);
  stroke-width: 1.3;
}

.feature-card .card-icon {
  stroke: var(--copper);
}

.focus-card h3 {
  margin: 0 0 15px;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.focus-card p {
  max-width: 320px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.72;
}

.focus-card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: var(--brand-cyan-bright);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

.focus-card-link span:last-child {
  transition: transform 180ms ease;
}

.focus-card-link:hover span:last-child,
.focus-card-link:focus-visible span:last-child {
  transform: translateX(4px);
}

.feature-card p {
  color: var(--muted);
}

.visit-guide {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
  margin-top: 72px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 12px;
  background:
    radial-gradient(circle at 12% 12%, rgba(4, 202, 244, 0.13), transparent 17rem),
    rgba(255, 255, 255, 0.035);
}

.guide-intro .eyebrow {
  margin-bottom: 18px;
}

.guide-intro h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.guide-intro > p:last-child {
  max-width: 380px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.65;
}

.guide-interface {
  min-width: 0;
}

.guide-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-bottom: 8px;
}

.guide-option {
  min-height: 64px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.065);
  color: rgba(255, 255, 255, 0.72);
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.guide-option:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

.guide-option span {
  color: var(--brand-cyan-bright);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.guide-option strong {
  font-size: 11px;
  line-height: 1.25;
}

.guide-option.active {
  background: var(--white);
  color: var(--ink);
  box-shadow: inset 0 3px 0 var(--brand-pink);
}

.guide-option.active span {
  color: var(--brand-pink);
}

.guide-result {
  min-height: 186px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.guide-result-copy small {
  color: var(--brand-pink);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.guide-result-copy h3 {
  margin: 10px 0 9px;
  font-size: 23px;
  letter-spacing: -0.035em;
}

.guide-result-copy p {
  max-width: 510px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.58;
}

.guide-action {
  min-width: 175px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 15px;
  border-radius: 5px;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease;
}

.guide-action:hover {
  transform: translateY(-2px);
  background: var(--brand-cyan);
}

.guide-action.emergency {
  background: var(--brand-pink);
}

.guide-action svg {
  width: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.guide-disclaimer {
  margin: 12px 2px 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  line-height: 1.5;
}

.profile {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(48px, 8vw, 120px);
  padding: 126px 0 0;
}

.profile-story {
  padding-top: 10px;
}

.profile-lead {
  max-width: 630px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.quote-block {
  display: flex;
  gap: 17px;
  margin-top: 54px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.quote-mark {
  color: var(--copper);
  font-family: Georgia, serif;
  font-size: 48px;
  line-height: 0.8;
}

blockquote {
  max-width: 460px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 21px;
  line-height: 1.45;
  letter-spacing: -0.025em;
}

.profile-panel {
  padding: 38px;
  background: var(--paper-bright);
  border: 1px solid rgba(11, 38, 52, 0.09);
  border-top: 4px solid var(--brand-cyan-bright);
  box-shadow: var(--shadow);
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.panel-kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.live-mark {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
}

.live-mark > span:first-child {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #68a276;
}

.clinic-identity {
  display: grid;
  grid-template-columns: 1fr 168px;
  gap: 22px;
  align-items: center;
  min-height: 132px;
  margin-top: 18px;
  padding: 18px 14px;
  border-bottom: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(4, 202, 244, 0.08), rgba(211, 44, 106, 0.06));
}

.clinic-identity > div {
  display: grid;
  gap: 6px;
}

.clinic-identity small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.clinic-identity strong {
  max-width: 175px;
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.clinic-identity img {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

.profile-list {
  margin: 0;
}

.profile-list > div {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 25px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.profile-list dt {
  color: var(--muted);
  font-size: 12px;
}

.profile-list dd {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.clinic-locations {
  padding-top: 25px;
}

.clinic-locations > p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.location-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
}

.location-links a {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 7px;
  padding: 12px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(4, 202, 244, 0.045);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.location-links a:hover {
  transform: translateY(-2px);
  border-color: var(--brand-cyan);
  background: rgba(4, 202, 244, 0.1);
}

.location-links a > span:first-child {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.location-links strong {
  font-size: 12px;
}

.location-links small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
}

.location-links a > span:last-child {
  color: var(--brand-pink);
  font-size: 11px;
}

.panel-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  padding: 19px 20px;
  background: linear-gradient(105deg, var(--brand-pink-dark), var(--brand-pink));
  color: var(--white);
  text-decoration: none;
  transition: background 180ms ease;
}

.panel-action:hover {
  background: var(--ink);
}

.panel-action span {
  display: grid;
  gap: 3px;
}

.panel-action small {
  opacity: 0.72;
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.panel-action strong {
  font-size: 14px;
}

.social-hub {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(46px, 8vw, 110px);
  margin-top: 110px;
  padding-top: 72px;
  border-top: 1px solid var(--line);
}

.social-heading h2 {
  max-width: 470px;
}

.social-heading > p:last-child {
  max-width: 430px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.social-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper-bright);
  box-shadow: 0 18px 45px rgba(7, 54, 76, 0.07);
}

.social-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--brand-cyan);
  content: "";
}

.clinic-social::before {
  background: linear-gradient(90deg, var(--brand-cyan), var(--brand-pink));
}

.social-card-top {
  min-height: 105px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
}

.social-avatar,
.clinic-social-logo {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.clinic-social-logo {
  border: 1px solid var(--line);
  background: var(--white);
}

.clinic-social-logo img {
  width: 92%;
  height: 92%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.social-card-top small {
  color: var(--brand-pink);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.social-card-top h3 {
  margin: 6px 0 4px;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.social-card-top p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.social-card-links {
  display: grid;
  gap: 8px;
}

.social-link {
  min-width: 0;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 58px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(4, 202, 244, 0.045);
  color: var(--ink);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: var(--brand-cyan);
  background: rgba(4, 202, 244, 0.1);
}

.social-link:focus-visible {
  outline: 3px solid rgba(4, 202, 244, 0.25);
  outline-offset: 2px;
}

.social-link > svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--brand-pink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.social-link .social-icon-dot {
  fill: var(--brand-pink);
  stroke: none;
}

.social-link > span:nth-child(2) {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.social-link small {
  color: var(--muted);
  font-size: 9px;
}

.social-link strong {
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.social-arrow {
  color: var(--brand-cyan);
  font-size: 12px;
}

.website-link > svg {
  stroke: var(--brand-cyan);
}

.linkedin-link > svg {
  stroke: #0a66c2;
}

.reviews-block {
  position: relative;
  grid-column: 1 / -1;
  overflow: hidden;
  margin-top: 84px;
  padding: clamp(34px, 5vw, 62px);
  border-radius: 12px;
  background:
    radial-gradient(circle at 92% 4%, rgba(211, 44, 106, 0.24), transparent 30%),
    linear-gradient(135deg, #07364c, #062b3d);
  color: var(--white);
  box-shadow: 0 24px 70px rgba(7, 54, 76, 0.18);
}

.reviews-block::after {
  position: absolute;
  right: -80px;
  bottom: -150px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(4, 202, 244, 0.2);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.reviews-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr minmax(270px, 0.62fr);
  gap: 48px;
  align-items: end;
}

.reviews-heading .eyebrow {
  color: var(--brand-cyan-bright);
}

.reviews-heading h2 {
  max-width: 620px;
  color: var(--white);
}

.reviews-heading > p {
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
  line-height: 1.65;
}

.review-carousel {
  position: relative;
  z-index: 1;
  display: grid;
  margin-top: 44px;
  outline: none;
}

.review-card {
  grid-area: 1 / 1;
  min-width: 0;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: clamp(27px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateX(24px);
  pointer-events: none;
  transition: opacity 420ms ease, transform 420ms ease;
}

.review-card.active {
  z-index: 1;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.review-card-top {
  display: grid;
  gap: 8px;
}

.review-stars {
  color: #ffd46b;
  font-size: 14px;
  letter-spacing: 0.12em;
}

.review-card-top small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.4;
}

.review-card blockquote {
  flex: 1;
  max-width: 820px;
  margin: 27px 0 24px;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: clamp(21px, 2.4vw, 30px);
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: -0.02em;
}

.review-card > p {
  margin: 0;
  color: var(--brand-cyan-bright);
  font-size: 13px;
  font-weight: 600;
}

.review-controls {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.review-arrow {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.review-arrow:hover {
  transform: translateY(-2px);
  border-color: var(--brand-cyan-bright);
  background: rgba(4, 202, 244, 0.15);
}

.review-arrow:focus-visible,
.review-dot:focus-visible,
.review-carousel:focus-visible {
  outline: 3px solid rgba(4, 202, 244, 0.36);
  outline-offset: 3px;
}

.review-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: width 180ms ease, border-radius 180ms ease, background 180ms ease;
}

.review-dot.active {
  width: 24px;
  border-radius: 999px;
  background: var(--brand-cyan-bright);
}

.review-count {
  min-width: 38px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  text-align: center;
}

.reviews-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 24px;
}

.reviews-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.5;
}

.reviews-footer a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  min-height: 46px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.reviews-footer a:hover {
  transform: translateY(-2px);
  border-color: var(--brand-cyan-bright);
  background: rgba(4, 202, 244, 0.15);
}

.reviews-footer a:focus-visible {
  outline: 3px solid rgba(4, 202, 244, 0.35);
  outline-offset: 3px;
}

.faq-block {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(46px, 8vw, 110px);
  margin-top: 84px;
  padding-top: 72px;
  border-top: 1px solid var(--line);
}

.faq-heading h2 {
  max-width: 430px;
}

.faq-heading > p:last-child {
  max-width: 430px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease;
}

.faq-list details[open] {
  background: rgba(4, 202, 244, 0.055);
}

.faq-list summary {
  min-height: 74px;
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 15px;
  align-items: center;
  padding: 0 16px;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary > span:first-child {
  color: var(--brand-cyan);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.faq-list summary strong {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  letter-spacing: -0.015em;
}

.faq-toggle {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--brand-pink);
  font-size: 17px;
  font-weight: 400;
  transition: transform 180ms ease, background 180ms ease;
}

.faq-list details[open] .faq-toggle {
  transform: rotate(45deg);
  background: var(--white);
}

.faq-list details > p {
  max-width: 670px;
  margin: -4px 60px 0;
  padding: 0 0 25px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.68;
}

.site-footer {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 105px;
  padding: 33px 0 35px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.site-footer > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-footer p {
  margin: 0;
}

.footer-mark {
  width: 30px;
  height: 30px;
  font-size: 9px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 74px;
    padding-bottom: 170px;
  }

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

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

  .trust-strip {
    bottom: 40px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .section-heading .eyebrow {
    margin-bottom: 18px;
  }

  .section-heading > p:last-child {
    max-width: 520px;
    margin-top: 20px;
  }

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

  .focus-card {
    min-height: 260px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  }

  .card-icon {
    margin: 40px 0 24px;
  }

  .visit-guide {
    grid-template-columns: 1fr;
  }

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

  .profile-story,
  .profile-panel {
    max-width: 730px;
  }

  .social-hub,
  .faq-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .reviews-heading > p {
    max-width: 590px;
  }
}

@media (max-width: 1100px) and (min-width: 961px) {
  .focus-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .focus-card:nth-child(2) {
    border-right: 0;
  }

  .focus-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero,
  .profile {
    width: min(100% - 32px, 1240px);
  }

  .site-header {
    height: 74px;
  }

  .brand-name {
    font-size: 13px;
  }

  .location {
    display: none;
  }

  .header-page-link {
    display: none;
  }

  .header-actions {
    gap: 10px;
  }

  .hero {
    min-height: auto;
    padding: 66px 0 235px;
  }

  h1 {
    font-size: clamp(2.85rem, 13.7vw, 4.4rem);
  }

  .hero-intro {
    margin-top: 26px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .orbit-one {
    width: 410px;
    height: 410px;
  }

  .orbit-two {
    width: 480px;
    height: 480px;
  }

  .portrait-card {
    width: min(330px, 86vw);
  }

  .pill-one {
    left: -9px;
    top: 87px;
  }

  .pill-two {
    right: -10px;
    bottom: 75px;
  }

  .credential-pill {
    padding: 11px 13px;
    font-size: 10px;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 19px;
    bottom: 46px;
  }

  .trust-strip > div {
    padding: 0 15px;
  }

  .trust-strip > div:nth-child(3) {
    padding-left: 0;
  }

  .trust-strip > div:nth-child(2) {
    border-right: 0;
  }

  .approach {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .focus-card {
    padding: 29px 26px 34px;
  }

  .profile {
    padding-top: 88px;
  }

  .profile-panel {
    padding: 26px 22px;
  }

  .profile-list > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .clinic-identity {
    grid-template-columns: 1fr 134px;
    gap: 14px;
  }

  .location-links {
    grid-template-columns: 1fr;
  }

  .visit-guide {
    padding: 24px 18px;
  }

  .guide-options {
    grid-template-columns: 1fr;
  }

  .guide-option {
    min-height: 48px;
  }

  .guide-result {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 22px;
  }

  .guide-action {
    width: 100%;
  }

  .social-hub {
    margin-top: 82px;
    padding-top: 55px;
  }

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

  .social-card {
    padding: 22px;
  }

  .social-card-top {
    min-height: 92px;
  }

  .reviews-block {
    padding: 30px 22px;
  }

  .review-carousel {
    margin-top: 34px;
  }

  .review-card {
    min-height: 230px;
    padding: 25px 21px;
  }

  .reviews-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .reviews-footer a {
    width: 100%;
    justify-content: space-between;
  }

  .faq-block {
    margin-top: 82px;
    padding-top: 55px;
  }

  .faq-list summary {
    min-height: 68px;
    grid-template-columns: 23px 1fr auto;
    gap: 10px;
    padding: 0 7px;
  }

  .faq-list summary strong {
    font-size: 13px;
  }

  .faq-list details > p {
    margin: -2px 40px 0;
    padding-bottom: 22px;
  }

  .site-footer {
    margin-top: 72px;
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }

  .site-footer > div p {
    max-width: 245px;
    line-height: 1.5;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

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