:root {
  --ivory: #fbfaf6;
  --cream: #f5f0e7;
  --cream-2: #efe7d8;
  --forest: #31aeb5;
  --forest-2: #258b91;
  --gold: #0f767c;
  --gold-2: #8ee4e8;
  --ink: #14383b;
  --muted: #68716d;
  --line: rgba(49, 174, 181, 0.18);
  --card: rgba(255, 255, 255, 0.86);
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
  --soft-shadow: 0 10px 28px rgba(0, 0, 0, 0.10);
  --page-gutter: clamp(24px, 4vw, 52px);
  --site-gutter: clamp(86px, 10vw, 160px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --fs-xs: 12px;
  --fs-sm: 14px;
  --fs-md: 16px;
  --fs-lg: 20px;
  --fs-display: 32px;
  --fs-h1: clamp(42px, 4.2vw, 58px);
  --fs-h2: clamp(28px, 3.1vw, 42px);
  --fs-h3: 16px;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--ivory);
  font-family: Outfit, Arial, sans-serif;
  font-size: var(--fs-sm);
  line-height: 1.55;
}

body > * {
  max-width: 100%;
}

body.popup-open {
  overflow: hidden;
}

.home-page {
  --home-copyright-height: 40px;
  --home-footer-height: 350px;
  padding-bottom: var(--home-footer-height);
}

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

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

button,
input,
select {
  font: inherit;
}

.top-ribbon {
  position: relative;
  z-index: 60;
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 var(--site-gutter);
  color: #ffffff;
  background: #05646a;
  font-size: 12px;
  font-weight: 400;
}

.top-ribbon > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.top-help {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.top-help > span,
.top-help > a,
.top-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.top-help > span:first-child {
  font-weight: 600;
}

.top-help > a,
.top-help > span:not(:first-child) {
  position: relative;
  padding-left: 14px;
}

.top-help > a::before,
.top-help > span:not(:first-child)::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 15px;
  content: "";
  background: rgba(255, 255, 255, 0.55);
  transform: translateY(-50%);
}

.top-email {
  margin-left: auto;
}

.top-ribbon-right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.top-social {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 0;
}

.top-social a {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  font-size: 11px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 120;
  display: grid;
  grid-template-columns: 260px minmax(360px, 1fr) 190px;
  height: 70px;
  align-items: center;
  padding: 0 var(--site-gutter);
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid rgba(13, 59, 49, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(16px);
  animation: navDrop 900ms var(--ease) both;
  background:white;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.logo-image {
  width: auto;
  height: 52px;
  max-width: 58px;
  object-fit: contain;
}

.logo strong {
  display: block;
  color: var(--forest);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
}

.logo small {
  display: block;
  margin-top: 4px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.nav-links {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 28px);
  color: #101b18;
  font-size: 13px;
  font-weight: 600;
}

.header-cta {
  grid-column: 3;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 400;
}

.nav-links a:not(.nav-cta) {
  height: 100%;
}

.nav-links a:not(.nav-cta)::after {
  position: absolute;
  left: 0;
  bottom: 11px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--forest);
  transition: width 260ms ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta,
.btn,
.small-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
 /*  border-radius: 6px; */
  cursor: pointer;
  font-weight: 400;
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), background 260ms ease;
}

.nav-cta {
  justify-self: end;
  height: 36px;
  min-height: 36px;
  padding: 0 12px;
  gap: 8px;
  color: #fff;
  background: var(--forest);
/*   box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16); */
}

.nav-cta i {
  font-size: 13px;
}

.btn {
  min-height: 45px;
  padding: 0 22px;
  gap: 9px;
  font-size: 13px;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--forest), #23858b);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.small-btn {
  min-height: 38px;
  padding: 0 16px;
  color: #fff;
  background: var(--forest);
  font-size: 12px;
}

.btn:hover,
.nav-cta:hover,
.small-btn:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.nav-toggle:focus,
.nav-toggle:focus-visible,
.nav-toggle:active {
  outline: 0;
  border-color: var(--line);
  box-shadow: none;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--forest);
  transform-origin: center;
  transition: opacity 180ms ease, transform 220ms var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 520px;
  height: min(74vh, 650px);
  overflow: hidden;
  background: #ffffff;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(420px, 1.15fr);
  align-items: center;
  opacity: 0;
  background-size: 104%;
  pointer-events: none;
  transition: opacity 760ms var(--ease), transform 760ms var(--ease), background-size 1400ms var(--ease);
  transform: scale(1.018);
}

.hero-slide.is-active {
  opacity: 1;
  background-size: 100%;
  pointer-events: auto;
  transform: scale(1);
}

.hero-slide::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
}

.hero-slide-original {
  grid-template-columns: minmax(520px, 0.82fr) minmax(540px, 1.18fr);
  background:
    linear-gradient(90deg, rgba(250, 253, 253, 0.94) 0%, rgba(250, 253, 253, 0.76) 31%, rgba(250, 253, 253, 0.18) 52%, rgba(250, 253, 253, 0) 72%),
    url("assets/optimized/hero-child.jpg") center / cover no-repeat;
}

.hero-slide-original::before {
  background:
    radial-gradient(circle at 8% 48%, rgba(49, 174, 181, 0.12), transparent 32%);
}

.hero-slide-care {
  grid-template-columns: minmax(560px, 0.62fr) minmax(560px, 1.38fr);
  background:
    linear-gradient(90deg, rgba(245, 253, 253, 0.97) 0%, rgba(245, 253, 253, 0.78) 24%, rgba(245, 253, 253, 0.12) 42%, rgba(245, 253, 253, 0) 58%),
    url("assets/optimized/hero-care.jpg") center / cover no-repeat;
}

.hero-slide-checkup {
  grid-template-columns: minmax(560px, 0.62fr) minmax(560px, 1.38fr);
  background:
    linear-gradient(90deg, rgba(245, 253, 253, 0.98) 0%, rgba(245, 253, 253, 0.86) 31%, rgba(245, 253, 253, 0.18) 58%, rgba(245, 253, 253, 0.02) 100%),
    url("assets/sliding/h1-rev-slider-img-3.jpg") center center / cover no-repeat;
}

.hero-slide-care::before {
  background:
    radial-gradient(circle at 5% 56%, rgba(49, 174, 181, 0.12), transparent 30%),
    linear-gradient(135deg, transparent 0 86%, rgba(49, 174, 181, 0.88) 86% 100%);
}

.hero-pattern {
  display: none;
}

.hero-copy {
  position: relative;
  z-index: 3;
  grid-column: 2;
  justify-self: end;
  max-width: 520px;
  margin-left: 0;
  margin-right: clamp(34px, 8vw, 150px);
  padding: 50px 0 92px;
}

.hero-slide-original .hero-copy {
  grid-column: 1;
  justify-self: start;
  max-width: 560px;
  margin-left: clamp(72px, 9vw, 150px);
  margin-right: 0;
  padding: 34px 0 76px;
}

.hero-care-copy {
  position: relative;
  z-index: 3;
  grid-column: 1;
  max-width: 560px;
  margin-left: clamp(72px, 9vw, 150px);
  padding: 34px 0 76px;
}

.hero-care-copy h1 {
  color: #20313a;
  font-size: clamp(38px, 3.25vw, 56px);
  line-height: 1.12;
}

.hero-care-copy h1 span {
  color: var(--forest);
}

.hero-care-copy .hero-text {
  max-width: 330px;
  color: #5d6669;
  font-size: 14px;
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .hero-text,
.hero-copy .hero-actions,
.hero-care-copy .eyebrow,
.hero-care-copy h1,
.hero-care-copy .hero-text,
.hero-care-actions {
  opacity: 0;
  will-change: opacity, transform;
}

.hero-slide.is-active.hero-animate .hero-copy .eyebrow,
.hero-slide.is-active.hero-animate .hero-copy h1,
.hero-slide.is-active.hero-animate .hero-copy .hero-text {
  animation: heroTextFromRight 780ms var(--ease) both;
}

.hero-slide-original.is-active.hero-animate .hero-copy .eyebrow,
.hero-slide-original.is-active.hero-animate .hero-copy h1,
.hero-slide-original.is-active.hero-animate .hero-copy .hero-text {
  animation-name: heroTextFromLeft;
}

.hero-slide.is-active.hero-animate .hero-copy .hero-actions {
  animation: heroScaleIn 760ms var(--ease) both;
}

.hero-slide.is-active.hero-animate .hero-care-copy .eyebrow,
.hero-slide.is-active.hero-animate .hero-care-copy h1,
.hero-slide.is-active.hero-animate .hero-care-copy .hero-text {
  animation: heroTextFromLeft 780ms var(--ease) both;
}

.hero-slide.is-active.hero-animate .hero-care-actions {
  animation: heroScaleIn 760ms var(--ease) both;
}

.hero-slide.is-active.hero-animate .hero-copy h1,
.hero-slide.is-active.hero-animate .hero-care-copy h1 {
  animation-delay: 120ms;
}

.hero-slide.is-active.hero-animate .hero-copy .hero-text,
.hero-slide.is-active.hero-animate .hero-care-copy .hero-text {
  animation-delay: 230ms;
}

.hero-slide.is-active.hero-animate .hero-copy .hero-actions,
.hero-slide.is-active.hero-animate .hero-care-actions {
  animation-delay: 340ms;
}

.hero-care-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
  margin-top: 28px;
}

.hero-care-features div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: start;
}

.hero-care-features span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  font-size: 18px;
}

