@font-face {
  font-family: "Clash Display";
  src: url("assets/fonts/ClashDisplay-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Clash Display";
  src: url("assets/fonts/ClashDisplay-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("assets/fonts/Gilroy-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("assets/fonts/Gilroy-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("assets/fonts/Gilroy-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}

:root {
  --black: #000;
  --white: #fff;
  --lime: #61b50f;
  --soft-gray: #ededf0;
  --muted: #98989c;
  --deep-brown: #160704;
  --header-x: clamp(16px, 8.333vw, 160px);
  --content-x: clamp(20px, 8.333vw, 160px);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--deep-brown);
  font-family: "Gilroy", system-ui, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

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

button {
  border: 0;
  font: inherit;
  cursor: pointer;
}

h1,
h2,
h3 {
  word-spacing: 0.08em;
}

.site-header {
  position: fixed;
  top: clamp(14px, 2.08vw, 40px);
  left: 0;
  z-index: 20;
  width: 100%;
  padding-inline: var(--header-x);
  pointer-events: none;
}

.header-pill {
  min-height: clamp(64px, 3.75vw, 72px);
  display: grid;
  grid-template-columns: minmax(170px, 250px) 1fr auto;
  align-items: center;
  gap: clamp(16px, 1.25vw, 24px);
  padding: clamp(6px, 0.416vw, 8px);
  border-radius: 999px;
  background: var(--black);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.3);
  pointer-events: auto;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
  padding-left: clamp(14px, 1.25vw, 24px);
}

.brand img {
  width: min(205px, 15.5vw);
  min-width: 150px;
  height: clamp(31px, 2.35vw, 45px);
  object-fit: contain;
  object-position: left center;
}

.mobile-menu-toggle {
  display: none;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 1.875vw, 36px);
  color: var(--white);
  font-size: clamp(14px, 0.88vw, 17px);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.main-nav a {
  opacity: 0.9;
  transition: color 260ms ease, opacity 260ms ease, transform 260ms ease;
}

.main-nav a:hover {
  color: var(--lime);
  opacity: 1;
  transform: translateY(-1px);
}

.main-nav a[aria-current="page"] {
  color: var(--lime);
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 0.83vw, 16px);
}

.phone-link {
  display: flex;
  align-items: center;
  gap: clamp(9px, 0.52vw, 10px);
  color: var(--white);
  font-size: clamp(14px, 0.88vw, 17px);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.phone-icon {
  display: grid;
  width: clamp(42px, 2.92vw, 56px);
  height: clamp(42px, 2.92vw, 56px);
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  transition: background 300ms ease, color 300ms ease;
}

.phone-icon svg {
  width: 45%;
  height: 45%;
  fill: currentColor;
}

.phone-link:hover .phone-icon {
  background: var(--lime);
}

.arrow-button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  min-height: clamp(52px, 2.92vw, 56px);
  padding: clamp(4px, 0.21vw, 5px);
  border-radius: 999px;
  color: var(--black);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: transform 300ms ease;
}

.arrow-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: var(--white);
  transition: transform 300ms ease;
}

.arrow-button > span:first-child {
  padding-inline: clamp(14px, 0.94vw, 18px);
}

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

.arrow-button:hover::before {
  transform: scale(1.045, 1.12);
}

.arrow-orb {
  position: relative;
  display: grid;
  width: clamp(42px, 2.5vw, 48px);
  height: clamp(42px, 2.5vw, 48px);
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  transition: color 300ms ease;
}

.arrow-orb::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--lime);
  transform: scale(0);
  transition: transform 300ms ease;
}

.arrow-orb svg {
  position: relative;
  z-index: 1;
  width: 52%;
  height: 52%;
  fill: currentColor;
}

.arrow-button:hover .arrow-orb {
  color: var(--black);
}

.arrow-button:hover .arrow-orb::before {
  transform: scale(1);
}

.arrow-button:hover .arrow-orb svg {
  animation: dottedArrow 800ms ease-in-out infinite;
}

.header-cta {
  font-size: clamp(14px, 0.88vw, 17px);
}

.hero-shell {
  min-height: 100svh;
}

.doctor-profile-page {
  background: #f7fafa;
  color: var(--black);
}

.doctor-profile-main {
  padding-top: clamp(118px, 9.5vw, 178px);
  background:
    radial-gradient(circle at 12% 10%, rgba(97, 181, 15, 0.1), transparent 28%),
    linear-gradient(180deg, #f8fbfb 0%, #eef5f5 54%, #f8fbfb 100%);
}

.doctor-profile-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: clamp(34px, 4.8vw, 92px);
  width: min(100% - (var(--content-x) * 2), 1280px);
  margin-inline: auto;
  align-items: center;
}

.doctor-profile-photo {
  margin: 0;
  overflow: hidden;
  border-radius: clamp(34px, 3vw, 54px);
  background: #dde3e8;
  box-shadow: 0 30px 80px rgba(15, 24, 28, 0.14);
}

.doctor-profile-photo img {
  width: 100%;
  aspect-ratio: 0.96;
  height: auto;
  object-fit: cover;
  object-position: center top;
}

.doctor-profile-intro {
  padding-block: clamp(18px, 2vw, 36px);
}

.doctor-profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.doctor-profile-tags span,
.doctor-expertise-section .section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--white);
  color: #6b7179;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 12px 32px rgba(15, 24, 28, 0.08);
}

.doctor-profile-intro h1 {
  margin: clamp(24px, 2.2vw, 34px) 0 0;
  font-family: "Clash Display", system-ui, sans-serif;
  font-size: clamp(54px, 5.8vw, 106px);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.035em;
}

.doctor-profile-intro p {
  max-width: 560px;
  margin: clamp(22px, 2vw, 30px) 0 0;
  color: #5f666e;
  font-size: clamp(18px, 1.25vw, 23px);
  font-weight: 500;
  line-height: 1.35;
}

.doctor-socials {
  display: flex;
  gap: 12px;
  margin-top: clamp(20px, 1.7vw, 28px);
}

.doctor-socials a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(15, 24, 28, 0.08);
  transition: transform 220ms ease, background-color 220ms ease;
}

.doctor-socials a:hover {
  background: var(--lime);
  transform: translateY(-2px);
}

.doctor-profile-cta {
  margin-top: clamp(54px, 5.6vw, 104px);
  background: var(--black);
  color: var(--white);
}

.doctor-profile-cta::before {
  background: var(--black);
}

.doctor-profile-cta .arrow-orb {
  background: var(--white);
  color: var(--black);
}

.doctor-profile-cta .arrow-orb svg,
.doctor-profile-page .appointment-submit .arrow-orb svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.doctor-profile-cta > span:first-child {
  color: var(--white);
}

.doctor-story {
  width: min(100% - (var(--content-x) * 2), 980px);
  margin: clamp(66px, 6.2vw, 118px) auto 0;
  text-align: center;
}

.doctor-story .section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--white);
  color: #6b7179;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 12px 32px rgba(15, 24, 28, 0.08);
}

.doctor-story h2 {
  max-width: 760px;
  margin: 18px auto 0;
  font-family: "Clash Display", system-ui, sans-serif;
  font-size: clamp(34px, 3.3vw, 62px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.doctor-story-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 2.6vw, 48px);
  margin-top: clamp(24px, 2.4vw, 40px);
  text-align: left;
}

.doctor-story-copy p {
  margin: 0;
  color: #5f666e;
  font-size: clamp(17px, 1.05vw, 20px);
  font-weight: 500;
  line-height: 1.48;
}

.doctor-achievements {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(34px, 4vw, 70px);
  width: min(100% - (var(--content-x) * 2), 1280px);
  margin: clamp(72px, 7vw, 132px) auto 0;
  padding: clamp(28px, 3vw, 48px);
  border-radius: clamp(34px, 3vw, 54px);
  background: #e8ecef;
  color: var(--black);
}

.doctor-achievements-copy h2,
.doctor-expertise-section h2,
.doctor-testimonials h2 {
  margin: 0;
  font-family: "Clash Display", system-ui, sans-serif;
  font-size: clamp(36px, 3.8vw, 72px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.045em;
}

.doctor-achievements-copy h2 span {
  color: var(--lime);
}

.doctor-achievements-copy img {
  width: min(100%, 310px);
  aspect-ratio: 1.28;
  margin-top: clamp(28px, 2.8vw, 52px);
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 20px 42px rgba(15, 24, 28, 0.12);
}

.doctor-achievements-content {
  align-self: center;
}

.doctor-achievements-content > p {
  max-width: 640px;
  margin: 0;
  color: #596068;
  font-size: clamp(18px, 1.2vw, 22px);
  font-weight: 500;
  line-height: 1.42;
}

.doctor-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 2.5vw, 44px);
  margin-top: clamp(34px, 3.2vw, 58px);
}

.doctor-stat-grid article {
  min-height: 150px;
}

.doctor-stat-grid strong {
  display: block;
  font-family: "Clash Display", system-ui, sans-serif;
  font-size: clamp(42px, 3.4vw, 64px);
  font-weight: 600;
  line-height: 1;
}

.doctor-stat-grid span {
  display: block;
  max-width: 260px;
  margin-top: 12px;
  color: #6a7078;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
}

.doctor-expertise-section,
.doctor-testimonials {
  width: min(100% - (var(--content-x) * 2), 1280px);
  margin: clamp(86px, 8vw, 154px) auto 0;
  text-align: center;
}

.doctor-expertise-section .section-kicker {
  margin: 0 auto clamp(18px, 1.7vw, 28px);
}

