:root {
  --bg: #f6f5f0;
  --ink: #171b1a;
  --muted: #69716d;
  --line: #d9ddda;
  --surface: #ffffff;
  --soft: #e8ece8;
  --mint: #c7e5d5;
  --green: #2e7658;
  --shadow: 0 24px 80px rgba(23, 27, 26, 0.08);
  --radius-s: 10px;
  --radius: 16px;
  --radius-l: 24px;
  --container: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(46, 118, 88, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 24px;
  top: 16px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--ink);
  color: #fff;
  padding: 12px 16px;
  border-radius: var(--radius-s);
}

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

.shell {
  width: min(var(--container), calc(100% - clamp(40px, 7vw, 128px)));
  margin-inline: auto;
}

.hero-copy,
.hero-visual,
.start-card,
.case-card,
.doctor-card,
.review-card,
.tech-card,
.cost-card,
.booking-preview,
.final-cta {
  min-width: 0;
}

.section {
  margin-block: clamp(72px, 9vw, 148px);
  scroll-margin-top: 112px;
}

.section.compact {
  margin-block: clamp(52px, 6vw, 96px);
}

.section-zone {
  margin-block: clamp(72px, 9vw, 126px);
  padding-block: clamp(70px, 8vw, 104px);
}

.section-zone-muted {
  background: rgba(232, 236, 232, 0.34);
  border-block: 1px solid rgba(217, 221, 218, 0.52);
}

.section-zone .section {
  margin-block: 0;
}

.section-zone .section + .section {
  margin-top: clamp(64px, 7vw, 92px);
}

.section-zone-single {
  padding-block: clamp(64px, 7vw, 96px);
}

.section-zone-final {
  margin-bottom: 0;
}

#process {
  margin-block: clamp(82px, 10vw, 132px);
}

#cases {
  margin-top: clamp(86px, 9vw, 124px);
}

.section-feature-panel {
  padding: clamp(24px, 3.6vw, 42px);
  border: 1px solid rgba(217, 221, 218, 0.76);
  border-radius: var(--radius-l);
  background: rgba(255, 255, 255, 0.48);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(44px, 7.4vw, 88px);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(28px, 4.2vw, 52px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h3 {
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.12;
  font-weight: 500;
  overflow-wrap: break-word;
}

.lead {
  max-width: 540px;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 22px);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(217, 221, 218, 0.82);
  background: rgba(246, 245, 240, 0.86);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--ink);
  font-size: clamp(24px, 2vw, 31px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  color: var(--ink);
}

.brand-logo-image {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-mark rect {
  fill: rgba(199, 229, 213, 0.48);
  stroke: currentColor;
  stroke-width: 1.6;
}

.brand-mark path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.2;
}

.brand-mark path:last-of-type {
  stroke: var(--green);
  stroke-width: 2.2;
}

.brand-mark circle {
  fill: var(--green);
}

.brand-word {
  transform: translateY(1px);
}

.desktop-nav {
  justify-self: center;
  display: flex;
  gap: clamp(20px, 2.2vw, 42px);
  color: #333836;
  font-size: 14px;
  font-weight: 500;
}

.mobile-nav-links {
  display: grid;
  gap: 16px;
}

.desktop-nav a {
  padding-block: 10px;
}

.desktop-nav a:hover {
  color: var(--green);
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 28px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.hero-actions .btn-dark {
  border-color: rgba(46, 118, 88, 0.22);
  background: var(--mint);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(46, 118, 88, 0.12);
}

.hero-actions .btn-dark:hover,
.hero-actions .btn-dark:focus-visible {
  border-color: rgba(46, 118, 88, 0.32);
  background: #b6dac7;
  box-shadow: 0 18px 42px rgba(46, 118, 88, 0.16);
}

.mobile-menu .btn-dark {
  border-color: rgba(46, 118, 88, 0.22);
  background: var(--mint);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(46, 118, 88, 0.12);
}

.mobile-menu .btn-dark:hover,
.mobile-menu .btn-dark:focus-visible {
  border-color: rgba(46, 118, 88, 0.32);
  background: #b6dac7;
  box-shadow: 0 18px 42px rgba(46, 118, 88, 0.16);
}

.nav-cta.btn-dark {
  border-color: rgba(46, 118, 88, 0.22);
  background: var(--mint);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(46, 118, 88, 0.12);
}

.nav-cta.btn-dark:hover,
.nav-cta.btn-dark:focus-visible {
  border-color: rgba(46, 118, 88, 0.32);
  background: #b6dac7;
  box-shadow: 0 18px 42px rgba(46, 118, 88, 0.16);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.36);
  border-color: #9ea6a1;
  color: var(--ink);
}

.btn-small {
  min-height: 38px;
  padding-inline: 18px;
  font-size: 13px;
}

.btn-invert {
  min-height: 38px;
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(330px, 0.9fr) minmax(520px, 1.55fr);
  align-items: center;
  gap: clamp(40px, 6vw, 88px);
  margin-top: 36px;
}

.hero h1 {
  max-width: 520px;
  margin-bottom: 22px;
  font-size: clamp(42px, 3.75vw, 56px);
  line-height: 1;
  overflow-wrap: normal;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 30px 0 34px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 30px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
  font-size: 13px;
  font-weight: 500;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid #aeb6b1;
  border-radius: 50%;
  color: var(--ink);
}

.hero-visual {
  position: relative;
  min-height: clamp(420px, 46vw, 610px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background: #eee8df;
  box-shadow: var(--shadow);
}

.scan,
.scan small,
.scan strong,
.micro-scan {
  min-width: 0;
  overflow-wrap: break-word;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  filter: saturate(0.95);
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 38px;
  border: 2px solid rgba(255, 255, 255, 0.76);
  border-radius: 12px;
  clip-path: polygon(0 0, 13% 0, 13% 2px, 2px 2px, 2px 13%, 0 13%, 0 0, 100% 0, 100% 13%, calc(100% - 2px) 13%, calc(100% - 2px) 2px, 87% 2px, 87% 0, 100% 0, 100% 100%, 87% 100%, 87% calc(100% - 2px), calc(100% - 2px) calc(100% - 2px), calc(100% - 2px) 87%, 100% 87%, 100% 100%, 0 100%, 0 87%, 2px 87%, 2px calc(100% - 2px), 13% calc(100% - 2px), 13% 100%, 0 100%);
  pointer-events: none;
}

.scan {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 7px;
  color: var(--ink);
}

.scan small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.scan strong {
  font-size: 26px;
  font-weight: 500;
}

.scan b {
  color: var(--green);
  font-size: 18px;
  text-transform: uppercase;
}

.scan-left {
  left: 28px;
  top: 122px;
  width: 120px;
}

.scan-left span {
  height: 4px;
  background: var(--mint);
}

.scan-left span:nth-child(1) { width: 78px; background: var(--ink); }
.scan-left span:nth-child(2) { width: 48px; }
.scan-left span:nth-child(3) { width: 70px; }
.scan-left span:nth-child(4) { width: 95px; }

.scan-right {
  right: 42px;
  top: 58px;
}

.micro-scan {
  position: absolute;
  right: 26px;
  bottom: 28px;
  width: 210px;
  height: 106px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  background:
    radial-gradient(circle at 55% 72%, rgba(92, 255, 181, 0.9), transparent 11%),
    repeating-linear-gradient(0deg, rgba(23, 27, 26, 0.32), rgba(23, 27, 26, 0.32) 2px, transparent 2px, transparent 18px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(214, 205, 191, 0.72));
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.35);
}

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

.section-row h2 {
  margin-bottom: 0;
}

.section-subtitle {
  max-width: 560px;
  margin: -10px 0 28px;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 19px);
}

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