.hero-care-features p {
  color: #5f686b;
  font-size: 12px;
  line-height: 1.45;
}

.hero-care-features strong {
  display: block;
  margin-bottom: 4px;
  color: #20313a;
  font-size: 13px;
  font-weight: 700;
}

.hero-care-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.hero-outline-btn {
  color: var(--forest);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--forest);
  box-shadow: none;
}

.eyebrow,
.section-kicker {
  display: block;
  margin: 0 0 14px;
  color: var(--forest-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.eyebrow::after,
.section-kicker::after,
.section-line {
  display: block;
  width: 32px;
  height: 2px;
  margin-top: 10px;
  content: "";
  background: var(--gold);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  margin: 0;
  color: var(--forest);
  font-family: Outfit, Arial, sans-serif;
  letter-spacing: 0;
}

h1 {
  font-size: var(--fs-h1);
  line-height: 1.08;
  font-weight: 700;
}

h1 span {
  color: var(--gold);
}

h2 {
  font-size: var(--fs-h2);
  line-height: 1.16;
}

h3 {
  margin: 0;
  color: #111;
  font-size: var(--fs-h3);
  font-weight: 700;
}

p {
  margin: 0;
}

.hero-text {
  max-width: 320px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.hero-actions {
  margin-top: 30px;
}

.reveal-line {
  opacity: inherit;
  transform: none;
  animation: none;
}

.hero-copy .reveal-line:nth-child(1) {
  animation-delay: 180ms;
}

.hero-copy .reveal-line:nth-child(2) {
  animation-delay: 320ms;
}

.hero-copy .reveal-line:nth-child(3) {
  animation-delay: 470ms;
}

.hero-visual {
  display: none;
}

.angle-panel {
  display: none;
}

.hero-visual img {
  position: absolute;
  inset: auto 0 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
  filter: saturate(0.92) contrast(1.02);
  animation: floatIdle 7000ms ease-in-out infinite;
  will-change: transform;
}

.hero-nav {
  position: absolute;
  top: 50%;
  z-index: 8;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  padding: 0;
  color: #20313a;
  background: rgba(255, 255, 255, 0.9);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 220ms var(--ease), background 220ms ease, color 220ms ease;
}

.hero-nav:hover {
  color: #ffffff;
  background: var(--forest);
  transform: translateY(-50%) scale(1.06);
}

.hero-prev {
  left: 28px;
}

.hero-next {
  right: 28px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 8;
  display: flex;
  gap: 13px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  background: rgba(16, 118, 124, 0.22);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: background 220ms ease, transform 220ms var(--ease);
}

.hero-dots button.is-active {
  background: var(--forest);
  transform: scale(1.14);
}

.feature-strip {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: calc(100% - (var(--site-gutter) * 2));
  max-width: none;
  margin: -22px auto 0;
  padding: 0 28px;
  background: #fff;
  border: 1px solid rgba(13, 59, 49, 0.08);
/*   border-radius: 22px; */
  box-shadow: var(--shadow);
}

.feature-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 118px;
  padding: 20px 24px;
  border-right: 1px solid rgba(13, 59, 49, 0.1);
}

.feature-card:last-child {
  border-right: 0;
}

.feature-icon,
.booking-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--forest-2);
  background: #e9f0e3;
  border-radius: 50%;
  font-weight: 800;
}

.feature-icon i {
  font-size: 20px;
}

.feature-card h2 {
  margin-bottom: 7px;
  color: #111;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.feature-card p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.video-section {
  position: relative;
  z-index: 20;
  width: 100%;
  min-height: 520px;
  overflow: hidden;
  background: #31aeb5;
}

.video-section video {
  display: block;
  width: 100%;
  height: min(78vh, 720px);
  min-height: 520px;
  object-fit: cover;
}

.video-section::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(20, 56, 59, 0.36);
  pointer-events: none;
}

.video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--site-gutter);
  text-align: center;
  pointer-events: none;
}

.video-overlay h2 {
  max-width: 980px;
  color: #ffffff;
  font-family: Outfit, Arial, sans-serif;
  font-size: clamp(36px, 5.2vw, 72px);
  font-weight: 600;
  line-height: 1.05;
}

.before-after-section {
  position: relative;
  z-index: 21;
  isolation: isolate;
  padding: 68px var(--site-gutter) 0;
  overflow: hidden;
  background: #ffffff;
}

.before-after-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.before-after-doctor {
  align-self: end;
}

/* .before-after-doctor {
  overflow: hidden;
  align-self: stretch;
  min-height: 390px;
  background: #f7f8f4;
  border: 1px solid rgba(13, 59, 49, 0.09);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
} */

.before-after-doctor img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.before-after-content {
  display: grid;
  gap: 22px;
  min-width: 0;
  padding-bottom: 0;
}

.before-after-heading {
  display: grid;
  justify-items: start;
  max-width: 640px;
  text-align: left;
}

.before-after-heading .section-kicker::after {
  margin-inline: 0;
}

.before-after-heading h2 {
  font-size: clamp(35px, 2.7vw, 35px);
  font-weight: 550;
}

.before-after-heading p {
  max-width: 560px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.before-after-compare {
  --compare-position: 50%;
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #f7f8f4;
  border: 1px solid rgba(13, 59, 49, 0.09);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  cursor: ew-resize;
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease);
}

.before-after-compare:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.compare-image {
  display: block;
  width: 100%;
  aspect-ratio: 1024 / 355;
  object-fit: cover;
  object-position: center;
  user-select: none;
  pointer-events: none;
}

.compare-before-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--compare-position)) 0 0);
}

.compare-before {
  width: 100%;
  max-width: none;
}

.compare-label {
  position: absolute;
  bottom: 14px;
  z-index: 1;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 13px;
  color: #ffffff;
  background: rgba(13, 59, 49, 0.86);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  backdrop-filter: blur(8px);
}

.compare-label-before {
  left: 14px;
}

.compare-label-after {
  right: 14px;
}

.compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--compare-position);
  z-index: 2;
  width: 4px;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.16), 0 0 18px rgba(0, 0, 0, 0.20);
  transform: translateX(-50%);
  pointer-events: none;
}

.compare-divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--forest);
  background: #ffffff;
  border: 1px solid rgba(13, 59, 49, 0.16);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  transform: translate(-50%, -50%);
}

.compare-range {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: ew-resize;
  opacity: 0;
  appearance: none;
}

.before-after-cta {
  gap: 8px;
}

.section {
  padding: 56px var(--site-gutter);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  min-height: 620px;
  background: #ffffff;
  padding-top: 64px;
  padding-bottom: 92px;
}

.about-visual img {
  width: min(100%, 520px);
  margin-inline: auto;
  object-fit: contain;
}

.about-copy {
  max-width: 560px;
}