.doctor-expertise-marquee {
  position: relative;
  width: 100%;
  margin-top: clamp(34px, 3vw, 58px);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}

.doctor-expertise-grid {
  display: flex;
  width: max-content;
  gap: clamp(18px, 1.6vw, 30px);
  padding: 8px 0 38px;
  animation: doctorExpertiseMarquee 46s linear infinite;
  will-change: transform;
}

.doctor-expertise-marquee:hover .doctor-expertise-grid {
  animation-play-state: paused;
}

.doctor-expertise-grid article,
.doctor-testimonial-row article {
  flex: 0 0 clamp(300px, 28vw, 430px);
  min-height: 250px;
  padding: clamp(26px, 2.2vw, 40px);
  border-radius: clamp(26px, 2.1vw, 38px);
  background: var(--white);
  box-shadow: 0 20px 54px rgba(15, 24, 28, 0.09);
  text-align: left;
}

.doctor-expertise-grid article {
  transform: translateY(0);
}

.doctor-expertise-grid article:nth-child(2n) {
  margin-top: 22px;
}

.doctor-expertise-grid article:nth-child(3n) {
  margin-top: 8px;
}

.doctor-expertise-grid article:nth-child(4n) {
  margin-top: 30px;
}

.doctor-expertise-grid h3 {
  margin: 0;
  font-family: "Clash Display", system-ui, sans-serif;
  font-size: clamp(27px, 2vw, 38px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.doctor-expertise-grid p,
.doctor-testimonial-row p {
  margin: 18px 0 0;
  color: #666d75;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
}

@keyframes doctorExpertiseMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - clamp(9px, 0.8vw, 15px)), 0, 0);
  }
}

.doctor-testimonials {
  padding-bottom: clamp(86px, 8vw, 150px);
}

.doctor-testimonial-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 1.6vw, 30px);
  margin-top: clamp(34px, 3vw, 58px);
}

.doctor-testimonial-row article {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.doctor-testimonial-row span {
  display: inline-flex;
  width: fit-content;
  margin-top: 34px;
  padding: 8px 13px;
  border-radius: 999px;
  background: #eef3f3;
  color: #6a7078;
  font-size: 13px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--deep-brown);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("assets/hero-eye-bg.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.015);
}

.hero-overlay {
  background:
    radial-gradient(circle at 47% 45%, rgba(0, 0, 0, 0) 0 18%, rgba(0, 0, 0, 0.2) 38%, rgba(0, 0, 0, 0.7) 86%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0.03) 47%, rgba(0, 0, 0, 0.58) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.16) 58%, rgba(0, 0, 0, 0.42) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 21vw);
  align-items: center;
  gap: clamp(36px, 5.4vw, 104px);
  min-height: 100svh;
  padding: clamp(130px, 11.8vw, 225px) var(--content-x) clamp(86px, 7.3vw, 140px);
}

.hero-copy {
  max-width: min(900px, 54vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(24px, 2.5vw, 48px);
}

.hero-copy h1 {
  max-width: 100%;
  margin: 0;
  font-family: "Clash Display", system-ui, sans-serif;
  font-size: clamp(52px, 4.25vw, 82px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--white);
}

.hero-copy h1 span {
  display: block;
  white-space: nowrap;
}

.hero-copy p {
  max-width: 670px;
  margin: -0.8vw 0 0;
  font-size: clamp(19px, 1.145vw, 22px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--white);
}

.hero-cta {
  font-size: clamp(16px, 0.94vw, 18px);
}

.surgeon-panel {
  width: min(100%, 400px);
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 1.25vw, 24px);
}

.doctor-carousel {
  width: 100%;
  overflow: hidden;
  border-radius: clamp(34px, 2.08vw, 40px);
}

.doctor-track {
  display: flex;
  align-items: stretch;
  transition: transform 620ms var(--ease-out);
  will-change: transform;
}

.surgeon-card {
  flex: 0 0 100%;
  width: 100%;
  padding: clamp(5px, 0.21vw, 6px) clamp(5px, 0.21vw, 6px) clamp(23px, 1.25vw, 24px);
  border-radius: clamp(34px, 2.08vw, 40px);
  background: var(--white);
  color: var(--black);
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.22);
}

.surgeon-card--profile {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-bottom: clamp(38px, 2.45vw, 47px);
}

.doctor-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: clamp(30px, 1.875vw, 36px);
  background:
    radial-gradient(circle at 50% 46%, rgba(97, 181, 15, 0.12), transparent 34%),
    linear-gradient(135deg, #f9faf8 0%, #eef2eb 100%);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.doctor-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: clamp(30px, 1.875vw, 36px);
  object-fit: cover;
  object-position: 50% 45%;
  background: #eef2eb;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.surgeon-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: clamp(22px, 1.25vw, 24px) 12px clamp(18px, 1.1vw, 21px);
  text-align: center;
}

.surgeon-copy h2 {
  margin: 0;
  font-family: "Clash Display", system-ui, sans-serif;
  font-size: clamp(25px, 1.46vw, 28px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--black);
}

.surgeon-copy p {
  margin: 0;
  font-size: clamp(16px, 0.94vw, 18px);
  font-weight: 400;
  line-height: 1.28;
  color: var(--muted);
}

.surgeon-card--profile .surgeon-copy {
  padding-bottom: 0;
}

.surgeon-card--profile .surgeon-copy p {
  max-width: 300px;
  margin-inline: auto;
}

.meet-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: clamp(52px, 2.92vw, 56px);
  margin-inline: auto;
  padding-inline: clamp(21px, 1.05vw, 22px);
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-size: clamp(16px, 0.94vw, 18px);
  font-weight: 600;
  line-height: 1;
  transition: transform 300ms ease, background 300ms ease, color 300ms ease;
}

.meet-button:hover {
  transform: scale(1.05);
  background: var(--lime);
  color: var(--black);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 0.83vw, 16px);
}

.slider-button {
  display: grid;
  width: clamp(52px, 2.92vw, 56px);
  height: clamp(52px, 2.92vw, 56px);
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  opacity: 0.92;
  transition: transform 260ms ease, opacity 260ms ease;
}

.slider-button:hover,
.slider-button:focus-visible {
  transform: scale(1.06);
  opacity: 1;
}

.slider-button svg {
  width: 45%;
  height: 45%;
  fill: currentColor;
}

.pagination-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: clamp(52px, 2.92vw, 56px);
  min-width: clamp(128px, 8.33vw, 160px);
  padding-inline: clamp(20px, 1.25vw, 24px);
  border-radius: 999px;
  background: var(--white);
}

.pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ededf0;
}

.pagination-bullet.active {
  position: relative;
  width: 48px;
  overflow: hidden;
  background: #dcdce1;
}

.pagination-bullet.active span {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--progress, 0%);
  border-radius: inherit;
  background: #a6a6ad;
}

