:root {
  /* High-Contrast Design Tokens */
  --ink: #112322;
  --ink-soft: #2c4644;
  --ink-muted: #446361;
  --teal: #3d7875;
  --teal-deep: #225855;
  --teal-ink: #1b4946;
  --sage: #d5e7e5;
  --sage-border: #bfdbd8;
  --mint: #f5f9f8;
  --paper: #ffffff;
  --sand: #f4efe6;
  --sand-border: #e6dcce;
  --coral: #c04838;
  
  --line: rgba(17, 35, 34, 0.12);
  --line-strong: rgba(17, 35, 34, 0.22);
  --shadow-soft: 0 16px 44px rgba(22, 56, 54, 0.09), 0 2px 8px rgba(22, 56, 54, 0.04);
  --shadow-hover: 0 24px 60px rgba(22, 56, 54, 0.15), 0 4px 14px rgba(22, 56, 54, 0.07);
  --shadow-badge: 0 12px 30px rgba(22, 56, 54, 0.14);
  
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1240px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: var(--mint);
}

body {
  width: 100%;
  max-width: 100vw;
  margin: 0;
  overflow-x: hidden;
  position: relative;
  background: var(--mint);
  color: var(--ink);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
  touch-action: none;
}

::selection {
  background: var(--sage);
  color: var(--ink);
}

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

button,
a,
input,
select {
  font: inherit;
}

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

button {
  border: 0;
}

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

button,
a,
input,
select,
[tabindex] {
  outline: none;
}

:focus-visible {
  outline: 3px solid var(--teal-deep);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 16px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 14px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms var(--ease-out);
}

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

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

/* Background atmospheric washes */
.page-wash {
  position: absolute;
  z-index: -1;
  max-width: 100vw;
  pointer-events: none;
  contain: paint;
  border-radius: 48% 52% 42% 58% / 44% 39% 61% 56%;
  filter: blur(1px);
  overflow: hidden;
}

.page-wash--top {
  top: 60px;
  right: 0;
  width: min(540px, 85vw);
  height: 480px;
  background: rgba(213, 231, 229, 0.45);
  transform: rotate(18deg);
}

.page-wash--middle {
  top: 1350px;
  left: 0;
  width: min(520px, 85vw);
  height: 520px;
  background: rgba(244, 239, 230, 0.4);
  transform: rotate(-16deg);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(245, 249, 248, 0.88);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  backdrop-filter: blur(20px) saturate(140%);
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(245, 249, 248, 0.96);
  box-shadow: 0 10px 30px rgba(22, 56, 54, 0.08);
}

.header-inner {
  display: flex;
  min-height: 80px;
  align-items: center;
  gap: 28px;
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px 18px 14px 18px;
  background: var(--teal-deep);
  color: var(--paper);
  transform: rotate(-6deg);
  transition: transform 220ms var(--ease-out), background-color 180ms ease;
  box-shadow: 0 4px 12px rgba(34, 88, 85, 0.25);
}

.brand:hover .brand-mark {
  background: var(--ink);
  transform: rotate(0deg) scale(1.05);
}

.brand-mark svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.brand-mark circle {
  fill: currentColor;
  stroke: none;
}

.brand-copy {
  display: grid;
  gap: 1px;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.brand-copy strong {
  font-weight: 800;
  color: var(--ink);
}

.brand-copy span {
  color: var(--teal-ink);
  font-size: 15px;
  font-weight: 700;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 34px);
  margin-left: auto;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--teal-deep);
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 220ms var(--ease-out);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--ink);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left center;
}

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

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--teal-ink);
  font-size: 15.5px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  transition: color 180ms ease;
}

.header-phone-icon {
  font-size: 14px;
}

.header-phone:hover {
  color: var(--ink);
}

/* Buttons */
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--teal-deep);
  color: var(--paper);
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 160ms var(--ease-out), box-shadow 180ms ease;
  box-shadow: 0 4px 14px rgba(34, 88, 85, 0.2);
}

.button:hover {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 10px 24px rgba(17, 35, 34, 0.25);
  transform: translateY(-2px);
}

.button:active {
  transform: scale(0.97);
}

.button--small {
  min-height: 44px;
  padding: 0 20px;
  font-size: 14px;
}

.button--primary {
  background: var(--teal-deep);
  color: var(--paper);
}

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

.button--secondary {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
}

.button--secondary:hover {
  background: var(--sage);
  border-color: var(--teal);
  color: var(--teal-ink);
}

.button--full {
  width: 100%;
}

.button-arrow {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms var(--ease-out);
}

.button:hover .button-arrow {
  transform: translate(2px, -2px);
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 0;
  background: transparent;
  color: var(--teal-ink);
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  transition: color 180ms ease, transform 160ms var(--ease-out);
}

.text-button:hover {
  color: var(--ink);
  transform: translateX(3px);
}

.text-button:active {
  transform: scale(0.97);
}

.text-button--dark {
  color: var(--ink);
}

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

/* Headings & Common Typography */
h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.2vw, 5.4rem);
  font-weight: 800;
  line-height: 1.02;
  text-wrap: balance;
}

h1 em,
h2 span {
  color: var(--teal-ink);
  font-style: normal;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: min(860px, 100dvh);
  padding: 70px 0 36px;
}

.hero-grid {
  display: grid;
  min-height: 640px;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  gap: clamp(40px, 6vw, 90px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 20px;
}

.location-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: var(--sage);
  border: 1px solid var(--sage-border);
  color: var(--teal-ink);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.location-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-deep);
  box-shadow: 0 0 0 4px rgba(34, 88, 85, 0.2);
}