.intro-section p {
  max-width: 520px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.welcome-section {
  overflow: hidden;
  background: #ffffff;
  padding-top: 70px;
  padding-bottom: 74px;
}

.welcome-heading {
  display: grid;
  justify-items: center;
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.welcome-heading .section-kicker::after {
  margin-inline: auto;
}

.welcome-heading h2 {
  max-width: 720px;
}

.welcome-heading p {
  max-width: 560px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.welcome-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(260px, 360px) minmax(260px, 1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.welcome-list {
  display: grid;
  gap: 28px;
}

.welcome-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
}

.welcome-list-left .welcome-item {
  grid-template-columns: 1fr 58px;
  text-align: right;
}

.welcome-list-left .welcome-item > span {
  grid-column: 2;
  grid-row: 1;
}

.welcome-list-left .welcome-item > div {
  grid-column: 1;
  grid-row: 1;
}

.welcome-item span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #ffffff;
  background: #31aeb5;
  border-radius: 50%;
  font-size: 22px;
}

.welcome-item h3 {
  color: #15a88f;
  font-size: 18px;
  font-weight: 600;
}

.welcome-item p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.welcome-visual {
  align-self: end;
}

.welcome-visual img {
  width: min(100%, 360px);
  margin: 0 auto;
  object-fit: contain;
}

.section-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.section-row p {
  max-width: 380px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.services-section {
  background: #ffffff;
}

.services-section .section-row {
  justify-content: center;
  text-align: center;
}

.services-section .section-row > div {
  display: grid;
  justify-items: center;
}

.services-section .section-line {
  margin-inline: auto;
}

.services-section .section-row p {
  max-width: 520px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  width: 100%;
  min-height: 178px;
  padding: 0;
  overflow: hidden;
  text-align: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  transition: none;
}

.service-card::before {
  display: none;
}

.service-card:hover {
  transform: none;
}

.service-card:hover::before {
  opacity: 0;
}

.service-card-inner {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 178px;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 16px 38px rgba(8, 48, 55, 0.12);
  transition: box-shadow 280ms var(--ease);
}

.service-card:hover .service-card-inner,
.service-card:focus-within .service-card-inner {
  transform: none;
  box-shadow: 0 24px 56px rgba(8, 48, 55, 0.18);
}

.service-card-face {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 178px;
  padding: 24px 20px 22px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(13, 59, 49, 0.09);
  box-shadow: none;
}

.service-card-front {
  z-index: 2;
  transform: translateX(0);
  transition: transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.service-card-back {
  z-index: 3;
  padding: 0;
  opacity: 1;
  pointer-events: none;
  transform: translateX(-100%);
  transition: transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.service-card-back img {
  width: 100%;
  height: 100%;
  min-height: 178px;
  object-fit: cover;
  object-position: center;
}

.service-card:hover .service-card-back,
.service-card:focus-within .service-card-back {
  transform: translateX(0);
}

.service-card:hover .service-card-front,
.service-card:focus-within .service-card-front {
  transform: translateX(100%);
}

.service-icon {
  position: relative;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin: 0 auto 16px;
  color: var(--forest);
  background: #f1efe7;
  border: 1px solid rgba(13, 59, 49, 0.11);
  border-radius: 50%;
  box-shadow: inset 0 0 0 7px rgba(255, 255, 255, 0.72);
}

.service-icon i {
  font-size: 24px;
}

.service-card h3 {
  position: relative;
  margin: 0 0 9px;
  color: var(--forest);
  font-size: 15px;
}

.service-card p {
  position: relative;
  max-width: 240px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.58;
}

.service-showcase-section {
  position: relative;
  overflow: hidden;
  padding: 76px var(--site-gutter);
  color: #ffffff;
  background:
    radial-gradient(circle at 58% 36%, rgba(49, 174, 181, 0.18), transparent 26%),
    radial-gradient(circle at 78% 50%, rgba(255, 255, 255, 0.06), transparent 28%),
    linear-gradient(115deg, #030711 0%, #07131b 52%, #061a21 100%);
}

.service-showcase-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.42;
  pointer-events: none;
}

.service-showcase-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(36px, 6vw, 82px);
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.showcase-copy {
  max-width: 430px;
}

.showcase-kicker {
  display: inline-flex;
  min-height: 31px;
  align-items: center;
  padding: 0 14px;
  color: #2ee4e8;
  border: 1px solid rgba(46, 228, 232, 0.66);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.showcase-copy h2 {
  margin-top: 22px;
  color: #ffffff;
  font-size: clamp(31px, 3vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  text-align: left;
}

.showcase-copy h2 strong {
  color: #28d8de;
  font-weight: 700;
}

.showcase-copy > p {
  max-width: 360px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.65;
}

.showcase-copy > p::before {
  display: block;
  width: 54px;
  height: 2px;
  margin-bottom: 22px;
  content: "";
  background: #28d8de;
}

.showcase-benefits {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}

.showcase-benefits div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 15px;
  align-items: center;
}

.showcase-benefits span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: #28d8de;
  background: rgba(40, 216, 222, 0.08);
  border: 1px solid rgba(40, 216, 222, 0.38);
  border-radius: 50%;
  font-size: 20px;
}

.showcase-benefits p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.5;
}

.showcase-benefits strong {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
}

.service-showcase-panel {
  width: 100%;
  overflow: hidden;
  background: rgba(5, 23, 29, 0.58);
  border: 1px solid rgba(64, 228, 233, 0.32);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.showcase-image-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  min-height: 280px;
  background: #dfeceb;
}

.showcase-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 820ms ease, transform 1400ms var(--ease);
}

.showcase-image.is-active {
  opacity: 1;
  transform: scale(1);
}

.showcase-image:nth-child(1) {
  object-position: center;
}

.showcase-image:nth-child(2) {
  object-position: center;
}

.showcase-image:nth-child(3) {
  object-position: center;
}

.showcase-count {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(3, 20, 25, 0.74);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.showcase-count strong {
  color: #28d8de;
}

.helix-section {
  position: relative;
  z-index: 1;
  height: 580vh;
  margin-bottom: -70vh;
  background:
    radial-gradient(circle at 58% 42%, rgba(0, 195, 255, 0.28), transparent 28%),
    radial-gradient(circle at 72% 58%, rgba(170, 55, 255, 0.22), transparent 28%),
    linear-gradient(135deg, #02050d 0%, #050815 44%, #071829 100%);
}

.helix-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  perspective: 1600px;
  background:
    radial-gradient(circle at 47% 40%, rgba(7, 155, 255, 0.28), transparent 28%),
    radial-gradient(circle at 68% 45%, rgba(181, 50, 255, 0.24), transparent 25%),
    radial-gradient(circle at 28% 74%, rgba(0, 240, 255, 0.12), transparent 22%),
    linear-gradient(115deg, rgba(1, 4, 13, 0.99), rgba(4, 8, 24, 0.98) 48%, rgba(5, 21, 35, 0.98));
}

.helix-sticky::before {
  position: absolute;
  inset: 0;
  display: block;
  content: "";
  background:
    radial-gradient(circle at 63% 50%, rgba(0, 225, 255, 0.10), transparent 36%),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(0, 225, 255, 0.08);
  border-radius: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 34px 110px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  pointer-events: none;
}

.helix-sticky::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  content: "";
  background:
    linear-gradient(rgba(0, 210, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180, 80, 255, 0.030) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 55% 50%, #000 0%, transparent 70%);
  pointer-events: none;
}

.helix-copy {
  position: absolute;
  left: clamp(42px, 5vw, 96px);
  top: 50%;
  z-index: 620;
  width: min(28vw, 390px);
  color: #ffffff;
  transform: translateY(-50%);
  transition: opacity 780ms var(--ease), transform 780ms var(--ease);
}

.helix-kicker {
  display: inline-flex;
  min-height: 31px;
  align-items: center;
  padding: 0 14px;
  color: #28d8de;
  border: 1px solid rgba(40, 216, 222, 0.72);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.helix-copy h2 {
  margin-top: 22px;
  color: #ffffff;
  font-size: clamp(30px, 2.55vw, 44px);
  font-weight: 700;
  line-height: 1.22;
  text-shadow: 0 16px 44px rgba(0, 0, 0, 0.34);
  text-align: left;
}

.helix-copy h2 strong {
  color: #28cdd3;
  font-weight: 700;
}

.helix-copy > p {
  max-width: 340px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.65;
}

.helix-copy > p::before {
  display: block;
  width: 54px;
  height: 2px;
  margin-bottom: 24px;
  content: "";
  background: #28cdd3;
}

.helix-benefits {
  display: grid;
  gap: 22px;
  margin-top: 32px;
}

.helix-benefits div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
}

.helix-benefits span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #28d8de;
  background: rgba(40, 216, 222, 0.08);
  border: 1px solid rgba(40, 216, 222, 0.42);
  border-radius: 50%;
  box-shadow: inset 0 0 22px rgba(40, 216, 222, 0.12);
  font-size: 22px;
}

.helix-benefits p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.5;
}

.helix-benefits strong {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
}

.helix-service-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.helix-service-list span {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}

.helix-service-list i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--forest);
  background: #e9f0e3;
  border-radius: 50%;
  font-size: 14px;
}

.helix-service-list span {
  transition: color 220ms ease, transform 220ms ease;
}

.helix-service-list span.is-active {
  color: var(--forest);
  transform: translateX(6px);
}

.helix-service-list span.is-active i {
  color: #ffffff;
  background: var(--forest);
}

.helix-card {
  position: absolute;
  left: 43%;
  top: 50%;
  width: 200px;
  height: 120px;
  min-width: 0;
  min-height: 0;
  transform-style: preserve-3d;
  will-change: transform, opacity;
  transition: opacity 180ms ease-out;
}

.helix-card-face {
  position: absolute;
  inset: 0;
  overflow: visible;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background: rgba(8, 21, 32, 0.58);
  border: 1px solid rgba(64, 228, 233, 0.34);
  border-radius: 12px;
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.34),
    inset 0 0 18px rgba(40, 216, 222, 0.08);
  backdrop-filter: blur(14px) saturate(1.12);
}

.helix-card-face::after {
  display: none;
}

.helix-card-face span {
  display: none;
}

.helix-card-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  opacity: 0.95;
  filter: saturate(1.05) contrast(1.02);
}

.helix-card-front {
  transform: rotateY(0deg);
}

.helix-card-back {
  filter: brightness(0.72);
  transform: rotateY(180deg);
}

.helix-info {
  position: absolute;
  top: 50%;
  right: clamp(92px, 9vw, 170px);
  z-index: 650;
  width: min(22vw, 310px);
  height: 360px;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  transform: translateY(-50%);
  transition: opacity 520ms var(--ease), transform 520ms var(--ease), box-shadow 520ms var(--ease);
}

.helix-info.is-switching {
  opacity: 0.76;
  transform: translate(18px, -50%) scale(0.98);
}

.helix-section:not(.is-ready) .helix-copy {
  opacity: 0;
  transform: translateY(-44%);
}

.helix-section:not(.is-ready) .helix-card {
  opacity: 0 !important;
}

.helix-section:not(.is-ready) .helix-info {
  opacity: 0;
  transform: translate(34px, -50%);
}

.helix-section.is-ready .helix-copy {
  opacity: 1;
  transform: translateY(-50%);
}

.helix-section.is-ready .helix-info {
  opacity: 1;
  transform: translateY(-50%);
}

.helix-section.is-ready .helix-info.is-switching {
  opacity: 0.76;
  transform: translate(18px, -50%) scale(0.98);
}

.helix-info::before {
  display: none;
}

.helix-info.has-stack > .helix-info-media,
.helix-info.has-stack > .helix-info-body {
  display: none;
}

.helix-info-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.helix-info-slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: rgba(7, 20, 26, 0.62);
  border: 1px solid rgba(64, 228, 233, 0.42);
  border-radius: 14px;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.36),
    inset 0 0 22px rgba(40, 216, 222, 0.07);
  backdrop-filter: blur(16px) saturate(1.15);
  transform-origin: center;
  transition: opacity 520ms var(--ease), transform 520ms var(--ease), filter 520ms var(--ease);
  will-change: opacity, transform;
}

