﻿:root {
    --mt-ink: #172438;
    --mt-muted: #5d6b80;
    --mt-blue: #5169d6;
    --mt-blue-dark: #0a3972;
    --mt-green: #16b36f;
    --mt-cyan: #17b8c6;
    --mt-peach: #fff0df;
    --mt-soft: #f4f7fd;
    --mt-line: #dfe6f2;
    --mt-white: #ffffff;
    --mt-shadow: 0 20px 46px rgba(29, 52, 88, 0.11);
    --mt-radius: 8px;
    --mt-container: 1360px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--mt-ink);
    background: #ffffff;
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    letter-spacing: 0;
}

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

.mt-skip-link {
    position: absolute;
    left: -999px;
    top: 12px;
    z-index: 999;
    padding: 10px 14px;
    background: var(--mt-white);
    border: 1px solid var(--mt-line);
}

.mt-skip-link:focus {
    left: 12px;
}

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

.mt-header {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 12px 0;
    background: linear-gradient(90deg, rgba(246, 249, 255, 0.93), rgba(255, 255, 255, 0.93));
    backdrop-filter: blur(18px);
}

.mt-header__inner {
    display: flex;
    align-items: center;
    gap: 26px;
    min-height: 74px;
    padding: 0 28px;
    background: var(--mt-white);
    border: 1px solid rgba(223, 230, 242, 0.8);
    border-radius: var(--mt-radius);
    box-shadow: 0 18px 42px rgba(31, 54, 88, 0.08);
}

.mt-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 190px;
    color: var(--mt-blue-dark);
}

.mt-logo__mark {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: var(--mt-white);
    background: linear-gradient(135deg, var(--mt-blue-dark), var(--mt-green));
    border-radius: 8px;
    font-weight: 800;
}

.mt-logo strong {
    display: block;
    font-size: 22px;
    line-height: 1;
}

.mt-logo small {
    display: block;
    color: var(--mt-muted);
    font-size: 11px;
    line-height: 1.3;
}

.mt-nav {
    flex: 1;
}

.mt-nav__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mt-nav__list a {
    color: #263348;
    font-size: 15px;
    font-weight: 650;
}

.mt-nav__list a:hover {
    color: var(--mt-blue);
}

.mt-header__actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mt-header__phone {
    color: var(--mt-blue-dark);
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.mt-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-weight: 750;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.mt-button--primary {
    color: var(--mt-white);
    background: linear-gradient(135deg, var(--mt-green), #0a9e9b);
    box-shadow: 0 14px 30px rgba(22, 179, 111, 0.24);
}

.mt-button--secondary {
    color: var(--mt-blue-dark);
    background: var(--mt-white);
    border-color: rgba(81, 105, 214, 0.32);
}

.mt-button--ghost {
    min-height: 38px;
    padding: 9px 16px;
    color: var(--mt-blue);
    background: transparent;
    border-color: rgba(81, 105, 214, 0.36);
}

.mt-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    background: var(--mt-white);
    border: 1px solid var(--mt-line);
    border-radius: 6px;
}

.mt-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--mt-ink);
}

.mt-hero {
    position: relative;
    overflow: hidden;
    padding: 70px 0 58px;
    background:
        linear-gradient(135deg, rgba(244, 247, 253, 0.88), rgba(255, 255, 255, 0.74) 42%, rgba(227, 246, 249, 0.84)),
        repeating-linear-gradient(135deg, rgba(81, 105, 214, 0.07) 0 1px, transparent 1px 170px);
}

.mt-hero__grid {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    align-items: center;
    gap: 42px;
}

.mt-hero h1 {
    max-width: 720px;
    margin: 0 0 24px;
    font-size: 56px;
    line-height: 1.12;
}

.mt-hero h1 span {
    color: #061323;
}

.mt-hero p {
    max-width: 620px;
    margin: 0 0 34px;
    color: #263348;
    font-size: 19px;
}

.mt-hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.mt-hero__visual {
    min-height: 480px;
    display: grid;
    place-items: center;
}

.mt-language {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    flex: 0 0 auto;
    padding: 3px;
    background: #f2f5fb;
    border: 1px solid var(--mt-line);
    border-radius: 6px;
}

.mt-language a {
    display: grid;
    place-items: center;
    min-width: 34px;
    min-height: 30px;
    padding: 4px 7px;
    color: var(--mt-muted);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 800;
}

