:root {
  --bg: #fbfbf8;
  --surface: #ffffff;
  --surface-muted: #f4f2ec;
  --ink: #27302f;
  --muted: #64716f;
  --line: #dedbd3;
  --accent: #5f807b;
  --accent-deep: #3f6863;
  --accent-soft: #dbe8e4;
  --gold: #e7b343;
  --shadow: 0 18px 45px rgba(45, 58, 55, 0.12);
  --radius: 8px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, Segoe UI, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 12px max(20px, calc((100vw - var(--container)) / 2));
  background: rgba(251, 251, 248, 0.92);
  border-bottom: 1px solid rgba(222, 219, 211, 0.7);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-logo {
  display: block;
  width: 188px;
  height: auto;
  max-height: 50px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  color: var(--accent);
  place-items: center;
}

.brand-mark svg {
  width: 44px;
  height: 44px;
}

.brand-mark path,
.service-icon path,
.service-icon rect,
.service-icon circle,
.button svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-mark .logo-tooth {
  stroke-width: 2.45;
}

.brand-mark .logo-stem,
.brand-mark .logo-leaf {
  stroke-width: 2.15;
}

.trust-row path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand strong {
  display: block;
  font-family: Georgia, Times New Roman, serif;
  font-size: 22px;
  line-height: 1;
  font-weight: 500;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: #293331;
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a,
.mobile-nav a,
.footer-grid a {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover,
.footer-grid a:hover {
  color: var(--accent-deep);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 16px;
}

.phone {
  display: grid;
  gap: 1px;
  color: var(--ink);
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.phone small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  white-space: nowrap;
}

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

.button-primary {
  background: var(--accent-deep);
  color: white;
  box-shadow: 0 10px 24px rgba(63, 104, 99, 0.22);
}

.button-primary:hover {
  background: #355b56;
}

.button-ghost {
  gap: 8px;
  background: transparent;
  color: var(--accent-deep);
  border-color: transparent;
  box-shadow: none;
}

.button-ghost svg {
  width: 18px;
  height: 18px;
}

.button-light {
  background: white;
  color: var(--accent-deep);
  border-color: rgba(255, 255, 255, 0.4);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
}

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

.menu-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 72px 0 auto 0;
  display: none;
  grid-column: 1 / -1;
  padding: 20px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.section {
  padding: 76px 0;
}

.section.compact {
  padding-top: 48px;
}

.section-band {
  background:
    radial-gradient(circle at 95% 20%, rgba(219, 232, 228, 0.7), transparent 28%),
    linear-gradient(180deg, #fbfbf8 0%, #f7f6f0 100%);
}

.hero {
  padding: 30px 0 46px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1.16fr);
  align-items: center;
  gap: 54px;
}

.hero-copy,
.hero-media {
  min-width: 0;
}

.hero h1,
.section-heading h2,
.installment-panel h2,
.appointment-form h2 {
  margin: 0;
  font-family: Georgia, Times New Roman, serif;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(46px, 6vw, 78px);
}

.hero-slogan {
  max-width: 580px;
  margin: 12px 0 0;
  font-family: Georgia, Times New Roman, serif;
  font-size: clamp(29px, 3.6vw, 53px);
  line-height: 1.08;
}

.hero-text {
  max-width: 520px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 640px;
  margin: 32px 0 0;
}

.trust-row span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.trust-row img {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  object-fit: contain;
}

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

.hero-media {
  position: relative;
  overflow: hidden;
  align-self: stretch;
  min-height: 520px;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-media::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 16%;
  background: linear-gradient(90deg, rgba(247, 246, 240, 0.88), transparent);
  content: "";
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.section-heading {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-bottom: 34px;
  text-align: center;
}

.section-heading h2,
.installment-panel h2,
.appointment-form h2 {
  font-size: clamp(30px, 4vw, 42px);
}

.section-heading::after {
  width: 48px;
  height: 2px;
  background: var(--accent);
  content: "";
}

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

.service-card,
.doctor-card,
.case-card,
.review-card,
.appointment-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-card {
  display: grid;
  align-content: start;
  min-height: 230px;
  padding: 26px 18px 18px;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.doctor-card:hover,
.case-card:hover,
.review-card:hover {
  border-color: rgba(95, 128, 123, 0.42);
  box-shadow: 0 16px 36px rgba(45, 58, 55, 0.09);
  transform: translateY(-2px);
}

.service-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  color: var(--accent);
  place-items: center;
}

.service-icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.service-icon rect,
.service-icon circle {
  vector-effect: non-scaling-stroke;
}

.service-card h3,
.doctor-card h3,
.case-card h3,
.footer-grid h3 {
  margin: 0;
  font-family: Georgia, Times New Roman, serif;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
}

.service-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.service-more {
  display: none;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.service-card.is-open .service-more {
  display: block;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 16px auto 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent-deep);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

.text-link::after {
  margin-left: 8px;
  content: "→";
}

.prices {
  margin-top: 22px;
  background:
    linear-gradient(180deg, rgba(244, 242, 236, 0.48), rgba(251, 251, 248, 0)),
    var(--bg);
}

.prices.section.compact {
  padding-top: 86px;
  padding-bottom: 92px;
}

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

.price-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 16px 20px;
  min-height: 172px;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(45, 58, 55, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.price-card:hover {
  border-color: rgba(95, 128, 123, 0.42);
  box-shadow: 0 18px 40px rgba(45, 58, 55, 0.11);
  transform: translateY(-2px);
}

.price-visual {
  display: grid;
  width: 76px;
  height: 76px;
  background: linear-gradient(180deg, #ffffff, #f3f6f3);
  border: 1px solid var(--accent-soft);
  border-radius: var(--radius);
  place-items: center;
}

.price-visual img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.price-card p {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
}

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

.price-card strong {
  grid-column: 1 / -1;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--accent-deep);
  font-family: Georgia, Times New Roman, serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}

.center-actions {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.price-note {
  max-width: 620px;
  margin: 16px auto 0;
  padding: 14px 18px;
  background: var(--accent-soft);
  border-radius: var(--radius);
  color: var(--accent-deep);
  text-align: center;
}

.price-note p {
  margin: 0;
}

.doctor-shell {
  max-width: 980px;
  margin-inline: auto;
}

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

.doctor-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  min-width: 0;
  overflow: hidden;
}

.doctor-card img {
  width: 150px;
  height: 188px;
  object-fit: cover;
  object-position: center top;
  background: var(--surface-muted);
}

.doctor-card div {
  min-width: 0;
  padding: 24px 22px;
}

.doctor-card h3 {
  max-width: 100%;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.doctor-card p,
.doctor-card small,
.case-card p,
.review-card small {
  display: block;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
  overflow-wrap: break-word;
}

.doctor-card .text-link {
  margin: 14px 0 0;
}

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

.case-card {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.case-comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  min-width: 0;
  max-width: 100%;
  aspect-ratio: 1.85 / 1;
  gap: 2px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.case-shot {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--surface-muted);
}

.case-shot img {
  width: 100%;
  height: 100%;
  min-width: 0;
  display: block;
  object-fit: cover;
}

.case-shot figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 12px;
  border: 1px solid rgba(126, 158, 154, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  max-width: calc(100% - 24px);
  box-shadow: 0 8px 20px rgba(32, 43, 42, 0.12);
}

.case-shot-after figcaption {
  right: 12px;
  left: auto;
  border-color: rgba(63, 104, 99, 0.18);
  background: rgba(63, 104, 99, 0.92);
  color: white;
}

.case-copy {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 14px;
  align-items: end;
  padding: 16px 18px 18px;
}

.case-copy h3 {
  grid-column: 1 / -1;
}

.case-copy .text-link {
  align-self: end;
  margin: 0;
}

.case-card.is-focused {
  border-color: var(--accent-deep);
  box-shadow: 0 0 0 4px var(--accent-soft), var(--shadow);
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(420px, 1.15fr);
  scroll-margin-top: 96px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.installment-panel {
  position: relative;
  isolation: isolate;
  min-height: 355px;
  padding: 44px 34px;
  background:
    linear-gradient(145deg, rgba(63, 104, 99, 0.98), rgba(105, 139, 126, 0.95) 58%, rgba(226, 232, 219, 0.9));
  color: white;
}

.zero-sign {
  position: absolute;
  right: 8%;
  bottom: 6%;
  z-index: -1;
  color: rgba(255, 255, 255, 0.42);
  font-family: Georgia, Times New Roman, serif;
  font-size: 148px;
  font-weight: 700;
  line-height: 1;
}

.installment-panel h2 {
  max-width: 440px;
}

.installment-panel ul {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.installment-panel li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.installment-panel li::before {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  content: "✓";
  font-size: 12px;
  line-height: 16px;
  text-align: center;
}

.appointment-form {
  display: grid;
  gap: 16px;
  padding: 42px 40px;
  border: 0;
  border-radius: 0;
}

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

label {
  display: grid;
  gap: 7px;
}

label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.appointment-form input[name="phone"] {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}

.appointment-form input[name="phone"]::placeholder {
  color: rgba(91, 103, 104, 0.58);
}

textarea {
  min-height: 92px;
  padding-top: 12px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-submit {
  width: 100%;
}

.consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--accent-deep);
}

.consent span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--accent-deep);
  font-weight: 700;
}

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

.review-card {
  position: relative;
  min-height: 210px;
  padding: 28px 26px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.review-card::before {
  position: absolute;
  top: 18px;
  left: 24px;
  color: rgba(95, 128, 123, 0.25);
  content: "“";
  font-family: Georgia, Times New Roman, serif;
  font-size: 74px;
  line-height: 1;
}

.stars {
  position: relative;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 0.08em;
  text-align: right;
}

.review-card p {
  position: relative;
  margin: 0 0 22px;
  color: #3a4442;
}

.review-card strong {
  display: block;
}

.step-row {
  --step-gap: 22px;
  --step-marker-size: 52px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--step-gap);
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-row li {
  position: relative;
  display: grid;
  gap: 8px;
}

.step-row li:not(:last-child)::after {
  position: absolute;
  top: 26px;
  left: calc(50% + (var(--step-gap) / 2) + (var(--step-marker-size) / 2));
  display: grid;
  width: 24px;
  height: 24px;
  color: var(--accent);
  content: "›";
  font-family: Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  place-items: center;
  transform: translate(-50%, -50%);
}

.step-row span {
  display: grid;
  width: var(--step-marker-size);
  height: var(--step-marker-size);
  margin-bottom: 6px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent-deep);
  font-family: Georgia, Times New Roman, serif;
  font-size: 24px;
  place-items: center;
}

.step-row strong {
  font-family: Georgia, Times New Roman, serif;
  font-size: 18px;
}

.step-row p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  background: #f2f0ea;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(210px, 1fr) minmax(120px, 0.58fr) minmax(120px, 0.58fr) minmax(180px, 0.9fr) minmax(340px, 1.35fr);
  gap: 34px;
  padding: 48px 0;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-brand .brand-logo {
  width: 184px;
}

.footer-grid p {
  margin: 0 0 10px;
  color: var(--muted);
}

.footer-grid > div:not(:first-child, .map-card) {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-grid h3 {
  margin-bottom: 6px;
}

.socials {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.socials a {
  display: grid;
  width: 40px;
  height: 40px;
  padding: 5px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(45, 58, 55, 0.08);
  place-items: center;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.socials a:hover {
  border-color: rgba(63, 104, 99, 0.42);
  box-shadow: 0 12px 28px rgba(45, 58, 55, 0.14);
  transform: translateY(-2px);
}

.socials img {
  width: 100%;
  height: 100%;
}

.map-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  background: var(--surface-muted);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(45, 58, 55, 0.08);
}

.map-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-card .button {
  position: absolute;
  z-index: 1;
  right: 16px;
  bottom: 16px;
  min-height: 38px;
  box-shadow: 0 12px 28px rgba(45, 58, 55, 0.16);
}

.footer-bottom {
  background: var(--accent-deep);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

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

  .phone {
    display: none;
  }

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

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

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

  .map-card {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

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

  .menu-toggle {
    display: block;
  }

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

  .hero {
    padding-top: 34px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-media {
    border-radius: 0;
    min-height: 0;
  }

  .hero-media img {
    height: auto;
    aspect-ratio: 1.35 / 1;
    max-height: 430px;
  }

  .case-grid,
  .review-grid,
  .doctor-track,
  .split-panel {
    grid-template-columns: 1fr;
  }

  .appointment-form {
    border-top: 1px solid var(--line);
  }

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

  .step-row li:not(:last-child)::after {
    display: none;
  }
}

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

  .site-header {
    min-height: 66px;
    padding-inline: 14px;
  }

  .mobile-nav {
    top: 66px;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand small {
    font-size: 9px;
  }

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

  .brand-logo {
    width: 176px;
    max-height: 48px;
  }

  .section {
    padding: 54px 0;
  }

  .hero {
    padding: 28px 0 34px;
  }

  .hero h1 {
    font-size: 39px;
  }

  .hero-slogan {
    font-size: 27px;
    line-height: 1.14;
  }

  .hero-text {
    font-size: 15px;
  }

  .trust-row,
  .service-grid,
  .price-grid,
  .form-grid,
  .step-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-row {
    gap: 12px;
  }

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

  .service-card {
    min-height: auto;
    padding-inline: 22px;
  }

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

  .doctor-card img {
    width: 100%;
    height: 236px;
  }

  .doctor-card div {
    padding: 20px 22px 22px;
  }

  .case-copy {
    grid-template-columns: 1fr;
  }

  .case-copy .text-link {
    margin-top: 8px;
  }

  .installment-panel,
  .appointment-form {
    padding: 30px 20px;
  }

  .zero-sign {
    font-size: 108px;
  }

  .map-card {
    grid-column: auto;
  }

  .footer-bottom .container {
    display: grid;
  }
}

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