:root {
  --ink: #111513;
  --muted: #64706b;
  --line: rgba(17, 21, 19, 0.14);
  --paper: #f7f9f7;
  --white: #ffffff;
  --mint: #cfe7df;
  --mint-strong: #78b7a6;
  --aqua: #cfeff0;
  --coral: #e56f5f;
  --coral-dark: #b94d42;
  --graphite: #1d2522;
  --shadow: 0 26px 90px rgba(18, 34, 29, 0.14);
  --shadow-soft: 0 18px 54px rgba(18, 34, 29, 0.11);
  --radius: 8px;
  --max: 1200px;
  --font-main: "Manrope", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(17, 21, 19, 0.04) 1px, transparent 1px) 0 0 / 88px 88px,
    linear-gradient(180deg, rgba(17, 21, 19, 0.035) 1px, transparent 1px) 0 0 / 88px 88px,
    var(--paper);
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

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

.site-shell {
  min-height: 100vh;
  overflow: clip;
}

.topbar {
  position: fixed;
  z-index: 50;
  top: 14px;
  left: 50%;
  width: min(calc(100% - 28px), 1280px);
  min-height: 64px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 10px 12px;
  color: var(--ink);
  background: rgba(247, 249, 247, 0.84);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(29, 37, 34, 0.09);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 168px;
  min-width: 168px;
  padding-left: 12px;
}

.brand-logo {
  width: 156px;
  height: 48px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.desktop-nav a {
  padding: 11px 13px;
  color: rgba(17, 21, 19, 0.76);
  border-radius: 999px;
  font-size: 14px;
  transition: background 180ms ease, color 180ms ease;
}

.desktop-nav a:hover {
  color: var(--ink);
  background: rgba(120, 183, 166, 0.16);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.plain-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  color: rgba(17, 21, 19, 0.78);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: var(--ink);
  transition: transform 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-panel {
  position: fixed;
  z-index: 40;
  inset: 0;
  display: none;
  padding: 104px 22px 28px;
  background: rgba(247, 249, 247, 0.97);
  backdrop-filter: blur(20px);
}

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

.mobile-panel a {
  display: block;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 25px;
  font-weight: 800;
}

.menu-open .mobile-panel {
  display: block;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

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

.btn-small {
  min-height: 44px;
  padding-inline: 16px;
  font-size: 14px;
}

.btn-dark {
  color: var(--white);
  background: var(--graphite);
}

.btn-accent {
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 18px 44px rgba(229, 111, 95, 0.28);
}

.btn-accent:hover {
  background: var(--coral-dark);
}

.btn-glass {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(18px);
}

.btn-outline {
  color: var(--graphite);
  border-color: rgba(17, 21, 19, 0.2);
  background: rgba(255, 255, 255, 0.62);
}

.btn-light {
  color: var(--graphite);
  background: var(--white);
}

.btn.full {
  width: 100%;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(18px, 1fr) minmax(0, var(--max)) minmax(18px, 1fr);
}

.page-hero {
  width: min(calc(100% - 36px), var(--max));
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 36px;
  align-items: end;
  margin: 0 auto;
  padding: 152px 0 54px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 820px;
  font-size: clamp(44px, 6vw, 86px);
}

.page-hero p {
  max-width: 680px;
}

.seo-routes,
.legal-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.seo-routes a,
.legal-links a,
.legal-links li {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.legal-links {
  list-style: none;
  padding: 0;
}

.legal-links li {
  color: var(--muted);
  font-weight: 600;
  line-height: 1.5;
}

.legal-links article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
}

.legal-links article h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.section-pad {
  width: min(calc(100% - 36px), var(--max));
  margin-inline: auto;
  padding: 96px 0;
}

main section[id] {
  scroll-margin-top: 104px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--coral-dark);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

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

h1,
h2 {
  font-family: var(--font-main);
  font-weight: 800;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(52px, 8vw, 118px);
  line-height: 0.94;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1.05;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.18;
}

p {
  color: var(--muted);
  line-height: 1.58;
}

.hero {
  position: relative;
  min-height: 88vh;
  align-items: end;
  isolation: isolate;
  color: var(--white);
  background: #111513;
}

.hero-portrait,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

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

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(17, 21, 19, 0.9), rgba(17, 21, 19, 0.55) 44%, rgba(17, 21, 19, 0.05) 86%),
    linear-gradient(0deg, rgba(17, 21, 19, 0.56), transparent 42%);
}

.hero-content {
  grid-column: 2;
  width: min(760px, 100%);
  padding: 154px 0 86px;
}

.hero .eyebrow {
  color: var(--aqua);
}

.hero-lead {
  width: min(680px, 100%);
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
}

.hero-actions,
.contact-actions,
.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(890px, 100%);
  margin-top: 52px;
}