.mt-language a:hover,
.mt-language a.is-active {
    color: var(--mt-blue-dark);
    background: var(--mt-white);
    box-shadow: 0 2px 8px rgba(29, 52, 88, 0.1);
}

.mt-hero__image {
    display: block;
    width: 100%;
    max-width: 680px;
    border-radius: 8px;
    box-shadow: var(--mt-shadow);
}

.mt-medical-visual {
    position: relative;
    width: min(100%, 620px);
    min-height: 430px;
    overflow: hidden;
    background:
        radial-gradient(circle at 74% 24%, rgba(23, 184, 198, 0.24), transparent 28%),
        radial-gradient(circle at 20% 82%, rgba(255, 216, 184, 0.5), transparent 24%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(236, 246, 252, 0.88));
    border: 1px solid rgba(223, 230, 242, 0.9);
    border-radius: 8px;
    box-shadow: var(--mt-shadow);
    transform: perspective(1000px) rotateX(5deg) rotateY(-7deg);
}

.mt-medical-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(135deg, rgba(81, 105, 214, 0.07) 0 1px, transparent 1px 58px),
        linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.55));
}

.mt-medical-visual__ring {
    position: absolute;
    right: 62px;
    top: 52px;
    width: 230px;
    height: 230px;
    border: 24px solid rgba(81, 105, 214, 0.16);
    border-radius: 50%;
}

.mt-medical-visual__ring::after {
    content: "";
    position: absolute;
    inset: 42px;
    border: 16px solid rgba(22, 179, 111, 0.16);
    border-radius: 50%;
}

.mt-medical-visual__card {
    position: absolute;
    display: block;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(223, 230, 242, 0.9);
    border-radius: 8px;
    box-shadow: 0 16px 32px rgba(31, 54, 88, 0.08);
}

.mt-medical-visual__card--main {
    left: 72px;
    top: 96px;
    width: 300px;
    height: 178px;
}

.mt-medical-visual__card--main::before,
.mt-medical-visual__card--main::after {
    content: "";
    position: absolute;
    left: 34px;
    right: 34px;
    height: 12px;
    background: rgba(81, 105, 214, 0.16);
    border-radius: 999px;
}

.mt-medical-visual__card--main::before {
    top: 42px;
}

.mt-medical-visual__card--main::after {
    top: 72px;
    right: 96px;
}

.mt-medical-visual__card--top {
    right: 88px;
    top: 250px;
    width: 160px;
    height: 92px;
    background: rgba(232, 248, 250, 0.84);
}

.mt-medical-visual__card--bottom {
    left: 154px;
    bottom: 56px;
    width: 250px;
    height: 82px;
    background: rgba(255, 245, 235, 0.84);
}

.mt-medical-visual__cross {
    position: absolute;
    z-index: 3;
    display: grid;
    place-items: center;
    color: var(--mt-white);
    background: linear-gradient(135deg, var(--mt-blue), var(--mt-cyan));
    border-radius: 8px;
    font-weight: 900;
}

.mt-medical-visual__cross--one {
    left: 108px;
    top: 132px;
    width: 58px;
    height: 58px;
    font-size: 38px;
}

.mt-medical-visual__cross--two {
    right: 172px;
    top: 98px;
    width: 42px;
    height: 42px;
    font-size: 28px;
    background: linear-gradient(135deg, var(--mt-green), var(--mt-cyan));
}

.mt-medical-visual__cross--three {
    right: 102px;
    bottom: 88px;
    width: 50px;
    height: 50px;
    font-size: 32px;
    background: linear-gradient(135deg, var(--mt-blue-dark), var(--mt-blue));
}

.mt-medical-visual__pulse {
    position: absolute;
    z-index: 4;
    left: 112px;
    top: 210px;
    width: 360px;
    height: 92px;
}

.mt-medical-visual__pulse::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 44px;
    height: 6px;
    background: linear-gradient(90deg, var(--mt-green) 0 22%, transparent 22% 31%, var(--mt-green) 31% 43%, transparent 43% 50%, var(--mt-green) 50% 100%);
    border-radius: 999px;
}

.mt-medical-visual__pulse::after {
    content: "";
    position: absolute;
    left: 78px;
    top: 18px;
    width: 96px;
    height: 56px;
    border-left: 6px solid var(--mt-green);
    border-top: 6px solid var(--mt-green);
    transform: skewX(-22deg);
}

.mt-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 42px;
}