.hero-lead {
  max-width: 540px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.hero-footnote {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 440px;
  margin-top: 36px;
  color: var(--ink-muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.footnote-line {
  width: 32px;
  height: 2px;
  flex: 0 0 auto;
  border-radius: 2px;
  background: var(--teal-deep);
}

/* Hero Visual & Badges */
.hero-visual {
  position: relative;
  min-height: 590px;
  overflow: visible;
  isolation: isolate;
}

.hero-photo-frame {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 4%;
  width: min(100%, 520px);
  height: 610px;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.9);
  border-radius: 44% 56% 42% 58% / 34% 35% 65% 66%;
  background: var(--sage);
  box-shadow: var(--shadow-soft);
  transform: rotate(2deg);
}

.hero-photo-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(17, 35, 34, 0.12));
  content: "";
  pointer-events: none;
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  transform: scale(1.02) rotate(-2deg);
}

.hero-orbit {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.hero-orbit--one {
  top: 50px;
  right: 30px;
  width: 320px;
  height: 400px;
  border-radius: 47% 53% 58% 42% / 38% 47% 53% 62%;
  background: var(--sage);
  transform: rotate(22deg);
  opacity: 0.85;
}

.hero-orbit--two {
  bottom: 10px;
  left: 0;
  width: 210px;
  height: 210px;
  border-radius: 61% 39% 52% 48% / 45% 57% 43% 55%;
  background: var(--sand);
  border: 1px solid var(--sand-border);
  transform: rotate(-18deg);
}

.hero-badge {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 165px;
  padding: 13px 16px 13px 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-badge);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  animation: gentle-float 5s var(--ease-in-out) infinite;
}

.hero-badge--rating {
  top: 85px;
  left: 12px;
}

.hero-badge--experience {
  right: 8px;
  bottom: 100px;
  animation-delay: -1.7s;
}

.hero-badge--care {
  bottom: 20px;
  left: 12px;
  min-width: 175px;
  animation-delay: -3.2s;
}

.badge-icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-deep);
  color: var(--paper);
  box-shadow: 0 4px 10px rgba(34, 88, 85, 0.25);
}

.badge-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.badge-icon svg path:first-child {
  fill: currentColor;
  stroke: none;
}

.badge-icon--sun {
  background: #ecd9b8;
  color: var(--teal-ink);
}

.badge-icon--leaf {
  background: var(--sage);
  color: var(--teal-ink);
}

.hero-badge strong,
.hero-badge small {
  display: block;
}

.hero-badge strong {
  color: var(--ink);
  font-family: "Outfit", sans-serif;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.05;
}

.hero-badge small {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.25;
}

.hero-bottomline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0 6px;
  border-top: 1.5px solid var(--line);
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero-bottomline-rule {
  width: 40px;
  height: 2px;
  flex: 1 1 auto;
  max-width: 100px;
  background: var(--sage-border);
}

/* Sections common */
.section {
  position: relative;
  padding: 110px 0;
}

.section-intro {
  max-width: 720px;
  margin-bottom: 54px;
}

.section-intro--services {
  max-width: 680px;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--teal-ink);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.section-intro h2,
.doctors-copy h2,
.results-copy h2,
.contact-copy h2,
.quiz-intro h2,
.modal-heading h2 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  font-weight: 800;
  line-height: 1.03;
  text-wrap: balance;
}

.section-intro > p:last-child,
.doctors-lead,
.contact-copy > p,
.quiz-intro > p,
.results-copy > p {
  max-width: 580px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
}

/* Benefits Section */
.benefits {
  background: var(--paper);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.benefit {
  position: relative;
  display: grid;
  min-height: 220px;
  align-content: space-between;
  gap: 24px;
  padding: 32px 34px 28px;
  overflow: hidden;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--mint);
  transition: border-color 220ms ease, transform 220ms var(--ease-out), box-shadow 220ms ease;
}

.benefit:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.benefit--wide {
  grid-row: span 2;
  min-height: 440px;
  padding: 40px;
  background: var(--teal-deep);
  color: var(--paper);
  border-color: transparent;
}

.benefit--wide::after {
  position: absolute;
  right: -60px;
  bottom: -90px;
  width: 280px;
  height: 280px;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  border-radius: 52% 48% 42% 58% / 43% 56% 44% 57%;
  content: "";
  transform: rotate(24deg);
}

.benefit.benefit--wide h3 {
  color: var(--paper);
}

.benefit.benefit--wide p {
  color: rgba(255, 255, 255, 0.84);
}

.benefit--tinted {
  background: var(--sand);
  border-color: var(--sand-border);
}

.benefit-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 18px;
  background: var(--paper);
  color: var(--teal-ink);
  box-shadow: 0 4px 12px rgba(22, 56, 54, 0.08);
}

