:root {
  --blue: #1F5EFF;
  --blue-dark: #1747C7;
  --blue-soft: #EEF3FF;
  --ink: #0E1726;
  --muted: #6B7485;
  --line: #E6E9EF;
  --bg: #FFFFFF;
  --radius: 20px;
  --container: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input { font: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 52px; padding: 0 28px; border-radius: 999px;
  font-weight: 600; font-size: 15px; transition: .2s ease;
  white-space: nowrap;
}
.btn--sm { height: 42px; padding: 0 20px; font-size: 14px; }
.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { background: var(--blue-dark); }
.btn--ghost { border: 1px solid var(--line); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--white { background: #fff; color: var(--blue); }
.btn--white:hover { background: var(--blue-soft); }

.link { color: var(--blue); font-weight: 600; font-size: 15px; }
.link:hover { text-decoration: underline; }

.eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 20px;
}

.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.header.is-scrolled { border-bottom-color: var(--line); }
.header__inner { display: flex; align-items: center; height: 76px; gap: 40px; }

.nav { display: flex; gap: 32px; margin-right: auto; }
.nav a { font-size: 15px; color: var(--muted); transition: color .2s; }
.nav a:hover { color: var(--ink); }

.header__right { display: flex; align-items: center; gap: 20px; }
.header__phone { font-weight: 600; font-size: 15px; }

.burger { display: none; width: 40px; height: 40px; position: relative; }
.burger span {
  position: absolute; left: 10px; right: 10px; height: 2px; background: var(--ink);
  transition: .25s;
}
.burger span:first-child { top: 15px; }
.burger span:last-child { top: 23px; }
.burger.is-open span:first-child { top: 19px; transform: rotate(45deg); }
.burger.is-open span:last-child { top: 19px; transform: rotate(-45deg); }

.hero { padding: 72px 0 96px; }
.hero__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center; }
.hero__title {
  font-size: clamp(44px, 6vw, 80px); line-height: 1.02;
  font-weight: 700; letter-spacing: -.03em; margin-bottom: 28px;
}
.hero__text { font-size: 18px; color: var(--muted); max-width: 480px; margin-bottom: 40px; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero__meta { list-style: none; display: flex; gap: 40px; font-size: 14px; color: var(--muted); }
.hero__meta strong { color: var(--ink); display: block; font-size: 15px; }

.hero__visual { position: relative; display: flex; justify-content: center; }
.hero__circle {
  width: 100%; max-width: 440px; aspect-ratio: 1; border-radius: 50%;
  background: var(--blue-soft);
  display: grid; place-items: center; color: var(--blue);
}
.hero__tooth { width: 38%; animation: float 6s ease-in-out infinite; }
.hero__badge {
  position: absolute; bottom: 8%; left: 0;
  background: #fff; border-radius: 16px; padding: 18px 24px;
  box-shadow: 0 20px 50px rgba(14,23,38,.08);
  display: flex; flex-direction: column;
}
.hero__badge-num { white-space: nowrap; font-size: 28px; font-weight: 700; color: var(--blue); line-height: 1.1; }
.hero__badge-label { font-size: 13px; color: var(--muted); }

@keyframes float { 50% { transform: translateY(-10px); } }

.section { padding: 96px 0; }
.section--tight { padding: 32px 0; }
.section--soft { background: #F7F9FC; }
.section__head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 24px; flex-wrap: wrap; margin-bottom: 48px;
}
.section__title { font-size: clamp(32px, 4vw, 48px); font-weight: 700; letter-spacing: -.02em; line-height: 1.1; }

.offers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.offer {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; display: flex; flex-direction: column; gap: 8px;
  transition: border-color .2s, transform .2s;
}
.offer:hover { border-color: var(--blue); transform: translateY(-2px); }
.offer__tag { font-size: 13px; color: var(--muted); }
.offer__title { font-size: 20px; font-weight: 600; line-height: 1.3; }
.offer__price { font-size: 22px; font-weight: 700; margin: 8px 0 16px; flex: 1; }
.offer__old { text-decoration: line-through; color: var(--muted); font-weight: 400; font-size: 16px; margin-right: 6px; }
.offer--accent { background: var(--blue); border-color: var(--blue); color: #fff; }
.offer--accent .offer__tag { color: rgba(255,255,255,.7); }
.offer--accent .link { color: #fff; }

.tabs { display: flex; gap: 6px; background: #F3F5F9; padding: 5px; border-radius: 999px; }
.tab { padding: 10px 20px; border-radius: 999px; font-size: 14px; font-weight: 500; color: var(--muted); transition: .2s; }
.tab.is-active { background: #fff; color: var(--ink); box-shadow: 0 2px 8px rgba(14,23,38,.06); }

.services { display: none; grid-template-columns: 1fr 1fr; column-gap: 48px; border-top: 1px solid var(--line); }
.services.is-active { display: grid; animation: fade .35s ease; }
.service {
  display: flex; align-items: center; gap: 24px;
  padding: 26px 0; border-bottom: 1px solid var(--line);
  font-size: 20px; font-weight: 500; transition: color .2s;
}
.service__num { font-size: 13px; color: var(--muted); font-weight: 500; width: 24px; }
.service__name { flex: 1; }
.service__arrow { color: var(--muted); transition: transform .2s, color .2s; }
.service:hover { color: var(--blue); }
.service:hover .service__arrow { color: var(--blue); transform: translateX(6px); }

@keyframes fade { from { opacity: 0; transform: translateY(6px); } }

.about { max-width: 880px; margin-bottom: 72px; }
.about__title { font-size: clamp(24px, 3vw, 36px); font-weight: 600; line-height: 1.3; letter-spacing: -.01em; }
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.feature { border-top: 2px solid var(--blue); padding-top: 24px; }
.feature__num { font-size: 13px; color: var(--blue); font-weight: 600; }
.feature h3 { font-size: 20px; font-weight: 600; margin: 12px 0 8px; }
.feature p { color: var(--muted); }

.slider-nav { display: flex; gap: 8px; }
.round-btn {
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line);
  font-size: 18px; transition: .2s;
}
.round-btn:hover { border-color: var(--blue); color: var(--blue); }

.doctors {
  display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 72px) / 4);
  gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; padding-bottom: 4px;
}
.doctors::-webkit-scrollbar { display: none; }
.doctor { scroll-snap-align: start; }
.doctor__photo {
  aspect-ratio: 3/4; border-radius: var(--radius); background: var(--blue-soft);
  display: grid; place-items: center; font-size: 40px; font-weight: 600;
  color: var(--blue); margin-bottom: 18px; letter-spacing: .02em;
}
.doctor h3 { font-size: 17px; font-weight: 600; line-height: 1.35; margin-bottom: 4px; }
.doctor p { font-size: 14px; color: var(--muted); }

.cta {
  background: var(--blue); color: #fff; border-radius: 28px;
  padding: 56px; display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: center;
}
.cta__title { font-size: clamp(28px, 3.4vw, 40px); font-weight: 700; letter-spacing: -.02em; line-height: 1.15; margin-bottom: 8px; }
.cta__text { color: rgba(255,255,255,.75); }
.cta__form { display: flex; gap: 10px; flex-wrap: wrap; }
.cta__form input {
  flex: 1 1 160px; height: 52px; padding: 0 22px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.1); color: #fff; outline: none;
}
.cta__form input::placeholder { color: rgba(255,255,255,.65); }
.cta__form input:focus { border-color: #fff; }

.contacts { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contacts__list { margin-top: 40px; display: grid; gap: 28px; }
.contacts__list dt { font-size: 13px; color: var(--muted); margin-bottom: 4px; }
.contacts__list dd { font-size: 18px; font-weight: 500; }
.contacts__list a:hover { color: var(--blue); }
.contacts__map { border-radius: var(--radius); overflow: hidden; background: var(--blue-soft); aspect-ratio: 4/3; }
.contacts__map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.3); }

.footer { border-top: 1px solid var(--line); padding: 64px 0 32px; font-size: 14px; }
.footer__inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col a:not(.logo) { color: var(--muted); }
.footer__col a:not(.logo):hover { color: var(--ink); }
.footer__head { font-weight: 600; margin-bottom: 6px; }
.footer__small { color: var(--muted); font-size: 13px; margin-top: 12px; }
.footer__bottom {
  display: flex; justify-content: space-between; margin-top: 56px; padding-top: 24px;
  border-top: 1px solid var(--line); color: var(--muted); font-size: 13px;
}

.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 16px; visibility: hidden; opacity: 0; transition: .25s; }
.modal.is-open { visibility: visible; opacity: 1; }
.modal__overlay { position: absolute; inset: 0; background: rgba(14,23,38,.45); }
.modal__box {
  position: relative; background: #fff; border-radius: 24px; padding: 40px;
  width: 100%; max-width: 420px; transform: translateY(12px); transition: .25s;
}
.modal.is-open .modal__box { transform: none; }
.modal__close { position: absolute; top: 16px; right: 20px; font-size: 28px; color: var(--muted); line-height: 1; }
.modal__box h3 { font-size: 26px; font-weight: 700; margin-bottom: 6px; }
.modal__text { color: var(--muted); margin-bottom: 24px; font-size: 15px; }
.modal__form { display: grid; gap: 10px; }
.modal__form input {
  height: 52px; padding: 0 20px; border-radius: 14px; border: 1px solid var(--line); outline: none;
  transition: border-color .2s;
}
.modal__form input:focus { border-color: var(--blue); }
.modal__form .btn { margin-top: 6px; }
.modal__note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 6px; }