.mt-stat {
    min-height: 96px;
    padding: 22px 24px;
    background: var(--mt-white);
    border: 1px solid rgba(223, 230, 242, 0.8);
    border-radius: var(--mt-radius);
    box-shadow: 0 12px 28px rgba(31, 54, 88, 0.07);
}

.mt-stat strong {
    display: block;
    color: var(--mt-blue-dark);
    font-size: 28px;
    line-height: 1.1;
}

.mt-stat span {
    display: block;
    margin-top: 6px;
    color: var(--mt-muted);
    font-size: 14px;
}

.mt-section {
    padding: 72px 0;
}

.mt-section--compact {
    padding: 42px 0;
}

.mt-section--soft {
    background: linear-gradient(90deg, #f8fbff, #ffffff 48%, #f0fbfa);
}

.mt-section-heading {
    max-width: 720px;
    margin-bottom: 34px;
}

.mt-section-heading--center {
    max-width: none;
    text-align: center;
}

.mt-section-heading h2,
.mt-row-heading h2,
.mt-consultation h2,
.mt-concierge h2 {
    margin: 0;
    font-size: 38px;
    line-height: 1.15;
}

.mt-section-heading p {
    margin: 14px 0 0;
    color: var(--mt-muted);
    font-size: 17px;
}

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

.mt-arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--mt-green);
    font-weight: 750;
}

.mt-direction-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

.mt-section-card,
.mt-direction-card {
    min-height: 208px;
    border-radius: var(--mt-radius);
}

.mt-section-card--intro {
    grid-column: span 2;
    padding: 30px;
    background: var(--mt-white);
    border: 1px solid var(--mt-line);
}

.mt-section-card--intro h2 {
    margin: 0 0 30px;
    color: var(--mt-blue-dark);
    font-size: 34px;
    line-height: 1.16;
}

.mt-direction-card {
    position: relative;
    grid-column: span 2;
    overflow: hidden;
    min-height: 210px;
    padding: 34px 28px;
    background: #eef6fb;
    border: 1px solid rgba(223, 230, 242, 0.75);
}

.mt-direction-card:nth-child(2n) {
    background: #f0fbfa;
}

.mt-direction-card:nth-child(3n) {
    background: #fff5ec;
}

.mt-direction-card__number {
    position: absolute;
    top: 20px;
    left: 24px;
    color: rgba(81, 105, 214, 0.16);
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.mt-direction-card__icon {
    position: absolute;
    right: 24px;
    bottom: 20px;
    display: grid;
    place-items: center;
    width: 84px;
    height: 84px;
    color: rgba(255, 255, 255, 0.92);
    background: linear-gradient(135deg, rgba(81, 105, 214, 0.88), rgba(23, 184, 198, 0.88));
    border-radius: 8px;
    font-size: 38px;
    font-weight: 800;
}

.mt-direction-card h3,
.mt-benefit h3,
.mt-process h3,
.mt-service-card h2,
.mt-post-card h2 {
    margin: 0 0 8px;
    font-size: 21px;
    line-height: 1.2;
}

.mt-direction-card p,
.mt-benefit p,
.mt-process p,
.mt-service-card p,
.mt-post-card p {
    margin: 0;
    color: var(--mt-muted);
}

.mt-direction-card div {
    position: relative;
    z-index: 2;
    max-width: 76%;
    padding-top: 62px;
}

.mt-benefit-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.mt-benefit {
    min-height: 170px;
    padding: 22px;
    background: transparent;
    border-top: 1px solid var(--mt-line);
}

.mt-benefit__icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
    color: var(--mt-blue);
    border: 1px solid rgba(81, 105, 214, 0.28);
    border-radius: 8px;
}

.mt-process {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
}

.mt-process__item {
    position: relative;
    padding: 26px 18px 0;
    border-top: 1px solid rgba(81, 105, 214, 0.24);
}

.mt-process__item::before {
    content: "";
    position: absolute;
    top: -5px;
    left: 20px;
    width: 10px;
    height: 10px;
    background: var(--mt-green);
    border-radius: 50%;
}

.mt-process__item span {
    display: block;
    margin-bottom: 14px;
    color: rgba(81, 105, 214, 0.22);
    font-size: 38px;
    font-weight: 800;
}

.mt-clinic-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--mt-line);
    border-radius: var(--mt-radius);
    background: var(--mt-line);
}

.mt-clinic-strip span {
    display: grid;
    place-items: center;
    min-height: 74px;
    padding: 18px;
    color: var(--mt-blue-dark);
    background: var(--mt-white);
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
}