.scroll-cue {
  position: absolute;
  left: var(--content-x);
  bottom: clamp(34px, 4vw, 76px);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(15px, 0.94vw, 18px);
  line-height: 1.2;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.scroll-loader {
  width: 8px;
  height: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.scroll-loader span {
  display: block;
  border-radius: 50%;
  background: currentColor;
  animation: scrollDot 2080ms steps(1, end) infinite;
}

.scroll-loader span:nth-child(1) {
  width: 7px;
  height: 7px;
  animation-delay: 0ms;
}

.scroll-loader span:nth-child(2) {
  width: 5px;
  height: 5px;
  animation-delay: 520ms;
}

.scroll-loader span:nth-child(3) {
  width: 3px;
  height: 3px;
  animation-delay: 1040ms;
}

.scroll-loader span:nth-child(4) {
  width: 2px;
  height: 2px;
  animation-delay: 1560ms;
}

.about-section {
  position: relative;
  overflow: hidden;
  padding: clamp(94px, 7.8vw, 150px) var(--content-x) clamp(72px, 6.8vw, 130px);
  background: var(--white);
  color: var(--black);
}

.about-bg-dots {
  position: absolute;
  left: -46px;
  bottom: 58px;
  width: 170px;
  height: 150px;
  opacity: 0.42;
  background-image: radial-gradient(circle, #d9d9df 0 2px, transparent 2.4px);
  background-size: 12px 12px;
  pointer-events: none;
}

.about-container {
  position: relative;
  z-index: 1;
  width: min(100%, 1315px);
  margin-inline: auto;
}

.about-heading {
  max-width: 830px;
  margin-inline: auto;
  text-align: center;
}

.about-heading h2 {
  max-width: 740px;
  margin: 0 auto;
  font-family: "Clash Display", system-ui, sans-serif;
  font-size: clamp(64px, 5.45vw, 104px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
  color: var(--black);
}

.about-heading h2 span {
  display: block;
}

.about-heading p {
  max-width: 650px;
  margin: clamp(30px, 2.6vw, 50px) auto 0;
  color: #6e6e78;
  font-size: clamp(20px, 1.25vw, 24px);
  font-weight: 400;
  line-height: 1.08;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(18px, 1.25vw, 24px);
  margin-top: clamp(64px, 4.8vw, 92px);
}

.expertise-card,
.expertise-image {
  min-height: clamp(168px, 10.4vw, 200px);
  border-radius: clamp(28px, 2vw, 38px);
}

.expertise-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: clamp(25px, 1.6vw, 31px);
  background: #ededf0;
  overflow: hidden;
}

.expertise-card > div {
  max-width: 100%;
  min-width: 0;
}

.expertise-card strong,
.expertise-card span {
  display: block;
}

.expertise-card strong {
  font-family: "Clash Display", system-ui, sans-serif;
  font-size: clamp(27px, 1.65vw, 32px);
  font-weight: 600;
  line-height: 1;
  color: var(--black);
}

.expertise-card div span {
  margin-top: 9px;
  color: #6e6e78;
  font-size: clamp(16px, 1.04vw, 20px);
  font-weight: 400;
  line-height: 1.16;
  overflow-wrap: break-word;
}

.metric-icon {
  position: absolute;
  top: clamp(20px, 1.35vw, 26px);
  right: clamp(20px, 1.35vw, 26px);
  width: clamp(54px, 3.34vw, 64px);
  height: clamp(54px, 3.34vw, 64px);
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
}

.metric-icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  overflow: visible;
  transform: translate(-50%, -50%);
}

.metric-icon svg > * {
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.metric-icon svg circle:not(.icon-dot-ring):last-child {
  fill: currentColor;
  stroke: none;
}

.metric-icon .icon-dot-ring {
  fill: none;
  stroke-dasharray: 0 6.6;
  stroke-linecap: round;
  transform-box: fill-box;
  transform-origin: center;
}

.expertise-image {
  margin: 0;
  overflow: hidden;
  background: #ededf0;
}

.expertise-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stat-cataract {
  grid-column: 1 / span 2;
}

.image-team {
  grid-column: 3;
}

.stat-years {
  grid-column: 4 / span 2;
}

.image-exam {
  grid-column: 6;
}

.image-consult {
  grid-column: 1;
}

.stat-results {
  grid-column: 2 / span 2;
}

.image-surgery {
  grid-column: 4;
}

.stat-lens {
  grid-column: 5 / span 2;
}

.about-story-section {
  padding: clamp(76px, 7.1vw, 136px) var(--content-x);
  background: var(--white);
  color: var(--black);
}

.about-story-copy {
  width: min(100%, 1040px);
  margin-inline: auto;
  text-align: center;
}

.about-story-copy h2 {
  max-width: 850px;
  margin: 0 auto;
  font-family: "Clash Display", system-ui, sans-serif;
  font-size: clamp(48px, 4.4vw, 84px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  color: var(--black);
}

.about-story-text {
  max-width: 920px;
  margin: clamp(32px, 2.6vw, 50px) auto 0;
  color: var(--black);
  font-size: clamp(20px, 1.2vw, 23px);
  font-weight: 600;
  line-height: 1.42;
  text-align: justify;
  text-align-last: center;
}

.about-story-text p {
  margin: 0;
}

.about-story-text p + p {
  margin-top: 18px;
}

.services-section {
  position: relative;
  height: 360vh;
  margin-top: 0;
  margin-bottom: 0;
  background: var(--white);
  color: var(--black);
}

.services-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: clamp(650px, 39.75vw, 763px);
  overflow: hidden;
  background: var(--white);
}

.services-ring {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.services-ring::before {
  content: "";
  position: absolute;
  width: min(35vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 8deg, rgba(0, 0, 0, 0.08) 0deg 0.7deg, transparent 0.7deg 3.6deg),
    radial-gradient(circle, transparent 0 70%, rgba(0, 0, 0, 0.05) 70.4% 70.8%, transparent 71.2%);
  opacity: 0.28;
  animation: servicesRingRotate 28s linear infinite;
}

.services-ring video {
  position: relative;
  z-index: 1;
  width: min(34vw, 520px);
  max-width: none;
  mix-blend-mode: multiply;
  opacity: 0.55;
}

.services-track {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: clamp(28px, 1.25vw, 36px);
  width: max-content;
  height: 100%;
  will-change: transform;
}

.services-intro {
  position: relative;
  flex: 0 0 100vw;
  width: 100vw;
  text-align: center;
}

.services-intro h2 {
  margin: 0;
  font-family: "Clash Display", system-ui, sans-serif;
  font-size: clamp(58px, 4.16vw, 80px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--black);
}

.services-intro h2 span {
  display: block;
}

.services-intro p {
  max-width: 680px;
  margin: clamp(28px, 1.66vw, 32px) auto 0;
  color: #1b1a1c;
  font-size: clamp(19px, 1.12vw, 22px);
  font-weight: 400;
  line-height: 1.2;
}

.service-cards {
  display: flex;
  align-items: center;
  gap: clamp(28px, 1.25vw, 36px);
  height: 100%;
  padding-right: 40vw;
}

.service-card {
  flex: 0 0 auto;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: clamp(330px, 19.9vw, 382px);
  min-height: clamp(360px, 23.95vw, 460px);
  padding: clamp(28px, 1.55vw, 34px);
  border: 3px dotted transparent;
  border-radius: clamp(34px, 2.08vw, 40px);
  background: #ededf0;
  text-align: center;
  transition: background 300ms ease, border-color 300ms ease, transform 300ms ease;
}

.service-card:hover {
  background: var(--white);
  border-color: var(--black);
  transform: translateY(-4px);
}

.service-card-high {
  transform: translateY(-7.5vh);
}

.service-card-low {
  transform: translateY(7.5vh);
}

.service-card-high:hover {
  transform: translateY(calc(-7.5vh - 4px));
}

.service-card-low:hover {
  transform: translateY(calc(7.5vh - 4px));
}

.service-card h3 {
  max-width: 100%;
  margin: 0;
  font-family: "Clash Display", system-ui, sans-serif;
  font-size: clamp(25px, 1.46vw, 30px);
  font-weight: 600;
  line-height: 1.12;
  color: var(--black);
  overflow-wrap: break-word;
}

.service-card p {
  max-width: 100%;
  margin: clamp(12px, 0.72vw, 15px) 0 0;
  color: #6e6e73;
  font-size: clamp(17px, 1.02vw, 20px);
  font-weight: 400;
  line-height: 1.18;
  overflow-wrap: break-word;
}

.mobile-service-carousel {
  display: none;
}

.trust-section {
  padding: clamp(88px, 7.6vw, 146px) var(--content-x);
  background: var(--white);
  color: var(--black);
}

.trust-container {
  width: min(100%, 1320px);
  margin-inline: auto;
}

.trust-container h2 {
  max-width: 860px;
  margin: 0 auto clamp(46px, 4.2vw, 80px);
  font-family: "Clash Display", system-ui, sans-serif;
  font-size: clamp(54px, 4.8vw, 92px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  color: var(--black);
}

.trust-list {
  display: grid;
  gap: 10px;
}

.trust-card {
  position: relative;
  min-height: 78px;
  padding: 0 clamp(24px, 1.75vw, 34px);
  border: 1px solid rgba(0, 0, 0, 0.04);
  background: #ededf0;
  overflow: hidden;
  transition:
    min-height 520ms var(--ease-out),
    background-color 280ms ease,
    border-color 280ms ease,
    box-shadow 280ms ease;
}

.trust-card-toggle {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  align-items: center;
  width: 100%;
  min-height: 78px;
  padding: 0;
  background: transparent;
  color: var(--black);
  text-align: left;
  cursor: default;
}

.trust-index,
.trust-title {
  font-family: "Clash Display", system-ui, sans-serif;
  font-weight: 600;
  line-height: 1;
  color: var(--black);
}

.trust-index {
  font-size: clamp(22px, 1.4vw, 28px);
}

.trust-title {
  font-size: clamp(24px, 1.65vw, 32px);
  min-width: 0;
  overflow-wrap: break-word;
}

.tap-icon {
  display: none;
}

.trust-card p {
  max-width: 560px;
  max-height: 0;
  margin: 0 0 0 54px;
  color: #6e6e73;
  font-size: clamp(18px, 1.08vw, 21px);
  font-weight: 500;
  line-height: 1.25;
  opacity: 0;
  overflow: hidden;
  transform: translateY(18px);
  transition:
    max-height 420ms var(--ease-out),
    margin 420ms var(--ease-out),
    opacity 320ms ease,
    transform 420ms var(--ease-out);
}

.trust-card:hover,
.trust-card:focus-within,
.trust-card.is-open {
  min-height: clamp(212px, 15vw, 288px);
  background: var(--white);
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.03);
}

.trust-card:hover p,
.trust-card:focus-within p,
.trust-card.is-open p {
  max-height: 150px;
  margin-bottom: clamp(24px, 1.7vw, 34px);
  opacity: 1;
  transform: translateY(0);
}

.testimonials-section {
  position: relative;
  min-height: clamp(720px, 46vw, 880px);
  padding: clamp(76px, 6.2vw, 118px) var(--content-x);
  background: var(--white);
  color: var(--black);
  overflow: hidden;
}

.testimonials-word {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  margin: 0;
  font-family: "Clash Display", system-ui, sans-serif;
  font-size: clamp(150px, 16.2vw, 312px);
  font-weight: 500;
  line-height: 0.78;
  letter-spacing: 0;
  color: var(--black);
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
}

.testimonials-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(230px, auto));
  gap: clamp(28px, 2.2vw, 42px);
  width: min(100%, 1320px);
  margin-inline: auto;
}

.testimonial-card {
  display: flex;
  min-height: clamp(230px, 15vw, 288px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(26px, 1.85vw, 36px);
  border-radius: clamp(18px, 1.18vw, 24px);
  background: #ededf0;
  text-align: center;
}

.testimonial-card blockquote {
  max-width: 280px;
  margin: 0;
  color: var(--black);
  font-size: clamp(18px, 1vw, 20px);
  font-weight: 600;
  line-height: 1.17;
}

.testimonial-card p {
  margin: clamp(18px, 1.15vw, 22px) 0 0;
  color: #6e6e73;
  font-size: clamp(15px, 0.85vw, 17px);
  font-weight: 600;
  line-height: 1;
}

.testimonial-card-one {
  grid-column: 1 / span 3;
  grid-row: 1;
}

.testimonial-card-two {
  grid-column: 10 / span 3;
  grid-row: 1;
}

.testimonial-card-three {
  grid-column: 5 / span 3;
  grid-row: 2;
}

.testimonial-card-four {
  grid-column: 8 / span 3;
  grid-row: 2;
}

.short-notice-section {
  position: relative;
  display: grid;
  min-height: clamp(560px, 39.6vw, 760px);
  place-items: center;
  padding: clamp(82px, 6.9vw, 132px) var(--content-x);
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}

.short-notice-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.short-notice-bg::before,
.short-notice-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.42;
}

.short-notice-bg::before {
  background:
    radial-gradient(ellipse at center, transparent 0 24%, rgba(0, 0, 0, 0.9) 61%, var(--black) 78%),
    radial-gradient(circle, rgba(255, 255, 255, 0.42) 0 4px, transparent 4.6px);
  background-size: 100% 100%, 21px 21px;
  transform: rotate(5deg) scale(1.18);
}

.short-notice-bg::after {
  background:
    radial-gradient(ellipse at 21% 43%, rgba(255, 255, 255, 0.22) 0 2px, transparent 3px),
    radial-gradient(ellipse at 78% 52%, rgba(255, 255, 255, 0.18) 0 2px, transparent 3px);
  background-size: 17px 17px, 18px 18px;
  mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%);
}

.notice-dot {
  position: absolute;
  z-index: 1;
  display: block;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.dot-one {
  top: 7%;
  left: 33%;
  width: 36px;
  height: 36px;
}

.dot-two {
  top: 25%;
  right: 12%;
  width: 56px;
  height: 56px;
}

.dot-three {
  bottom: 17%;
  right: 27%;
  width: 38px;
  height: 38px;
}

.dot-four {
  bottom: 12%;
  left: 20%;
  width: 22px;
  height: 22px;
}

.dot-five {
  top: 31%;
  left: 26%;
  width: 18px;
  height: 18px;
}

.short-notice-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 1120px);
  margin-inline: auto;
  text-align: center;
}