.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translate(-50%, 20px);
  background: var(--ink); color: #fff; padding: 14px 24px; border-radius: 999px;
  font-size: 14px; opacity: 0; pointer-events: none; transition: .3s; z-index: 200;
}
.toast.is-show { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 1; transform: none; }
.anim-ready .reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.anim-ready .reveal.is-visible { opacity: 1; transform: none; }

.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo__mark {
  width: 42px; height: 42px; border-radius: 13px; flex-shrink: 0;
  background: linear-gradient(135deg, #3B74FF 0%, var(--blue) 55%, #1440B8 100%);
  display: grid; place-items: center;
  box-shadow: 0 6px 16px rgba(31,94,255,.28), inset 0 1px 0 rgba(255,255,255,.25);
}
.logo__mark svg { width: 22px; height: 22px; }
.logo__text { display: flex; flex-direction: column; line-height: 1.05; }
.logo__top {
  font-size: 10.5px; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--muted);
}
.logo__bottom { font-size: 19px; font-weight: 700; letter-spacing: -.02em; color: var(--ink); margin-top: 3px; }
.logo__bottom span { color: var(--blue); }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { padding: 36px 24px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat__num { font-size: clamp(32px, 4vw, 48px); font-weight: 700; letter-spacing: -.03em; line-height: 1; color: var(--blue); }
.stat__label { margin-top: 10px; font-size: 14px; color: var(--muted); }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.step__num {
  width: 36px; height: 36px; border-radius: 50%; background: var(--blue-soft); color: var(--blue);
  display: grid; place-items: center; font-weight: 700; font-size: 14px; margin-bottom: 20px;
}
.step h3 { font-size: 18px; font-weight: 600; margin-bottom: 6px; }
.step p { font-size: 15px; color: var(--muted); }

.tech { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.tech__item { display: flex; gap: 20px; padding: 28px; border-radius: var(--radius); background: #F7F9FC; }
.tech__icon {
  width: 48px; height: 48px; border-radius: 14px; background: #fff; flex-shrink: 0;
  display: grid; place-items: center; color: var(--blue);
}
.tech__icon svg { width: 24px; height: 24px; }
.tech__item h3 { font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.tech__item p { font-size: 15px; color: var(--muted); }

.price-list { border-top: 1px solid var(--line); }
.price-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 24px;
  padding: 20px 0; border-bottom: 1px solid var(--line); font-size: 17px;
}
.price-row__name { flex: 1; }
.price-row__name small { display: block; font-size: 13px; color: var(--muted); margin-top: 2px; }
.price-row__val { font-weight: 700; white-space: nowrap; }
.price-cols { display: grid; grid-template-columns: 1fr 1fr; column-gap: 64px; }
.price-note { margin-top: 24px; font-size: 14px; color: var(--muted); }

.doctors--grid { display: grid; grid-auto-flow: row; grid-template-columns: repeat(4, 1fr); overflow: visible; }
.doctor .doctor__role { font-size: 13px; font-weight: 600; color: var(--blue); margin-bottom: 10px; }
.doctor .doctor__desc { font-size: 14px; color: var(--muted); line-height: 1.55; }
.doctor h3 { margin-bottom: 2px; }

.faq { max-width: 860px; border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; text-align: left; padding: 24px 0; font-size: 18px; font-weight: 600;
  display: flex; justify-content: space-between; gap: 24px; align-items: center;
}
.faq__icon { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line); flex-shrink: 0; position: relative; transition: .25s; }
.faq__icon::before, .faq__icon::after { content: ''; position: absolute; left: 50%; top: 50%; width: 10px; height: 1.5px; background: currentColor; transform: translate(-50%,-50%); transition: .25s; }
.faq__icon::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq__item.is-open .faq__icon { background: var(--blue); border-color: var(--blue); color: #fff; }
.faq__item.is-open .faq__icon::after { transform: translate(-50%,-50%) rotate(0); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq__a > div { overflow: hidden; }
.faq__a p { color: var(--muted); padding-bottom: 24px; max-width: 720px; }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }

.crumbs { font-size: 14px; color: var(--muted); display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.crumbs a:hover { color: var(--blue); }
.page-hero { padding: 48px 0 72px; }
.page-hero__grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 64px; align-items: end; }
.page-hero__title { font-size: clamp(40px, 5.5vw, 68px); line-height: 1.04; letter-spacing: -.03em; font-weight: 700; margin-bottom: 24px; }
.page-hero__text { font-size: 18px; color: var(--muted); max-width: 560px; margin-bottom: 36px; }
.page-hero__card { background: var(--blue-soft); border-radius: 24px; padding: 32px; }
.page-hero__card dl { display: grid; gap: 18px; }
.page-hero__card dt { font-size: 13px; color: var(--muted); }
.page-hero__card dd { font-size: 22px; font-weight: 700; }

.split { display: grid; grid-template-columns: .8fr 1.2fr; gap: 64px; }
.split__title { font-size: clamp(28px, 3.4vw, 40px); font-weight: 700; letter-spacing: -.02em; line-height: 1.15; }
.prose p { color: #3A4354; font-size: 17px; margin-bottom: 16px; }
.checklist { list-style: none; display: grid; gap: 14px; }
.checklist li { position: relative; padding-left: 36px; font-size: 17px; }
.checklist li::before {
  content: ''; position: absolute; left: 0; top: 3px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--blue-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231F5EFF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5 9-10'/%3E%3C/svg%3E") center/12px no-repeat;
}
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.compare__col { border-radius: var(--radius); padding: 32px; border: 1px solid var(--line); }
.compare__col--main { background: var(--blue); color: #fff; border-color: var(--blue); }
.compare__col h3 { font-size: 22px; margin-bottom: 20px; }
.compare__col ul { list-style: none; display: grid; gap: 12px; }
.compare__col li { padding-left: 20px; position: relative; font-size: 15px; }
.compare__col li::before { content: '—'; position: absolute; left: 0; opacity: .6; }
.compare__col:not(.compare__col--main) li { color: var(--muted); }

@media (max-width: 1024px) {
  .header__phone { display: none; }
  .doctors { grid-auto-columns: calc((100% - 48px) / 3); }
  .cta { grid-template-columns: 1fr; padding: 40px; }
}

@media (max-width: 860px) {
  .nav {
    position: fixed; top: 76px; left: 0; right: 0; background: #fff;
    flex-direction: column; gap: 0; padding: 8px 24px 24px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-8px); opacity: 0; visibility: hidden; transition: .2s;
  }
  .nav.is-open { transform: none; opacity: 1; visibility: visible; }
  .nav a { padding: 14px 0; font-size: 18px; color: var(--ink); border-bottom: 1px solid var(--line); }
  .burger { display: block; }
  .hero { padding: 40px 0 64px; }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { order: -1; }
  .hero__circle { max-width: 280px; }
  .hero__badge { left: auto; right: calc(50% - 160px); bottom: -4px; padding: 12px 18px; }
  .hero__badge-num { font-size: 22px; }
  .offers, .features { grid-template-columns: 1fr; }
  .features { gap: 32px; }
  .services { grid-template-columns: 1fr; }
  .service { font-size: 18px; padding: 20px 0; }
  .doctors { grid-auto-columns: 70%; }
  .contacts { grid-template-columns: 1fr; gap: 40px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .steps, .doctors--grid { grid-template-columns: 1fr 1fr; }
  .tech, .price-cols, .compare { grid-template-columns: 1fr; }
  .page-hero__grid, .split { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .section { padding: 72px 0; }
}

@media (max-width: 520px) {
  .container { padding: 0 16px; }
  .header__right .btn { display: none; }
  .tabs { width: 100%; overflow-x: auto; }
  .tab { flex: 1 0 auto; padding: 10px 14px; }
  .hero__meta { gap: 24px; }
  .cta { padding: 32px 24px; border-radius: 24px; }
  .cta__form .btn { width: 100%; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 8px; }
  .steps, .doctors--grid { grid-template-columns: 1fr; }
  .stat { padding: 24px 16px; }
  .logo__bottom { font-size: 17px; }
  .logo__mark { width: 38px; height: 38px; }
  .price-row { font-size: 16px; }
  .faq__q { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .anim-ready .reveal { opacity: 1; transform: none; }
}

.page-hero--short { padding-bottom: 48px; }
.doc-list { display: grid; gap: 16px; }
.doc-card {
  display: grid; grid-template-columns: 240px 1fr; gap: 40px;
  padding: 24px; border: 1px solid var(--line); border-radius: 24px;
  transition: border-color .2s;
}
.doc-card:hover { border-color: var(--blue); }
.doc-card.is-hidden { display: none; }
.doc-card__photo {
  aspect-ratio: 3/4; border-radius: 16px; background: var(--blue-soft);
  display: grid; place-items: center; font-size: 44px; font-weight: 600; color: var(--blue);
}
.doc-card__body { display: flex; flex-direction: column; align-items: flex-start; padding: 8px 0; }
.doc-card__role { font-size: 13px; font-weight: 600; color: var(--blue); margin-bottom: 8px; }
.doc-card__name { font-size: clamp(22px, 2.4vw, 30px); font-weight: 700; letter-spacing: -.02em; line-height: 1.2; margin-bottom: 14px; }
.doc-card__desc { color: var(--muted); max-width: 620px; margin-bottom: 20px; }
.doc-card .btn { margin-top: auto; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.tag { font-size: 13px; padding: 7px 14px; border-radius: 999px; background: #F3F5F9; }

.section__sub { color: var(--muted); margin-top: 10px; }
.info-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.info-col { border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; background: #fff; }
.info-col h3 { font-size: 20px; margin-bottom: 18px; }
.info-col ul { list-style: none; display: grid; gap: 12px; }
.info-col li { padding-left: 20px; position: relative; color: #3A4354; }
.info-col li::before { content: ''; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }

.timeline { list-style: none; border-left: 2px solid var(--line); margin-left: 6px; max-width: 820px; }
.timeline li { position: relative; display: grid; grid-template-columns: 160px 1fr; gap: 24px; padding: 0 0 36px 32px; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before { content: ''; position: absolute; left: -8px; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: #fff; border: 3px solid var(--blue); }
.timeline__when { font-weight: 700; color: var(--blue); }
.timeline h3 { font-size: 18px; margin-bottom: 4px; }
.timeline p { color: var(--muted); }

.figures { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.figure { padding: 32px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.section:not(.section--soft) .figure { background: #F7F9FC; border-color: transparent; }
.figure__num { font-size: clamp(30px, 3.4vw, 42px); font-weight: 700; color: var(--blue); letter-spacing: -.02em; line-height: 1.1; }
.figure__label { color: var(--muted); margin-top: 8px; font-size: 15px; }

@media (max-width: 860px) {
  .doc-card { grid-template-columns: 180px 1fr; gap: 24px; }
  .info-cols, .figures { grid-template-columns: 1fr; }
  .timeline li { grid-template-columns: 1fr; gap: 4px; }
}
@media (max-width: 560px) {
  .doc-card { grid-template-columns: 1fr; padding: 16px; }
  .doc-card__photo { aspect-ratio: 4/3; }
  .doc-card .btn { width: 100%; }
}

.profile { display: grid; grid-template-columns: 380px 1fr; gap: 64px; align-items: start; }
.profile__photo {
  aspect-ratio: 3/4; border-radius: 28px; background: var(--blue-soft);
  display: grid; place-items: center; font-size: 72px; font-weight: 600; color: var(--blue);
}
.profile__info { padding-top: 12px; }
.profile__name { font-size: clamp(34px, 4.4vw, 56px); line-height: 1.08; letter-spacing: -.03em; font-weight: 700; margin-bottom: 20px; }
.profile__info .page-hero__text { margin-bottom: 24px; }
.profile__info .hero__actions { margin-bottom: 40px; }
.profile__facts { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; padding-top: 28px; border-top: 1px solid var(--line); }
.profile__facts dt { font-size: 13px; color: var(--muted); margin-bottom: 4px; }
.profile__facts dd { font-weight: 600; }
.doctors--three { grid-template-columns: repeat(3, 1fr); }
.doctor--link .doctor__photo { transition: background .2s; }
.doctor--link:hover .doctor__photo { background: #E2EAFF; }
.doctor--link:hover h3 { color: var(--blue); }
.doc-card__photo { transition: background .2s; }
.doc-card__photo:hover { background: #E2EAFF; }
.doc-card__name a:hover { color: var(--blue); }
.doc-card__actions { margin-top: auto; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

@media (max-width: 860px) {
  .profile { grid-template-columns: 1fr; gap: 32px; }
  .profile__photo { max-width: 320px; }
  .doctors--three { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .profile__photo { max-width: none; aspect-ratio: 4/3; }
  .profile__facts { grid-template-columns: 1fr; }
  .doctors--three { grid-template-columns: 1fr; }
  .doc-card__actions { width: 100%; }
}