.helix-info-slide img {
  width: 100%;
  height: 145px;
  object-fit: cover;
  background: #eaf1ed;
  border: 4px solid rgba(255, 255, 255, 0.78);
  border-radius: 14px;
  filter: none;
}

.helix-info-slide-body {
  position: relative;
  padding: 16px 18px 18px;
}

.helix-info-slide-count {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.22);
  border: 0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.helix-info-slide-count strong {
  color: #28d8de;
  font-weight: 700;
}

.helix-info-slide-count span {
  color: rgba(255, 255, 255, 0.62);
}

.helix-info-slide-step {
  display: none;
  min-height: 24px;
  align-items: center;
  padding: 0 12px;
  color: #28d8de;
  background: rgba(40, 216, 222, 0.08);
  border: 1px solid rgba(40, 216, 222, 0.46);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.helix-info-slide h3 {
  margin-top: 0;
  color: #ffffff;
  font-size: clamp(20px, 1.5vw, 24px);
  line-height: 1.12;
}

.helix-info-slide h3::after {
  display: block;
  width: 44px;
  height: 2px;
  margin-top: 10px;
  content: "";
  background: #28d8de;
}

.helix-info-slide p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.5;
}

.helix-info-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eaf1ed;
}

.helix-info-media::after {
  position: absolute;
  inset: auto 18px 18px 18px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--gold), transparent);
}

.helix-info-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 720ms var(--ease);
}

.helix-info:not(.is-switching) .helix-info-image {
  transform: scale(1);
}

.helix-info-body {
  position: relative;
  padding: 22px 24px 24px;
}

.helix-info-step {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  color: var(--forest);
  background: rgba(13, 59, 49, 0.08);
  border: 1px solid rgba(13, 59, 49, 0.1);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.helix-info h3 {
  margin-top: 14px;
  color: #00f1ff;
  font-size: clamp(20px, 2.3vw, 16px);
  line-height: 1.12;
}

.helix-info p {
  margin-top: 12px;
  color:rgb(252, 255, 179);
  font-size: 14px;
  line-height: 1.7;
}

.helix-info-progress {
  display: flex;
  gap: 8px;
  margin-top: 22px;
}

.helix-info-progress span {
  display: block;
  width: 24px;
  height: 3px;
  background: rgba(13, 59, 49, 0.16);
  border-radius: 999px;
}

.helix-info-progress span.is-active {
  width: 46px;
  background: var(--gold);
}

.why-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(520px, 1.35fr);
  gap: 42px;
  align-items: center;
  padding: 34px var(--site-gutter);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 18% 35%, rgba(142, 228, 232, 0.18), transparent 20%),
    radial-gradient(circle at 86% 44%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(135deg, #258b91, #17676c);
}

.why-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.42;
  pointer-events: none;
}

.why-section > * {
  position: relative;
  z-index: 1;
}

.why-section .section-kicker,
.why-section h2 {
  color: #fff;
}

.why-copy p {
  max-width: 410px;
  margin-top: 18px;
  color: #d7e5de;
  font-size: 13px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card {
  min-height: 88px;
  padding: 6px 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.stat-card i {
  display: block;
  margin-bottom: 9px;
  color: #fff;
  font-size: 17px;
}

.stat-card strong {
  display: block;
  color: #fff;
  font-family: Outfit, Arial, sans-serif;
  font-size: 28px;
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: 13px;
  line-height: 1.45;
  white-space: nowrap;
}

.appointment-section {
  position: relative;
  display: grid;
  justify-items: center;
  width: 100%;
  max-width: none;
  min-height: 80vh;
  margin: 0;
  padding: 64px var(--site-gutter) 0;
  background: #ffffff;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.appointment-section::before,
.appointment-section::after {
  display: none;
}

.appointment-main {
  display: grid;
  grid-template-columns: minmax(300px, 410px) minmax(560px, 760px);
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 4vw, 60px);
  width: min(100%, 1200px);
}

.appointment-visual {
  position: relative;
  display: grid;
  justify-self: center;
  place-items: end center;
  align-self: center;
  width: min(100%, 460px);
  aspect-ratio: 1;
  overflow: hidden;
  background: rgb(216, 237, 247);
  border-radius: 50%;
}

.appointment-visual::before {
  display: none;
}

.appointment-visual img {
  position: relative;
  z-index: 1;
  width: 96%;
  max-width: none;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  margin: 0;
}

.appointment-content {
  position: relative;
  display: grid;
  justify-items: center;
  width: min(100%, 760px);
  gap: 8px;
  transform: translateY(10px);
}

.appointment-card {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  aspect-ratio: 1119 / 950;
  min-height: 0;
  padding: 22% 29% 5% 22%;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.appointment-form-frame {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
}

.appointment-card > :not(.appointment-form-frame) {
  position: relative;
  z-index: 1;
}

.appointment-intro {
  position: relative;
  width: 100%;
  text-align: left;
  margin-top: 0;
}

.appointment-intro span {
  display: block;
  color: var(--forest);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
}

.appointment-intro h2 {
  margin-top: 8px;
  color: var(--forest);
  font-family: Outfit, Arial, sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.08;
}

.appointment-intro p {
  max-width: 350px;
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
}

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

.appointment-footer div > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--forest);
  background: #e9f0e3;
  border-radius: 50%;
  font-size: 12px;
}

.appointment-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  gap: 12px;
  max-width: none;
  margin-top: 24px;
  padding: 0;
}

.appointment-form label {
  position: relative;
  display: block;
  font-size: var(--fs-sm);
/*   font-weight: 400; */
}

.date-field > span:not(.sr-only) {
  position: absolute;
  left: 2px;
  top: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1;
  pointer-events: none;
}

.appointment-form input,
.appointment-form select {
  width: 100%;
  height: 36px;
  padding: 2px 2px 9px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(13, 59, 49, 0.28);
  border-radius: 0;
  outline: none;
  font-size: 12px;
  font-weight: 500;
}

.date-field::after {
  position: absolute;
  top: 2px;
  left: 95px;
  color: var(--muted);
  content: "*";
  font-size: 12px;
  pointer-events: none;
}

.appointment-form select {
  appearance: auto;
}

.appointment-form input::placeholder {
  color: var(--muted);
  opacity: 1;
}

.appointment-form input:focus,
.appointment-form select:focus {
  border-bottom-color: var(--forest);
}

.appointment-actions,
.appointment-form .form-message {
  grid-column: 1 / -1;
}

.appointment-form .form-message {
  text-align: center;
}

.appointment-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 14px;
  justify-content:center;
}

.appointment-form .btn {
  min-width: 146px;
  min-height: 44px;
  padding: 0 24px;
  /* border-radius: 999px; */
/*   background: var(--forest); */
  box-shadow: none;
  font-size: 12px;
  font-weight: 400;
  position:relative;
}

.appointment-actions a {
  text-decoration: underline;
}

.form-message {
  min-height: 18px;
  color: var(--forest);
  font-size: var(--fs-xs);
  font-weight: 400;
}

.smile-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.64fr) minmax(300px, 0.36fr);
  align-items: center;
  width: 100%;
  min-height: 350px;
  padding: 44px var(--site-gutter);
  overflow: hidden;
  color: #ffffff;
  isolation: isolate;
  background: url("assets/optimized/smile-banner.jpg") center / cover no-repeat;
  border-radius: 0;
}

.smile-banner::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(35, 105, 157, 0.98) 0%, rgba(35, 105, 157, 0.45) 38%, rgba(35, 105, 157, 0.20) 54%, rgba(35, 105, 157, 0) 72%);
  pointer-events: none;
}

.smile-banner-copy {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin-left: clamp(18px, 3vw, 56px);
}

.smile-banner h2 {
  color: #ffffff;
  font-family: Outfit, Arial, sans-serif;
  font-size: clamp(34px, 2.8vw, 44px);
  font-weight: 400;
  line-height: 1.14;
}

.smile-banner p {
  max-width: 560px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
}

.smile-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
}

.smile-banner-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 40px;
  gap: 12px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 400;
}

.smile-banner-actions a + a {
  color: #2d80ee;
  background: #ffffff;
  border-color: #ffffff;
}

.doctor-section {
  display: grid;
  gap: 24px;
  padding: 58px var(--site-gutter);
 /*  background:
    radial-gradient(circle at 88% 36%, rgba(13, 59, 49, 0.08), transparent 24%),
    linear-gradient(90deg, #ffffff, #fbfaf6); */
    background: #fffbfb;
}

.doctor-heading {
  display: grid;
  justify-items: center;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.doctor-heading h2 {
  font-size: clamp(26px, 2.5vw, 34px);
  font-weight: 550;
}

.doctor-heading .section-kicker::after {
  margin-inline: auto;
}

.doctor-heading p {
  max-width: 390px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.doctor-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

.doctor-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(13, 59, 49, 0.09);
/*   border-radius: 8px; */
  box-shadow:0 5px 15px rgba(0, 0, 0, 0.10);
  transition: transform 180ms var(--ease);
}

.doctor-card:hover {
  transform: scale(1.045);
}

.doctor-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: top center;
  background: #f6f8f5;
}

.doctor-card div {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  flex: 1;
  padding: 12px 14px 14px;
}

.doctor-card h3 {
  color: var(--forest);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.doctor-card p {
  margin-top: 5px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
}

.doctor-card span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
  font-weight: 400;
}

.doctor-card small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.35;
}

.doctor-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 10px;
  color: var(--forest);
  font-size: 11px;
  font-weight: 500;
}