.benefit--wide .benefit-icon {
  background: rgba(255, 255, 255, 0.18);
  color: var(--paper);
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.benefit h3 {
  max-width: 320px;
  margin-bottom: 10px;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.1;
}

.benefit p {
  max-width: 440px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.65;
}

.benefit-index {
  position: absolute;
  right: 28px;
  bottom: 24px;
  color: var(--ink-muted);
  font-size: 15px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.benefit--wide .benefit-index {
  z-index: 1;
  color: var(--paper);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
  opacity: 1;
}

/* Services Section */
.services {
  background: var(--mint);
}

.service-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
  overflow-x: auto;
  padding: 6px 2px 10px;
  scrollbar-width: none;
}

.service-tabs::-webkit-scrollbar {
  display: none;
}

.service-tab {
  min-height: 46px;
  flex: 0 0 auto;
  padding: 0 22px;
  border: 1.5px solid var(--line-strong);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 14.5px;
  font-weight: 700;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 160ms var(--ease-out);
}

.service-tab:hover {
  border-color: var(--teal-deep);
  color: var(--teal-ink);
  transform: translateY(-1px);
}

.service-tab:active {
  transform: scale(0.97);
}

.service-tab.is-active {
  border-color: var(--teal-deep);
  background: var(--teal-deep);
  color: var(--paper);
  box-shadow: 0 4px 14px rgba(34, 88, 85, 0.25);
}

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

.service-card {
  display: flex;
  min-height: 290px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 30px 26px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  transition: border-color 220ms ease, transform 220ms var(--ease-out), box-shadow 220ms ease;
}

.service-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.service-card--feature {
  min-height: 350px;
  grid-row: span 2;
  background: var(--teal-deep);
  color: var(--paper);
  border-color: transparent;
}

.service-card--sage {
  background: var(--sage);
  border-color: var(--sage-border);
}

.service-card--empty {
  min-height: 280px;
  background: var(--sand);
  border-color: var(--sand-border);
}

.service-card-top,
.service-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.service-type {
  color: var(--teal-ink);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.service-card--feature .service-type {
  color: var(--sage);
}

.service-arrow {
  color: var(--teal-ink);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms var(--ease-out);
}

.service-card--feature .service-arrow {
  color: var(--paper);
}

.service-card:hover .service-arrow {
  transform: translate(3px, -3px);
}

.service-card h3 {
  max-width: 440px;
  margin: 24px 0 12px;
  font-size: clamp(1.75rem, 2.6vw, 2.6rem);
  font-weight: 800;
  line-height: 1.08;
}

.service-card p {
  max-width: 460px;
  margin-bottom: 26px;
  color: var(--ink-soft);
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.65;
}

.service-card--feature p {
  color: rgba(255, 255, 255, 0.92);
}

.service-card-bottom {
  padding-top: 18px;
  border-top: 1.5px solid var(--line);
}

.service-card--feature .service-card-bottom {
  border-color: rgba(255, 255, 255, 0.22);
}

.price-tag {
  display: block;
  color: var(--ink);
  font-family: "Outfit", sans-serif;
  font-size: 21px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}

.service-card--feature .price-tag {
  color: var(--paper);
}

.price-sub {
  display: block;
  margin-top: 2px;
  color: var(--ink-muted);
  font-size: 13.5px;
  font-weight: 600;
}

.service-card--feature .price-sub {
  color: rgba(255, 255, 255, 0.75);
}

.round-button {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border: 1.5px solid var(--line-strong);
  border-radius: 50%;
  background: var(--paper);
  color: var(--teal-ink);
  cursor: pointer;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 160ms var(--ease-out);
}

.round-button:hover {
  border-color: var(--teal-deep);
  background: var(--teal-deep);
  color: var(--paper);
  transform: translate(2px, -2px);
}

.round-button:active {
  transform: scale(0.92);
}

.service-card--feature .round-button {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.15);
  color: var(--paper);
}

.service-card--feature .round-button:hover {
  background: var(--paper);
  color: var(--teal-deep);
}

.empty-card-art {
  position: relative;
  width: 80px;
  height: 38px;
}

.empty-card-art span {
  position: absolute;
  display: block;
  border: 2px solid var(--teal-deep);
  border-radius: 50%;
}

.empty-card-art span:nth-child(1) {
  top: 4px;
  left: 0;
  width: 32px;
  height: 32px;
}

.empty-card-art span:nth-child(2) {
  top: 4px;
  left: 24px;
  width: 32px;
  height: 32px;
  opacity: 0.65;
}

.empty-card-art span:nth-child(3) {
  top: 4px;
  left: 48px;
  width: 32px;
  height: 32px;
  opacity: 0.35;
}

.service-card--empty h3 {
  margin-top: 22px;
  font-size: 26px;
}

.service-card--empty p {
  margin-bottom: 20px;
}

/* Quiz Section */
.quiz-section {
  padding-top: 20px;
  padding-bottom: 20px;
}

.quiz-shell {
  display: grid;
  min-height: 540px;
  align-items: center;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  gap: clamp(40px, 7vw, 100px);
  padding: clamp(40px, 6vw, 76px);
  overflow: hidden;
  border-radius: 44px 20px 44px 20px / 25px 44px 25px 44px;
  background: var(--teal-deep);
  color: var(--paper);
  box-shadow: var(--shadow-soft);
}

.quiz-intro {
  position: relative;
}

.quiz-intro::after {
  position: absolute;
  right: -90px;
  bottom: -70px;
  width: 260px;
  height: 260px;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 53% 47% 42% 58% / 42% 54% 46% 58%;
  content: "";
  transform: rotate(22deg);
}

.section-kicker--light {
  color: var(--sage);
}

.quiz-intro h2 {
  max-width: 480px;
  color: var(--paper);
}

.quiz-intro h2 span {
  color: var(--sage);
}

.quiz-intro > p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
}

.quiz-note {
  display: flex;
  max-width: 380px;
  align-items: center;
  gap: 12px;
  margin-top: 44px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.45;
}

.quiz-note-mark {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: var(--sand);
  font-size: 14px;
}

.quiz-card {
  position: relative;
  min-height: 380px;
  padding: 34px 36px 30px;
  border-radius: 26px 16px 26px 16px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 24px 60px rgba(17, 35, 34, 0.25);
}

.quiz-progress {
  height: 5px;
  margin-bottom: 28px;
  overflow: hidden;
  border-radius: 99px;
  background: var(--sage);
}