.start-card,
.case-card,
.doctor-card,
.review-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.54);
}

.start-card {
  min-height: 134px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.start-card:hover {
  transform: translateY(-2px);
  border-color: #aeb6b1;
  background: rgba(255, 255, 255, 0.76);
}

.start-card.selected {
  border-color: rgba(46, 118, 88, 0.44);
  background: linear-gradient(180deg, rgba(199, 229, 213, 0.72), rgba(232, 236, 232, 0.56));
  box-shadow: inset 0 0 0 1px rgba(46, 118, 88, 0.12);
}

.start-card.selected .arrow {
  color: var(--green);
  transform: rotate(90deg);
}

.start-card > span:nth-child(2) {
  min-width: 0;
  max-width: 100%;
}

.start-card:disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

.start-panel {
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.48);
  animation: panel-in 0.22s ease;
}

.panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(22px, 4vw, 48px);
  padding: clamp(22px, 3.4vw, 36px);
}

.panel-grid h3 {
  margin-bottom: 12px;
}

.panel-grid p {
  color: var(--muted);
}

.option-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.option-grid.stacked {
  display: grid;
  grid-template-columns: 1fr;
}

.option-chip {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.65);
  padding: 9px 14px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 600;
  text-align: left;
}

.option-chip:hover {
  border-color: #aeb6b1;
  background: rgba(232, 236, 232, 0.75);
}

.option-chip.selected {
  border-color: rgba(46, 118, 88, 0.48);
  background: var(--mint);
  color: var(--ink);
}

.panel-result {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(232, 236, 232, 0.55);
  padding: clamp(20px, 3vw, 30px);
}

.panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.search-label {
  margin-top: 22px;
}

.procedure-list {
  display: grid;
  gap: 12px;
}

.procedure-result {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
  padding: 16px;
}

.procedure-result h4 {
  margin: 0 0 6px;
  font-size: 17px;
}

.procedure-result p {
  margin-bottom: 8px;
}

.procedure-result small {
  color: var(--muted);
}

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

.availability-list article {
  display: grid;
  grid-template-columns: 82px 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.52);
  padding: 12px;
}

.availability-list small {
  color: var(--muted);
}

.availability-list b {
  color: var(--green);
}

.empty-state {
  display: grid;
  align-content: center;
  min-height: 180px;
}

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

.icon-bubble {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--soft);
  color: var(--ink);
  font-size: 24px;
}

.start-card h3 {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.22;
  font-weight: 600;
  overflow-wrap: anywhere;
  white-space: normal;
}

.start-card p,
.case-card p,
.doctor-card p,
.review-card p,
.map-copy p,
.map-card p,
.cost-card p,
.footer p {
  color: var(--muted);
  overflow-wrap: anywhere;
  white-space: normal;
}

.arrow {
  color: var(--muted);
  font-size: 22px;
}

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

.concern-card {
  min-height: 118px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #d7b9a8;
  color: var(--ink);
  font-weight: 600;
  position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.concern-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  opacity: 0.86;
  filter: saturate(0.92);
}

.concern-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(246, 245, 240, 0.04), rgba(246, 245, 240, 0.56));
}

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

.concern-card span {
  position: relative;
  z-index: 1;
  max-width: 130px;
}

.process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  min-width: 0;
}

.process-step > div {
  min-width: 0;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 24px;
  right: -18px;
  width: 36px;
  border-top: 2px dotted #9aa49e;
}

.step-num {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.process-step h3 {
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 600;
}

.process-step p {
  color: var(--muted);
  font-size: 13px;
}

.process-timeline {
  --timeline-progress: 0%;
  position: relative;
  margin-top: 32px;
}

.process-timeline.is-visible {
  --timeline-progress: 100%;
}

.process-timeline__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-timeline__list::before,
.process-timeline__list::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 47px;
  height: 1px;
  background: var(--line);
  pointer-events: none;
}

.process-timeline__list::after {
  right: auto;
  width: var(--timeline-progress);
  max-width: 80%;
  background: rgba(46, 118, 88, 0.42);
  transition: width 820ms ease;
}

.process-timeline__step {
  position: relative;
  min-width: 0;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 12px;
  text-align: center;
}

.process-timeline__number {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.process-timeline__marker {
  position: relative;
  z-index: 1;
  width: 13px;
  height: 13px;
  border: 1px solid #aeb6b1;
  border-radius: 50%;
  background: var(--bg);
  transition: background 180ms ease, border-color 180ms ease;
  transition-delay: calc(var(--i) * 110ms);
}

.process-timeline.is-visible .process-timeline__marker,
.process-timeline__step:hover .process-timeline__marker {
  border-color: rgba(46, 118, 88, 0.62);
  background: var(--mint);
}

.process-timeline__icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.58);
  line-height: 1;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.process-timeline__icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-timeline__step:hover .process-timeline__icon {
  border-color: #aeb6b1;
  color: var(--green);
  background: rgba(255, 255, 255, 0.82);
}