.instagram-videos-section {
  display: grid;
  gap: 28px;
  padding: 58px var(--site-gutter);
  background: #ffffff;
}

.instagram-videos-heading {
  display: grid;
  justify-items: center;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.instagram-videos-heading h2 {
  font-size: clamp(26px, 2.5vw, 34px);
  font-weight: 550;
}

.instagram-videos-heading .section-kicker::after {
  margin-inline: auto;
}

.instagram-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  align-items: start;
}

.instagram-video-card {
  min-width: 0;
  overflow: hidden;
  padding: 0;
  background: #ffffff;
  border: 1px solid rgba(13, 59, 49, 0.11);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(20, 84, 90, 0.11);
}

.instagram-video-player {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  min-height: 520px;
  max-height: 640px;
  background: #071f23;
  border: 0;
  opacity: 1;
  filter: none;
  object-fit: cover;
}

.appointment-footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  min-height: 54px;
  max-width: none;
  margin-top: 0px;
  padding: 0px 0 0;
  background: transparent;
  border-top: 1px solid rgba(13, 59, 49, 0.10);
}

.appointment-footer div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  min-width: 0;
  margin: 0;
}

.appointment-footer div + div {
  border-left: 1px solid rgba(13, 59, 49, 0.12);
  padding-left: 14px;
}

.appointment-footer p {
  color: var(--ink);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.4;
}

.appointment-footer strong {
  display: inline;
  color: var(--forest);
  font-size: 12px;
  font-weight: 400;
}

.appointment-help {
  position:absolute;
  display: grid;
  grid-template-columns: 34px auto;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: min(100%, 450px);
  min-height: 46px;
  margin-top: 0px;
  bottom: 0px;
  left: auto;
}

.appointment-help > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--forest);
  background: #e9f0e3;
  border-radius: 50%;
  font-size: 12px;
}

.appointment-help p {
  color: var(--ink);
  font-size: 12px;
  line-height: 1.35;
}

.appointment-help strong {
  color: var(--forest);
  font-weight: 500;
}

.google-reviews-section {
  position: relative;
  overflow: hidden;
  padding: 76px var(--site-gutter) 82px;
  background:
    radial-gradient(circle at 12% 18%, rgba(49, 174, 181, 0.10), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfb 100%);
}

.google-reviews-heading {
  display: grid;
  justify-items: center;
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.google-reviews-heading .section-kicker::after {
  margin-inline: auto;
}

.google-reviews-heading p {
  max-width: 560px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.google-reviews-slider {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 52px 42px;
}

.google-reviews-window {
  overflow: hidden;
  min-height: 390px;
  padding: 22px 0 34px;
  perspective: 1100px;
}

.google-reviews-track {
  position: relative;
  height: 350px;
  transition: none;
}

.google-review-card {
  position: absolute;
  top: 0;
  left: 50%;
  flex: 0 0 340px;
  width: 250px;
  min-width: 300px;
  max-width: 340px;
  height: 320px;
  min-height: 320px;
  max-height: 320px;
  padding: 24px;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(13, 59, 49, 0.09);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.10);
  opacity: 0;
  pointer-events: none;
  filter: none;
  transform: translateX(-50%) scale(0.82);
  transform-origin: center;
  backface-visibility: hidden;
  will-change: transform, opacity;
  transition:
    opacity 980ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 980ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 260ms var(--ease),
    border-color 260ms ease;
}

.google-review-card.is-active {
  z-index: 3;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) scale(1);
}

.google-review-card.is-left {
  z-index: 2;
  opacity: 0.72;
  transform: translateX(calc(-50% - 230px)) rotateZ(-7deg) scale(0.9);
}

.google-review-card.is-right {
  z-index: 2;
  opacity: 0.72;
  transform: translateX(calc(-50% + 230px)) rotateZ(7deg) scale(0.9);
}

.google-review-card.is-left-2 {
  z-index: 1;
  opacity: 0.34;
  transform: translateX(calc(-50% - 410px)) rotateZ(-9deg) scale(0.82);
}

.google-review-card.is-right-2 {
  z-index: 1;
  opacity: 0.34;
  transform: translateX(calc(-50% + 410px)) rotateZ(9deg) scale(0.82);
}

.google-review-card:hover {
  border-color: rgba(49, 174, 181, 0.30);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.15);
}

.google-review-card.is-active:hover {
  transform: translateX(-50%) translateY(-6px) scale(1);
}

.google-review-card.is-left:hover {
  transform: translateX(calc(-50% - 230px)) translateY(-6px) rotateZ(-7deg) scale(0.9);
}

.google-review-card.is-right:hover {
  transform: translateX(calc(-50% + 230px)) translateY(-6px) rotateZ(7deg) scale(0.9);
}

.review-top {
  display: grid;
  grid-template-columns: 46px 1fr 24px;
  gap: 12px;
  align-items: center;
}

.review-avatar {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #ffffff;
  background: #00695c;
  border-radius: 50%;
  font-size: 17px;
}

.google-review-card:nth-child(2) .review-avatar {
  background: #7b1fa2;
}

.google-review-card:nth-child(3) .review-avatar {
  background: #1565c0;
}

.google-review-card:nth-child(4) .review-avatar {
  background: #004d40;
}

.google-review-card:nth-child(5) .review-avatar {
  background: #ad1457;
}

.google-review-card:nth-child(6) .review-avatar {
  background: #ef6c00;
}

.google-review-card:nth-child(7) .review-avatar {
  background: #455a64;
}

.google-review-card:nth-child(8) .review-avatar {
  background: #7b1fa2;
}

.review-top h3 {
  color: #111;
  font-size: 16px;
  font-weight: 700;
}

.review-top p {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.review-top > i {
  color: #4285f4;
  font-size: 20px;
}

.review-stars {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  align-items: center;
  margin-top: 18px;
  color: #f4b400;
  font-size: 15px;
}

.review-stars span {
  margin-left: 8px;
  color: var(--muted);
  font-size: 12px;
}

.review-text {
  margin-top: 16px;
  color: #243336;
  font-size: 11px;
  line-height: 1.65;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
}

.review-nav {
  position: absolute;
  top: 42%;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  color: var(--forest);
  background: #ffffff;
  border: 1px solid rgba(49, 174, 181, 0.26);
  border-radius: 50%;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 220ms var(--ease), background 220ms ease, color 220ms ease;
}

.review-nav:hover {
  color: #ffffff;
  background: var(--forest);
  transform: translateY(-50%) scale(1.08);
}

.review-prev {
  left: 0;
}

.review-next {
  right: 0;
}

.review-dots {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.review-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  background: rgba(49, 174, 181, 0.28);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: width 220ms ease, background 220ms ease;
}

.review-dots button.is-active {
  width: 26px;
  background: var(--forest);
  border-radius: 999px;
}

.map-section {
  position: relative;
  z-index: 1;
  display: block;
  padding: 0;
  background: #ffffff;
  border-top: 1px solid rgba(13, 59, 49, 0.08);
}

.home-page .map-section {
  z-index: 3;
}

.map-frame {
  overflow: hidden;
  width: 100%;
  height: min(58vh, 520px);
  min-height: 380px;
  background: #eef3ef;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.footer {
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-columns: 1.45fr 0.8fr 0.9fr 1.4fr;
  gap: 52px;
  padding: 46px var(--site-gutter);
  background: #ffffff;
  border-top: 1px solid rgba(13, 59, 49, 0.08);
}

.home-page .footer {
  position: fixed;
  right: 0;
  bottom: var(--home-copyright-height);
  left: 0;
  z-index: 1;
  min-height: calc(var(--home-footer-height) - var(--home-copyright-height));
}

.home-page main,
.home-page .map-section {
  position: relative;
  z-index: 2;
}

.home-page main {
  background: #ffffff;
}

.footer p {
  max-width: 310px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 15px;
}

.footer h3 {
  display: inline-block;
  width: max-content;
  margin: 0 0 16px;
  color: #111;
  font-size: 16px;
  font-weight: 700;
}

.footer h3::after {
  display: block;
  width: 50%;
  height: 2px;
  margin-top: 9px;
  content: "";
  background: var(--forest);
}

.footer div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer a,
.footer span {
  color: #404944;
  font-size: 14px;
}

.footer a {
  transition: color 220ms ease, transform 220ms var(--ease);
}

.footer a:hover {
  color: var(--forest);
  transform: translateX(4px);
}

.footer-brand .logo:hover {
  transform: none;
}

.social-row {
  display: flex !important;
  grid-auto-flow: column;
  justify-content: start;
  gap: 10px !important;
  margin-top: 14px;
}

.social-row a {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: #fff;
  background: var(--forest-2);
  border-radius: 50%;
  font-size: 15px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.10);
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms var(--ease);
}

.social-row a:hover {
  color: #fff;
  background: var(--forest);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  transform: translateY(-3px);
}

.footer a i,
.footer span i {
  width: 18px;
  color: var(--forest-2);
}

.footer .social-row a i {
  width: auto;
  color: #fff;
}

.copyright {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px var(--site-gutter);
  color: #fff;
  background: var(--forest);
  font-size: 12px;
}

.home-page .copyright {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  min-height: var(--home-copyright-height);
}

.appointment-popup {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 260ms ease, visibility 260ms ease;
}

.appointment-popup.is-open {
  opacity: 1;
  visibility: visible;
}

.appointment-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.36);
  backdrop-filter: none;
}