.hero-proof span {
  min-height: 94px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.hero-proof b {
  display: block;
  margin-bottom: 7px;
  color: var(--white);
}

.hero-note {
  position: absolute;
  right: max(18px, calc((100vw - var(--max)) / 2));
  bottom: 34px;
  width: min(330px, calc(100% - 36px));
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--white);
}

.hero-note span {
  display: block;
  margin-bottom: 8px;
  color: var(--aqua);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-note strong {
  display: block;
  font-size: 24px;
  font-weight: 800;
}

.hero-note p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.5;
}

.intent-strip {
  width: min(calc(100% - 36px), var(--max));
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin: -24px auto 0;
  position: relative;
  z-index: 3;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.intent-chip {
  min-height: 84px;
  padding: 16px;
  border: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  text-align: left;
  transition: background 180ms ease, color 180ms ease;
}

.intent-chip:hover {
  color: var(--white);
  background: var(--graphite);
}

.trust-grid,
.booking,
.contacts,
.license,
.skin-plan {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 42px;
  align-items: start;
}

.trust-copy {
  position: sticky;
  top: 118px;
}

.trust-copy p,
.section-head p,
.booking-copy p,
.plan-copy p,
.license-copy p,
.contact-main p {
  max-width: 620px;
}

.contacts > * {
  min-width: 0;
}

.contact-main h1 {
  font-size: clamp(42px, 5.3vw, 74px);
  line-height: 0.98;
  overflow-wrap: normal;
  word-break: normal;
}

.trust-items {
  display: grid;
  gap: 16px;
}

.trust-items article {
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.trust-items span {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--mint-strong);
  font-weight: 900;
}

.founder {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 42px;
  align-items: center;
  padding-top: 30px;
}

.founder-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.founder-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% center;
}

.founder-copy {
  padding: 8px 0;
}

.role {
  margin-top: -12px;
  font-weight: 800;
  color: var(--graphite);
}

blockquote {
  margin: 30px 0;
  color: var(--graphite);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 700;
  line-height: 1.35;
}

.signature-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.signature-line span {
  color: var(--muted);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.65fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 36px;
}

.service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.service-tabs button {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--graphite);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.service-tabs button.active,
.service-tabs button:hover {
  color: var(--white);
  background: var(--graphite);
}

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

.service-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-card .tag {
  width: fit-content;
  margin-bottom: 22px;
  padding: 7px 10px;
  border: 1px solid rgba(17, 21, 19, 0.14);
  border-radius: 999px;
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 900;
}

.service-card p {
  flex: 1;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  font-size: 14px;
  line-height: 1.5;
}

.service-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.service-card strong {
  color: var(--graphite);
}

.skin-plan {
  align-items: stretch;
}

.plan-copy {
  align-self: center;
}

.quiz,
.booking-form,
.map-panel,
.license-thumb,
.lead-modal-inner {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.quiz {
  min-height: 520px;
  display: grid;
  padding: 26px;
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
}

.step-label {
  display: inline-block;
  margin-bottom: 46px;
  color: var(--mint-strong);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.quiz h3,
.quiz-result h3 {
  margin-bottom: 22px;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 800;
}

.option-grid {
  display: grid;
  gap: 10px;
}

.option-grid button,
.date-grid button,
.time-grid button {
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  font-weight: 800;
  text-align: left;
}

.option-grid button:hover,
.date-grid button.active,
.time-grid button.active {
  color: var(--white);
  background: var(--graphite);
}

.quiz-result {
  align-self: center;
}

.ghost-button {
  margin-top: 18px;
  padding: 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  text-decoration: underline;
}

.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 14px;
}

.lead-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.lead-card span {
  color: var(--coral-dark);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.lead-card h3 {
  margin-top: auto;
  font-size: clamp(22px, 2.3vw, 32px);
  font-weight: 800;
}

.lead-card.dark {
  color: var(--white);
  background:
    linear-gradient(140deg, rgba(120, 183, 166, 0.28), transparent),
    var(--graphite);
}

.lead-card.dark p,
.lead-card.dark span {
  color: rgba(255, 255, 255, 0.76);
}

.image-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  color: var(--white);
  background: var(--graphite);
}

.image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.52;
}