.short-notice-copy h2 {
  margin: 0;
  font-family: "Clash Display", system-ui, sans-serif;
  font-size: clamp(68px, 5.05vw, 97px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
  color: var(--white);
}

.short-notice-copy h2 > span {
  display: block;
}

.short-notice-copy .appointment-line span {
  display: inline;
}

.short-notice-copy p {
  max-width: 620px;
  margin: clamp(22px, 1.65vw, 32px) auto 0;
  color: var(--white);
  font-size: clamp(20px, 1.2vw, 24px);
  font-weight: 500;
  line-height: 1.16;
}

.notice-cta {
  margin-top: clamp(38px, 2.9vw, 56px);
}

.gallery-section {
  position: relative;
  padding: clamp(76px, 7.2vw, 138px) 0 clamp(86px, 7.8vw, 150px);
  background:
    radial-gradient(circle at 12% 14%, rgba(91, 181, 188, 0.16), transparent 30%),
    linear-gradient(180deg, #fbfdfd 0%, #f4f8f8 100%);
  color: var(--black);
  overflow: hidden;
}

.gallery-section::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(180deg, transparent, rgba(15, 24, 28, 0.05));
  pointer-events: none;
}

.gallery-heading {
  position: relative;
  z-index: 1;
  width: min(100% - (var(--content-x) * 2), 1120px);
  margin: 0 auto clamp(34px, 3.1vw, 58px);
  text-align: center;
}

.gallery-heading h2 {
  margin: 12px 0 0;
  font-family: "Clash Display", system-ui, sans-serif;
  font-size: clamp(44px, 4.65vw, 86px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
}

.gallery-slider {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.gallery-track {
  display: flex;
  align-items: flex-start;
  width: max-content;
  gap: clamp(18px, 1.65vw, 32px);
  padding: 10px clamp(18px, 2vw, 32px) 20px;
  animation: galleryTrail 58s linear infinite;
  will-change: transform;
}

.gallery-slider:hover .gallery-track {
  animation-play-state: paused;
}

.gallery-card {
  position: relative;
  flex: 0 0 clamp(220px, 20vw, 360px);
  width: clamp(220px, 20vw, 360px);
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(15, 24, 28, 0.08);
  border-radius: clamp(24px, 2vw, 36px);
  background: var(--white);
  box-shadow: 0 22px 58px rgba(15, 24, 28, 0.14);
  transform: translateZ(0);
}

.gallery-card:nth-child(2n) {
  margin-top: clamp(18px, 1.6vw, 28px);
}

.gallery-card:nth-child(3n) {
  margin-top: clamp(4px, 0.7vw, 14px);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.04) contrast(1.03);
  transition: transform 650ms var(--ease-out), filter 650ms var(--ease-out);
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 42%, rgba(0, 0, 0, 0.08));
  pointer-events: none;
}

.gallery-card:hover img {
  filter: saturate(1.08) contrast(1.05);
  transform: scale(1.045);
}

@keyframes galleryTrail {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - clamp(9px, 0.825vw, 16px)), 0, 0);
  }
}

.scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 36px, 0) scale(0.985);
  transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out);
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.appointment-anchor {
  height: 0;
  background: transparent;
}

.appointment-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 42px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 260ms ease, visibility 260ms ease;
}

.appointment-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.appointment-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(91, 181, 188, 0.18), transparent 30%),
    rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.appointment-dialog {
  position: relative;
  width: min(100%, 860px);
  max-height: min(92vh, 860px);
  overflow-y: auto;
  padding: clamp(28px, 3.15vw, 48px);
  border-radius: clamp(30px, 3vw, 48px);
  background: var(--white);
  color: var(--black);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  transform: translateY(24px) scale(0.98);
  transition: transform 320ms var(--ease-out);
}

.appointment-modal.is-open .appointment-dialog {
  transform: translateY(0) scale(1);
}

.appointment-close {
  position: absolute;
  top: clamp(20px, 2.2vw, 32px);
  right: clamp(20px, 2.2vw, 32px);
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #ededf0;
  color: var(--black);
  cursor: pointer;
  font: inherit;
  font-size: 32px;
  line-height: 1;
  transition: background-color 220ms ease, transform 220ms ease;
}

.appointment-close:hover {
  background: #e2e3e8;
  transform: rotate(8deg);
}

.appointment-modal-copy {
  max-width: 710px;
  padding-right: 62px;
}

.appointment-modal-copy h2 {
  margin: 0;
  font-family: "Clash Display", system-ui, sans-serif;
  font-size: clamp(36px, 3.4vw, 56px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
}

.appointment-modal-copy p {
  max-width: 720px;
  margin: 18px 0 0;
  color: #646870;
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 500;
  line-height: 1.28;
}

.appointment-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: clamp(28px, 2.7vw, 44px);
}

.appointment-choice {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
}

.appointment-choice legend,
.form-field > span {
  width: 100%;
  margin-bottom: 9px;
  color: var(--black);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
}

.choice-pill {
  position: relative;
  display: inline-flex;
  cursor: pointer;
}