.quiz-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0.3333);
  transform-origin: left center;
  border-radius: inherit;
  background: var(--teal-deep);
  transition: transform 260ms var(--ease-out);
}

.quiz-step {
  animation: quiz-in 320ms var(--ease-out) both;
}

.quiz-step[hidden],
.quiz-result[hidden] {
  display: none !important;
}

.quiz-step-label {
  display: block;
  margin-bottom: 10px;
  color: var(--teal-ink);
  font-size: 14px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.quiz-step h3,
.quiz-result h3 {
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
}

.quiz-step-copy {
  max-width: 440px;
  margin: -6px 0 24px;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.6;
}

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

.quiz-option {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border: 1.5px solid var(--line-strong);
  border-radius: 16px;
  background: var(--mint);
  color: var(--ink);
  cursor: pointer;
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
  transition: border-color 180ms ease, background-color 180ms ease, transform 160ms var(--ease-out);
}

.quiz-option:hover,
.quiz-option.is-selected {
  border-color: var(--teal-deep);
  background: var(--sage);
  color: var(--teal-ink);
}

.quiz-option:active {
  transform: scale(0.98);
}

.option-mark {
  color: var(--teal-deep);
  font-size: 18px;
  font-weight: 800;
}

.quiz-back {
  display: inline-flex;
  margin-top: 22px;
  padding: 0;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  transition: color 180ms ease;
}

.quiz-back:hover {
  color: var(--teal-deep);
}

.quiz-form,
.booking-form {
  display: grid;
  gap: 12px;
}

.field-label,
.booking-form legend {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.text-input {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border: 1.5px solid var(--line-strong);
  border-radius: 14px;
  outline: none;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.text-input::placeholder {
  color: var(--ink-muted);
}

.text-input:hover {
  border-color: var(--teal-deep);
}

.text-input:focus {
  border-color: var(--teal-deep);
  box-shadow: 0 0 0 4px rgba(34, 88, 85, 0.18);
}

.text-input.is-invalid {
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(192, 72, 56, 0.15);
}

.text-input--select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 46px;
  cursor: pointer;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  background-color: var(--paper);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231e5650' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px 16px;
}

.text-input[type="date"] {
  cursor: pointer;
  padding-right: 14px;
}

.field-error {
  min-height: 20px;
  margin: -4px 0 0;
  color: var(--coral);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.4;
}

.quiz-result {
  min-height: 260px;
  padding-top: 10px;
  text-align: center;
  animation: quiz-in 320ms var(--ease-out) both;
}

.result-check,
.success-mark {
  display: grid;
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
  color: var(--teal-deep);
  font-size: 28px;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(34, 88, 85, 0.2);
}

.quiz-result p {
  max-width: 440px;
  margin: 0 auto 26px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
}

/* Doctors Section */
.doctors {
  background: var(--sand);
}

.doctors-layout {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(48px, 8vw, 120px);
}

.doctors-media {
  position: relative;
  min-height: 590px;
}

.media-shape {
  position: absolute;
  inset: 0 7% 45px 0;
  overflow: hidden;
  border-radius: 48% 52% 40% 60% / 33% 37% 63% 67%;
  background: var(--sage);
  box-shadow: var(--shadow-soft);
  transform: rotate(-3deg);
}

.media-shape::after {
  position: absolute;
  inset: 0;
  border: 10px solid rgba(255, 255, 255, 0.85);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.media-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03) rotate(3deg);
}

.media-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 250px;
  padding: 14px 18px;
  border-radius: 18px 10px 18px 10px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  color: var(--ink-soft);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.4;
  border: 1px solid var(--line);
}

.caption-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--teal-deep);
}

.doctors-copy h2 {
  max-width: 600px;
}

.doctors-copy h2 span,
.results-copy h2 span,
.contact-copy h2 span {
  color: var(--teal-ink);
}

.doctors-lead {
  max-width: 520px;
  margin-bottom: 34px;
}

.doctor-list {
  border-top: 1.5px solid var(--line);
}

.doctor-row {
  display: grid;
  align-items: center;
  grid-template-columns: 52px 1fr 46px;
  gap: 18px;
  min-height: 92px;
  padding: 12px 0;
  border-bottom: 1.5px solid var(--line);
  transition: background-color 180ms ease, transform 180ms var(--ease-out);
}

.doctor-row:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  padding-left: 10px;
  padding-right: 10px;
}

.doctor-avatar {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 16px;
  background: var(--sage);
  color: var(--teal-ink);
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(22, 56, 54, 0.08);
}

.doctor-avatar--alexander {
  background: var(--paper);
}

.doctor-avatar--tatiana {
  background: var(--teal-deep);
  color: var(--paper);
}

.doctor-header-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.doctor-row h3 {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.15;
}

.doctor-live-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(30, 86, 80, 0.08);
  border: 1px solid rgba(30, 86, 80, 0.14);
  color: var(--teal-deep);
  font-size: 11.5px;
  font-weight: 700;
}

.status-pulse-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.doctor-row p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.5;
}

.doctor-disclaimer {
  max-width: 480px;
  margin: 24px 0 0;
  color: var(--ink-muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

/* Results Section (До / После) */
.results {
  background: var(--paper);
}

.results-layout {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(44px, 7vw, 110px);
}

.results-copy h2 {
  max-width: 520px;
}

.results-copy > p {
  max-width: 460px;
}

.results-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 800;
}

.results-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.legend-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.legend-dot--before {
  background: var(--ink-soft);
}

.legend-dot--after {
  background: var(--teal-deep);
}

.case-tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0 20px;
}

@media (min-width: 480px) {
  .case-tabs {
    flex-direction: row;
  }
}