.process-timeline__step.highlighted .process-timeline__icon {
  border-color: rgba(46, 118, 88, 0.24);
  color: var(--green);
  background: rgba(199, 229, 213, 0.28);
}

.process-timeline__content {
  display: grid;
  justify-items: center;
  gap: 6px;
}

.process-timeline__content strong {
  font-size: 16px;
  font-weight: 600;
}

.process-timeline__content span:last-child {
  max-width: 190px;
  color: var(--muted);
  font-size: 13px;
}

.process-timeline__label {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(46, 118, 88, 0.22);
  border-radius: 8px;
  background: rgba(199, 229, 213, 0.42);
  padding: 3px 8px;
  color: var(--green);
  font-size: 11px;
  font-weight: 600;
}

.process-timeline__label.muted {
  visibility: hidden;
}

.process-timeline__step.highlighted .process-timeline__marker {
  border-color: rgba(46, 118, 88, 0.56);
  background: var(--mint);
}

.process-timeline__step.highlighted .process-timeline__content strong {
  font-weight: 700;
}

.skin-map {
  display: grid;
  grid-template-columns: minmax(360px, 1.25fr) minmax(340px, 0.9fr);
  gap: clamp(26px, 4vw, 42px);
  align-items: stretch;
}

.map-image {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border-radius: var(--radius-l);
  background: #d8c2b2;
}

.map-image img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
}

.map-image::after {
  content: "";
  position: absolute;
  inset: 24px;
  pointer-events: none;
  border: 2px dashed rgba(255, 255, 255, 0.75);
  border-radius: 45% 55% 48% 42%;
}

.map-markers {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.map-point {
  position: absolute;
  left: calc(var(--x) * 1%);
  top: calc(var(--y) * 1%);
  z-index: 3;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  transform: translate(-50%, -50%);
  cursor: pointer;
  overflow: visible;
}

.map-point::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: rgba(199, 229, 213, 0.82);
  box-shadow: 0 0 0 7px rgba(199, 229, 213, 0.34);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.map-point span {
  position: absolute;
  left: 50%;
  bottom: calc(100% - 4px);
  min-width: max-content;
  max-width: 150px;
  width: max-content;
  transform: translateX(-50%) translateY(4px);
  border: 1px solid rgba(46, 118, 88, 0.18);
  border-radius: 8px;
  background: rgba(248, 248, 244, 0.92);
  padding: 5px 9px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  overflow-wrap: normal;
  white-space: normal;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.map-point:hover::before,
.map-point:focus-visible::before,
.map-point.related::before {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 0 0 9px rgba(199, 229, 213, 0.46);
}

.map-point:hover span,
.map-point:focus-visible span,
.map-point.active span,
.map-point.related span {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.map-point.active {
  outline: 2px solid rgba(46, 118, 88, 0.48);
  outline-offset: 2px;
}

.map-point.active::before {
  background: var(--green);
  box-shadow: 0 0 0 9px rgba(199, 229, 213, 0.6), 0 0 0 16px rgba(255, 255, 255, 0.34);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.chip,
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 5px 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  font-weight: 500;
}

.chip.selected {
  border-color: rgba(46, 118, 88, 0.36);
  background: var(--mint);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(46, 118, 88, 0.12);
}

.map-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.skin-map-panel {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(232, 236, 232, 0.58);
}

.skin-map-panel h3,
.skin-topic-block h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.skin-map-panel p,
.map-disclaimer {
  color: var(--muted);
}

.skin-zone-list {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 10px;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: var(--radius);
  background: rgba(248, 248, 244, 0.86);
  padding: 10px 14px;
  backdrop-filter: blur(8px);
}

.skin-zone-list p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
}

.skin-zone-list div,
.skin-topic-list,
.skin-map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skin-zone-list .chip {
  min-height: 28px;
  padding-block: 4px;
}

.skin-topic-block {
  margin-top: 22px;
}

.skin-topic-list--panel {
  margin-top: 16px;
}

.topic-card {
  flex: 1 1 180px;
  min-height: 72px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  padding: 14px;
  text-align: left;
  cursor: pointer;
}

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

.topic-card strong {
  margin-bottom: 6px;
  font-size: 15px;
}

.topic-card span {
  color: var(--muted);
  font-size: 12px;
}

.topic-card:hover,
.topic-card:focus-visible,
.chip:hover,
.chip:focus-visible {
  border-color: rgba(46, 118, 88, 0.32);
  background: rgba(255, 255, 255, 0.88);
}

.skin-map-facts {
  display: grid;
  gap: 8px;
  margin: 16px 0 18px;
  padding: 0;
  list-style: none;
}

.skin-map-facts li {
  border-top: 1px solid rgba(26, 30, 29, 0.08);
  padding-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.skin-map-actions {
  margin-top: 18px;
}

.text-back {
  margin-bottom: 14px;
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.map-disclaimer {
  margin-top: 18px;
  font-size: 12px;
}

.skin-map-empty {
  margin-top: 16px;
}

.skin-map-empty h4 {
  margin-bottom: 14px;
  font-size: 16px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.case-card {
  display: flex;
  flex-direction: column;
  padding: 22px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.case-card:hover {
  transform: translateY(-1px);
  border-color: rgba(46, 118, 88, 0.28);
  background: rgba(255, 255, 255, 0.7);
}

.case-card .badge {
  width: fit-content;
  margin-bottom: 14px;
  border: 0;
  background: var(--mint);
  color: var(--green);
}

.case-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.18;
}

.case-context {
  min-height: 38px;
  margin-bottom: 16px;
  font-size: 14px;
}

.case-rows {
  margin-top: auto;
}

.case-row {
  display: grid;
  grid-template-columns: minmax(88px, 0.52fr) minmax(0, 1fr);
  gap: 14px;
  padding-block: 8px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.case-row strong {
  color: var(--ink);
  font-weight: 500;
  overflow-wrap: anywhere;
}

.case-row a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: rgba(46, 118, 88, 0.28);
  text-underline-offset: 3px;
}

.case-row a:hover,
.case-row a:focus-visible {
  color: var(--green);
  text-decoration-color: currentColor;
}

.case-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  color: var(--green);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.case-card:hover .case-link,
.case-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.case-filter-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-block: 0 28px;
}

.doctor-filter-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-block: 0 28px;
}

.case-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.case-timeline article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.52);
  padding: 18px;
}

.case-timeline span {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-weight: 600;
}

.doctor-card {
  display: grid;
  grid-template-columns: minmax(118px, 0.82fr) minmax(0, 1fr);
  gap: 18px;
  padding: 10px;
  align-items: stretch;
  transition: border-color 180ms ease, background 180ms ease;
}

.doctor-card:hover {
  border-color: rgba(46, 118, 88, 0.28);
  background: rgba(255, 255, 255, 0.7);
}

.doctor-card--home {
  grid-template-columns: minmax(130px, 0.74fr) minmax(0, 1.06fr);
}

.doctor-card--home img {
  height: 180px;
}

.doctor-photo-link {
  display: block;
  min-width: 0;
  border-radius: 12px;
  outline-offset: 3px;
}

.doctor-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 12px;
  background: var(--soft);
}