.mt-story-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.mt-story-card {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    border-radius: var(--mt-radius);
    background:
        radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.28), transparent 30%),
        linear-gradient(135deg, #0d3f7a, #075b68);
}

.mt-story-card div {
    position: absolute;
    inset: auto 0 0;
    padding: 22px;
    color: var(--mt-white);
    background: linear-gradient(0deg, rgba(4, 18, 38, 0.82), transparent);
}

.mt-story-card span {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    opacity: 0.88;
}

.mt-story-card h3,
.mt-story-card h2 {
    margin: 0 0 10px;
    font-size: 21px;
    line-height: 1.2;
}

.mt-story-card a {
    color: #c7ffe8;
    font-weight: 750;
}

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

.mt-doctor-card {
    display: grid;
    grid-template-columns: 118px 1fr;
    gap: 18px;
    min-height: 164px;
    padding: 16px;
    background: var(--mt-white);
    border: 1px solid var(--mt-line);
    border-radius: var(--mt-radius);
}

.mt-doctor-card__avatar {
    display: grid;
    place-items: center;
    width: 118px;
    height: 132px;
    color: var(--mt-white);
    background:
        radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.32), transparent 24%),
        linear-gradient(135deg, var(--mt-blue-dark), var(--mt-cyan));
    border-radius: 8px;
    font-size: 48px;
    font-weight: 900;
}

.mt-doctor-card h3,
.mt-doctor-card h2 {
    margin: 2px 0 8px;
    font-size: 17px;
    line-height: 1.25;
}

.mt-doctor-card p,
.mt-doctor-card div span {
    display: block;
    margin: 0 0 8px;
    color: var(--mt-muted);
    font-size: 13px;
}

.mt-doctor-card a {
    color: var(--mt-blue-dark);
    font-weight: 750;
}

.mt-concierge {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 28px;
    overflow: hidden;
    min-height: 310px;
    padding: 38px 46px;
    color: var(--mt-white);
    background:
        linear-gradient(135deg, #073b78, #061f48 56%, #0a7d87),
        linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent);
    border-radius: var(--mt-radius);
}

.mt-concierge p {
    max-width: 470px;
    color: rgba(255, 255, 255, 0.82);
}

.mt-concierge__items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 22px;
    margin-top: 24px;
}

.mt-concierge__items span {
    position: relative;
    padding-left: 24px;
    font-weight: 650;
}

.mt-concierge__items span::before {
    content: "+";
    position: absolute;
    left: 0;
    color: #73e6bc;
}

.mt-concierge__panel {
    align-self: end;
    display: grid;
    gap: 16px;
    align-content: center;
    min-height: 260px;
    padding: 28px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 42px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--mt-radius);
}

.mt-concierge__panel span {
    display: grid;
    place-items: center;
    min-height: 64px;
    color: var(--mt-white);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    font-size: 24px;
    font-weight: 850;
}

.mt-consultation {
    background: linear-gradient(90deg, #ffffff, #f4f8ff);
}

.mt-consultation__grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 42px;
    align-items: center;
}

.mt-consultation p {
    color: var(--mt-muted);
}

.mt-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1.3fr auto;
    gap: 14px;
    align-items: end;
}

.mt-form label {
    display: grid;
    gap: 7px;
}

.mt-form span {
    color: var(--mt-blue-dark);
    font-size: 12px;
    font-weight: 800;
}

.mt-form input,
.mt-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    color: var(--mt-ink);
    background: var(--mt-white);
    border: 1px solid var(--mt-line);
    border-radius: 6px;
    font: inherit;
}

.mt-form textarea {
    resize: vertical;
}

.mt-form-success {
    margin-bottom: 16px;
    padding: 14px 16px;
    color: #08653f;
    background: #e8fbf3;
    border: 1px solid #bcebd8;
    border-radius: var(--mt-radius);
    font-weight: 700;
}

.mt-privacy-note {
    margin-top: 12px;
    font-size: 13px;
}

.mt-page-hero,
.mt-service-hero {
    padding: 74px 0;
    background:
        linear-gradient(135deg, #f7faff, #ffffff 46%, #e9fbf9),
        repeating-linear-gradient(135deg, rgba(81, 105, 214, 0.06) 0 1px, transparent 1px 150px);
}

.mt-page-hero span,
.mt-kicker {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--mt-green);
    font-weight: 800;
}