.case-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 14px 18px;
  border-radius: 16px;
  background: var(--paper);
  border: 1.5px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
}

.case-tab:hover {
  border-color: var(--teal-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.case-tab.is-active {
  background: linear-gradient(135deg, var(--teal-deep) 0%, #1a4f4d 100%);
  border-color: var(--teal-deep);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(22, 56, 54, 0.22);
}

.case-tab-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.case-tab-subtitle {
  font-size: 12.5px;
  font-weight: 500;
  opacity: 0.75;
}

.case-tab.is-active .case-tab-subtitle {
  opacity: 0.9;
  color: var(--mint);
}

.case-info-container {
  margin-bottom: 24px;
  min-height: 105px;
}

.case-info {
  padding: 16px 20px;
  border-radius: 16px;
  background: rgba(230, 240, 238, 0.55);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.35s ease;
}

.case-info[hidden] {
  display: none;
}

.case-badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.case-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-deep);
}

.case-description {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.comparison-wrap {
  min-width: 0;
}

.comparison {
  position: relative;
  height: 520px;
  overflow: hidden;
  border-radius: 44px 20px 44px 20px / 28px 44px 28px 44px;
  background: var(--sage);
  box-shadow: var(--shadow-soft);
  isolation: isolate;
  border: 2px solid var(--line);
}

.comparison-image,
.comparison-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.comparison-image {
  object-fit: cover;
  object-position: 50% 50%;
  transition: opacity 0.3s ease;
}

.comparison-image--before {
  /* Clean authentic clinical image without artificial filters */
}

.comparison-after {
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--slider-position)) 0 0);
}

.comparison-after .comparison-image {
  max-width: none;
}

.comparison-tag {
  position: absolute;
  top: 18px;
  z-index: 2;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(17, 35, 34, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.comparison-tag--before {
  left: 18px;
}

.comparison-tag--after {
  right: 18px;
  background: rgba(30, 86, 80, 0.85);
  border-color: rgba(120, 210, 195, 0.4);
}

.comparison-handle {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: var(--slider-position);
  display: grid;
  width: 3px;
  place-items: center;
  background: var(--paper);
  box-shadow: 0 0 0 1px rgba(17, 35, 34, 0.2);
  pointer-events: none;
  transform: translateX(-1.5px);
}

.comparison-handle span {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  background: var(--paper);
  color: var(--teal-deep);
  box-shadow: 0 10px 24px rgba(22, 56, 54, 0.25);
  font-size: 22px;
  font-weight: 800;
  border: 1.5px solid var(--line);
}

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

.comparison-range:focus-visible {
  opacity: 0.01;
  outline: 3px solid var(--teal-deep);
  outline-offset: -5px;
}

.comparison-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.comparison-disclaimer,
.reviews-disclaimer {
  margin: 14px 0 0;
  color: var(--ink-muted);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.5;
}

/* Reviews Section */
.reviews {
  background: var(--mint);
}

.reviews-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 50px;
}

.reviews-top .section-intro {
  margin-bottom: 0;
}

.rating-lockup {
  display: grid;
  min-width: 230px;
  gap: 4px;
  padding-bottom: 6px;
  text-align: right;
}

.rating-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  width: fit-content;
  margin: 8px 0 0 auto;
  color: var(--teal-ink);
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(79, 123, 121, 0.42);
  text-underline-offset: 4px;
  transition: color 180ms ease-out, text-decoration-color 180ms ease-out, transform 180ms var(--ease-out);
}

.rating-link:hover {
  color: var(--teal-deep);
  text-decoration-color: currentColor;
}

.rating-link:active {
  transform: translateY(1px);
}

.rating-number {
  color: var(--teal-ink);
  font-family: "Outfit", sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.rating-stars,
.review-stars {
  color: #df9e27;
  font-size: 16px;
  letter-spacing: 0.12em;
}

.rating-lockup > span:last-child {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.review-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.review-feature,
.review-card {
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--line);
}

.review-feature {
  display: flex;
  min-height: 340px;
  grid-row: span 2;
  flex-direction: column;
  justify-content: space-between;
  padding: 38px;
  background: var(--teal-deep);
  color: var(--paper);
  border-color: transparent;
}

.quote-mark {
  color: var(--sage);
  font-family: Georgia, serif;
  font-size: 84px;
  line-height: 0.6;
}

.review-feature blockquote {
  max-width: 580px;
  margin: 0;
  color: var(--paper);
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--sand);
  color: var(--teal-ink);
  font-size: 15px;
  font-weight: 800;
}

.review-author strong,
.review-author small {
  display: block;
}

.review-author strong {
  font-size: 15px;
  font-weight: 800;
}

.review-author small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13.5px;
  font-weight: 600;
}

.review-card {
  display: flex;
  min-height: 165px;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 28px 22px;
  background: var(--paper);
}