.doctor-card > div,
.doctor-card__body {
  min-width: 0;
  padding: 12px 8px 10px 0;
}

.doctor-card h3 {
  margin-bottom: 8px;
  font-size: 17px;
  line-height: 1.18;
  font-weight: 600;
  overflow-wrap: break-word;
}

.doctor-card h3 a {
  display: inline;
  color: inherit;
  text-decoration: none;
  overflow-wrap: break-word;
}

.doctor-card h3 a:hover,
.doctor-card h3 a:focus-visible,
.doctor-more-link:hover,
.doctor-more-link:focus-visible {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.doctor-card p {
  margin-bottom: 10px;
  font-size: 13px;
}

.doctor-role,
.doctor-branch {
  color: var(--muted);
}

.doctor-experience {
  color: var(--ink);
  font-weight: 600;
}

.doctor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
  padding: 0;
  list-style: none;
}

.doctor-tags li {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.52);
  padding: 5px 9px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.doctor-more-link {
  display: inline-flex;
  margin-top: 4px;
  color: var(--green);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  overflow-wrap: break-word;
}

.next-time {
  color: var(--green);
  font-weight: 600;
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.review-card {
  min-height: 220px;
  padding: 24px;
  position: relative;
  transition: border-color 180ms ease, background 180ms ease;
}

.review-card:hover {
  border-color: rgba(46, 118, 88, 0.26);
  background: rgba(255, 255, 255, 0.7);
}

.review-card--featured {
  min-height: 260px;
  padding: clamp(24px, 3vw, 36px);
}

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

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

.review-grid--catalog .review-card h3 {
  font-size: 20px;
}

.review-context {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  border: 1px solid rgba(46, 118, 88, 0.18);
  border-radius: 8px;
  background: rgba(199, 229, 213, 0.28);
  padding: 4px 9px;
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
}

.review-card h3 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.18;
  font-weight: 600;
}

.review-compact-grid .review-card h3 {
  font-size: 19px;
}

.review-card p {
  max-width: 860px;
  margin: 0 0 22px;
  color: var(--muted);
}

.review-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 16px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(46, 118, 88, 0.18);
  border-radius: 50%;
  background: var(--mint);
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.review-person strong {
  display: block;
  color: var(--ink);
}

.review-meta {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
}

.review-concern {
  width: fit-content;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.52);
  padding: 5px 9px;
  color: var(--muted);
}

.review-doctor-relation a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: rgba(46, 118, 88, 0.28);
  text-underline-offset: 3px;
}

.review-doctor-relation a:hover,
.review-doctor-relation a:focus-visible {
  color: var(--green);
  text-decoration-color: currentColor;
}

.review-meta time {
  color: var(--muted);
}

.review-filter-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-block: 0 28px;
}

.tech-band {
  padding: 40px clamp(22px, 3vw, 40px);
  border: 1px solid rgba(34, 48, 42, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 12%, rgba(199, 229, 213, 0.16), transparent 34%),
    linear-gradient(135deg, #24302c 0%, #19221f 52%, #16201d 100%);
  color: #fff;
}

.tech-band__inner {
  min-width: 0;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.tech-card {
  min-height: 248px;
  display: grid;
  grid-template-columns: minmax(148px, 0.82fr) minmax(0, 1fr);
  gap: 20px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.tech-card:hover {
  border-color: rgba(255, 255, 255, 0.38);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05));
  transform: translateY(-2px);
}

.tech-image-link {
  min-width: 0;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.tech-card img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  filter: grayscale(0.2);
}

.tech-card__body {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 12px;
}

.tech-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.12;
}

.tech-card h3 a {
  color: #fff;
  text-decoration: none;
}

.tech-card h3 a:hover,
.tech-card h3 a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.tech-card p,
.tech-card small {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.tech-directions {
  display: grid;
  gap: 8px;
}

.tech-directions > span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tech-direction-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tech-direction-list span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 5px 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  text-decoration: none;
}

.tech-more-link {
  align-self: end;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.tech-more-link:hover,
.tech-more-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.technology-filter-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-block: 0 28px;
}

.cost-card,
.booking-preview,
.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.5);
  padding: 28px;
}

.cost-card {
  background:
    radial-gradient(circle at 74% 50%, rgba(199, 229, 213, 0.75), transparent 18%),
    rgba(255, 255, 255, 0.5);
}

#price .cost-card .btn-dark {
  border-color: rgba(46, 118, 88, 0.22);
  background: var(--mint);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(46, 118, 88, 0.12);
}

#price .cost-card .btn-dark:hover,
#price .cost-card .btn-dark:focus-visible {
  border-color: rgba(46, 118, 88, 0.32);
  background: #b6dac7;
  box-shadow: 0 18px 42px rgba(46, 118, 88, 0.16);
}

.cost-card h2,
.final-cta h2 {
  margin: 8px 0 8px;
}

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

.slot-day {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.48);
}

.slot-day h3 {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.slot-times {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.slot-times button,
.slot-times a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  border: 0;
  border-radius: 8px;
  background: var(--mint);
  color: var(--green);
  padding: 5px 10px;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
}

.final-cta {
  margin-block: 52px;
  background: linear-gradient(90deg, rgba(199, 229, 213, 0.44), rgba(246, 245, 240, 0.78));
}

.footer {
  padding: 44px 0 22px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 44px;
}

.footer h3 {
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 700;
}

.footer a {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
}

.footer .brand {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--ink);
}