.image-card div {
  position: relative;
  z-index: 1;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 24px;
  background: linear-gradient(0deg, rgba(17, 21, 19, 0.82), transparent 70%);
}

.booking {
  align-items: start;
}

.booking-copy {
  position: sticky;
  top: 118px;
}

.booking-steps {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.booking-steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--graphite);
  font-weight: 800;
}

.step-icon,
.method-icon,
.social-link svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.step-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--graphite);
  background: rgba(120, 183, 166, 0.18);
}

.step-icon svg,
.method-icon svg,
.social-link svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

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

label span,
.date-picker > span,
.time-picker > span {
  color: var(--graphite);
  font-size: 13px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--mint-strong);
  box-shadow: 0 0 0 4px rgba(120, 183, 166, 0.16);
}

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

.contact-methods {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-methods legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: var(--graphite);
  font-size: 13px;
  font-weight: 900;
}

.method-card {
  position: relative;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.method-card:hover {
  transform: translateY(-1px);
  border-color: rgba(120, 183, 166, 0.6);
}

.method-card:has(input:checked),
.method-card.is-active {
  border-color: rgba(120, 183, 166, 0.75);
  background: rgba(207, 231, 223, 0.34);
}

.method-card input {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 100%;
  margin: 0;
  opacity: 0;
}

.method-card span {
  color: var(--graphite);
  font-size: 13px;
  font-weight: 900;
}

.method-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(17, 21, 19, 0.06);
}

.method-icon.telegram {
  color: #2aabee;
  background: rgba(42, 171, 238, 0.12);
}

.method-icon.whatsapp {
  color: #25d366;
  background: rgba(37, 211, 102, 0.12);
}

.method-icon.max {
  overflow: hidden;
  background: transparent;
}

.method-icon.max img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.method-icon.phone {
  color: var(--coral-dark);
  background: rgba(229, 111, 95, 0.13);
}

.date-picker,
.time-picker {
  display: grid;
  gap: 10px;
}

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

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

.date-grid button,
.time-grid button {
  min-height: 54px;
  text-align: center;
  padding: 10px;
}

.date-grid small {
  display: block;
  margin-top: 3px;
  color: inherit;
  opacity: 0.75;
  font-size: 11px;
}

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

.consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.consent span {
  color: var(--muted);
  font-weight: 600;
  line-height: 1.45;
}

.booking-success,
.lead-ready {
  padding: 16px;
  border: 1px solid rgba(120, 183, 166, 0.45);
  border-radius: var(--radius);
  background: rgba(207, 231, 223, 0.36);
}

.booking-success p,
.lead-ready p {
  margin-bottom: 12px;
}

.booking-success .booking-summary {
  display: grid;
  gap: 4px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
}

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

.doctor-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.doctor-card:hover {
  transform: translateY(-3px);
  border-color: rgba(69, 104, 158, 0.22);
  box-shadow: var(--shadow-soft);
}

.doctor-card img,
.doctor-initials {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  background: var(--mint);
  filter: saturate(0.96) contrast(1.02);
}

.doctor-card > div:last-child {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.doctor-card span {
  margin-bottom: 16px;
  color: var(--coral-dark);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
}

.doctor-card p {
  font-size: 14px;
}

.skills-list {
  display: grid;
  gap: 8px;
  margin: 4px 0 22px;
  padding: 0;
  list-style: none;
}

.skills-list li {
  position: relative;
  padding-left: 17px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.skills-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint-strong);
}

.doctor-card.featured .skills-list li {
  color: rgba(255, 255, 255, 0.72);
}

.doctor-card blockquote {
  margin: auto 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 18px;
  line-height: 1.35;
}

.doctor-card.featured {
  color: var(--white);
  background: var(--graphite);
}

.doctor-card.featured p,
.doctor-card.featured span {
  color: rgba(255, 255, 255, 0.7);
}