.appointment-popup-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 412px);
  max-height: min(90vh, 760px);
  overflow-y: auto;
  padding: 28px 18px 24px;
  background: #ffffff;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
  transform: translateY(18px) scale(0.98);
  transition: transform 260ms var(--ease);
}

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

.appointment-popup-close {
  position: absolute;
  top: 15px;
  right: 16px;
  z-index: 2;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  padding: 0;
  color: #263638;
  background: #eefafa;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
}

.popup-form {
  grid-template-columns: 1fr;
  gap: 23px;
  margin-top: 29px;
  padding-inline: 8px;
}

.appointment-popup .appointment-intro span {
  color: var(--forest);
  font-size: 12px;
  font-weight: 500;
}

.appointment-popup .appointment-intro h2 {
  margin-top: 9px;
  color: #1c9fa5;
  font-size: 26px;
  font-weight: 700;
}

.appointment-popup .appointment-intro p {
  max-width: 340px;
  margin-top: 16px;
  color: #657276;
  font-size: 13px;
  line-height: 1.45;
}

.popup-form input,
.popup-form select {
  height: 38px;
  padding: 0 4px 12px;
  background: transparent;
  border-bottom-color: rgba(44, 81, 86, 0.34);
  color: #2b3436;
  font-size: 14px;
  font-weight: 400;
}

.popup-form input::placeholder {
  color: #70777b;
}

.popup-form .date-field > span:not(.sr-only) {
  top: 4px;
  left: 4px;
  color: #2f3638;
  font-size: 14px;
}

.popup-form .appointment-actions {
  margin-top: 3px;
}

.popup-form .btn {
  width: 100%;
  min-height: 44px;
  border-radius: 8px;
  background: #2fb9b7;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
}

.popup-form .appointment-actions,
.popup-form .form-message,
.popup-security-note {
  grid-column: 1 / -1;
}

.popup-security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: -7px;
  color: #738186;
  font-size: 11px;
  text-align: center;
}

.popup-security-note i {
  color: #f6a11a;
  font-size: 10px;
}

.popup-form .form-message {
  margin-top: -14px;
}

.reveal-card,
.reveal-section,
.reveal-left,
.reveal-right,
.reveal-center {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 850ms var(--ease), transform 850ms var(--ease);
}

.reveal-left {
  transform: translateX(-58px);
}

.reveal-right {
  transform: translateX(58px);
}

.reveal-center {
  transform: translateY(18px) scale(0.96);
}

.reveal-card.is-visible,
.reveal-section.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-center.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card.reveal-card.is-visible:hover {
  transform: translateY(0);
}

.doctor-card.reveal-card.is-visible:hover {
  transform: scale(1.045);
}

.feature-strip .reveal-card:nth-child(1),
.service-grid .reveal-card:nth-child(1),
.stats-grid .reveal-card:nth-child(1) {
  transition-delay: 70ms;
}

.feature-strip .reveal-card:nth-child(2),
.service-grid .reveal-card:nth-child(2),
.stats-grid .reveal-card:nth-child(2) {
  transition-delay: 160ms;
}

.feature-strip .reveal-card:nth-child(3),
.service-grid .reveal-card:nth-child(3),
.stats-grid .reveal-card:nth-child(3) {
  transition-delay: 250ms;
}

.feature-strip .reveal-card:nth-child(4),
.service-grid .reveal-card:nth-child(4),
.stats-grid .reveal-card:nth-child(4) {
  transition-delay: 340ms;
}

.service-grid .reveal-card:nth-child(5) {
  transition-delay: 430ms;
}

.welcome-heading {
  transition-delay: 80ms;
}

.welcome-visual {
  transition-delay: 300ms;
}

.welcome-list .reveal-card:nth-child(1) {
  transition-delay: 180ms;
}

.welcome-list .reveal-card:nth-child(2) {
  transition-delay: 300ms;
}

.welcome-list .reveal-card:nth-child(3) {
  transition-delay: 420ms;
}

.before-after-doctor {
  transition-delay: 80ms;
}

.before-after-content {
  transition-delay: 180ms;
}

.before-after-heading {
  transition-delay: 220ms;
}

.before-after-compare {
  transition-delay: 340ms;
}

.smile-banner-copy {
  transition-delay: 110ms;
}

.doctor-heading {
  transition-delay: 90ms;
}

.doctor-grid .doctor-card:nth-child(1) {
 /*  transition-delay: 180ms; */
}

.doctor-grid .doctor-card:nth-child(2) {
 /*  transition-delay: 300ms; */
}

.doctor-grid .doctor-card:nth-child(3) {
/*   transition-delay: 420ms; */
}

.appointment-visual {
  transition-delay: 120ms;
}

.appointment-content {
  transition-delay: 260ms;
}

.map-frame {
  transition-delay: 120ms;
}

.footer > div:nth-child(1) {
  transition-delay: 80ms;
}

.footer > div:nth-child(2) {
  transition-delay: 180ms;
}

.footer > div:nth-child(3) {
  transition-delay: 280ms;
}

.footer > div:nth-child(4) {
  transition-delay: 380ms;
}