.disclaimer {
  margin-top: 38px;
  color: #a2aaa6;
  font-size: 12px;
  text-transform: uppercase;
}

.modal {
  width: min(560px, calc(100% - 32px));
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: transparent;
}

.modal::backdrop {
  background: rgba(23, 27, 26, 0.52);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  display: grid;
  gap: 18px;
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--bg);
  box-shadow: var(--shadow);
}

.modal-card h2 {
  margin-bottom: 4px;
}

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

.modal-slots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  border: 0;
  padding: 0;
}

.modal-slots legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.modal-slots label {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.58);
  padding: 10px;
  color: var(--ink);
}

.modal-slots input {
  width: 18px;
  min-height: 18px;
}

.modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

input,
select {
  min-height: 48px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0 14px;
  color: var(--ink);
}

.form-error {
  color: #9e342b;
}

.form-success {
  color: var(--green);
  font-weight: 600;
}

.legal-consent {
  display: grid;
  gap: 10px;
  margin-top: 4px;
  padding: 14px;
  border: 1px solid rgba(217, 221, 218, 0.8);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.46);
}

.legal-consent__item {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.38;
}

.legal-consent__item input {
  width: 18px;
  min-height: 18px;
  margin: 0;
  padding: 0;
  accent-color: var(--green);
}

.legal-consent__item a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.route-root[hidden],
main[hidden] {
  display: none;
}

.route-page {
  padding-block: clamp(42px, 6vw, 86px);
}

.breadcrumbs {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a:hover,
.next-step-panel a:not(.btn):hover {
  color: var(--green);
}

.back-link {
  min-height: 38px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.54);
  padding: 0 14px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 600;
}

.route-hero {
  display: grid;
  gap: clamp(24px, 5vw, 56px);
  margin-bottom: clamp(44px, 6vw, 84px);
}

.route-hero.split {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  align-items: center;
}

.route-hero img {
  width: 100%;
  min-height: 330px;
  max-height: 480px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background: var(--soft);
}

.route-section {
  margin-block: clamp(44px, 6vw, 82px);
}

.route-section .tech-card {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 18px 60px rgba(23, 27, 26, 0.06);
}

.route-section .tech-card:hover {
  border-color: rgba(46, 118, 88, 0.28);
  background: rgba(255, 255, 255, 0.78);
}

.route-section .tech-card h3 a,
.route-section .tech-more-link {
  color: var(--ink);
}

.route-section .tech-card p,
.route-section .tech-card small {
  color: var(--muted);
}

.route-section .tech-directions > span {
  color: rgba(23, 27, 26, 0.5);
}

.route-section .tech-direction-list span {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
}

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

.route-card {
  display: block;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.54);
  padding: 22px;
}

.route-card p,
.next-step-panel p {
  color: var(--muted);
}

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

.info-grid,
.metric-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.info-grid article,
.booking-flow article,
.metric-list span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.52);
  padding: 18px;
}

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

.clinic-contact-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.52);
  padding: 22px;
}

.clinic-contact-grid h3 {
  margin-bottom: 10px;
}

.clinic-contact-grid p {
  margin: 8px 0 0;
  color: var(--muted);
}

.clinic-photo-section {
  margin-top: calc(clamp(44px, 6vw, 84px) * -0.35);
}

.clinic-photo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.clinic-photo-card {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 18px 60px rgba(23, 27, 26, 0.06);
}

.clinic-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.clinic-photo-card figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  max-width: calc(100% - 32px);
  border: 1px solid rgba(217, 221, 218, 0.74);
  border-radius: 999px;
  background: rgba(246, 245, 240, 0.86);
  color: var(--ink);
  padding: 8px 13px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 12px 34px rgba(23, 27, 26, 0.08);
  backdrop-filter: blur(14px);
}

.legal-page {
  display: grid;
  gap: 14px;
  max-width: 940px;
}

.legal-page article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.56);
  padding: clamp(18px, 2.4vw, 26px);
}

.legal-page h2 {
  margin: 0 0 8px;
  font-size: clamp(21px, 2vw, 28px);
}

.legal-page p {
  margin: 0;
  color: var(--muted);
}

.metric-list {
  margin: 28px 0;
}

.metric-list small {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.metric-list span,
.metric-list strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

.next-step-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-block: clamp(48px, 7vw, 92px);
  border: 1px solid rgba(46, 118, 88, 0.28);
  border-radius: var(--radius);
  background: linear-gradient(90deg, rgba(199, 229, 213, 0.42), rgba(255, 255, 255, 0.54));
  padding: clamp(24px, 4vw, 40px);
}

.progress {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
}

.progress span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  font-weight: 700;
}

.progress span.selected {
  background: var(--mint);
  color: var(--ink);
}

.booking-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.booking-hero {
  margin-bottom: 18px;
}

.booking-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  align-items: start;
  gap: clamp(18px, 3vw, 28px);
}

.booking-form {
  display: grid;
  gap: 16px;
}

.booking-form__section,
.booking-summary {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.56);
  padding: clamp(18px, 2.6vw, 26px);
}

.booking-form__section {
  display: grid;
  gap: 14px;
}

.booking-form__section h2,
.booking-summary h2 {
  margin: 0;
  font-size: 24px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
}

.booking-form textarea {
  resize: vertical;
}

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

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

.booking-slot {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.58);
  padding: 12px;
}

.booking-slot input {
  width: 18px;
  min-height: 18px;
  padding: 0;
}

.booking-slot span {
  font-weight: 800;
}

.booking-slot small {
  grid-column: 2;
  color: var(--muted);
}

.booking-summary {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 16px;
}