.doctor-card.featured blockquote {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
}

.doctor-initials {
  display: grid;
  place-items: center;
  color: var(--graphite);
  font-size: 76px;
}

.price-toolbar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 12px;
  margin-bottom: 16px;
}

.price-table {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.8);
}

.price-category {
  border-bottom: 1px solid var(--line);
}

.price-category:last-child {
  border-bottom: 0;
}

.price-category h3 {
  margin: 0;
  padding: 20px;
  background: rgba(207, 231, 223, 0.35);
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 15px 20px;
  border-top: 1px solid var(--line);
}

.price-row span {
  min-width: 0;
}

.price-row b {
  display: block;
  color: var(--graphite);
  font-weight: 800;
}

.price-row small {
  display: -webkit-box;
  max-width: 820px;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.48;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.price-row strong {
  white-space: nowrap;
}

.price-note {
  margin-top: 16px;
  font-size: 13px;
}

.ad-warning {
  margin: 18px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
  color: rgba(100, 112, 107, 0.9);
  font-size: 13px;
}

.section-more {
  margin-top: 16px;
}

.section-more a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--graphite);
  font-size: 14px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.section-more a:hover {
  transform: translateY(-2px);
  border-color: rgba(229, 111, 95, 0.36);
  background: var(--white);
}

.license {
  align-items: center;
  padding-top: 38px;
}

.license-thumb {
  display: block;
  justify-self: end;
  width: min(330px, 100%);
  padding: 18px;
  transform: rotate(1.5deg);
}

.license-thumb img {
  width: 100%;
  border: 1px solid var(--line);
}

.contacts {
  padding-bottom: 72px;
}

.map-panel {
  overflow: hidden;
  display: grid;
  grid-template-rows: minmax(260px, 1fr) auto;
  padding: 0;
  background: var(--white);
}

.map-frame {
  width: 100%;
  min-height: 330px;
  border: 0;
  background: rgba(120, 183, 166, 0.1);
}

.map-meta {
  display: grid;
  gap: 8px;
  padding: 22px 24px 24px;
  border-top: 1px solid var(--line);
}

.map-meta span {
  color: var(--mint-strong);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.map-meta strong {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800;
  line-height: 1;
}

.map-meta p {
  color: var(--muted);
}

.map-meta a {
  width: fit-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(29, 37, 34, 0.28);
  color: var(--graphite);
  font-weight: 900;
}

.social-actions {
  margin-top: 26px;
}

.social-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--graphite);
  background: rgba(255, 255, 255, 0.74);
  font-weight: 900;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease;
}

.social-link:hover {
  transform: translateY(-2px);
  color: var(--white);
}

.social-link.phone:hover {
  border-color: var(--coral);
  background: var(--coral);
}

.social-link.telegram:hover {
  border-color: #2aabee;
  background: #2aabee;
}

.social-link.whatsapp:hover {
  border-color: #25d366;
  background: #25d366;
}