@keyframes navDrop {
  from {
    opacity: 0;
    transform: translateY(-24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softScale {
  from {
    opacity: 0;
    transform: scale(0.94);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes heroTextFromLeft {
  from {
    opacity: 0;
    transform: translate3d(-42px, 14px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroTextFromRight {
  from {
    opacity: 0;
    transform: translate3d(42px, 14px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroScaleIn {
  from {
    opacity: 0;
    transform: translate3d(0, 16px, 0) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes toothFloatIn {
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes floatIdle {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1.02);
  }
  50% {
    transform: translate3d(0, -10px, 0) scale(1.025);
  }
}

@keyframes smileBannerFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -18px, 0);
  }
}

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

@media (max-width: 1600px) {
  .helix-card {
    left: 41%;
  }

  .helix-info {
    right: clamp(88px, 8vw, 130px);
    width: min(23vw, 300px);
    height: 340px;
  }

  .helix-info-slide img {
    height: 132px;
  }

  .helix-info-slide-body {
    padding: 14px 16px 16px;
  }

  .helix-info-slide-step {
    display: none;
  }

  .helix-info-slide h3 {
    margin-top: 0;
    font-size: clamp(19px, 1.65vw, 23px);
  }

  .helix-info-slide p {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.48;
  }
}

@media (max-width: 1440px) {
  .hero {
    height: min(74vh, 650px);
  }

  .hero-care-copy {
    max-width: 520px;
    margin-left: clamp(72px, 8vw, 116px);
    padding-bottom: 44px;
  }

  .hero-care-copy h1 {
    font-size: clamp(36px, 3.05vw, 50px);
  }

  .hero-care-copy .hero-text {
    max-width: 380px;
    font-size: 13px;
  }

  .hero-care-actions {
    margin-top: 20px;
  }

  .hero-nav {
    width: 46px;
    height: 46px;
  }

  .helix-card {
    left: 39%;
  }

  .helix-info {
    right: clamp(72px, 7vw, 112px);
    width: min(23vw, 285px);
    height: 326px;
  }

  .helix-info-slide img {
    height: 124px;
  }

  .helix-info-slide-body {
    padding: 14px 16px 16px;
  }

  .helix-info-slide-step {
    display: none;
  }

  .helix-info-slide h3 {
    margin-top: 0;
    font-size: clamp(19px, 1.75vw, 22px);
  }

  .helix-info-slide p {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.48;
  }
}

@media (max-width: 1180px) {
  .navbar {
    grid-template-columns: 1fr auto auto;
    gap: 12px;
  }

  .nav-toggle {
    display: block;
    grid-column: 2;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 18px;
    right: 18px;
    z-index: 90;
    display: flex;
    height: auto;
    max-height: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 38px rgba(20, 56, 59, 0.18);
    transform: translateY(-10px) scale(0.98);
    transform-origin: top center;
    transition:
      max-height 320ms var(--ease),
      opacity 220ms ease,
      visibility 220ms ease,
      transform 320ms var(--ease);
  }

  .nav-links.is-open {
    max-height: 320px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav-links a {
    display: flex;
    height: auto;
    align-items: center;
    min-height: 44px;
    padding: 0 14px;
    color: #20313a;
    background: #ffffff;
    border-bottom: 1px solid rgba(49, 174, 181, 0.14);
    border-radius: 6px;
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--forest);
    background: rgba(49, 174, 181, 0.09);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    grid-column: 3;
    margin-top: 8px;
  }

  .header-cta {
    margin-top: 0;
  }
}

@media (max-width: 980px) {
  .home-page {
    --home-copyright-height: 40px;
    --home-footer-height: 470px;
  }

  :root {
    --site-gutter: clamp(28px, 6vw, 64px);
  }

  .hero {
    height: auto;
    min-height: 660px;
  }

  .hero-slide,
  .hero-slide-care {
    grid-template-columns: 1fr;
  }

  .hero-slide-original::before {
    background:
      radial-gradient(circle at 10% 42%, rgba(49, 174, 181, 0.12), transparent 34%);
  }

  .hero-slide-original {
    background:
      linear-gradient(90deg, rgba(250, 253, 253, 0.94) 0%, rgba(250, 253, 253, 0.76) 46%, rgba(250, 253, 253, 0.18) 100%),
      url("assets/optimized/hero-child.jpg") 62% center / cover no-repeat;
  }

  .hero-slide-care {
    background:
      linear-gradient(90deg, rgba(245, 253, 253, 0.97) 0%, rgba(245, 253, 253, 0.78) 46%, rgba(245, 253, 253, 0.18) 100%),
      url("assets/optimized/hero-care.jpg") 63% center / cover no-repeat;
  }

  .hero-slide-checkup {
    background:
      linear-gradient(90deg, rgba(245, 253, 253, 0.97) 0%, rgba(245, 253, 253, 0.84) 58%, rgba(245, 253, 253, 0.32) 100%),
      url("assets/sliding/h1-rev-slider-img-3.jpg") center center / cover no-repeat;
  }

  .hero-copy,
  .hero-slide-original .hero-copy {
    grid-column: 1;
    justify-self: start;
    margin-inline: clamp(22px, 6vw, 64px);
    padding-bottom: 34px;
  }

  .hero-care-copy {
    grid-column: 1;
    max-width: 520px;
    margin-inline: clamp(22px, 6vw, 64px);
    padding-bottom: 60px;
  }

  .hero-care-copy h1 {
    font-size: clamp(38px, 6.5vw, 52px);
  }

  .hero-visual {
    justify-self: center;
    width: min(100%, 680px);
    margin-right: 0;
    height: 420px;
    clip-path: none;
  }

  .feature-strip,
  .service-grid,
  .stats-grid,
  .footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-strip {
    margin-top: 0;
    border-radius: 0;
  }

  .video-section,
  .video-section video {
    min-height: 430px;
  }

  .before-after-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .before-after-layout {
    grid-template-columns: 1fr;
    max-width: 760px;
    align-items: center;
  }

  .before-after-doctor {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

  .before-after-content {
    padding-bottom: 0;
  }

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

  .why-section,
  .intro-section,
  .map-section {
    grid-template-columns: 1fr;
  }

  .doctor-section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .doctor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 640px;
  }

  .instagram-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
  }

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

  .welcome-visual {
    grid-column: 1 / -1;
    grid-row: 1;
    max-width: 320px;
    margin: 0 auto;
  }

  .welcome-list-left .welcome-item,
  .welcome-item {
    grid-template-columns: 58px 1fr;
    text-align: left;
  }

  .welcome-list-left .welcome-item > span,
  .welcome-list-left .welcome-item > div {
    grid-column: auto;
    grid-row: auto;
  }

  .appointment-section {
    min-height: auto;
    padding-top: 62px;
  }

  .appointment-main {
    grid-template-columns: minmax(260px, 330px) minmax(500px, 640px);
    gap: 26px;
    width: min(100%, 1040px);
  }

  .appointment-visual {
    width: min(100%, 350px);
  }

  .appointment-card {
    width: min(100%, 640px);
    min-height: 0;
    padding: 22% 29% 5% 22%;
  }

  .appointment-intro h2 {
    font-size: 25px;
  }

  .google-reviews-section {
    padding-top: 58px;
    padding-bottom: 66px;
  }

  .google-reviews-slider {
    max-width: 780px;
  }

  .google-reviews-window {
    min-height: 400px;
  }

  .google-review-card {
    flex-basis: 340px;
    height: 320px;
  }

  .smile-banner {
    grid-template-columns: 1fr;
    min-height: 390px;
    padding: 38px 34px 0;
    background-position: 62% center;
  }

  .smile-banner::before {
    background:
      linear-gradient(90deg, rgba(35, 105, 157, 0.98) 0%, rgba(35, 105, 157, 0.88) 48%, rgba(35, 105, 157, 0.22) 100%);
  }

  .helix-copy {
    display: none;
  }

  .helix-service-list {
    gap: 8px;
  }

  .helix-card {
    width: 196px;
    height: 118px;
  }

  .helix-card {
    left: 40%;
  }

  .helix-info {
    right: clamp(76px, 10vw, 130px);
    width: min(34vw, 380px);
    height: 430px;
  }
}

@media (max-width: 620px) {
  .home-page {
    --home-copyright-height: 88px;
    --home-footer-height: 0px;
    padding-bottom: 0;
  }

  :root {
    --site-gutter: 18px;
    --fs-h1: 38px;
    --fs-h2: 27px;
  }

  body {
    font-size: 13px;
  }

  .top-ribbon {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    overflow: hidden;
    text-align: center;
    font-size: 10px;
    line-height: 1.25;
  }

  .top-help {
    display: grid;
    grid-template-columns: auto auto auto;
    justify-content: center;
    align-items: center;
    gap: 4px 9px;
    min-width: 0;
  }

  .top-help > span,
  .top-help > a,
  .top-email {
    min-width: 0;
    overflow: hidden;
    font-size: clamp(9px, 2.35vw, 10px);
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .top-help > span:first-child {
    grid-column: 1;
    justify-self: end;
    font-size: 9px;
  }

  .top-help > a:nth-child(2) {
    grid-column: 2;
  }

  .top-help > a:nth-child(3) {
    grid-column: 3;
  }

  .top-help > span:nth-child(4) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 100%;
  }

  .top-ribbon-right,
  .top-email {
    display: none;
  }

  .top-social {
    display: none;
  }

  .top-help > a,
  .top-help > span:not(:first-child) {
    padding-left: 0;
  }

  .top-help > a::before,
  .top-help > span:not(:first-child)::before {
    display: none;
  }

  .navbar {
    height: 68px;
    padding-inline: 16px;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .nav-toggle {
    align-self: center;
    justify-self: end;
    margin: 0;
  }

  .header-cta {
    display: none;
  }

  .logo-image {
    height: 42px;
    max-width: 46px;
  }

  .logo strong {
    font-size: 17px;
  }

  .logo small {
    font-size: 8px;
  }

  @media (max-width: 390px) {
    .top-help {
      grid-template-columns: auto auto;
      gap: 4px 12px;
    }

    .top-help > span:first-child {
      display: none;
    }

    .top-help > a:nth-child(2) {
      grid-column: 1;
    }

    .top-help > a:nth-child(3) {
      grid-column: 2;
    }

    .top-help > span:nth-child(4) {
      grid-column: 1 / -1;
    }
  }

  .hero {
    height: clamp(245px, 66vw, 310px);
    min-height: 245px;
    background: #ffffff;
  }

  .hero-slide,
  .hero-slide-care {
    align-items: start;
    background-color: #ffffff;
  }

  .hero-slide.hero-slide-original {
    background-image: url("assets/optimized/hero-child.jpg");
    background-position: 68% center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .hero-slide.hero-slide-care {
    background-image: url("assets/optimized/hero-care.jpg");
    background-position: 61% center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .hero-slide.hero-slide-checkup {
    background-image: url("assets/sliding/h1-rev-slider-img-3.jpg");
    background-position: 66% center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .hero-slide.is-active {
    background-size: cover;
  }

  .hero-slide-care::before,
  .hero-slide-original::before,
  .hero-slide-checkup::before {
    display: none;
  }

  .section,
  .why-section,
  .doctor-section,
  .map-section,
  .footer {
    padding-inline: 18px;
  }

  .hero-copy {
    display: none;
    max-width: min(310px, calc(100vw - 72px));
    margin-inline: 18px;
    padding: 58px 0 32px;
  }

  .hero-care-copy {
    display: none;
    max-width: min(315px, calc(100vw - 72px));
    margin-inline: 18px;
    padding: 58px 0 32px;
  }

  .hero-copy h1,
  .hero-care-copy h1 {
    font-size: clamp(31px, 8.3vw, 36px);
    line-height: 1.14;
  }

  .hero-copy .hero-text,
  .hero-care-copy .hero-text {
    max-width: 280px;
    font-size: 13px;
    line-height: 1.55;
  }

  .hero-care-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-care-actions {
    gap: 12px;
  }

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

  .hero-nav {
    top: 50%;
    width: 38px;
    height: 38px;
  }

  .hero-prev {
    left: 12px;
  }

  .hero-next {
    right: 12px;
  }

  .hero-dots {
    bottom: 14px;
  }

  .hero-visual {
    height: 320px;
  }

  .feature-strip,
  .service-grid,
  .stats-grid,
  .appointment-form,
  .footer {
    grid-template-columns: 1fr;
  }

  .services-section.reveal-section,
  .services-section .reveal-card {
    opacity: 1;
    transform: none;
  }

  .services-section {
    display: block;
  }

  .why-section {
    justify-items: center;
    gap: 30px;
    padding-top: 44px;
    padding-bottom: 44px;
    text-align: center;
  }

  .why-copy {
    display: grid;
    justify-items: center;
    max-width: 330px;
  }

  .why-section .section-kicker::after {
    margin-inline: auto;
  }

  .why-copy p {
    max-width: 310px;
    margin-inline: auto;
    line-height: 1.65;
  }

  .stats-grid {
    width: 100%;
    max-width: 300px;
    gap: 0;
  }

  .stat-card {
    display: grid;
    justify-items: center;
    min-height: auto;
    padding: 18px 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    text-align: center;
  }

  .stat-card:first-child {
    border-top: 0;
  }

  .stat-card i {
    margin-bottom: 8px;
  }

  .stat-card strong {
    font-size: 30px;
  }

  .stat-card span {
    margin-top: 8px;
    white-space: normal;
  }

  .feature-strip {
    padding-inline: 18px;
    background: transparent;
    border: 0;
    box-shadow: none;
    gap: 12px;
  }

  .feature-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
  }

  .feature-card,
  .feature-card:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .video-section,
  .video-section video {
    min-height: 360px;
  }

  .video-overlay {
    padding: 28px 18px;
  }

  .before-after-section {
    padding: 44px 18px;
  }

  .before-after-layout {
    gap: 22px;
  }

  .before-after-doctor {
    aspect-ratio: 4 / 3;
  }

  .compare-label {
    bottom: 10px;
    min-height: 28px;
    padding-inline: 11px;
  }

  .compare-label-before {
    left: 10px;
  }

  .compare-label-after {
    right: 10px;
  }

  .compare-divider span {
    width: 40px;
    height: 40px;
  }

  .section-row,
  .copyright {
    flex-direction: column;
    align-items: center;
  }

  .home-page .footer,
  .home-page .copyright {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 1;
  }

  .footer {
    gap: 34px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .footer div,
  .footer-brand {
    justify-items: start;
    text-align: left;
  }

  .footer h3::after {
    margin-inline: 0;
  }

  .footer a,
  .footer span,
  .footer p {
    max-width: 320px;
    text-align: left;
  }

  .social-row {
    justify-content: start;
  }

  .copyright {
    justify-content: center;
    gap: 8px;
    min-height: auto;
    padding: 14px 18px;
    text-align: center;
    line-height: 1.45;
  }

  .helix-section {
    height: 340vh;
    margin-bottom: -70vh;
  }

  .helix-copy {
    top: 28px;
    left: 18px;
    width: 42vw;
    max-width: 210px;
    transform: none;
  }

  .helix-copy h2 {
    font-size: 26px;
  }

  .helix-service-list {
    display: none;
  }

  .helix-card {
    left: 34%;
    width: 146px;
    height: 88px;
    min-width: 0;
    min-height: 0;
  }

  .helix-info {
    top: auto;
    right: 18px;
    bottom: auto;
    width: min(50vw, 260px);
    height: 360px;
    transform: translateY(-50%);
  }

  .helix-info-slide-body {
    padding: 14px;
  }

  .helix-info.is-switching {
    transform: translate(12px, -50%) scale(0.98);
  }

  .helix-section:not(.is-ready) .helix-info {
    transform: translate(28px, -50%);
  }

  .helix-section.is-ready .helix-info {
    transform: translateY(-50%);
  }

  .helix-section.is-ready .helix-info.is-switching {
    transform: translate(12px, -50%) scale(0.98);
  }

  .helix-info-body {
    padding: 14px;
  }

  .helix-info-step {
    min-height: 24px;
    padding-inline: 8px;
    font-size: 9px;
  }

  .helix-info h3 {
    font-size: 18px;
  }

  .helix-info p,
  .helix-info-slide p {
    font-size: 12px;
    line-height: 1.45;
  }

  .welcome-section {
    padding-top: 52px;
    padding-bottom: 54px;
  }

  .welcome-heading {
    margin-bottom: 28px;
  }

  .welcome-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .welcome-visual {
    max-width: 260px;
  }

  .welcome-list {
    gap: 16px;
  }

  .welcome-item {
    padding: 16px;
    background: #ffffff;
    border: 1px solid rgba(13, 59, 49, 0.09);
    box-shadow: var(--soft-shadow);
  }

  .appointment-section {
    margin-inline: auto;
    padding: 48px 18px 34px;
    overflow: hidden;
  }

  .appointment-main {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .appointment-visual {
    width: min(100%, 300px);
    margin-inline: auto;
  }

  .appointment-visual img {
    width: 96%;
    margin-left: 0;
  }

  .appointment-content {
    width: 100%;
    gap: 12px;
    transform: none;
  }

  .appointment-card {
    width: 100%;
    aspect-ratio: auto;
    min-height: 0;
    padding: 24px;
    background: #ffffff;
    border: 1px solid rgba(13, 59, 49, 0.10);
    box-shadow: var(--soft-shadow);
  }

  .appointment-intro {
    width: 100%;
  }

  .appointment-form-frame {
    display: none;
  }

  .smile-banner {
    width: 100%;
    min-height: 540px;
    margin-top: 42px;
    align-items: start;
    padding: 28px 28px 250px;
    border-radius: 0;
    background-position: 82% bottom;
    background-size: auto 275px;
  }

  .smile-banner::before {
    background:
      linear-gradient(180deg, rgba(35, 105, 157, 0.98) 0%, rgba(35, 105, 157, 0.9) 46%, rgba(35, 105, 157, 0.34) 66%, rgba(35, 105, 157, 0) 100%);
  }

  .smile-banner h2 {
    max-width: 285px;
    font-size: 24px;
    line-height: 1.18;
  }

  .smile-banner p {
    max-width: 285px;
    margin-top: 16px;
    font-size: 12px;
    line-height: 1.5;
  }

  .smile-banner-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: min(100%, 198px);
    margin-top: 20px;
  }

  .smile-banner-actions a {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    font-size: 12px;
  }

  .doctor-section {
    padding-top: 48px;
    padding-bottom: 48px;
    gap: 26px;
  }

  .doctor-heading p {
    font-size: 13px;
  }

  .doctor-grid {
    grid-template-columns: 1fr;
    width: min(100%, 292px);
    gap: 18px;
    justify-items: center;
  }

  .doctor-card {
    width: 100%;
  }

  .doctor-card img {
    height: 250px;
  }

  .doctor-card img {
    max-height: 270px;
    object-fit: cover;
  }

  .instagram-videos-section {
    padding: 48px 18px;
  }

  .instagram-video-grid {
    grid-template-columns: 1fr;
    max-width: 390px;
  }

  .instagram-video-player {
    min-height: 500px;
  }

  .appointment-section::before,
  .appointment-section::after {
    display: none;
  }

  .appointment-intro h2 {
    font-size: 30px;
  }

  .appointment-footer div > span {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }

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

  .appointment-popup {
    padding: 12px;
    place-items: center;
  }

  .appointment-popup-dialog {
    width: min(340px, calc(100vw - 48px));
    max-height: calc(100svh - 24px);
    padding: 22px 14px 18px;
    border-radius: 16px;
  }

  .appointment-popup-close {
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
  }

  .appointment-popup .appointment-intro h2 {
    font-size: 23px;
  }

  .appointment-popup .appointment-intro p {
    max-width: 280px;
    margin-top: 12px;
    font-size: 12px;
  }

  .popup-form {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 24px;
    padding-inline: 0;
  }

  .popup-form input,
  .popup-form select {
    font-size: 13px;
  }

  .appointment-actions {
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
  }

  .appointment-form .btn {
    min-width: 150px;
  }

  .popup-form .btn {
    width: 100%;
    min-width: 0;
  }

  .appointment-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 26px;
    padding: 18px 0 0;
  }

  .appointment-footer div + div {
    border-left: 1px solid rgba(13, 59, 49, 0.14);
    border-top: 0;
    padding-top: 0;
    padding-left: 10px;
  }

  .appointment-footer p {
    font-size: 10px;
  }

  .appointment-footer strong {
    font-size: 10px;
  }

  .appointment-help {
    width: 100%;
    justify-content: center;
  }

  .google-reviews-section {
    padding: 48px 18px 56px;
  }

  .google-reviews-heading {
    margin-bottom: 26px;
  }

  .google-reviews-slider {
    padding: 0 0 38px;
  }

  .google-reviews-window {
    min-height: 360px;
    padding-top: 14px;
  }

  .google-reviews-track {
    height: 340px;
  }

  .google-review-card {
    flex-basis: min(82vw, 320px);
    width: min(82vw, 320px);
    min-width: min(82vw, 320px);
    max-width: min(82vw, 320px);
    height: 320px;
    min-height: 320px;
    max-height: 320px;
    padding: 20px;
  }

  .google-review-card.is-left {
    transform: translateX(calc(-50% - 145px)) rotateZ(-7deg) scale(0.86);
  }

  .google-review-card.is-right {
    transform: translateX(calc(-50% + 145px)) rotateZ(7deg) scale(0.86);
  }

  .google-review-card.is-left-2,
  .google-review-card.is-right-2 {
    opacity: 0;
  }

  .google-review-card.is-left:hover {
    transform: translateX(calc(-50% - 145px)) translateY(-6px) rotateZ(-7deg) scale(0.86);
  }

  .google-review-card.is-right:hover {
    transform: translateX(calc(-50% + 145px)) translateY(-6px) rotateZ(7deg) scale(0.86);
  }

  .review-nav {
    top: auto;
    bottom: -5px;
    width: 36px;
    height: 36px;
    transform: none;
  }

  .review-nav:hover {
    transform: scale(1.06);
  }

  .review-prev {
    left: 0;
  }

  .review-next {
    right: 0;
  }

  .review-dots {
    bottom: 8px;
  }

  .map-section {
    padding: 0;
  }

  .map-frame {
    min-height: 280px;
  }

  .stat-card {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding-inline: 0;
  }
}

@media (max-width: 980px) {
  .service-showcase-section {
    padding: 62px var(--site-gutter);
  }

  .service-showcase-layout {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .showcase-copy {
    max-width: 620px;
  }

  .showcase-copy > p {
    max-width: 560px;
  }
}

@media (max-width: 620px) {
  .service-showcase-section {
    padding: 48px 18px;
  }

  .service-showcase-layout {
    gap: 28px;
  }

  .showcase-copy h2 {
    font-size: 30px;
  }

  .showcase-copy > p {
    font-size: 13px;
  }

  .showcase-benefits {
    gap: 16px;
  }

  .showcase-benefits div {
    grid-template-columns: 48px 1fr;
  }

  .showcase-benefits span {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .showcase-image-wrap {
    min-height: 220px;
  }

  .showcase-count {
    right: 12px;
    bottom: 12px;
    min-height: 28px;
    font-size: 12px;
  }
}