.booking-summary__list {
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.booking-summary__list p {
  display: grid;
  gap: 3px;
  margin: 0;
}

.booking-summary__list span {
  color: var(--muted);
  font-size: 13px;
}

.booking-summary__mobile-total {
  display: none;
}

.booking-success {
  display: grid;
  justify-items: start;
  gap: 16px;
  max-width: 720px;
  border: 1px solid rgba(46, 118, 88, 0.24);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  padding: clamp(28px, 5vw, 48px);
}

.booking-success h1,
.booking-success p {
  margin: 0;
}

.booking-success h1 {
  max-width: 12ch;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
}

.booking-success .lead {
  max-width: 56ch;
}

.admin-page {
  max-width: 1180px;
  min-height: 72vh;
  padding-top: 56px;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.admin-header h1 {
  margin: 4px 0 8px;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 0.95;
}

.admin-header p {
  margin: 0;
  color: var(--muted);
}

.admin-actions,
.admin-tabs,
.admin-request__consents {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-actions {
  justify-content: flex-end;
  padding-top: 18px;
}

.admin-tabs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  align-items: stretch;
  margin: 24px 0;
}

.admin-tab {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  padding: 12px 18px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.admin-tab.is-active {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.admin-tab span {
  min-width: 18px;
  text-align: center;
}

.admin-login {
  min-height: 74vh;
  display: grid;
  place-items: center;
  padding-block: 48px;
}

.admin-login__card {
  width: min(420px, 100%);
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: var(--shadow);
}

.admin-login__card h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1;
}

.admin-login__card label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}

.admin-login__card input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 12px 14px;
  color: var(--ink);
}

.admin-content {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.56);
  min-height: 110px;
  padding: clamp(18px, 2.8vw, 28px);
}

.admin-empty {
  min-height: 88px;
  display: grid;
  place-items: center;
  color: var(--muted);
  text-align: center;
}

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

.admin-request {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  padding: clamp(16px, 2.4vw, 24px);
}

.admin-request__top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.admin-request__top h2 {
  margin: 4px 0;
  font-size: 24px;
}

.admin-request__top p {
  margin: 0;
  color: var(--muted);
}

.admin-request__meta {
  display: grid;
  gap: 10px;
  justify-items: end;
  color: var(--muted);
  font-size: 14px;
}

.admin-request__meta select {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 10px 12px;
  font: inherit;
  font-weight: 700;
  color: var(--ink);
}

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

.admin-request__grid p,
.admin-request__calculation li {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(247, 249, 250, 0.72);
  padding: 12px;
}

.admin-request__grid span,
.admin-request__calculation span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
}

.admin-request__grid strong,
.admin-request__calculation strong {
  display: block;
  overflow-wrap: anywhere;
}

.admin-request__calculation {
  display: grid;
  gap: 8px;
  margin: 14px 0;
  padding: 0;
  list-style: none;
}

.admin-request__calculation li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, auto);
  gap: 12px;
  align-items: center;
}

.admin-request__consents span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 8px 12px;
  color: var(--muted);
  font-size: 13px;
}

.schedule-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  align-items: start;
  gap: clamp(18px, 3vw, 28px);
}

.schedule-calendar,
.schedule-day-panel {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.56);
  padding: clamp(16px, 2.6vw, 24px);
}

.schedule-calendar__head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.schedule-calendar__head h2,
.schedule-day-panel h2 {
  margin: 0;
  font-size: 24px;
}

.schedule-calendar__head h2 {
  text-align: center;
}

.schedule-calendar__weekdays,
.schedule-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.schedule-calendar__weekdays {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.schedule-calendar__blank,
.schedule-day {
  min-height: 82px;
}

.schedule-day {
  display: grid;
  align-content: space-between;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.62);
  padding: 10px;
  color: var(--ink);
  text-decoration: none;
}

.schedule-day span {
  font-size: 20px;
  font-weight: 700;
}

.schedule-day small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.schedule-day.is-free {
  border-color: rgba(46, 118, 88, 0.22);
  background: rgba(199, 229, 213, 0.44);
}

.schedule-day.is-free small {
  color: var(--green);
  font-weight: 700;
}

.schedule-day.is-busy {
  background: rgba(245, 241, 235, 0.72);
}

.schedule-day.is-past {
  opacity: 0.48;
  background: transparent;
}

.schedule-day.is-selected {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.schedule-day-panel {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 16px;
}

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

.schedule-slot {
  display: grid;
  gap: 3px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.64);
  padding: 12px;
  color: var(--ink);
  text-decoration: none;
}

.schedule-slot span {
  color: var(--green);
  font-size: 22px;
  font-weight: 800;
}

.schedule-slot small {
  color: var(--muted);
}

.calculator-builder {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
  align-items: start;
  gap: clamp(18px, 3vw, 28px);
}

.calculator-builder__main {
  display: grid;
  gap: 14px;
}

.calc-variant-tabs,
.calc-entry-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.calc-variant-tabs button,
.calc-entry-tabs button,
.calc-chip-grid button,
.calc-builder-card .option-grid button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.58);
  padding: 9px 13px;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  min-width: 0;
  overflow-wrap: anywhere;
}

.calc-variant-tabs button {
  min-width: 148px;
  display: grid;
  gap: 4px;
}

.calc-variant-tabs small,
.calc-chip-grid small,
.calc-builder-card .option-grid small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.calc-builder-card .option-grid small {
  margin-top: 4px;
  color: var(--green);
  font-weight: 800;
}

.calc-variant-tabs button.selected,
.calc-entry-tabs button.selected,
.calc-chip-grid button.selected,
.calc-builder-card .option-grid button.selected {
  border-color: rgba(46, 118, 88, 0.42);
  background: var(--mint);
  color: var(--green);
}

.calc-builder-card,
.calc-summary {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.52);
  padding: clamp(16px, 2.4vw, 24px);
}

.calc-builder-card {
  display: grid;
  gap: 14px;
}

.calc-builder-card h2 {
  margin: 0;
  font-size: 24px;
}

.calc-builder-card h3 {
  margin: 6px 0 -4px;
  font-size: 16px;
}

.calc-step-kicker {
  margin: 0;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.calc-flow-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  border: 1px solid rgba(46, 118, 88, 0.18);
  border-radius: 12px;
  background: rgba(226, 241, 232, 0.52);
  padding: 14px;
  color: var(--muted);
  font-size: 13px;
}

.calc-flow-note strong {
  color: var(--ink);
}

.calc-flow-note span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  padding: 4px 10px;
}

.calc-hero {
  margin-bottom: 18px;
}

.calc-picker-row {
  padding: 0;
  overflow: hidden;
}

.calc-picker-row summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 74px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
}

.calc-picker-row summary::-webkit-details-marker {
  display: none;
}