.social-link.instagram:hover {
  border-color: #e4405f;
  background:
    radial-gradient(circle at 30% 110%, #feda75 0 22%, transparent 24%),
    linear-gradient(135deg, #833ab4, #fd1d1d 52%, #fcb045);
}

.footer {
  width: min(calc(100% - 36px), var(--max));
  display: flex;
  justify-content: space-between;
  gap: 22px;
  margin: 0 auto 96px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.footer p {
  max-width: 850px;
  margin: 0;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  font-size: 13px;
}

.footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--coral-dark);
}

.footer span {
  color: var(--muted);
  white-space: nowrap;
}

.consent a {
  color: var(--coral-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sticky-booking {
  position: fixed;
  z-index: 45;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(247, 249, 247, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 50px rgba(17, 21, 19, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.sticky-booking.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-booking span {
  display: none;
}

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

.lead-modal::backdrop {
  background: rgba(17, 21, 19, 0.58);
  backdrop-filter: blur(6px);
}

.lead-modal-inner {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 28px;
}

.lead-modal-inner h2 {
  font-size: clamp(32px, 4vw, 48px);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  font-size: 24px;
  line-height: 1;
}

.reveal-item {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 360ms ease,
    transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@media (max-width: 1020px) {
  .desktop-nav,
  .plain-link {
    display: none;
  }

  .topbar {
    grid-template-columns: auto 1fr auto;
  }

  .topbar-actions {
    justify-self: end;
  }

  .menu-toggle {
    display: block;
  }

  .hero-proof,
  .intent-strip,
  .service-grid,
  .lead-grid,
  .doctor-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-grid,
  .booking,
  .contacts,
  .license,
  .skin-plan,
  .page-hero,
  .founder,
  .section-head {
    grid-template-columns: 1fr;
  }

  .seo-routes,
  .legal-links {
    grid-template-columns: 1fr 1fr;
  }

  .trust-copy,
  .booking-copy {
    position: static;
  }

  .license-thumb {
    justify-self: start;
  }

  #booking.section-pad {
    padding: 54px 0;
  }

  .booking-steps {
    display: none;
  }

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

@media (max-width: 720px) {
  .topbar {
    top: 8px;
    width: calc(100% - 16px);
    min-height: 60px;
    padding: 8px;
  }

  .topbar .btn-dark {
    display: none;
  }

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

  .brand {
    width: 138px;
    min-width: 138px;
    padding-left: 8px;
  }

  .brand-logo {
    width: 126px;
    height: 42px;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-portrait img {
    object-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(17, 21, 19, 0.9), rgba(17, 21, 19, 0.55) 66%, rgba(17, 21, 19, 0.18)),
      linear-gradient(0deg, rgba(17, 21, 19, 0.68), transparent 58%);
  }

  .hero-content {
    padding: 128px 0 220px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .hero-proof span {
    min-height: auto;
  }

  .hero-note {
    left: 18px;
    right: 18px;
    bottom: 34px;
  }

  .section-pad {
    width: min(calc(100% - 28px), var(--max));
    padding: 66px 0;
  }

  main section[id] {
    scroll-margin-top: 82px;
  }

  #booking.section-pad {
    padding: 30px 0;
  }

  .intent-strip,
  .service-grid,
  .lead-grid,
  .doctor-grid,
  .date-grid,
  .time-grid,
  .form-row,
  .price-toolbar {
    grid-template-columns: 1fr;
  }

  .intent-chip {
    min-height: 64px;
  }

  .contact-methods {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .method-card {
    min-height: 62px;
    flex-direction: column;
    gap: 5px;
    padding: 7px 4px;
  }

  .method-card span {
    font-size: 11px;
  }

  .method-icon {
    width: 28px;
    height: 28px;
  }

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

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

  .booking-steps {
    display: none;
  }

  .booking {
    gap: 20px;
  }

  .booking-form {
    gap: 10px;
    padding: 14px;
  }

  .booking-form .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .booking-form input,
  .booking-form select,
  .booking-form textarea {
    min-height: 48px;
    padding: 12px;
  }

  .booking-form textarea {
    min-height: 58px;
  }

  .social-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .page-hero {
    width: min(calc(100% - 28px), var(--max));
    padding: 118px 0 38px;
  }

  .seo-routes,
  .legal-links {
    grid-template-columns: 1fr;
  }

  .social-link {
    justify-content: center;
    min-width: 0;
    padding-inline: 12px;
  }

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

  .map-meta {
    padding: 18px;
  }

  .service-card,
  .lead-card,
  .image-card div,
  .doctor-card {
    min-height: auto;
  }

  .quiz {
    min-height: 480px;
    padding: 20px;
  }

  .step-label {
    margin-bottom: 30px;
  }

  .footer {
    display: block;
    margin-bottom: calc(112px + env(safe-area-inset-bottom));
  }

  .footer-links {
    justify-content: flex-start;
    margin-top: 14px;
  }

  .footer span {
    display: block;
    margin-top: 14px;
  }

  .sticky-booking {
    right: 14px;
    left: auto;
    bottom: calc(10px + env(safe-area-inset-bottom));
    padding: 8px;
    padding-left: 8px;
    justify-content: end;
  }

  .sticky-booking span {
    display: none;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .price-row strong {
    justify-self: start;
  }
}

@media (max-width: 400px) {
  #booking.section-pad {
    padding: 14px 0;
  }

  .booking {
    gap: 12px;
  }

  #booking .booking-copy p {
    display: none;
  }
}

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

  .reveal-item {
    opacity: 1 !important;
    transform: none !important;
  }
}