.mt-page-hero h1,
.mt-service-hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: 48px;
    line-height: 1.12;
}

.mt-page-hero p,
.mt-service-hero p {
    max-width: 700px;
    margin: 18px 0 0;
    color: var(--mt-muted);
    font-size: 18px;
}

.mt-service-hero__grid {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 44px;
    align-items: center;
}

.mt-service-hero__visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
    min-height: 330px;
    padding: 28px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.86), rgba(232,248,250,0.88)),
        repeating-linear-gradient(135deg, rgba(81,105,214,0.08) 0 1px, transparent 1px 50px);
    border: 1px solid var(--mt-line);
    border-radius: var(--mt-radius);
    box-shadow: var(--mt-shadow);
}

.mt-service-hero__visual span {
    display: grid;
    place-items: center;
    min-height: 110px;
    color: var(--mt-blue-dark);
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(223,230,242,0.9);
    border-radius: 8px;
    font-size: 24px;
    font-weight: 850;
}

.mt-service-hero__visual span:first-child {
    grid-column: span 2;
    color: var(--mt-white);
    background: linear-gradient(135deg, var(--mt-blue), var(--mt-green));
}

.mt-content {
    max-width: 960px;
}

.mt-content h2 {
    margin-top: 42px;
    color: var(--mt-ink);
    font-size: 30px;
}

.mt-content p,
.mt-content li {
    color: #314157;
}

.mt-content a {
    color: var(--mt-blue);
    font-weight: 700;
}

.mt-catalog-grid,
.mt-post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.mt-service-card,
.mt-post-card {
    overflow: hidden;
    background: var(--mt-white);
    border: 1px solid var(--mt-line);
    border-radius: var(--mt-radius);
    box-shadow: 0 14px 34px rgba(31, 54, 88, 0.06);
}

.mt-card-kicker {
    display: grid;
    place-items: center;
    min-height: 128px;
    color: rgba(255, 255, 255, 0.96);
    background:
        radial-gradient(circle at 78% 22%, rgba(255,255,255,0.25), transparent 32%),
        linear-gradient(135deg, var(--mt-blue-dark), var(--mt-cyan));
    font-size: 28px;
    font-weight: 900;
}

.mt-service-card div,
.mt-post-card div {
    padding: 22px;
}

.mt-post-card time {
    display: block;
    margin-bottom: 10px;
    color: var(--mt-muted);
    font-size: 13px;
}

.mt-price-grid,
.mt-advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.mt-price-card,
.mt-advantage-card,
.mt-contact-card {
    padding: 28px;
    background: var(--mt-white);
    border: 1px solid var(--mt-line);
    border-radius: var(--mt-radius);
    box-shadow: 0 12px 32px rgba(31, 54, 88, 0.06);
}

.mt-price-card h3,
.mt-advantage-card h3,
.mt-contact-card h2 {
    margin: 0 0 10px;
    font-size: 24px;
}

.mt-price-card strong {
    display: block;
    margin: 18px 0;
    color: var(--mt-blue-dark);
    font-size: 28px;
}

.mt-price-card ul,
.mt-advantage-card ul,
.mt-contact-card ul {
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
}

.mt-price-card li,
.mt-advantage-card li {
    position: relative;
    margin: 9px 0;
    padding-left: 22px;
    color: var(--mt-muted);
}

.mt-price-card li::before,
.mt-advantage-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--mt-green);
    border-radius: 50%;
}

.mt-inline-cta {
    margin: 20px 0 0;
}

.mt-shortcode-banner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
    margin: 34px 0;
    padding: 34px;
    background: #eef3ff;
    border-radius: var(--mt-radius);
}

.mt-shortcode-banner--accent {
    color: var(--mt-white);
    background: linear-gradient(135deg, #083c7a, #0a8c91);
}

.mt-shortcode-banner h2 {
    margin: 0 0 12px;
    font-size: 28px;
}

.mt-shortcode-banner__text {
    max-width: 780px;
    color: inherit;
}

.mt-faq-list {
    max-width: 980px;
}

.mt-faq-item {
    margin-bottom: 14px;
    background: var(--mt-white);
    border: 1px solid var(--mt-line);
    border-radius: var(--mt-radius);
}

.mt-faq-item summary {
    padding: 20px 24px;
    color: var(--mt-blue-dark);
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
}

.mt-faq-item div {
    padding: 0 24px 22px;
    color: var(--mt-muted);
}

.mt-contact-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 22px;
}