.calc-picker-row summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.68);
  color: var(--green);
  font-weight: 800;
}

.calc-picker-row[open] summary::after {
  content: "-";
}

.calc-picker-row summary span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.calc-picker-row summary strong {
  grid-column: 1;
  color: var(--ink);
  font-size: 18px;
}

.calc-picker-row__body {
  display: grid;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding: 18px 20px 20px;
}

.calc-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.calc-chip-grid button {
  display: inline-grid;
  gap: 3px;
}

.calc-selected-list {
  display: grid;
  gap: 12px;
}

.calc-selected-empty {
  min-height: auto;
  padding-block: 14px;
}

.calc-selected-empty h2 {
  font-size: 18px;
}

.calc-selected-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 16px;
  align-items: center;
  border: 1px solid rgba(200, 207, 202, 0.82);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.54);
  padding: 16px;
}

.calc-selected-item h3,
.calc-selected-item p {
  margin: 0;
}

.calc-selected-item small {
  color: var(--green);
  font-weight: 700;
}

.calc-selected-item.is-editing {
  border-color: rgba(46, 118, 88, 0.42);
  background: rgba(226, 241, 232, 0.58);
}

.calc-inline-editor {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

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

.calc-toggle {
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.54);
  padding: 14px;
}

.calc-toggle input {
  width: 18px;
  min-height: 18px;
}

.calc-summary {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 14px;
}

.calc-summary__head {
  display: grid;
  gap: 4px;
}

.calc-summary__head h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 0.98;
}

.calc-summary__head span,
.calc-summary__explain,
.calc-summary__line small {
  color: var(--muted);
}

.calc-summary__group {
  display: grid;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.calc-summary__group h3 {
  margin: 0;
  font-size: 16px;
}

.calc-summary__line {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px 12px;
  align-items: start;
  border: 1px solid rgba(200, 207, 202, 0.62);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.48);
  padding: 10px;
}

.calc-summary__line .calc-inline-editor {
  grid-template-columns: 1fr;
}

.calc-summary__line strong {
  color: var(--green);
}

.calc-summary__line:hover,
.calc-summary__line:focus-within {
  background: rgba(226, 241, 232, 0.5);
}

.calc-summary__line.is-missing strong {
  color: #8c5c26;
}

.calc-line-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.calc-line-actions button {
  min-height: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 3px 9px;
  color: var(--muted);
  cursor: pointer;
}

.calc-line-actions button:hover,
.calc-line-actions button:focus-visible {
  color: var(--green);
}

.calc-budget-notice,
.calc-inline-notice {
  border: 1px solid rgba(157, 117, 47, 0.22);
  border-radius: 10px;
  background: rgba(246, 238, 218, 0.62);
  padding: 10px 12px;
  color: #7b612e;
}

.calc-summary__explain {
  display: grid;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  font-size: 13px;
}

.calc-summary__explain h3,
.calc-summary__explain p {
  margin: 0;
}

.calc-mobile-bar,
.calc-mobile-sheet {
  display: none;
}

@media (max-width: 860px) {
  .desktop-nav {
    gap: 18px;
  }

  .hero,
  .skin-map {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

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

  .concern-strip,
  .case-grid,
  .tech-grid,
  .route-card-grid,
  .clinic-contact-grid,
  .info-grid,
  .metric-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

  .section-zone {
    margin-block: clamp(64px, 8vw, 96px);
    padding-block: clamp(56px, 7vw, 82px);
  }

  .nav {
    min-height: 72px;
    grid-template-columns: auto 1fr auto;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    justify-self: end;
    gap: 6px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.45);
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--ink);
  }

  .mobile-menu.open {
    display: grid;
    gap: 16px;
    padding: 20px;
    border-top: 1px solid var(--line);
    background: var(--bg);
  }

  .hero {
    margin-top: 24px;
  }

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

  .scan-right {
    right: 22px;
  }

  .micro-scan {
    width: 160px;
  }

  .section-row,
  .cost-card,
  .booking-preview,
  .final-cta {
    grid-template-columns: 1fr;
    display: grid;
    justify-items: start;
  }

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

  .process-step:not(:last-child)::after {
    left: 14px;
    top: 36px;
    height: 30px;
    width: 0;
    border-top: 0;
    border-left: 2px dotted #9aa49e;
  }

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

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

  .route-hero.split,
  .next-step-panel,
  .booking-flow,
  .booking-form-layout,
  .schedule-layout,
  .admin-request__grid,
  .calculator-builder,
  .doctors-route-grid {
    grid-template-columns: 1fr;
  }

  .admin-header,
  .admin-request__top {
    display: grid;
  }

  .admin-actions,
  .admin-request__meta {
    justify-content: start;
    justify-items: start;
    padding-top: 0;
  }

  .booking-summary,
  .schedule-day-panel {
    position: static;
  }

  .calc-summary {
    position: static;
  }

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

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