.review-card--sage {
  background: var(--sage);
  border-color: var(--sage-border);
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.review-status {
  color: var(--teal-ink);
  font-size: 13.5px;
  font-weight: 800;
}

.review-card p {
  max-width: 380px;
  margin: 12px 0 14px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
}

.review-card-meta {
  color: var(--ink-soft);
  font-size: 13.5px;
  font-weight: 700;
}

.reviews-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.reviews-footer p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.reviews-footer-link {
  flex: 0 0 auto;
}

/* Contacts Section */
.contacts {
  padding-top: 30px;
  background: var(--mint);
}

.contacts-layout {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(48px, 8vw, 120px);
  padding: 80px 0 100px;
  border-top: 1.5px solid var(--line);
}

.contact-copy h2 {
  max-width: 540px;
}

.contact-copy > p {
  max-width: 500px;
}

.contact-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.contact-panel {
  overflow: hidden;
  border: 1.5px solid var(--line);
  border-radius: 44px 20px 44px 20px / 28px 44px 28px 44px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.map-illustration {
  position: relative;
  height: 250px;
  overflow: hidden;
  background-color: #d6ebe8;
  background-image: linear-gradient(25deg, transparent 47%, rgba(255, 255, 255, 0.8) 48%, rgba(255, 255, 255, 0.8) 50%, transparent 51%), linear-gradient(112deg, transparent 47%, rgba(255, 255, 255, 0.6) 48%, rgba(255, 255, 255, 0.6) 50%, transparent 51%);
  background-size: 140px 120px, 180px 160px;
}

.map-road {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  transform-origin: center;
}

.map-road--one {
  top: 48%;
  left: -8%;
  width: 120%;
  height: 18px;
  transform: rotate(-14deg);
}

.map-road--two {
  top: -20%;
  left: 38%;
  width: 14px;
  height: 150%;
  transform: rotate(24deg);
}

.map-road--three {
  top: 14%;
  left: -10%;
  width: 125%;
  height: 7px;
  transform: rotate(32deg);
  opacity: 0.7;
}

.map-pin {
  position: absolute;
  top: 42%;
  left: 51%;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 7px solid rgba(255, 255, 255, 0.9);
  border-radius: 50% 50% 50% 0;
  background: var(--teal-deep);
  box-shadow: 0 10px 24px rgba(22, 56, 54, 0.3);
  transform: rotate(-45deg);
}

.map-pin i {
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--paper);
}

.map-label {
  position: absolute;
  top: calc(42% + 64px);
  left: calc(51% - 40px);
  padding: 6px 12px;
  border-radius: 10px;
  background: var(--paper);
  box-shadow: 0 6px 18px rgba(22, 56, 54, 0.15);
  color: var(--teal-ink);
  font-size: 13.5px;
  font-weight: 800;
  border: 1px solid var(--line);
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 30px 32px 34px;
}

.contact-details > div {
  display: grid;
  align-content: start;
  gap: 4px;
}

.detail-label {
  margin-bottom: 4px;
  color: var(--ink-muted);
  font-size: 13.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-details strong {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.35;
}

.contact-details a {
  font-size: 15.5px;
  color: var(--teal-deep);
  font-weight: 800;
  line-height: 1.35;
}

.contact-details a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-details span:last-child {
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 500;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--paper);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 160px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.brand--footer {
  color: var(--paper);
}

.brand--footer .brand-mark {
  background: var(--teal-deep);
}

.brand--footer .brand-copy strong {
  color: var(--paper);
}

.brand--footer .brand-copy span {
  color: var(--sage);
}

.footer-top > p {
  max-width: 320px;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}

.button--footer {
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
  color: var(--paper);
  box-shadow: none;
}

.button--footer:hover {
  border-color: var(--sage);
  background: var(--sage);
  color: var(--teal-ink);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.65);
  font-size: 13.5px;
  font-weight: 500;
}

.footer-bottom a {
  color: var(--paper);
  font-weight: 800;
}

.footer-bottom a:hover {
  color: var(--sage);
}

/* Modal */
.modal-backdrop {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  background: rgba(17, 35, 34, 0.6);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  animation: fade-in 180ms ease both;
}

.modal-backdrop[hidden] {
  display: none;
}

.booking-modal {
  position: relative;
  width: 100%;
  max-width: 580px;
  min-width: 0;
  max-height: min(92vh, 800px);
  margin: auto;
  overflow-y: auto;
  box-sizing: border-box;
  padding: 36px 32px 30px;
  border-radius: 28px;
  background: var(--paper);
  box-shadow: 0 25px 70px rgba(17, 35, 34, 0.35);
  animation: modal-in 240ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  transition: background-color 180ms ease, color 180ms ease, transform 160ms var(--ease-out);
}

.modal-close:hover {
  background: var(--sage);
  color: var(--ink);
}

.modal-close:active {
  transform: scale(0.92);
}

.modal-heading {
  width: 100%;
  min-width: 0;
  margin-bottom: 24px;
  padding-right: 32px;
}

.modal-heading h2 {
  margin-bottom: 8px;
  font-size: clamp(23px, 5.5vw, 34px);
  font-weight: 800;
  line-height: 1.15;
}

.modal-heading > p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.5;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  min-width: 0;
}

.form-field {
  display: grid;
  gap: 7px;
  width: 100%;
  min-width: 0;
}

.contact-choice {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0;
  padding: 0;
  border: 0;
  width: 100%;
  min-width: 0;
}

.contact-choice legend {
  width: 100%;
  min-width: 0;
  margin-bottom: 6px;
  font-size: 13.5px;
}

.contact-choice label {
  position: relative;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1.5px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 700;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
  flex: 1 1 auto;
}

.contact-choice input {
  position: absolute;
  opacity: 0;
}

.contact-choice label:has(input:checked) {
  border-color: var(--teal-deep);
  background: var(--sage);
  color: var(--teal-ink);
}

.form-note {
  margin: 0;
  color: var(--ink-muted);
  font-size: 13px;
  line-height: 1.45;
}

.booking-success {
  min-height: 270px;
  padding-top: 15px;
  text-align: center;
}

.booking-success .success-mark {
  margin: 0 auto 22px;
}

.booking-success h3 {
  margin-bottom: 12px;
  font-size: 32px;
  font-weight: 800;
}

.booking-success p {
  max-width: 400px;
  margin: 0 auto 28px;
  color: var(--ink-soft);
  font-size: 16px;
}