.choice-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-pill span {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: #ebedf1;
  color: #60656f;
  font-size: 17px;
  font-weight: 600;
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.choice-pill input:checked + span {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.choice-pill input:focus-visible + span,
.form-field input:focus,
.form-field select:focus {
  outline: 3px solid rgba(91, 181, 188, 0.32);
  outline-offset: 3px;
}

.form-field {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.form-field input,
.form-field select {
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  background: #ebedf1;
  color: var(--black);
  font: inherit;
  font-size: 17px;
  font-weight: 500;
}

.form-field input {
  padding: 0 20px;
}

.form-field select {
  padding: 0 48px 0 20px;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #8b9099 50%),
    linear-gradient(135deg, #8b9099 50%, transparent 50%);
  background-position:
    calc(100% - 28px) 50%,
    calc(100% - 20px) 50%;
  background-size: 8px 8px, 8px 8px;
  background-repeat: no-repeat;
}

.form-field input::placeholder {
  color: #9096a2;
}

.form-field input:hover,
.form-field select:hover {
  background-color: #e4e6eb;
}

.appointment-submit {
  grid-column: 1 / -1;
  justify-self: end;
  margin-top: 14px;
  border: 0;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  font-weight: 700;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.appointment-submit::before,
.thank-you-button::before {
  background: var(--black);
}

.appointment-submit > span:first-child,
.thank-you-button > span:first-child {
  position: relative;
  z-index: 1;
  color: var(--white);
  white-space: nowrap;
}

.appointment-submit .arrow-orb {
  background: var(--white);
  color: var(--black);
}

.body-modal-open {
  overflow: hidden;
}

.whatsapp-float {
  position: fixed;
  right: clamp(18px, 2.2vw, 36px);
  bottom: clamp(18px, 2.2vw, 36px);
  z-index: 900;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  isolation: isolate;
}

.whatsapp-icon {
  display: grid;
  width: clamp(58px, 4.1vw, 72px);
  height: clamp(58px, 4.1vw, 72px);
  place-items: center;
  border: 3px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26), 0 0 0 9px rgba(37, 211, 102, 0.16);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.whatsapp-icon svg {
  width: 58%;
  height: 58%;
  fill: currentColor;
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  width: max-content;
  max-width: min(275px, calc(100vw - 116px));
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(12px, 0, 0);
  transition: opacity 220ms ease, transform 220ms ease;
}

.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  width: 12px;
  height: 12px;
  background: var(--black);
  transform: translateY(-50%) rotate(45deg);
}

.whatsapp-float:hover .whatsapp-icon,
.whatsapp-float:focus-visible .whatsapp-icon {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.3), 0 0 0 11px rgba(37, 211, 102, 0.2);
}

.whatsapp-float:hover .whatsapp-tooltip,
.whatsapp-float:focus-visible .whatsapp-tooltip {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.inner-page {
  background: #f7fafa;
  color: var(--black);
}

.inner-page-main {
  padding-top: clamp(122px, 9.4vw, 178px);
  background:
    radial-gradient(circle at 12% 8%, rgba(97, 181, 15, 0.12), transparent 26%),
    linear-gradient(180deg, #f8fbfb 0%, #eef5f5 48%, #f8fbfb 100%);
}

.inner-page .about-section {
  padding-top: clamp(70px, 6vw, 110px);
}

.inner-page .testimonials-section {
  background: #f8fbfb;
}

.services-page-hero,
.contact-hero {
  width: min(100% - (var(--content-x) * 2), 1120px);
  margin-inline: auto;
  text-align: center;
}

.services-page-hero .section-kicker,
.contact-hero .section-kicker {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  margin: 0 0 clamp(20px, 1.8vw, 30px);
  padding: 0 16px;
  border-radius: 999px;
  background: var(--white);
  color: #6b7179;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 12px 32px rgba(15, 24, 28, 0.08);
}

.services-page-hero h1,
.contact-hero h1 {
  margin: 0;
  font-family: "Clash Display", system-ui, sans-serif;
  font-size: clamp(48px, 6vw, 104px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.services-page-hero h1 span {
  display: block;
}

.services-page-hero > p,
.contact-hero > p {
  max-width: 760px;
  margin: clamp(24px, 2vw, 34px) auto 0;
  color: #626971;
  font-size: clamp(18px, 1.25vw, 23px);
  font-weight: 500;
  line-height: 1.4;
}

.service-detail-list {
  display: grid;
  gap: clamp(28px, 3vw, 58px);
  width: min(100% - (var(--content-x) * 2), 1180px);
  margin: clamp(58px, 5.5vw, 106px) auto 0;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 76px);
  align-items: stretch;
  min-height: clamp(240px, 17vw, 320px);
  padding: clamp(26px, 2.8vw, 48px);
  border-radius: clamp(30px, 2.8vw, 54px);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(15, 24, 28, 0.08);
}

.service-detail--reverse .service-detail-title {
  order: 2;
}

.service-detail--reverse .service-detail-copy {
  order: 1;
}

.service-detail-title,
.service-detail-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-detail-title span {
  width: fit-content;
  padding: 8px 13px;
  border-radius: 999px;
  background: #eef3f3;
  color: #6b7179;
  font-size: 13px;
  font-weight: 700;
}

.service-detail-title h2 {
  max-width: 520px;
  margin: 20px 0 0;
  font-family: "Clash Display", system-ui, sans-serif;
  font-size: clamp(38px, 4.2vw, 78px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.service-detail-copy {
  border-radius: clamp(24px, 2vw, 38px);
  background: #eef3f3;
  padding: clamp(24px, 2.4vw, 40px);
}

.service-detail-copy p {
  margin: 0;
  color: #5f666e;
  font-size: clamp(18px, 1.2vw, 22px);
  font-weight: 500;
  line-height: 1.48;
}

.services-page-main .trust-section {
  margin-top: clamp(72px, 7vw, 136px);
}

.contact-page-main {
  min-height: 100svh;
  padding-bottom: clamp(70px, 7vw, 120px);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 1.5vw, 28px);
  width: min(100% - (var(--content-x) * 2), 1180px);
  margin: clamp(52px, 4.8vw, 90px) auto 0;
}

.contact-card {
  min-height: 230px;
  padding: clamp(24px, 2.1vw, 36px);
  border-radius: clamp(26px, 2.3vw, 42px);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(15, 24, 28, 0.08);
}

.contact-card span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eef3f3;
  color: #6b7179;
  font-size: 13px;
  font-weight: 700;
}

.contact-card p,
.contact-card address {
  display: grid;
  gap: 12px;
  margin: 0;
  color: #353b42;
  font-size: clamp(17px, 1.05vw, 20px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.42;
}

.contact-card a {
  color: var(--black);
  transition: color 220ms ease;
}

.contact-card a:hover {
  color: var(--lime);
}

.map-section {
  width: min(100% - (var(--content-x) * 2), 1180px);
  margin: clamp(28px, 3vw, 58px) auto 0;
  padding: clamp(18px, 1.5vw, 28px);
  border-radius: clamp(30px, 2.7vw, 52px);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(15, 24, 28, 0.08);
}

.map-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.map-heading h2 {
  margin: 0;
  font-family: "Clash Display", system-ui, sans-serif;
  font-size: clamp(28px, 2.5vw, 46px);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.map-heading a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-weight: 600;
  white-space: nowrap;
}

.map-section iframe {
  width: 100%;
  min-height: clamp(330px, 34vw, 560px);
  border: 0;
  border-radius: clamp(22px, 2vw, 36px);
}

.thank-you-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 18%, rgba(91, 181, 188, 0.22), transparent 30%),
    radial-gradient(circle at 78% 82%, rgba(0, 0, 0, 0.1), transparent 34%),
    linear-gradient(180deg, #fbfdfd 0%, #edf4f4 100%);
  color: var(--black);
}

.thank-you-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: clamp(24px, 4vw, 64px);
}

.thank-you-card {
  position: relative;
  width: min(100%, 780px);
  padding: clamp(38px, 5.2vw, 76px);
  overflow: hidden;
  border: 1px solid rgba(15, 24, 28, 0.08);
  border-radius: clamp(34px, 4vw, 58px);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 28px 86px rgba(15, 24, 28, 0.16);
  text-align: center;
}

.thank-you-card::before {
  content: "";
  position: absolute;
  inset: -20% auto auto 50%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(91, 181, 188, 0.13);
  transform: translateX(-50%);
  pointer-events: none;
}

.thank-you-icon {
  position: relative;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
}

.thank-you-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.thank-you-card h1 {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
  font-family: "Clash Display", system-ui, sans-serif;
  font-size: clamp(42px, 5vw, 78px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.thank-you-card p {
  position: relative;
  max-width: 610px;
  margin: 24px auto 0;
  color: #646870;
  font-size: clamp(18px, 1.55vw, 23px);
  font-weight: 500;
  line-height: 1.36;
}

.thank-you-button {
  position: relative;
  margin-top: clamp(34px, 3.3vw, 52px);
  background: var(--black);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.thank-you-button .arrow-orb {
  background: var(--white);
  color: var(--black);
}

.site-footer {
  position: relative;
  min-height: clamp(560px, 39vw, 760px);
  padding: clamp(90px, 7.8vw, 150px) var(--content-x) clamp(58px, 4.8vw, 92px);
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -18%;
  left: 0;
  width: 100%;
  height: 38%;
  opacity: 0.22;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.45) 0 2px, transparent 2.5px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
  pointer-events: none;
}

.footer-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(56px, 8vw, 154px);
  width: min(100%, 1320px);
  margin-inline: auto;
}

.footer-brand {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: space-between;
}

.footer-brand a {
  display: inline-flex;
  width: fit-content;
}

.footer-brand img {
  width: clamp(230px, 20vw, 370px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p {
  max-width: 430px;
  margin: 0;
  color: #a8a8b0;
  font-size: clamp(17px, 1vw, 19px);
  font-weight: 400;
  line-height: 1.35;
}

.footer-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(54px, 5.6vw, 108px) clamp(70px, 7vw, 134px);
  align-content: start;
  text-align: center;
}

.footer-block h2 {
  margin: 0 0 16px;
  font-family: "Clash Display", system-ui, sans-serif;
  font-size: clamp(28px, 1.56vw, 32px);
  font-weight: 600;
  line-height: 1;
  color: var(--white);
}

.footer-block p {
  max-width: 360px;
  margin: 0 auto;
  color: #a8a8b0;
  font-size: clamp(17px, 1vw, 19px);
  font-weight: 400;
  line-height: 1.25;
}

.footer-block a {
  color: inherit;
  transition: color 220ms ease;
}

.footer-block a:hover {
  color: var(--lime);
}

.footer-block p a {
  display: block;
}

.footer-social {
  grid-column: 1 / -1;
  margin-top: clamp(12px, 1vw, 20px);
}

.footer-social p {
  display: flex;
  justify-content: center;
  gap: 22px;
  max-width: none;
}

.footer-social p a {
  display: inline-flex;
}

.reveal {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  animation: revealUp 900ms var(--ease-out) both;
}

.reveal-right {
  animation-name: revealRight;
}

.reveal-left {
  animation-name: revealLeft;
}

.reveal-down {
  animation-name: revealDown;
}

.delay-1 {
  animation-delay: 150ms;
}

.delay-2 {
  animation-delay: 280ms;
}

.delay-3 {
  animation-delay: 480ms;
}

@keyframes dottedArrow {
  0% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }

  45% {
    opacity: 0;
    transform: translateX(55%) scale(0.92);
  }

  55% {
    opacity: 0;
    transform: translateX(-55%) scale(0.92);
  }

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

@keyframes revealUp {
  from {
    transform: translate3d(0, 24px, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes revealRight {
  from {
    transform: translate3d(-52px, 22px, 0) scale(0.98);
  }

  to {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes revealLeft {
  from {
    transform: translate3d(44px, 18px, 0) scale(0.985);
  }

  to {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes revealDown {
  from {
    transform: translate3d(0, -32px, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes scrollDot {
  0%,
  100% {
    transform: scale(0.45);
  }

  25% {
    transform: scale(0.72);
  }

  50% {
    transform: scale(1);
  }

  75% {
    transform: scale(0.72);
  }
}

@keyframes servicesRingRotate {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1180px) {
  :root {
    --header-x: 24px;
    --content-x: 42px;
  }

  .doctor-profile-page .phone-link span:last-child {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
  }

  .header-pill {
    grid-template-columns: minmax(150px, 190px) 1fr;
    border-radius: 34px;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .main-nav {
    grid-column: 1 / -1;
    order: 3;
    padding: 4px 14px 8px;
    gap: clamp(16px, 3vw, 34px);
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
    gap: 34px;
  }

  .hero-copy {
    max-width: 58vw;
  }

  .hero-copy h1 {
    font-size: clamp(48px, 4vw, 68px);
  }

}

@media (max-width: 900px) {
  :root {
    --content-x: 22px;
  }

  body {
    background: var(--soft-gray);
  }

  .site-header {
    top: 16px;
    padding-inline: 16px;
  }

  .header-pill {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0;
    min-height: 64px;
    border-radius: 32px;
    padding: 8px 10px 8px 14px;
    overflow: hidden;
    transition: border-radius 260ms ease, padding 260ms ease;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    flex: none;
    padding-left: 0;
  }

  .brand img {
    width: 160px;
    min-width: 0;
    height: 34px;
  }

  .mobile-menu-toggle {
    grid-column: 2;
    grid-row: 1;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    padding: 0 12px;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: var(--white);
    transform-origin: center;
    transition: transform 240ms ease, opacity 200ms ease;
  }

  .is-menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .is-menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .is-menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header-actions {
    grid-column: 1 / -1;
    grid-row: 3;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: max-height 300ms ease, opacity 240ms ease, transform 260ms ease, visibility 240ms ease;
  }

  .phone-link {
    gap: 10px;
    color: var(--white);
    font-size: 16px;
  }

  .phone-link span:last-child {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
  }

  .phone-icon {
    width: 42px;
    height: 42px;
  }

  .header-cta {
    min-height: 42px;
    font-size: 13px;
  }

  .header-cta > span:first-child {
    padding-inline: 10px;
  }

  .header-cta .arrow-orb {
    width: 34px;
    height: 34px;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    font-size: 17px;
    transition: max-height 300ms ease, opacity 240ms ease, transform 260ms ease, padding 260ms ease, visibility 240ms ease;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .is-menu-open {
    border-radius: 28px;
    padding-bottom: 18px;
  }

  .is-menu-open .main-nav {
    max-height: 260px;
    padding-top: 18px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .is-menu-open .header-actions {
    max-height: 180px;
    padding-top: 16px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    min-height: 100svh;
    overflow: hidden;
    background: var(--soft-gray);
  }

  .hero-bg {
    position: relative;
    height: min(94vw, 560px);
    min-height: 360px;
    background-image: url("assets/hero-eye-mobile-bg.jpg");
    background-position: center top;
    transform: none;
  }

  .hero-overlay {
    height: min(94vw, 560px);
    min-height: 360px;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.36)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0));
  }

  .hero-inner {
    display: block;
    position: relative;
    width: 100%;
    overflow: visible;
    min-height: auto;
    padding: 42px 20px 36px;
    background: var(--soft-gray);
    color: var(--black);
  }

  .hero-copy {
    position: static;
    width: 100%;
    max-width: min(88vw, 620px);
    align-items: center;
    gap: 20px;
    text-align: center;
    margin-inline: auto;
  }

  .hero-copy h1 {
    width: 100%;
    font-size: clamp(29px, 6.8vw, 48px);
    line-height: 1.1;
    color: var(--black);
    text-shadow: none;
    overflow-wrap: normal;
  }

  .hero-copy p {
    display: block;
    width: 100%;
    max-width: 560px;
    margin: 0;
    font-size: clamp(17px, 4.55vw, 22px);
    line-height: 1.24;
    color: #6e6e73;
    overflow-wrap: break-word;
  }

  .hero-cta {
    min-height: 52px;
    background: var(--black);
    color: var(--white);
    font-size: 16px;
  }

  .hero-cta::before {
    background: var(--black);
  }

  .hero-cta .arrow-orb {
    background: var(--white);
    color: var(--black);
  }

  .surgeon-panel {
    width: 100%;
    max-width: 420px;
    margin: 28px auto 0;
    align-self: center;
  }

  .surgeon-panel.reveal-left {
    animation-name: revealUp;
  }

  .surgeon-card,
  .slider-controls {
    max-width: 100%;
  }

  .surgeon-card {
    border-radius: 40px;
    padding: 6px 6px 24px;
  }

  .doctor-placeholder {
    border-radius: 34px;
  }

  .doctor-photo {
    border-radius: 34px;
  }

  .scroll-cue {
    top: calc(min(94vw, 560px) - 72px);
    bottom: auto;
    left: 0;
    transform: none;
    width: 100%;
    justify-content: center;
    padding-inline: 20px;
    font-size: 14px;
  }

  .about-section {
    padding: 66px 16px 58px;
    background: var(--white);
  }

  .about-bg-dots {
    display: none;
  }

  .about-heading {
    width: 100%;
    max-width: 620px;
  }

  .about-heading h2 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(40px, 8.8vw, 58px);
    line-height: 1.06;
  }

  .about-heading p {
    width: 100%;
    max-width: 560px;
    margin-top: 24px;
    font-size: clamp(20px, 4.5vw, 26px);
    line-height: 1.18;
    overflow-wrap: break-word;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 560px;
    margin: 62px auto 0;
    gap: 10px;
  }

  .expertise-image {
    display: none;
  }

  .expertise-card {
    grid-column: 1;
    width: 100%;
    max-width: 100%;
    min-height: 120px;
    align-items: center;
    gap: 22px;
    padding: 24px 28px;
    border-radius: 36px;
  }

  .metric-icon {
    position: relative;
    flex: 0 0 auto;
    width: 64px;
    height: 64px;
    top: auto;
    right: auto;
  }

  .expertise-card strong {
    font-size: 31px;
  }

  .expertise-card div span {
    margin-top: 8px;
    font-size: 20px;
    line-height: 1.18;
  }

  .about-story-section {
    padding: 68px 20px 74px;
  }

  .about-story-copy {
    max-width: 660px;
  }

  .about-story-copy h2 {
    font-size: clamp(38px, 8.4vw, 58px);
    line-height: 1.05;
  }

  .about-story-text {
    max-width: 590px;
    margin-top: 28px;
    font-size: clamp(18px, 4.25vw, 22px);
    line-height: 1.48;
  }

  .services-section {
    height: auto;
    min-height: 0;
    margin-top: 0;
    margin-bottom: 0;
    padding-inline: 20px;
  }

  .services-stage {
    position: relative;
    display: flex;
    width: 100%;
    min-height: max(920px, 172vw);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 72px 0 58px;
  }

  .services-ring {
    overflow: hidden;
  }

  .services-ring::before {
    width: 132vw;
    opacity: 0.2;
  }

  .services-ring video {
    width: 104vw;
    transform: scale(2.6);
    opacity: 0.58;
  }

  .services-intro {
    width: min(calc(100vw - 40px), 560px);
    flex: none;
    padding-inline: 0;
  }

  .services-intro h2 {
    font-size: clamp(30px, 8.6vw, 50px);
    line-height: 1.12;
  }

  .services-intro p {
    max-width: 520px;
    margin-top: 24px;
    color: #6e6e73;
    font-size: clamp(18px, 4.8vw, 25px);
    line-height: 1.22;
  }

  .services-track {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
    transform: none !important;
  }

  .desktop-service-cards {
    display: none;
  }

  .mobile-service-carousel {
    position: relative;
    z-index: 3;
    display: block;
    width: min(calc(100vw - 40px), 440px);
    margin: 36px auto 0;
    overflow: hidden;
    touch-action: pan-y;
    user-select: none;
  }

  .mobile-service-track {
    display: flex;
    transform: translateX(0);
    transition: transform 520ms var(--ease-out);
    will-change: transform;
  }

  .mobile-service-carousel .service-card {
    flex: 0 0 100%;
    width: 100%;
    min-height: 270px;
    padding: 32px 28px;
    border: 0;
    border-radius: 32px;
    transform: none;
  }

  .mobile-service-carousel .service-card:hover {
    background: #ededf0;
    border-color: transparent;
    transform: none;
  }

  .mobile-service-carousel .service-card h3 {
    font-size: clamp(27px, 6.3vw, 32px);
  }

  .mobile-service-carousel .service-card p {
    margin-top: 14px;
    font-size: clamp(18px, 4.45vw, 21px);
    line-height: 1.22;
  }

  .trust-section {
    padding: 72px 20px 78px;
  }

  .trust-container h2 {
    max-width: 560px;
    margin-bottom: 38px;
    font-size: clamp(38px, 8.5vw, 58px);
    line-height: 1.05;
  }

  .trust-list {
    width: min(100%, 620px);
    margin-inline: auto;
    gap: 9px;
  }

  .trust-card {
    min-height: 74px;
    padding: 0 20px;
  }

  .trust-card-toggle {
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 8px;
    min-height: 74px;
    padding-right: 48px;
    white-space: normal;
    cursor: pointer;
  }

  .trust-index {
    font-size: 20px;
  }

  .trust-title {
    font-size: clamp(21px, 5.2vw, 27px);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .tap-icon {
    display: grid;
    place-items: center;
    justify-self: end;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--white);
    color: var(--black);
    font-family: "Clash Display", system-ui, sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    transition: transform 280ms ease, background-color 280ms ease;
  }

  .trust-card p {
    max-width: none;
    margin-left: 42px;
    font-size: 18px;
    line-height: 1.28;
  }

  .trust-card:hover {
    min-height: 74px;
    background: #ededf0;
    border-color: rgba(0, 0, 0, 0.04);
    box-shadow: none;
  }

  .trust-card:hover p {
    opacity: 0;
    transform: translateY(18px);
  }

  .trust-card.is-open,
  .trust-card:focus-within {
    min-height: 214px;
    background: var(--white);
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.03);
  }

  .trust-card.is-open p,
  .trust-card:focus-within p {
    max-height: 170px;
    margin-bottom: 24px;
    opacity: 1;
    transform: translateY(0);
  }

  .trust-card.is-open .tap-icon {
    transform: rotate(45deg);
    background: #ededf0;
  }

  .testimonials-section {
    min-height: 0;
    padding: 72px 20px 80px;
  }

  .testimonials-word {
    top: 86px;
    font-size: clamp(74px, 18vw, 130px);
    line-height: 0.82;
    transform: translateX(-50%);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 14px;
    width: min(100%, 560px);
    padding-top: clamp(72px, 18vw, 116px);
  }

  .testimonial-card,
  .testimonial-card-one,
  .testimonial-card-two,
  .testimonial-card-three,
  .testimonial-card-four {
    grid-column: 1;
    grid-row: auto;
  }

  .testimonial-card {
    min-height: 220px;
    padding: 28px 26px;
    border-radius: 22px;
  }

  .testimonial-card blockquote {
    max-width: 390px;
    font-size: clamp(18px, 4.55vw, 21px);
    line-height: 1.2;
  }

  .testimonial-card p {
    font-size: 16px;
  }

  .short-notice-section {
    min-height: 560px;
    padding: 78px 20px 86px;
  }

  .short-notice-bg::before {
    background:
      radial-gradient(ellipse at center, transparent 0 29%, rgba(0, 0, 0, 0.88) 62%, var(--black) 78%),
      radial-gradient(circle, rgba(255, 255, 255, 0.45) 0 3px, transparent 3.6px);
    background-size: 100% 100%, 13px 13px;
    transform: rotate(2deg) scale(1.45);
  }

  .short-notice-copy {
    max-width: 620px;
  }

  .short-notice-copy h2 {
    font-size: clamp(45px, 10vw, 68px);
    line-height: 1.08;
  }

  .short-notice-copy p {
    max-width: 490px;
    margin-top: 26px;
    font-size: clamp(22px, 5vw, 26px);
    line-height: 1.14;
  }

  .notice-cta {
    margin-top: 46px;
  }

  .doctor-profile-main {
    padding-top: 128px;
  }

  .doctor-profile-hero,
  .doctor-achievements {
    grid-template-columns: 1fr;
    width: min(100% - 44px, 760px);
  }

  .doctor-profile-photo img {
    aspect-ratio: 1;
  }

  .doctor-profile-intro {
    padding-block: 0;
    text-align: center;
  }

  .doctor-profile-tags,
  .doctor-socials {
    justify-content: center;
  }

  .doctor-profile-intro p {
    margin-inline: auto;
  }

  .doctor-profile-cta {
    margin-top: 38px;
  }

  .doctor-achievements {
    gap: 34px;
  }

  .doctor-story {
    width: min(100% - 44px, 760px);
    margin-top: 62px;
  }

  .doctor-story-copy {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }

  .doctor-achievements-copy {
    text-align: center;
  }

  .doctor-achievements-copy img {
    margin-inline: auto;
  }

  .doctor-achievements-content > p {
    margin-inline: auto;
    text-align: center;
  }

  .doctor-expertise-section,
  .doctor-testimonials {
    width: min(100% - 44px, 760px);
  }

  .doctor-testimonial-row {
    grid-template-columns: 1fr;
  }

  .doctor-expertise-marquee {
    margin-inline: calc((100vw - min(100% - 44px, 760px)) / -2);
    mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  }

  .doctor-expertise-grid article {
    flex-basis: min(78vw, 360px);
  }

  .doctor-testimonial-row article {
    min-height: 0;
  }

  .gallery-section {
    padding: 72px 0 92px;
  }

  .gallery-heading {
    width: min(100% - 44px, 680px);
    margin-bottom: 32px;
  }

  .gallery-heading h2 {
    font-size: clamp(40px, 9vw, 68px);
  }

  .gallery-track {
    gap: 18px;
    animation-duration: 48s;
  }

  .gallery-card {
    flex-basis: clamp(210px, 42vw, 300px);
    width: clamp(210px, 42vw, 300px);
    border-radius: 26px;
  }

  .appointment-dialog {
    max-height: calc(100vh - 34px);
    padding: 34px 24px 28px;
    border-radius: 34px;
  }

  .appointment-modal-copy {
    padding-right: 54px;
  }

  .appointment-form {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .appointment-submit {
    justify-self: stretch;
  }

  .site-footer {
    min-height: 640px;
    padding: 78px 22px 54px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .footer-brand {
    min-height: 0;
    align-items: center;
    gap: 44px;
    text-align: center;
  }

  .footer-brand img {
    width: min(78vw, 340px);
    object-position: center;
  }

  .footer-info {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-block p {
    max-width: 430px;
    line-height: 1.34;
  }

  .footer-social {
    grid-column: auto;
    margin-top: 0;
  }

  .inner-page-main {
    padding-top: 128px;
  }

  .services-page-hero,
  .contact-hero,
  .service-detail-list,
  .contact-grid,
  .map-section {
    width: min(100% - 44px, 760px);
  }

  .services-page-hero h1,
  .contact-hero h1 {
    font-size: clamp(42px, 9vw, 70px);
    line-height: 1.02;
  }

  .service-detail,
  .service-detail--reverse {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-detail--reverse .service-detail-title,
  .service-detail--reverse .service-detail-copy {
    order: initial;
  }

  .service-detail {
    min-height: 0;
  }

  .service-detail-title h2 {
    font-size: clamp(34px, 8vw, 56px);
  }

  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-card {
    min-height: 210px;
  }

  .map-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 12px;
  }

  .header-pill {
    justify-content: initial;
    gap: 0;
    border-radius: 22px;
  }

  .brand {
    order: initial;
    flex: none;
    justify-content: flex-start;
    padding-left: 0;
  }

  .brand img {
    width: 158px;
    height: 34px;
    object-position: left center;
  }

  .header-actions {
    order: initial;
    flex: none;
  }

  .phone-link {
    gap: 8px;
    font-size: 13px;
  }

  .phone-link span:last-child {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
  }

  .phone-icon {
    width: 36px;
    height: 36px;
  }

  .header-cta {
    min-height: 44px;
    font-size: 15px;
    min-width: min(250px, 100%);
    justify-content: space-between;
  }

  .header-cta > span:first-child {
    max-width: none;
    padding-inline: 10px;
    white-space: nowrap;
    text-align: center;
    line-height: 1;
  }

  .header-cta .arrow-orb {
    width: 30px;
    height: 30px;
  }

  .main-nav {
    order: initial;
    flex-wrap: nowrap;
    gap: 15px;
    overflow: hidden;
    font-size: 16px;
  }

  .hero-bg,
  .hero-overlay {
    min-height: 348px;
    height: 93vw;
  }

  .hero-inner {
    padding-inline: 16px;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(23px, 6vw, 31px);
  }

  .hero-copy {
    max-width: calc(100vw - 24px);
  }

  .hero-copy p {
    max-width: 330px;
  }

  .surgeon-panel {
    max-width: 318px;
  }

  .hero-copy p {
    font-size: 17px;
  }

  .hero-cta > span:first-child {
    padding-inline: 14px;
  }

  .surgeon-copy h2 {
    font-size: 25px;
  }

  .surgeon-copy p,
  .meet-button {
    font-size: 16px;
  }

  .pagination-pill {
    min-width: 128px;
  }

  .scroll-cue {
    top: calc(max(348px, 93vw) - 68px);
    font-size: 14px;
  }

  .about-section {
    padding: 58px 12px 54px;
  }

  .about-heading h2 {
    max-width: 100%;
    font-size: clamp(32px, 8.5vw, 49px);
  }

  .about-heading h2 span:first-child {
    display: inline;
  }

  .about-heading p {
    max-width: 450px;
    font-size: clamp(20px, 5.1vw, 24px);
  }

  .expertise-grid {
    margin-top: 62px;
  }

  .expertise-card {
    min-height: 120px;
    gap: 18px;
    padding: 24px 22px;
    border-radius: 34px;
  }

  .metric-icon {
    width: 60px;
    height: 60px;
  }

  .expertise-card strong {
    font-size: 29px;
  }

  .expertise-card div span {
    font-size: 18px;
  }

  .about-story-section {
    padding: 58px 18px 64px;
  }

  .about-story-copy h2 {
    max-width: 350px;
    font-size: clamp(34px, 8.9vw, 44px);
  }

  .about-story-text {
    max-width: 300px;
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.5;
    overflow-wrap: break-word;
  }

  .about-story-text p + p {
    margin-top: 16px;
  }

  .services-section {
    padding-inline: 12px;
  }

  .services-stage {
    min-height: max(880px, 174vw);
  }

  .services-intro h2 {
    font-size: clamp(30px, 8.6vw, 44px);
  }

  .services-intro p {
    max-width: 300px;
    width: min(100%, 300px);
    font-size: clamp(18px, 4.8vw, 22px);
  }

  .mobile-service-carousel {
    width: min(calc(100vw - 80px), 300px);
    margin-top: 34px;
  }

  .mobile-service-carousel .service-card {
    min-height: 255px;
    padding: 30px 24px;
    border-radius: 30px;
  }

  .trust-section {
    padding: 62px 16px 68px;
  }

  .trust-container h2 {
    max-width: 350px;
    font-size: clamp(34px, 8.9vw, 44px);
  }

  .trust-list {
    width: min(100%, 310px);
  }

  .trust-card {
    padding-inline: 16px;
  }

  .trust-card-toggle {
    grid-template-columns: 36px minmax(0, 1fr);
    column-gap: 7px;
    padding-right: 40px;
  }

  .trust-title {
    font-size: clamp(20px, 5.35vw, 24px);
  }

  .tap-icon {
    top: 22px;
    right: 16px;
    width: 30px;
    height: 30px;
    font-size: 22px;
  }

  .trust-card p {
    margin-left: 36px;
    font-size: 17px;
  }

  .trust-card.is-open,
  .trust-card:focus-within {
    min-height: 216px;
  }

  .testimonials-section {
    padding: 62px 16px 70px;
  }

  .testimonials-word {
    top: 70px;
    font-size: clamp(56px, 17vw, 78px);
  }

  .testimonials-grid {
    width: min(100%, 330px);
    padding-top: 96px;
  }

  .testimonial-card {
    min-height: 210px;
    padding: 26px 22px;
    border-radius: 20px;
  }

  .testimonial-card blockquote {
    font-size: 17px;
  }

  .short-notice-section {
    min-height: 512px;
    padding: 66px 18px 72px;
  }

  .short-notice-bg::before {
    background:
      radial-gradient(ellipse at center, transparent 0 27%, rgba(0, 0, 0, 0.9) 62%, var(--black) 79%),
      radial-gradient(circle, rgba(255, 255, 255, 0.36) 0 2.2px, transparent 3px);
    background-size: 100% 100%, 11px 11px;
    transform: rotate(2deg) scale(1.7);
  }

  .short-notice-bg::after {
    opacity: 0.32;
  }

  .dot-one {
    top: 3%;
    left: 15%;
    width: 20px;
    height: 20px;
  }

  .dot-two {
    top: 67%;
    right: 5%;
    width: 18px;
    height: 18px;
  }

  .dot-three,
  .dot-four,
  .dot-five {
    display: none;
  }

  .short-notice-copy h2 {
    font-size: clamp(39px, 10vw, 50px);
    line-height: 1.04;
  }

  .short-notice-copy .appointment-line span {
    display: block;
  }

  .short-notice-copy p {
    max-width: 350px;
    margin-top: 30px;
    font-size: clamp(20px, 5vw, 24px);
    line-height: 1.16;
  }

  .notice-cta {
    min-height: 58px;
    margin-top: 44px;
    background: var(--white);
    color: var(--black);
    font-size: 19px;
  }

  .notice-cta > span:first-child {
    padding-inline: 16px;
  }

  .notice-cta .arrow-orb {
    width: 48px;
    height: 48px;
  }

  .doctor-profile-main {
    padding-top: 112px;
  }

  .doctor-profile-hero,
  .doctor-achievements,
  .doctor-expertise-section,
  .doctor-testimonials {
    width: min(100% - 32px, 430px);
  }

  .doctor-profile-hero {
    gap: 28px;
  }

  .doctor-profile-photo {
    border-radius: 32px;
  }

  .doctor-profile-intro h1 {
    font-size: clamp(43px, 13vw, 58px);
  }

  .doctor-profile-intro p {
    font-size: 17px;
  }

  .doctor-profile-cta {
    min-height: 58px;
    font-size: 17px;
  }

  .doctor-achievements {
    margin-top: 58px;
    padding: 24px;
    border-radius: 32px;
  }

  .doctor-story {
    width: min(100% - 32px, 430px);
    margin-top: 54px;
  }

  .doctor-story h2 {
    font-size: clamp(32px, 9.5vw, 43px);
  }

  .doctor-story-copy p {
    font-size: 16px;
    line-height: 1.48;
  }

  .doctor-achievements-copy h2,
  .doctor-expertise-section h2,
  .doctor-testimonials h2 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.04;
  }

  .doctor-stat-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }

  .doctor-stat-grid article {
    min-height: 0;
  }

  .doctor-stat-grid span {
    margin-inline: auto;
  }

  .doctor-expertise-section,
  .doctor-testimonials {
    margin-top: 62px;
  }

  .doctor-testimonials {
    padding-bottom: 72px;
  }

  .doctor-expertise-marquee {
    margin-inline: -16px;
  }

  .doctor-expertise-grid {
    gap: 14px;
    animation-duration: 38s;
  }

  .doctor-expertise-grid article {
    flex-basis: min(82vw, 300px);
    min-height: 232px;
  }

  .gallery-section {
    padding: 62px 0 78px;
  }

  .gallery-heading {
    width: min(100% - 36px, 420px);
    margin-bottom: 28px;
  }

  .gallery-heading h2 {
    font-size: clamp(36px, 11vw, 48px);
    line-height: 1.04;
  }

  .gallery-slider {
    mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
  }

  .gallery-track {
    gap: 16px;
    padding-inline: 16px;
    animation-duration: 42s;
  }

  .gallery-card {
    flex-basis: min(72vw, 260px);
    width: min(72vw, 260px);
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(15, 24, 28, 0.13);
  }

  .gallery-card:nth-child(2n),
  .gallery-card:nth-child(3n) {
    margin-top: 12px;
  }

  .appointment-modal {
    padding: 10px;
  }

  .appointment-dialog {
    max-height: calc(100vh - 20px);
    padding: 30px 18px 22px;
    border-radius: 28px;
  }

  .appointment-close {
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    font-size: 29px;
  }

  .appointment-modal-copy {
    padding-right: 48px;
  }

  .appointment-modal-copy h2 {
    max-width: 260px;
    font-size: clamp(31px, 9vw, 40px);
  }

  .appointment-modal-copy p {
    margin-top: 14px;
    font-size: 17px;
  }

  .appointment-form {
    margin-top: 26px;
    gap: 16px;
  }

  .appointment-choice {
    gap: 10px;
  }

  .choice-pill {
    flex: 1 1 130px;
  }

  .choice-pill span {
    width: 100%;
    min-height: 50px;
    padding-inline: 16px;
    font-size: 16px;
  }

  .appointment-choice legend,
  .form-field > span {
    font-size: 16px;
  }

  .form-field input,
  .form-field select {
    min-height: 54px;
    font-size: 16px;
  }

  .appointment-submit {
    min-height: 58px;
    font-size: 17px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }

  .whatsapp-icon {
    width: 58px;
    height: 58px;
  }

  .whatsapp-tooltip {
    display: none;
  }

  .thank-you-shell {
    padding: 18px;
  }

  .thank-you-card {
    padding: 34px 22px;
    border-radius: 32px;
  }

  .thank-you-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
  }

  .thank-you-icon svg {
    width: 36px;
    height: 36px;
  }

  .thank-you-card h1 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .thank-you-card p {
    font-size: 17px;
  }

  .site-footer {
    padding: 66px 18px 46px;
  }

  .footer-brand {
    gap: 38px;
  }

  .footer-brand img {
    width: min(82vw, 300px);
  }

  .footer-brand p,
  .footer-block p {
    font-size: 17px;
  }

  .footer-brand p {
    max-width: 290px;
  }

  .footer-block p {
    max-width: 305px;
  }

  .footer-block h2 {
    font-size: 27px;
  }

  .footer-info {
    gap: 38px;
  }

  .inner-page-main {
    padding-top: 112px;
  }

  .services-page-hero,
  .contact-hero,
  .service-detail-list,
  .contact-grid,
  .map-section {
    width: min(100% - 32px, 430px);
  }

  .services-page-hero h1,
  .contact-hero h1 {
    font-size: clamp(37px, 11vw, 52px);
  }

  .services-page-hero > p,
  .contact-hero > p {
    font-size: 17px;
  }

  .service-detail-list {
    gap: 20px;
    margin-top: 44px;
  }

  .service-detail {
    padding: 24px;
    border-radius: 30px;
  }

  .service-detail-copy {
    padding: 22px;
    border-radius: 24px;
  }

  .service-detail-copy p {
    font-size: 17px;
    line-height: 1.45;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 42px;
  }

  .contact-card {
    min-height: 0;
    padding: 24px;
    border-radius: 28px;
  }

  .map-section {
    padding: 12px;
    border-radius: 28px;
  }

  .map-heading {
    padding: 8px 8px 0;
  }

  .map-heading h2 {
    font-size: 28px;
  }

  .map-heading a {
    min-height: 42px;
    font-size: 15px;
  }

  .map-section iframe {
    min-height: 360px;
    border-radius: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .gallery-slider {
    overflow-x: auto;
    mask-image: none;
  }

  .gallery-track {
    animation: none !important;
  }

  .doctor-expertise-marquee {
    overflow-x: auto;
    mask-image: none;
  }

  .doctor-expertise-grid {
    animation: none !important;
  }
}