.mt-contact-card li {
    display: grid;
    gap: 4px;
    margin-bottom: 16px;
}

.mt-contact-card strong {
    color: var(--mt-muted);
    font-size: 13px;
}

.mt-contact-card a {
    color: var(--mt-blue-dark);
    font-weight: 800;
}

.mt-footer {
    padding: 56px 0 24px;
    background: #f3f6fb;
    border-top: 1px solid var(--mt-line);
}

.mt-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    gap: 54px;
}

.mt-footer h3 {
    margin: 0 0 14px;
    color: var(--mt-blue-dark);
}

.mt-footer p {
    max-width: 340px;
    color: var(--mt-muted);
}

.mt-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mt-footer li {
    margin-bottom: 10px;
}

.mt-footer a {
    color: #33435a;
}

.mt-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--mt-line);
    color: var(--mt-muted);
    font-size: 13px;
}

@media (max-width: 1180px) {
    .mt-header__actions {
        display: none;
    }

    .mt-hero__grid,
    .mt-service-hero__grid,
    .mt-consultation__grid,
    .mt-concierge {
        grid-template-columns: 1fr;
    }

    .mt-hero__visual {
        min-height: 360px;
    }

    .mt-benefit-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .mt-process,
    .mt-clinic-strip,
    .mt-doctor-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .mt-story-grid,
    .mt-catalog-grid,
    .mt-post-grid,
    .mt-price-grid,
    .mt-advantage-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .mt-header__inner {
        min-height: 64px;
        padding: 0 16px;
    }

    .mt-menu-toggle {
        display: block;
        margin-left: auto;
        order: 2;
    }

    .mt-language {
        order: 1;
        margin-left: auto;
    }

    .mt-nav {
        position: absolute;
        top: 86px;
        left: 16px;
        right: 16px;
        display: none;
        padding: 18px;
        background: var(--mt-white);
        border: 1px solid var(--mt-line);
        border-radius: var(--mt-radius);
        box-shadow: var(--mt-shadow);
    }

    .mt-nav.is-open {
        display: block;
    }

    .mt-nav__list {
        display: grid;
        justify-content: stretch;
        gap: 12px;
    }

    .mt-hero {
        padding-top: 48px;
    }

    .mt-hero h1,
    .mt-page-hero h1,
    .mt-service-hero h1 {
        font-size: 38px;
    }

    .mt-hero p {
        font-size: 17px;
    }

    .mt-stats,
    .mt-benefit-grid,
    .mt-process,
    .mt-clinic-strip,
    .mt-story-grid,
    .mt-doctor-grid,
    .mt-catalog-grid,
    .mt-post-grid,
    .mt-price-grid,
    .mt-advantage-grid,
    .mt-contact-grid,
    .mt-footer__grid {
        grid-template-columns: 1fr;
    }

    .mt-direction-grid {
        grid-template-columns: 1fr;
    }

    .mt-section-card--intro,
    .mt-direction-card {
        grid-column: auto;
    }

    .mt-direction-card div {
        max-width: 72%;
    }

    .mt-section-heading h2,
    .mt-row-heading h2,
    .mt-consultation h2,
    .mt-concierge h2 {
        font-size: 30px;
    }

    .mt-row-heading {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .mt-shortcode-banner {
        grid-template-columns: 1fr;
    }

    .mt-footer__bottom {
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    body {
        font-size: 15px;
    }

    .mt-logo {
        min-width: 0;
    }

    .mt-logo strong {
        font-size: 18px;
    }

    .mt-logo small {
        display: none;
    }

    .mt-hero h1,
    .mt-page-hero h1,
    .mt-service-hero h1 {
        font-size: 32px;
    }

    .mt-hero__buttons {
        display: grid;
    }

    .mt-medical-visual,
    .mt-service-hero__visual {
        min-height: auto;
        padding: 20px;
        transform: none;
    }

    .mt-service-hero__visual span:first-child {
        grid-column: auto;
    }

    .mt-medical-visual {
        height: 300px;
    }

    .mt-medical-visual__pulse {
        display: none;
    }

    .mt-direction-card {
        min-height: 260px;
    }

    .mt-direction-card div {
        max-width: none;
        padding-top: 48px;
    }

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

    .mt-doctor-card__avatar {
        width: 94px;
        height: 112px;
    }

    .mt-concierge {
        padding: 28px 20px;
    }

    .mt-concierge__items {
        grid-template-columns: 1fr;
    }
}