/* Toast */
.toast {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  max-width: min(380px, calc(100% - 48px));
  padding: 14px 20px;
  border-radius: 14px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow-soft);
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 220ms ease, transform 220ms var(--ease-out);
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reveal Animations */
.reveal {
  opacity: 1;
  transform: none;
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 650ms var(--ease-out), transform 650ms var(--ease-out);
}

.reveal-ready .reveal--delay-1 {
  transition-delay: 90ms;
}

.reveal-ready .reveal--delay-2 {
  transition-delay: 160ms;
}

.reveal-ready .reveal--delay-3 {
  transition-delay: 240ms;
}

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

@keyframes gentle-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes quiz-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1140px) {
  .desktop-nav {
    gap: 16px;
    font-size: 14px;
  }

  .header-phone {
    font-size: 14px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
    gap: 40px;
  }

  .hero-badge--rating {
    left: 12px;
  }

  .hero-badge--experience {
    right: 8px;
  }
}

@media (max-width: 920px) {
  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 46px;
    height: 46px;
    align-content: center;
    justify-items: center;
    gap: 6px;
    margin-left: auto;
    border: 1.5px solid var(--line-strong);
    border-radius: 50%;
    background: var(--paper);
    cursor: pointer;
    transition: background-color 180ms ease, transform 160ms var(--ease-out);
  }

  .menu-toggle:hover {
    background: var(--sage);
  }

  .menu-toggle:active {
    transform: scale(0.94);
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 180ms var(--ease-out), opacity 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu {
    display: block;
    border-top: 1.5px solid var(--line);
    background: rgba(245, 249, 248, 0.98);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu-inner {
    display: grid;
    gap: 6px;
    padding-top: 18px;
    padding-bottom: 24px;
  }

  .mobile-menu-inner > a:not(.button) {
    padding: 10px 0;
    color: var(--ink);
    font-size: 16px;
    font-weight: 700;
  }

  .mobile-menu-inner > a:not(.button):hover {
    color: var(--teal-deep);
  }

  .mobile-phone {
    margin: 8px 0 12px;
    color: var(--teal-deep) !important;
    font-size: 18px !important;
    font-weight: 800 !important;
  }

  .hero {
    min-height: auto;
    padding-top: 50px;
  }

  .hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  h1 {
    max-width: 660px;
    font-size: clamp(2.8rem, 7vw, 4.8rem);
  }

  .hero-visual {
    width: min(100%, 560px);
    min-height: 540px;
    margin: 0 auto;
    padding: 0 8px;
  }

  .hero-badge--rating {
    left: 12px;
  }

  .hero-badge--experience {
    right: 8px;
  }

  .hero-badge--care {
    left: 12px;
  }

  .hero-photo-frame {
    right: 4%;
    width: 90%;
    height: 540px;
  }

  .hero-bottomline {
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-top: 10px;
    font-size: 14px;
  }

  .hero-bottomline-rule {
    max-width: 30px;
  }

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

  .benefit--wide {
    grid-row: auto;
    grid-column: span 2;
    min-height: 320px;
    align-content: start;
  }

  .quiz-shell {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 44px 32px;
  }

  .quiz-intro > p {
    max-width: 600px;
  }

  .quiz-note {
    margin-top: 24px;
  }

  .doctors-layout,
  .results-layout,
  .contacts-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .doctors-media {
    width: min(100%, 560px);
    min-height: 500px;
    margin: 0 auto;
  }

  .media-shape {
    right: 4%;
  }

  .doctors-copy,
  .results-copy,
  .contact-copy {
    max-width: 680px;
  }

  .comparison {
    height: min(560px, 75vw);
  }

  .reviews-top {
    align-items: start;
    flex-direction: column;
    gap: 20px;
  }

  .rating-lockup {
    text-align: left;
  }

  .rating-link {
    justify-content: flex-start;
    margin-right: 0;
    margin-left: 0;
  }

  .service-tabs {
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
    padding-right: 16px;
  }

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

  .review-feature {
    grid-column: span 2;
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .header-inner {
    min-height: 70px;
  }

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

  .brand-copy {
    font-size: 17px;
  }

  .hero {
    padding-top: 36px;
  }

  h1 {
    font-size: clamp(2.4rem, 10vw, 3.4rem);
    line-height: 1.05;
  }

  .hero-lead {
    font-size: 16.5px;
    margin-bottom: 26px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

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

  .hero-actions .text-button {
    justify-content: center;
  }

  .hero-visual {
    min-height: 420px;
    overflow: visible;
    padding-bottom: 14px;
  }

  .hero-photo-frame {
    right: 0;
    width: 96%;
    height: 420px;
    border-width: 7px;
  }

  .hero-badge {
    min-width: 140px;
    padding: 10px 12px;
    border-radius: 16px;
  }

  .hero-badge--rating {
    top: 30px;
    left: 12px;
  }

  .hero-badge--experience {
    right: 8px;
    bottom: 50px;
  }

  .hero-badge--care {
    bottom: 0;
    left: 12px;
  }

  .hero-badge strong {
    font-size: 17px;
  }

  .hero-badge small {
    font-size: 13.5px;
  }

  .hero-bottomline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    font-size: 14px;
  }

  .hero-bottomline-rule {
    display: none;
  }

  .section {
    padding: 72px 0;
  }

  .benefits-grid,
  .service-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .benefit--wide {
    grid-column: auto;
    min-height: 0;
    padding: 28px;
  }

  .benefit {
    padding: 24px;
    min-height: 0;
  }

  .benefit h3 {
    font-size: 22px;
  }

  .service-card,
  .service-card--feature,
  .service-card--empty {
    min-height: 0;
    grid-row: auto;
    padding: 24px;
  }

  .service-card h3 {
    margin-top: 18px;
    font-size: 24px;
  }

  .quiz-shell {
    padding: 30px 18px 22px;
    border-radius: 28px;
  }

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

  .quiz-step h3,
  .quiz-result h3 {
    font-size: 23px;
  }

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

  .quiz-option {
    min-height: 60px;
    font-size: 14.5px;
  }

  .doctors-media {
    min-height: 380px;
  }

  .media-shape {
    inset: 0 0 35px 0;
  }

  .doctor-row {
    grid-template-columns: 46px 1fr 40px;
    gap: 12px;
  }

  .doctor-row h3 {
    font-size: 18px;
  }

  .comparison {
    height: 380px;
    border-radius: 28px;
  }

  .comparison-handle span {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .review-feature {
    grid-column: auto;
    padding: 26px;
    min-height: 0;
  }

  .review-feature blockquote {
    font-size: 22px;
  }

  .reviews-footer {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .reviews-footer-link {
    width: 100%;
  }

  .contacts-layout {
    gap: 36px;
    padding-top: 50px;
    padding-bottom: 70px;
  }

  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-actions .button {
    width: 100%;
  }

  .contact-details {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-top: 32px;
    padding-bottom: 28px;
  }

  .footer-top > p {
    text-align: left;
    max-width: 100%;
  }

  .footer-top .button {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px 0 20px;
  }

  .modal-backdrop {
    padding: 12px 8px;
  }

  .booking-modal {
    width: 100%;
    max-width: 100%;
    padding: 24px 16px 20px;
    border-radius: 22px;
    max-height: calc(100dvh - 24px);
    margin: auto;
  }

  .modal-close {
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .modal-heading {
    margin-bottom: 18px;
    padding-right: 36px;
  }

  .modal-heading h2 {
    font-size: 24px;
  }

  .modal-heading > p:last-child {
    font-size: 13.5px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-choice {
    gap: 6px;
  }

  .contact-choice label {
    min-height: 38px;
    padding: 0 10px;
    font-size: 13px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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

/* Whimsy Micro-Interactions & Final Polish */
.button--primary,
.button--footer {
  position: relative;
  overflow: hidden;
}

.button--primary::after,
.button--footer::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -70%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  transition: left 0.85s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
}

.button--primary:hover::after,
.button--footer:hover::after {
  left: 130%;
}

.brand-mark {
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brand-mark:hover {
  transform: scale(1.1) rotate(-4deg);
}

.brand-mark.is-wiggling {
  animation: toothWiggle 0.65s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

@keyframes toothWiggle {
  10%, 90% { transform: scale(1.15) translate3d(-1px, 0, 0) rotate(-6deg); }
  20%, 80% { transform: scale(1.15) translate3d(2px, 0, 0) rotate(6deg); }
  30%, 50%, 70% { transform: scale(1.15) translate3d(-3px, 0, 0) rotate(-4deg); }
  40%, 60% { transform: scale(1.15) translate3d(3px, 0, 0) rotate(4deg); }
}

/* Floating Friendly Helper Widget */
.floating-help {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
}

.floating-help-btn {
  position: relative;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-deep) 0%, #174240 100%);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 28px rgba(22, 56, 54, 0.35);
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.floating-help-btn:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 14px 34px rgba(22, 56, 54, 0.45);
}

.floating-help-icon {
  font-size: 24px;
}

.floating-help-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(30, 86, 80, 0.4);
  animation: helpPulse 2.4s infinite;
  z-index: -1;
}

@keyframes helpPulse {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(0.9); opacity: 0; }
}

.floating-help-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #10b981;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  border: 2px solid #ffffff;
}

.floating-help-menu {
  position: absolute;
  bottom: calc(100% + 14px);
  right: 0;
  width: 290px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid var(--line);
  box-shadow: 0 20px 48px rgba(17, 35, 34, 0.2);
  padding: 16px;
  animation: menuPop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: bottom right;
}

.floating-help-menu[hidden] {
  display: none;
}

@keyframes menuPop {
  from { opacity: 0; transform: scale(0.85) translateY(12px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.floating-help-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 12px;
}

.floating-help-status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.floating-help-status strong {
  display: block;
  font-size: 13.5px;
  color: var(--ink);
  line-height: 1.2;
}

.floating-help-status small {
  font-size: 11.5px;
  color: #059669;
  font-weight: 600;
}

.status-dot-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  animation: pulseGlow 1.8s infinite;
}

.floating-help-close {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--sage);
  border: none;
  font-size: 13px;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background 0.2s;
}

.floating-help-close:hover {
  background: var(--sand-light);
  color: var(--ink);
}

.floating-help-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.floating-action {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  transition: all 0.2s ease;
  cursor: pointer;
}

.floating-action:hover {
  transform: translateX(3px);
  border-color: var(--teal-soft);
  background: rgba(230, 240, 238, 0.4);
}

.floating-action--book {
  background: var(--teal-deep);
  color: #ffffff;
  border-color: var(--teal-deep);
}

.floating-action--book:hover {
  background: #16403e;
  color: #ffffff;
}

.action-icon {
  font-size: 16px;
}

/* Confetti Canvas */
.confetti-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

@media (max-width: 600px) {
  .floating-help {
    bottom: 18px;
    right: 18px;
  }
  .floating-help-btn {
    width: 52px;
    height: 52px;
  }
  .floating-help-menu {
    width: min(300px, calc(100vw - 36px));
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header,
  .hero-badge,
  .floating-help-menu {
    background: rgba(245, 249, 248, 0.98);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}