@media (max-width: 640px) {
  .shell {
    width: auto;
    max-width: none;
    margin-inline: 20px;
  }

  .section-zone {
    margin-block: 64px;
    padding-block: 52px;
  }

  .section-zone .section + .section {
    margin-top: 52px;
  }

  .section-zone-single {
    padding-block: 52px;
  }

  .section-feature-panel {
    padding: 20px;
    border-radius: 18px;
  }

  .clinic-photo-card img {
    min-height: 240px;
  }

  #process,
  #cases {
    margin-block: 72px;
  }

  h1 {
    font-size: clamp(40px, 12vw, 48px);
  }

  .hero h1 {
    font-size: clamp(40px, 11vw, 48px);
  }

  .lead {
    font-size: 17px;
  }

  .section {
    margin-block: 72px;
  }

  .hero-actions,
  .hero-actions .btn,
  .cost-card .btn,
  .booking-preview .btn,
  .admin-actions .btn,
  .final-cta .btn {
    width: 100%;
  }

  .admin-tabs {
    display: grid;
    grid-template-columns: 1fr;
  }

  .admin-tab {
    width: 100%;
    text-align: left;
  }

  .admin-request__calculation li {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    min-height: 380px;
    border-radius: 18px;
  }

  .hero-visual img {
    object-position: center;
    transform: scale(1.08);
  }

  .scan-left {
    top: 74px;
    left: 18px;
  }

  .scan-right {
    display: none;
  }

  .micro-scan {
    right: 16px;
    bottom: 16px;
    width: 138px;
    height: 76px;
  }

  .start-grid,
  .concern-strip,
  .case-grid,
  .case-timeline,
  .doctor-grid,
  .review-grid,
  .tech-grid,
  .slots,
  .route-card-grid,
  .clinic-contact-grid,
  .clinic-photo-grid,
  .calc-inline-editor,
  .info-grid,
  .metric-list {
    grid-template-columns: 1fr;
  }

  .start-card {
    grid-template-columns: 54px minmax(0, 1fr) auto;
  }

  .case-context {
    min-height: auto;
  }

  .case-row {
    grid-template-columns: 1fr;
    gap: 3px;
  }

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

  .review-card,
  .review-card--featured {
    min-height: auto;
  }

  .start-panel {
    margin-top: 12px;
  }

  .panel-grid,
  .procedure-result,
  .booking-contact-grid,
  .booking-slot-grid,
  .modal-grid,
  .modal-slots,
  .calc-selected-item,
  .availability-list article {
    grid-template-columns: 1fr;
  }

  .calculator-builder {
    padding-bottom: 0;
  }

  .calculator-builder > .calc-summary {
    display: grid;
  }

  .calc-builder-card {
    padding: 18px;
  }

  .calc-picker-row {
    padding: 0;
  }

  .calc-picker-row summary,
  .calc-picker-row__body {
    padding-inline: 16px;
  }

  .calc-builder-card h2 {
    font-size: 24px;
  }

  .calc-variant-tabs,
  .calc-entry-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
  }

  .calc-chip-grid {
    display: flex;
    flex-wrap: wrap;
    overflow-x: visible;
    gap: 8px;
    padding-bottom: 0;
  }

  .calc-variant-tabs button,
  .calc-entry-tabs button {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .calc-chip-grid button {
    flex: 1 1 min(100%, 132px);
  }

  .calc-mobile-bar {
    display: none;
  }

  .calc-mobile-bar div {
    display: grid;
    gap: 2px;
  }

  .calc-mobile-bar span {
    color: var(--muted);
    font-size: 12px;
  }

  .calc-mobile-bar .btn {
    min-height: 42px;
    padding-inline: 12px;
    white-space: nowrap;
  }

  .calc-mobile-sheet {
    display: block;
    margin-top: -72px;
  }

  .booking-summary {
    gap: 12px;
    padding: 18px;
  }

  .booking-summary h2 {
    font-size: 22px;
  }

  .booking-summary__mobile-total {
    display: block;
    margin: 0;
    color: var(--green);
    font-weight: 800;
  }

  .booking-summary__list {
    gap: 8px;
    padding-top: 10px;
  }

  .booking-summary__service {
    display: none;
  }

  .booking-summary .booking-summary__price {
    display: none !important;
  }

  .booking-summary .btn {
    min-height: 52px;
  }

  .booking-success {
    width: 100%;
    box-sizing: border-box;
    padding: 24px 16px;
  }

  .booking-success h1 {
    max-width: 100%;
    font-size: 28px;
    line-height: 1.16;
    overflow-wrap: anywhere;
  }

  .booking-success .lead {
    max-width: 100%;
    font-size: 16px;
  }

  .schedule-calendar,
  .schedule-day-panel {
    padding: 14px;
  }

  .schedule-calendar__head {
    grid-template-columns: 1fr 1fr;
  }

  .schedule-calendar__head h2 {
    grid-column: 1 / -1;
    grid-row: 1;
    font-size: 22px;
    text-align: left;
  }

  .schedule-calendar__head .btn {
    grid-row: 2;
    width: 100%;
    min-height: 38px;
    padding-inline: 10px;
  }

  .schedule-calendar__weekdays,
  .schedule-calendar__grid {
    gap: 5px;
  }

  .schedule-calendar__blank,
  .schedule-day {
    min-height: 58px;
  }

  .schedule-day {
    border-radius: 9px;
    padding: 7px 5px;
  }

  .schedule-day span {
    font-size: 16px;
  }

  .schedule-day small {
    font-size: 10px;
  }

  .schedule-day.is-busy small {
    display: none;
  }

  .calc-summary--compact {
    display: grid;
  }

  .process-timeline {
    --timeline-progress: 0%;
    margin-top: 28px;
  }

  .process-timeline__list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-timeline__list::before,
  .process-timeline__list::after {
    left: 53px;
    right: auto;
    top: 18px;
    bottom: 18px;
    width: 1px;
    height: auto;
  }

  .process-timeline__list::after {
    max-width: none;
    height: var(--timeline-progress);
    background: rgba(46, 118, 88, 0.42);
    transition: height 820ms ease;
  }

  .process-timeline__step {
    grid-template-columns: 34px 18px 42px minmax(0, 1fr);
    justify-items: start;
    align-items: start;
    gap: 10px;
    min-height: 104px;
    padding-bottom: 18px;
    text-align: left;
  }

  .process-timeline__number {
    padding-top: 1px;
  }

  .process-timeline__marker {
    margin-top: 4px;
  }

  .process-timeline__icon {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  .process-timeline__content {
    justify-items: start;
    gap: 5px;
  }

  .process-timeline__content span:last-child {
    max-width: none;
  }

  .panel-actions,
  .panel-actions .btn {
    width: 100%;
  }

  .concern-strip {
    display: flex;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }

  .concern-card {
    flex: 0 0 74%;
    scroll-snap-align: start;
  }

  .map-image {
    display: flex;
    align-items: flex-end;
    min-height: 420px;
  }

  .skin-zone-list {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: 4;
    width: calc(100% - 32px);
    margin: auto 16px 16px;
  }

  .map-point {
    width: 50px;
    height: 50px;
  }

  .map-point span {
    display: none;
  }

  .skin-map-panel {
    margin-top: 18px;
    padding: 20px;
  }

  .skin-map-actions,
  .skin-map-actions .btn {
    width: 100%;
  }

  .topic-card {
    flex-basis: 100%;
  }

  .doctor-card,
  .tech-card {
    grid-template-columns: 1fr;
  }

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

  .tech-card img {
    height: 180px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .process-timeline {
    --timeline-progress: 100%;
  }
}
