:root {
    --teal-800: #067a75;
    --teal-700: #078f87;
    --teal-600: #0aa097;
    --teal-500: #17afa5;
    --teal-300: #87d8d2;
    --teal-100: #dcf4f1;
    --teal-50: #f0fbfa;
    --ink: #172224;
    --ink-soft: #344345;
    --muted: #687779;
    --line: #d8e8e7;
    --surface: #ffffff;
    --surface-soft: #f7fbfb;
    --container: 1330px;
    --radius-sm: 10px;
    --radius: 16px;
    --font: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 104px;
}

body {
    margin: 0;
    overflow-x: clip;
    color: var(--ink);
    background: var(--surface);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: auto;
}

.hero,
.inner-hero {
    animation: page-content-enter 0.18s ease-out both;
}

@keyframes page-content-enter {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

html.nav-open,
html.dialog-open {
    overflow: hidden;
}

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

button,
summary,
a {
    -webkit-tap-highlight-color: transparent;
}

button,
a {
    touch-action: manipulation;
}

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

img,
svg {
    display: block;
}

img {
    max-width: 100%;
}

.format-picture {
    display: contents;
}

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

button {
    border: 0;
}

:focus-visible {
    outline: 3px solid rgba(10, 160, 151, 0.34);
    outline-offset: 3px;
}

.svg-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.icon {
    width: 1.25em;
    height: 1.25em;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

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

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    color: #fff;
    background: var(--teal-800);
    transform: translateY(-150%);
    transition: transform 0.2s ease;
}

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

.noscript-banner {
    padding: 12px 24px;
    color: #fff;
    background: var(--teal-800);
    font-size: 13px;
    text-align: center;
}

.noscript-banner a {
    font-weight: 800;
    text-decoration: underline;
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    min-height: 92px;
    border-bottom: 1px solid transparent;
    background: rgba(255, 255, 255, 0.96);
    transition: border-color 0.16s ease, background-color 0.16s ease;
}

.site-header.is-scrolled {
    border-color: rgba(7, 143, 135, 0.1);
    background: #fff;
}

@media (min-width: 1081px) {
    .site-header {
        transform: translateY(0);
    }

    .site-header.is-scrolled {
        transform: translateY(-22px);
    }

    .site-header .brand,
    .site-header .main-nav,
    .site-header .header__actions {
        transform-origin: center;
    }

    .site-header .brand {
        transform-origin: left center;
    }

    .site-header .header__actions {
        transform-origin: right center;
    }

    .site-header.is-scrolled .brand,
    .site-header.is-scrolled .main-nav,
    .site-header.is-scrolled .header__actions {
        transform: translateY(11px);
    }
}

@media (min-width: 1081px) and (hover: hover) {
    .site-header {
        transition: border-color .16s ease, background-color .16s ease, transform .16s ease;
    }

    .site-header .brand,
    .site-header .main-nav,
    .site-header .header__actions {
        transition: transform .16s ease;
    }
}

.header__quick-bar {
    display: none;
}

.header__inner {
    display: flex;
    min-height: inherit;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    min-width: 280px;
    align-items: center;
    gap: 12px;
}

.brand__logo {
    display: block;
    width: 58px;
    height: 58px;
    flex: 0 0 auto;
    object-fit: contain;
}

.brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.brand__text strong {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.brand__text small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 11px;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 1.55vw, 28px);
}

.main-nav__mobile-head,
.main-nav__mobile-home,
.main-nav__mobile-icon,
.main-nav__mobile-arrow,
.main-nav__support,
.main-nav__legal,
.nav-dropdown__label small {
    display: none;
}

.nav-dropdown__label strong {
    font: inherit;
}

.main-nav > a,
.nav-dropdown__toggle {
    position: relative;
    padding: 12px 0;
    color: var(--ink-soft);
    background: transparent;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    line-height: inherit;
    white-space: nowrap;
}

.main-nav > a::after,
.nav-dropdown__toggle::after {
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--teal-600);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.2s ease;
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after,
.nav-dropdown__toggle:hover::after,
.nav-dropdown__toggle:focus-visible::after,
.nav-dropdown.is-open .nav-dropdown__toggle::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown__toggle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.nav-dropdown__toggle > .icon {
    width: 14px;
    height: 14px;
    transition: transform .2s ease;
    transform: rotate(90deg);
}

.nav-dropdown.is-open .nav-dropdown__toggle > .icon {
    transform: rotate(-90deg);
}

.nav-dropdown__menu {
    position: absolute;
    z-index: 120;
    top: calc(100% + 12px);
    left: 50%;
    display: grid;
    width: 610px;
    padding: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, .98);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -8px);
    visibility: hidden;
    transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
}

.nav-dropdown.is-open .nav-dropdown__menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
    visibility: visible;
    transition-delay: 0s;
}

.nav-dropdown__menu a {
    display: grid;
    min-height: 46px;
    align-items: center;
    padding: 8px 10px;
    grid-template-columns: 34px minmax(0, 1fr) 16px;
    gap: 10px;
    border-radius: 11px;
    color: var(--ink-soft);
    white-space: normal;
}

.nav-dropdown__menu a::after {
    display: none;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a:focus-visible {
    color: var(--teal-800);
    background: var(--teal-50);
}

.nav-dropdown__menu a > span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 10px;
    color: var(--teal-700);
    background: var(--teal-50);
}

.nav-dropdown__menu a > span .icon { width: 17px; height: 17px; }
.nav-dropdown__menu a > .icon { width: 14px; height: 14px; color: var(--teal-700); }
.nav-dropdown__menu strong { font-size: 12px; }

.header__actions,
.header-phone {
    display: flex;
    align-items: center;
}

.header__actions {
    flex: 0 0 auto;
    gap: 18px;
}

.header-phone {
    gap: 8px;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}

.header-phone .icon {
    color: var(--teal-700);
    font-size: 1.45rem;
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
}

.nav-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    border-radius: 2px;
    background: var(--ink);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span + span {
    margin-top: 5px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.lang-select {
    display: none;
}

.button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px 20px;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.025em;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    transition: transform 0.16s ease, border-color 0.16s ease, background-color 0.16s ease;
}

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

.button:active {
    transform: translateY(0);
}

.button .icon {
    flex: 0 0 auto;
    font-size: 1.15rem;
}

.button--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--teal-700), var(--teal-500));
}

.button--ghost,
.button--outline {
    border-color: rgba(7, 143, 135, 0.35);
    color: var(--teal-800);
    background: rgba(255, 255, 255, 0.84);
}

.button--ghost:hover,
.button--outline:hover {
    border-color: var(--teal-600);
    background: var(--teal-50);
}

.button--large {
    min-height: 54px;
    padding-inline: 24px;
}

.button--small {
    min-height: 40px;
    padding: 9px 17px;
    font-size: 11px;
}

.button--white {
    border-color: #fff;
    color: var(--teal-800);
    background: #fff;
}

.hero {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    isolation: isolate;
    background: #ffffff url("../img/fone-hero-1.webp") right center / contain no-repeat;
    background-image: image-set(
        url("../img/fone-hero-1.avif") type("image/avif"),
        url("../img/fone-hero-1.webp") type("image/webp")
    );
}
.hero::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(90deg, #ffffff 0%, #ffffff 30%, rgba(255, 255, 255, 0) 60%);
    content: "";
}

.hero__wash {
    position: absolute;
    z-index: -1;
    top: -60%;
    left: -11%;
    width: 680px;
    height: 920px;
    border: 1px solid rgba(15, 173, 163, 0.15);
    border-radius: 50%;
    transform: rotate(-20deg);
}

.hero__wash::before,
.hero__wash::after {
    position: absolute;
    border: 1px solid rgba(15, 173, 163, 0.13);
    border-radius: 50%;
    content: "";
}

.hero__wash::before {
    inset: 55px;
}

.hero__wash::after {
    inset: 118px;
}

.hero__inner {
    position: relative;
    min-height: inherit;
    padding-top: 54px;
    padding-bottom: 112px;
}

.hero__content {
    position: relative;
    z-index: 2;
    width: min(680px, 52%);
}

.eyebrow {
    margin-bottom: 10px;
    color: var(--teal-700);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero h1 {
    margin-bottom: 19px;
    font-size: clamp(2.1rem, 2.7vw, 2.75rem);
    font-weight: 850;
    letter-spacing: -0.045em;
    line-height: 1.08;
    text-transform: uppercase;
}

.hero h1 span {
    display: block;
    margin-top: 7px;
    color: var(--teal-700);
}

.hero__lead {
    max-width: 560px;
    margin-bottom: 28px;
    color: var(--ink-soft);
    font-size: 16px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}


.hero-trust {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 18px;
    left: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.97);
}

.hero-trust__item {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 13px;
    padding: 0 19px;
    border-right: 1px solid var(--line);
}

.hero-trust__item:first-child {
    padding-left: 0;
}

.hero-trust__item:last-child {
    padding-right: 0;
    border-right: 0;
}

.hero-trust__icon {
    display: grid;
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid var(--teal-300);
    border-radius: 13px;
    color: var(--teal-700);
    background: var(--teal-50);
}

.hero-trust__icon .icon {
    width: 26px;
    height: 26px;
}

.hero-trust h2 {
    margin: 0 0 3px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
    text-transform: uppercase;
}

.hero-trust p {
    margin: 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.4;
}

.section {
    padding: 34px 0;
}

.section:nth-of-type(even) {
    background: linear-gradient(180deg, rgba(247, 251, 251, 0.66), rgba(255, 255, 255, 0));
}

.home-page .section:nth-of-type(even),
.prosthetics-page .section:nth-of-type(even) {
    background: var(--surface-soft);
}

.section-heading {
    margin: 0 auto 20px;
    text-align: center;
}

.section-heading .eyebrow {
    margin-bottom: 7px;
}

.section-heading h2,
.why__content h2,
.contact-panel h2 {
    margin-bottom: 0;
    font-size: clamp(1.6rem, 2.35vw, 2.15rem);
    font-weight: 850;
    letter-spacing: -0.035em;
    line-height: 1.15;
    text-transform: uppercase;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.advantage-card {
    min-height: 194px;
    padding: 19px 14px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background-color: #fff;
    text-align: center;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    contain: paint;
}

.advantage-card h3,
.advantage-card p,
.icon-bubble {
    transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.advantage-card:hover {
    border-color: var(--teal-800);
    background-color: var(--teal-800);
}

.advantage-card:hover h3 {
    color: #ffffff;
}

.advantage-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.advantage-card:hover .icon-bubble {
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.15);
}

.icon-bubble {
    display: grid;
    width: 54px;
    height: 54px;
    margin: 0 auto 11px;
    place-items: center;
    border: 1px solid var(--teal-300);
    border-radius: 19px;
    color: var(--teal-700);
    background-color: var(--teal-50);
}

.icon-bubble .icon {
    width: 31px;
    height: 31px;
}

.advantage-card h3 {
    margin: 0 0 8px;
    font-size: 14px;
    line-height: 1.28;
}

.advantage-card p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.45;
}

.services {
    padding-top: 28px;
}

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

.service-card {
    display: grid;
    min-height: 172px;
    overflow: hidden;
    overflow: clip;
    grid-template-columns: 42% 1fr;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    transition: border-color 0.16s ease;
    contain: paint;
}

.service-card:hover {
    border-color: rgba(7, 143, 135, 0.34);
}

.service-card__visual {
    position: relative;
    display: block;
    min-height: 172px;
    overflow: hidden;
}

.service-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: auto;
}

.service-card__tag {
    position: absolute;
    z-index: 3;
    top: 13px;
    left: 13px;
    padding: 4px 7px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 5px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.service-card__body {
    display: flex;
    min-width: 0;
    align-items: flex-start;
    flex-direction: column;
    padding: 17px 17px 14px;
}

.service-card__body h3 {
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.3;
}

.service-card__body p {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.47;
}

.price-pill {
    margin-top: auto;
    padding: 5px 9px;
    border-radius: 7px;
    color: #fff;
    background: var(--teal-700);
    font-size: 11px;
    font-weight: 800;
}

.section-action {
    display: flex;
    margin-top: 16px;
    justify-content: center;
}

.why {
    padding-top: 34px;
}

.why__grid {
    display: grid;
    align-items: center;
    grid-template-columns: 0.82fr 1.36fr;
    gap: 54px;
}

.why__content h2 {
    max-width: 510px;
    margin-bottom: 26px;
}

.check-list {
    display: grid;
    margin: 0;
    padding: 0;
    gap: 13px;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--ink-soft);
    font-size: 13px;
}

.check-list .icon {
    width: 19px;
    height: 19px;
    flex: 0 0 auto;
    color: var(--teal-700);
    transform: translateY(1px);
}

.why__media {
    position: relative;
    min-width: 0;
    overflow: hidden;
    overflow: clip;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface-soft);
    contain: paint;
}

.why__media img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 1;
    object-fit: cover;
}

.why__proof {
    display: flex;
    min-height: 56px;
    align-items: center;
    gap: 16px;
    padding: 12px 24px;
    color: #fff;
    background: var(--teal-800);
}

.why__proof .icon {
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
}

.why__proof p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.clinic-profile__panel {
    display: grid;
    padding: clamp(26px, 4vw, 48px);
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
    gap: clamp(24px, 4vw, 56px);
    border: 1px solid rgba(7, 143, 135, 0.2);
    border-radius: 18px;
    background-color: #f6f6f6;
    background-image: linear-gradient(-15deg, #fff 0, #f6f6f6 50%, #e6e6e6 50%, #fff 100%);
}

.clinic-profile__copy h2,
.tour-promo__head h2 {
    margin: 7px 0 18px;
    font-size: clamp(1.75rem, 2.75vw, 2.55rem);
    font-weight: 850;
    letter-spacing: -0.04em;
    line-height: 1.12;
    text-transform: uppercase;
}

.clinic-profile__lead {
    margin-bottom: 16px;
    color: var(--ink);
    font-size: 16px;
    line-height: 1.65;
}

.clinic-profile__copy > p:last-child {
    max-width: 760px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.clinic-stay {
    position: relative;
    overflow: hidden;
    overflow: clip;
    padding: 28px;
    border-radius: 16px;
    color: #fff;
    background: var(--teal-800);
    contain: paint;
    isolation: isolate;
}

.clinic-stay::before,
.clinic-stay::after {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    content: "";
}

.clinic-stay::before {
    top: -92px;
    left: -78px;
    width: 250px;
    height: 250px;
}

.clinic-stay::after {
    right: -94px;
    bottom: -112px;
    width: 280px;
    height: 280px;
}

.clinic-stay__icon {
    display: grid;
    float: right;
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    margin: 0 0 18px 16px;
    place-items: center;
    overflow: hidden;
    overflow: clip;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 50%;
    background: #fff;
}

.clinic-stay__heading {
    display: block;
    margin-bottom: 14px;
}

.clinic-stay__heading > div {
    min-width: 0;
}

.clinic-stay__icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.clinic-stay .eyebrow {
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.75);
}

.clinic-stay h3 {
    margin: 0;
    font-size: 21px;
    line-height: 1.25;
}

.clinic-stay > p:not(.eyebrow) {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 13px;
    line-height: 1.6;
}

.clinic-stay ul {
    display: grid;
    margin: 0;
    padding: 0;
    gap: 10px;
    list-style: none;
}

.clinic-stay li {
    display: flex;
    position: relative;
    z-index: 1;
    align-items: flex-start;
    gap: 9px;
    font-size: 12px;
}

.clinic-stay li .icon {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
}

.clinic-programs {
    display: grid;
    margin-top: 16px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.clinic-program-card {
    min-width: 0;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    contain: paint;
}

.clinic-program-card__icon {
    display: grid;
    width: 38px;
    height: 38px;
    margin-bottom: 14px;
    place-items: center;
    border: 1px solid transparent;
    border-radius: 11px;
    color: var(--teal-700);
    background: var(--teal-50);
    transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.clinic-program-card__icon .icon {
    width: 20px;
    height: 20px;
}

.clinic-program-card > strong {
    display: block;
    margin-bottom: 4px;
    color: var(--teal-700);
    font-size: 28px;
    font-weight: 850;
    letter-spacing: -0.04em;
    line-height: 1;
    transition: color 0.2s ease;
}

.clinic-program-card h3 {
    margin: 0 0 8px;
    font-size: 14px;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.clinic-program-card p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.55;
    transition: color 0.2s ease;
}

.clinic-program-card:hover {
    border-color: var(--teal-800);
    background-color: var(--teal-800);
}

.clinic-program-card:hover .clinic-program-card__icon {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    background-color: rgba(255, 255, 255, 0.15);
}

.clinic-program-card:hover > strong,
.clinic-program-card:hover h3 {
    color: #fff;
}

.clinic-program-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.clinic-programs__note,
.tour-promo__note {
    margin: 13px 0 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.55;
}

.tour-promo {
    padding-top: 20px;
}

.tour-promo__head {
    display: grid;
    align-items: end;
    margin-bottom: 18px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    gap: 36px;
}

.tour-promo__head h2 {
    margin-bottom: 0;
}

.tour-promo__head > p {
    margin: 0 0 3px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.tour-promo__media,
.tour-promo__media picture,
.tour-promo__media img {
    display: block;
    width: 100%;
}

.tour-promo__media {
    overflow: hidden;
    overflow: clip;
    border: 1px solid rgba(7, 143, 135, 0.2);
    border-radius: 14px;
    background: var(--teal-50);
    contain: paint;
}

.tour-promo__media img {
    height: auto;
}

@media (max-width: 1080px) {
    .clinic-profile__panel,
    .tour-promo__head {
        grid-template-columns: 1fr;
    }

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

    .tour-promo__head {
        gap: 8px;
    }
}

@media (max-width: 700px) {
    .clinic-profile__panel {
        padding: 22px;
    }

    .clinic-programs {
        grid-template-columns: 1fr;
    }

    .clinic-program-card {
        display: grid;
        padding: 18px;
        grid-template-columns: 42px minmax(0, 1fr);
        column-gap: 12px;
    }

    .clinic-program-card__icon {
        margin: 0;
        grid-row: 1 / 4;
    }

    .clinic-program-card > strong,
    .clinic-program-card h3,
    .clinic-program-card p {
        grid-column: 2;
    }

    .clinic-program-card > strong {
        font-size: 24px;
    }

    .clinic-stay {
        padding: 24px;
    }
}

.doctors {
    padding-top: 28px;
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.doctor-card {
    display: grid;
    min-height: 144px;
    overflow: hidden;
    overflow: clip;
    grid-template-columns: 42% 58%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    transition: border-color 0.16s ease;
    contain: paint;
}

.doctor-card:hover {
    border-color: rgba(7, 143, 135, 0.36);
}

.doctor-card__photo {
    min-height: 144px;
    border-right: 1px solid var(--line);
    background-color: #dceced;
    background-position: center top;
    background-repeat: no-repeat;
}

.doctor-photo--one {
    background-image: url("../img/doctor-1-n.webp");
    background-image: image-set(
        url("../img/doctor-1-n.avif") type("image/avif"),
        url("../img/doctor-1-n.webp") type("image/webp")
    );
    background-size: cover;
    background-position: center top;
}

.doctor-photo--two {
    background-image: url("../img/doctor-2-n.webp");
    background-image: image-set(
        url("../img/doctor-2-n.avif") type("image/avif"),
        url("../img/doctor-2-n.webp") type("image/webp")
    );
    background-size: cover;
    background-position: center top;
}

.doctor-photo--three {
    background-image: url("../img/doctor-3-n.webp");
    background-image: image-set(
        url("../img/doctor-3-n.avif") type("image/avif"),
        url("../img/doctor-3-n.webp") type("image/webp")
    );
    background-size: cover;
    background-position: center top;
}

.doctor-photo--four {
    background-image: url("../img/doctor-4-n.webp");
    background-image: image-set(
        url("../img/doctor-4-n.avif") type("image/avif"),
        url("../img/doctor-4-n.webp") type("image/webp")
    );
    background-size: cover;
    background-position: center top;
}

.doctor-card__body {
    display: flex;
    min-width: 0;
    align-items: flex-start;
    flex-direction: column;
    padding: 17px 13px 13px;
}

.doctor-card h3 {
    margin: 0 0 6px;
    font-size: 14px;
}

.doctor-card p {
    margin: 0 0 7px;
    color: var(--muted);
    font-size: 9px;
    line-height: 1.45;
}

.doctor-card__body > span {
    color: var(--ink-soft);
    font-size: 10px;
}

.text-link {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    gap: 4px;
    margin-top: auto;
    padding: 5px 0;
    cursor: pointer;
    color: var(--teal-700);
    background: none;
    font-size: 10px;
    font-weight: 800;
}

.text-link .icon {
    width: 13px;
    height: 13px;
}

.process-offers {
    padding-top: 20px;
    padding-bottom: 24px;
}

.process-offers__panel {
    display: grid;
    overflow: hidden;
    overflow: clip;
    grid-template-columns: 1.04fr 0.96fr;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.process,
.offers {
    min-width: 0;
    padding: 21px 24px 19px;
}

.process {
    border-right: 1px solid var(--line);
}

.section-heading--compact {
    margin-bottom: 17px;
}

.section-heading--compact h2 {
    font-size: 1.4rem;
}

.process-offers__panel .eyebrow {
    font-size: 12px;
}

.steps {
    display: grid;
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(5, 1fr);
    list-style: none;
}

.step {
    position: relative;
    min-width: 0;
    padding: 0 6px;
    text-align: center;
}

.step:not(:last-child)::after {
    position: absolute;
    top: 27px;
    right: -13%;
    width: 26%;
    border-top: 2px dotted var(--teal-300);
    content: "";
}

.step__icon {
    display: grid;
    width: 50px;
    height: 50px;
    margin: 0 auto 7px;
    place-items: center;
    border: 1px solid var(--teal-300);
    border-radius: 50%;
    color: var(--teal-700);
    background: var(--teal-50);
}

.step__icon .icon {
    width: 23px;
    height: 23px;
}

.step__number {
    display: block;
    margin-bottom: 5px;
    color: var(--teal-700);
    font-size: 16px;
    font-weight: 850;
}

.step h3 {
    margin: 0 0 4px;
    font-size: 12px;
    line-height: 1.3;
}

.step p {
    margin: 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.5;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13px;
}

.offer-card {
    position: relative;
    min-height: 122px;
    overflow: hidden;
    padding: 13px 14px;
    border-radius: 13px;
    color: #fff;
    background: var(--teal-700);
    isolation: isolate;
}

.offer-card::before,
.offer-card::after {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    content: "";
}

.offer-card::before {
    top: -88px;
    right: -70px;
    width: 210px;
    height: 210px;
}

.offer-card::after {
    right: -20px;
    bottom: -105px;
    width: 180px;
    height: 180px;
}

.offer-card > span {
    display: block;
    margin-bottom: -4px;
    font-size: 11px;
}

.offer-card strong {
    display: block;
    font-size: 2.15rem;
    letter-spacing: -0.04em;
    line-height: 1;
}

.offer-card p {
    margin: 6px 0 0;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
}

.offer-card small {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 10px;
    line-height: 1.4;
}

.offers > .button {
    display: flex;
    width: max-content;
    margin: 13px auto 0;
}

.reviews {
    padding-top: 28px;
}

.reviews-carousel {
    position: relative;
}

.reviews-carousel__viewport {
    margin: -2px;
    padding: 2px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.reviews-carousel__viewport::-webkit-scrollbar {
    display: none;
}

.reviews-carousel__viewport:focus-visible {
    outline: 2px solid var(--teal-500);
    outline-offset: 3px;
}

.reviews-grid {
    display: flex;
    gap: 20px;
}

.review-card {
    display: flex;
    min-width: 0;
    min-height: 218px;
    flex: 0 0 calc((100% - 40px) / 3);
    flex-direction: column;
    padding: 16px 18px 15px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    transition: border-color 0.16s ease;
    contain: paint;
}

.review-card:hover {
    border-color: rgba(7, 143, 135, 0.32);
}

.review-card__top {
    display: flex;
    position: relative;
    align-items: center;
    overflow: hidden;
    overflow: clip;
    gap: 12px;
    margin: -16px -18px 0;
    padding: 13px 16px;
    border-bottom: 1px solid rgba(7, 143, 135, 0.24);
    color: #fff;
    background: linear-gradient(135deg, #0ba099, #5cc9c0);
    isolation: isolate;
}

.review-card__top::before,
.review-card__top::after {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    content: "";
}

.review-card__top::before {
    top: -98px;
    right: -65px;
    width: 210px;
    height: 210px;
}

.review-card__top::after {
    right: 68px;
    bottom: -112px;
    width: 180px;
    height: 180px;
}

.review-card__avatar {
    display: grid;
    width: 50px;
    height: 50px;
    flex: 0 0 auto;
    place-items: center;
    overflow: hidden;
    overflow: clip;
    border: 3px solid #fff;
    border-radius: 50%;
    color: var(--teal-800);
    background: linear-gradient(145deg, #d9f2ef, #9fdad5);
    font-size: 12px;
    font-weight: 850;
}

.review-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-card__top p {
    display: flex;
    margin: 0;
    flex-direction: column;
    font-size: 13px;
}

.review-card__top p strong {
    color: #fff;
    font-size: 14px;
    font-weight: 850;
}

.review-card__top p span {
    color: rgba(255, 255, 255, 0.84);
    font-size: 11px;
    font-weight: 650;
}

.review-card__quote {
    margin-left: auto;
    color: rgba(255, 255, 255, 0.3) !important;
    font-family: Georgia, serif;
    font-size: 3.8rem !important;
    line-height: 0.8;
}

.review-card blockquote {
    display: -webkit-box;
    margin: 13px 0 12px;
    overflow: hidden;
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
}

.review-card__source {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    color: var(--teal-700);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.review-card__source .icon {
    width: 16px;
    height: 16px;
}

.reviews-carousel__controls {
    display: none;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
}

.reviews-carousel.is-ready .reviews-carousel__controls {
    display: flex;
}

.reviews-carousel__arrow,
.reviews-carousel__dot {
    border: 1px solid var(--line);
    color: var(--teal-700);
    background: #fff;
}

.reviews-carousel__arrow {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    padding: 0;
    place-items: center;
    border-radius: 50%;
}

.reviews-carousel__arrow .icon {
    width: 18px;
    height: 18px;
}

.reviews-carousel__arrow--prev .icon {
    transform: rotate(180deg);
}

.reviews-carousel__arrow:hover {
    border-color: var(--teal-700);
    color: #fff;
    background: var(--teal-700);
}

.reviews-carousel__arrow:disabled {
    cursor: default;
    opacity: 0.38;
}

.reviews-carousel__arrow:disabled:hover {
    border-color: var(--line);
    color: var(--teal-700);
    background: #fff;
}

.reviews-carousel__dots {
    display: flex;
    min-width: 82px;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.reviews-carousel__dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border-radius: 999px;
    transition: border-color 0.16s ease, background-color 0.16s ease;
}

.reviews-carousel__dot[aria-current="true"] {
    width: 25px;
    border-color: var(--teal-700);
    background: var(--teal-700);
}

.reviews-carousel__status {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

@media (max-width: 1080px) {
    .review-card {
        flex-basis: calc((100% - 18px) / 2);
    }

    .reviews-grid {
        gap: 18px;
    }
}

@media (max-width: 760px) {
    .review-card {
        min-height: 218px;
        flex-basis: 100%;
    }

    .reviews-grid {
        gap: 14px;
    }

}

.client-gallery-section,
.client-review-video-section {
    background: var(--surface-soft);
}

.section.client-gallery-section {
    padding: 30px 0 0;
}

.section.client-review-video-section {
    padding: 0 0 30px;
}

.patient-stories-panel {
    padding: clamp(24px, 3vw, 40px);
    border: 1px solid var(--line);
    background: #fff;
}

.patient-stories-panel--gallery {
    padding-bottom: 24px;
    border-bottom: 0;
    border-radius: 24px 24px 0 0;
}

.patient-stories-panel--videos {
    position: relative;
    padding-top: 30px;
    border-top: 0;
    border-radius: 0 0 24px 24px;
}

.patient-stories-panel--videos::before {
    position: absolute;
    top: 0;
    right: clamp(24px, 3vw, 40px);
    left: clamp(24px, 3vw, 40px);
    border-top: 1px solid var(--line);
    content: "";
}

.patient-stories-heading {
    max-width: 780px;
    margin-bottom: 24px;
}

.patient-stories-heading > p:last-child:not(.eyebrow) {
    max-width: 680px;
    margin: 9px auto 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
}

.client-gallery-carousel {
    position: relative;
    padding-inline: 54px;
}

.client-gallery__viewport {
    margin: -2px;
    padding: 2px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.client-gallery__viewport::-webkit-scrollbar {
    display: none;
}

.client-gallery__viewport:focus-visible {
    outline: 2px solid var(--teal-500);
    outline-offset: 3px;
}

.client-gallery {
    display: flex;
    gap: 14px;
}

.client-gallery__item {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    overflow: clip;
    flex: 0 0 calc((100% - 42px) / 4);
    aspect-ratio: 1;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface-soft);
    scroll-snap-align: start;
    scroll-snap-stop: always;
    contain: layout paint style;
}

.client-gallery__item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.client-gallery-carousel__controls {
    display: none;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
}

.client-gallery-carousel.is-ready .client-gallery-carousel__controls {
    display: flex;
}

.client-gallery-carousel__arrow,
.client-gallery-carousel__dot {
    border: 1px solid var(--line);
    color: var(--teal-700);
    background: #fff;
}

.client-gallery-carousel__arrow {
    display: grid;
    position: absolute;
    z-index: 1;
    top: calc(50% - 28px);
    width: 42px;
    height: 42px;
    padding: 0;
    place-items: center;
    border-radius: 50%;
    cursor: pointer;
    transform: translateY(-50%);
    transition: border-color 0.16s ease, color 0.16s ease, background-color 0.16s ease;
}

.client-gallery-carousel__arrow--previous {
    left: 0;
}

.client-gallery-carousel__arrow--next {
    right: 0;
}

.client-gallery-carousel__arrow--previous .icon {
    transform: rotate(180deg);
}

.client-gallery-carousel__arrow .icon {
    width: 17px;
    height: 17px;
}

.client-gallery-carousel__arrow:hover,
.client-gallery-carousel__arrow:focus-visible {
    border-color: var(--teal-700);
    color: #fff;
    background: var(--teal-700);
}

.client-gallery-carousel__arrow:disabled {
    cursor: default;
    opacity: 0.36;
}

.client-gallery-carousel__dots {
    display: flex;
    min-width: 82px;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.client-gallery-carousel__dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border-radius: 50%;
    transition: border-color 0.16s ease, background-color 0.16s ease;
}

.client-gallery-carousel__dot[aria-current="true"] {
    border-color: var(--teal-700);
    background: var(--teal-700);
}

.client-gallery-carousel__status {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.patient-review-grid {
    display: grid;
    align-items: start;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.patient-review-card {
    min-width: 0;
    overflow: hidden;
    overflow: clip;
    border: 0;
    border-radius: 16px;
    background: #fff;
    contain: layout paint style;
}

.patient-review-card__media {
    position: relative;
    overflow: hidden;
    overflow: clip;
    aspect-ratio: 3 / 4;
    background: #eaf0f0;
}

.patient-review-card__media video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 28%;
    background: #11191b;
}

.patient-review-card.is-playing .patient-review-card__media video {
    object-fit: contain;
}

.patient-review-card__fallback,
.patient-review-card__play {
    position: absolute;
    z-index: 1;
    inset: 0;
    width: 54px;
    height: 54px;
    margin: auto;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: rgba(7, 143, 135, 0.7);
    cursor: pointer;
    transition: background-color 0.16s ease;
}

.patient-review-card__fallback {
    display: grid;
}

.patient-review-card__play {
    display: none;
}

.patient-review-card.is-enhanced .patient-review-card__fallback,
.patient-review-card.is-playing .patient-review-card__play {
    display: none;
}

.patient-review-card.is-enhanced:not(.is-playing) .patient-review-card__play {
    display: grid;
}

.patient-review-card__fallback:hover,
.patient-review-card__fallback:focus-visible,
.patient-review-card__play:hover,
.patient-review-card__play:focus-visible {
    background: rgba(4, 98, 94, 0.88);
    outline-offset: -4px;
}

.patient-review-card__fallback .icon,
.patient-review-card__play .icon {
    width: 22px;
    height: 22px;
    margin-left: 2px;
}

.patient-review-card__body {
    display: flex;
    position: relative;
    min-height: 66px;
    justify-content: center;
    overflow: hidden;
    overflow: clip;
    padding: 11px 14px 12px;
    flex-direction: column;
    color: #fff;
    background: var(--teal-700);
    isolation: isolate;
}

.patient-review-card__body::before,
.patient-review-card__body::after {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.patient-review-card__body::before {
    top: -92px;
    right: -42px;
    width: 150px;
    height: 150px;
}

.patient-review-card__body::after {
    right: 76px;
    bottom: -92px;
    width: 128px;
    height: 128px;
}

.patient-review-card__body strong {
    color: #fff;
    font-size: 13px;
    font-weight: 850;
    line-height: 1.25;
}

.patient-review-card__body span {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 10px;
}

.patient-review-note {
    max-width: 780px;
    margin: 14px auto 0;
    color: var(--muted);
    font-size: 9px;
    line-height: 1.55;
    text-align: center;
}

.patient-video-section {
    padding-top: 24px;
}

.patient-media-grid {
    display: grid;
    align-items: start;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.patient-video-card {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    overflow: clip;
    aspect-ratio: 9 / 16;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #041a18;
    contain: layout paint style;
}

.patient-video-card video {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: inherit;
    object-fit: cover;
    background: #041a18;
}

.home-page .section.clinic-video-section {
    position: relative;
    z-index: 0;
    overflow: hidden;
    overflow: clip;
    padding-bottom: 30px;
    border-top: 1px solid rgba(7, 143, 135, 0.12);
    border-bottom: 1px solid rgba(7, 143, 135, 0.12);
    color: var(--ink);
    background-color: #f7fbfa;
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 52%, rgba(247, 251, 250, 0.94) 100%),
        url("/assets/img/bild-heihe-1.webp");
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 52%, rgba(247, 251, 250, 0.94) 100%),
        image-set(
            url("/assets/img/bild-heihe-1.avif") type("image/avif"),
            url("/assets/img/bild-heihe-1.webp") type("image/webp")
        );
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    isolation: isolate;
}

.clinic-video-section > .container {
    position: relative;
    z-index: 1;
}

.clinic-video-section .section-heading h2 {
    color: var(--ink);
}

.clinic-video-section .section-heading .eyebrow {
    color: var(--teal-700);
}

.clinic-video-section .patient-video-card {
    border-color: rgba(7, 143, 135, 0.3);
}

@media (max-width: 1080px) {
    .client-gallery__item {
        flex-basis: calc((100% - 28px) / 3);
    }

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

@media (max-width: 760px) {
    .section.client-gallery-section {
        padding-top: 20px;
        padding-bottom: 0;
    }

    .section.client-review-video-section {
        padding-top: 0;
        padding-bottom: 20px;
    }

    .patient-stories-panel {
        padding: 22px 16px;
    }

    .patient-stories-panel--gallery {
        padding-bottom: 18px;
        border-radius: 18px 18px 0 0;
    }

    .patient-stories-panel--videos {
        padding-top: 24px;
        border-radius: 0 0 18px 18px;
    }

    .patient-stories-panel--videos::before {
        right: 16px;
        left: 16px;
    }

    .patient-stories-heading {
        margin-bottom: 18px;
    }

    .client-gallery-carousel {
        padding-inline: 0;
    }

    .client-gallery {
        gap: 10px;
    }

    .client-gallery__item {
        flex-basis: calc((100% - 10px) / 2);
        border-radius: 11px;
    }

    .client-gallery-carousel__controls {
        margin-top: 10px;
    }

    .client-gallery-carousel__arrow {
        position: static;
        width: 38px;
        height: 38px;
        transform: none;
    }

    .patient-review-grid,
    .patient-media-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .patient-review-card,
    .patient-video-card {
        border-radius: 11px;
    }

    .patient-review-card__body {
        min-height: 62px;
        padding-inline: 10px;
    }

    .patient-review-card__body strong {
        font-size: 11px;
    }

    .patient-review-card__body span {
        font-size: 9px;
    }
}

.faq {
    padding-top: 24px;
    padding-bottom: 30px;
}

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

.faq-item {
    border: 1px solid var(--line);
    border-radius: 11px;
    background: #fff;
    transition: border-color 0.16s ease;
}

.faq-item[open] {
    border-color: rgba(7, 143, 135, 0.38);
}

.faq-item summary {
    display: flex;
    min-height: 66px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 15px 18px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.4;
    list-style: none;
}

.faq-item[open] summary {
    border-radius: 10px 10px 0 0;
    color: var(--teal-800);
    background: var(--teal-50);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item__plus {
    position: relative;
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
}

.faq-item__plus::before,
.faq-item__plus::after {
    position: absolute;
    top: 6px;
    left: 1px;
    width: 12px;
    height: 2px;
    border-radius: 2px;
    background: var(--teal-600);
    content: "";
    transition: transform 0.2s ease;
}

.faq-item__plus::after {
    transform: rotate(90deg);
}

.faq-item[open] .faq-item__plus::after {
    transform: rotate(0deg);
}

.faq-item > p {
    margin: -2px 18px 17px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
}

.section-action--tight {
    margin-top: 14px;
}

.contact-section {
    padding: 0 0 24px;
}

.contact-panel {
    display: grid;
    min-height: 166px;
    overflow: hidden;
    overflow: clip;
    grid-template-columns: 0.42fr 0.58fr;
    border: 1px solid rgba(7, 143, 135, 0.45);
    border-radius: 14px;
    background: #fff;
}

.contact-panel__lead {
    position: relative;
    padding: 22px 60px 20px 28px;
    color: #fff;
    background: var(--teal-700);
    isolation: isolate;
}

.contact-panel__lead::before {
    position: absolute;
    z-index: -1;
    top: -105px;
    left: -86px;
    width: 270px;
    height: 270px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    content: "";
}

.contact-panel__lead::after {
    position: absolute;
    z-index: -1;
    top: -48%;
    right: -48px;
    width: 106px;
    height: 196%;
    border-radius: 50%;
    background: #fff;
    content: "";
}

.contact-panel__lead .eyebrow {
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.77);
}

.contact-panel__lead h2 {
    margin-bottom: 8px;
}

.contact-panel__lead > p:not(.eyebrow) {
    max-width: 490px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    line-height: 1.45;
}

.contact-panel__lead .button {
    min-height: 38px;
    padding: 8px 16px;
    font-size: 10px;
}

.contact-panel__methods {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 18px;
    padding: 19px 24px 19px 64px;
}

.contact-method {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}

.contact-method__icon {
    display: grid;
    width: 54px;
    height: 54px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--teal-700);
    background: #fff;
}

.contact-method:hover .contact-method__icon {
    border-color: var(--teal-300);
}

.contact-method__icon .icon {
    width: 25px;
    height: 25px;
}

.contact-method__icon--telegram {
    color: #249bd7;
}

.contact-method__icon--max {
    color: #6e1aff;
}

.contact-method__icon--whatsapp {
    color: #128c4a;
}

.contact-method > span:last-child {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.contact-method small {
    color: var(--teal-700);
    font-size: 8px;
    font-weight: 750;
}

.contact-method strong {
    overflow: hidden;
    margin: 2px 0;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.contact-method em {
    color: var(--muted);
    font-size: 7px;
    font-style: normal;
}

.footer-promo {
    padding: 24px 0;
    background: #fff;
    content-visibility: auto;
    contain-intrinsic-size: auto 480px;
}

.footer-promo__picture,
.footer-promo__picture img {
    display: block;
    width: 100%;
}

.footer-promo__picture {
    overflow: hidden;
    overflow: clip;
    border: 1px solid var(--line);
    border-radius: 14px;
    contain: layout paint;
}

.footer-promo__picture img {
    height: auto;
}

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: #041a18;
    color: rgba(255, 255, 255, 0.7);
    padding: 70px 0 24px;
}

.site-footer__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding-bottom: 35px;
    margin-bottom: 45px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.site-footer__logo-img {
    height: 46px;
    width: auto;
    flex-shrink: 0;
}

.site-footer__brand-info {
    display: flex;
    flex-direction: column;
}

.site-footer__brand-info strong {
    font-size: 17px;
    font-weight: 850;
    color: #fff;
    line-height: 1.25;
}

.site-footer__brand-info span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}

.site-footer__cta {
    display: flex;
    align-items: center;
    gap: 24px;
}

.site-footer__cta p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 250px;
    line-height: 1.4;
    text-align: right;
    margin: 0;
}

.site-footer__cta .button {
    background: var(--teal-700);
    color: #fff;
    border: 0;
    padding: 12px 24px;
    font-size: 13px;
    border-radius: 12px;
    font-weight: 700;
}

.site-footer__cta .button:hover {
    background: var(--teal-600);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.3fr;
    gap: 40px;
    margin-bottom: 50px;
}

@media (max-width: 990px) {
    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.site-footer__col h3 {
    margin: 0 0 20px;
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
}

.site-footer__links {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer__links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6) !important;
    transition: color 0.16s ease;
}

.site-footer__links a .icon {
    width: 12px;
    height: 12px;
    color: var(--teal-600);
    transition: transform 0.16s ease;
    flex-shrink: 0;
}

.site-footer__links a:hover {
    color: #2dd4bf !important;
}

.site-footer__links a:hover .icon {
    transform: translateX(2px);
    color: #2dd4bf;
}

.site-footer__contacts-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.site-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0;
}

.site-footer__contact-item .icon {
    width: 16px;
    height: 16px;
    color: #2dd4bf;
    margin-top: 3px;
    flex-shrink: 0;
}

.site-footer__contact-item span {
    display: flex;
    flex-direction: column;
}

.site-footer__contact-item strong {
    font-size: 14px;
    color: #fff;
}

.site-footer__contact-item a {
    color: inherit;
    text-decoration: none;
}

.site-footer__contact-item a:hover strong {
    color: #2dd4bf;
}

.site-footer__contact-item small {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 2px;
}

.footer-trust {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.footer-yandex-rating {
    display: block;
    width: 150px;
    height: 50px;
    border: 0;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    color: #fff !important;
    transition: opacity 0.16s ease;
}

.social-btn:hover {
    opacity: .86;
}

.social-btn--telegram {
    background: #24A1DE;
}

.social-btn--max {
    background: linear-gradient(135deg, #471aff, #9500ff 54%, #00bfff);
}

.social-btn--whatsapp {
    background: #128c4a;
}

.quick-bar__link--max {
    color: #6e1aff;
}

.social-btn .icon {
    width: 18px;
    height: 18px;
}

.site-footer__bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 28px;
    row-gap: 22px;
    align-items: center;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__bottom-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.site-footer__copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.site-footer__disclaimer {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
}

.site-footer__bottom-center {
    display: flex;
    grid-column: 1 / -1;
    grid-row: 2;
    align-items: center;
    flex-direction: column;
    gap: 7px;
    text-align: center;
}

.site-footer__cookie-settings {
    color: rgba(255, 255, 255, 0.56);
    font-size: 10px;
    font-weight: 750;
    transition: color 0.16s ease;
}

.site-footer__cookie-settings:hover,
.site-footer__cookie-settings:focus-visible {
    color: #fff;
}

.site-footer__credits {
    margin: 0;
    color: rgba(255, 255, 255, 0.42);
    font-size: 10px;
    white-space: nowrap;
}

.site-footer__credits a {
    color: inherit;
    font-weight: 800;
}

.site-footer__credits a:hover,
.site-footer__credits a:focus-visible {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.site-footer__metrika-link {
    display: inline-flex;
    margin-top: 8px;
}

.site-footer__metrika-image {
    display: block;
    width: 88px;
    height: 31px;
    border: 0;
}

.metrika-noscript {
    position: absolute;
    left: -9999px;
}

.site-footer__scroll-up {
    display: inline-flex;
    align-items: center;
    justify-self: end;
    gap: 6px;
    color: #2dd4bf;
    font-weight: 800;
    font-size: 12px;
    transition: color 0.16s ease;
}

.site-footer__scroll-up:hover {
    color: #fff;
}

.site-footer__scroll-up .icon {
    transform: rotate(-90deg);
}

.cookie-banner {
    position: fixed;
    z-index: 90;
    right: 20px;
    bottom: 20px;
    left: 20px;
    pointer-events: none;
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner__inner {
    display: grid;
    width: min(1160px, 100%);
    margin: 0 auto;
    padding: 20px 22px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    color: #fff;
    background-color: #063f3b;
    pointer-events: auto;
}

.cookie-banner__copy .eyebrow {
    margin-bottom: 4px;
    color: #70ded5;
}

.cookie-banner__copy h2 {
    margin: 0 0 7px;
    color: #fff;
    font-size: 19px;
    letter-spacing: -0.025em;
}

.cookie-banner__copy > p:last-of-type {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    line-height: 1.55;
}

.cookie-banner__links {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 18px;
    margin-top: 10px;
}

.cookie-banner__links a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 10px;
    font-weight: 750;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.16s ease;
}

.cookie-banner__links a:hover,
.cookie-banner__links a:focus-visible {
    color: #fff;
}

.cookie-banner__actions {
    display: flex;
    gap: 10px;
}

.cookie-banner__actions .button {
    min-height: 44px;
    padding: 0 18px;
    white-space: nowrap;
}

.cookie-banner__actions .button[aria-pressed="true"] {
    border-color: #70ded5;
}

.cookie-banner__actions .button--ghost {
    border-color: rgba(255, 255, 255, 0.34);
    color: #fff;
    background-color: transparent;
}

.form-consent a {
    color: var(--teal-800);
    font-weight: 750;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.appointment-dialog {
    width: min(560px, calc(100% - 32px));
    max-height: min(860px, calc(100dvh - 32px));
    padding: 0;
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: 22px;
    color: var(--ink);
    background: #fff;
}

.appointment-dialog::backdrop {
    background: rgba(5, 37, 36, 0.62);
}

.appointment-form {
    position: relative;
    display: grid;
    padding: 34px;
    gap: 16px;
}

.dialog-close {
    position: absolute;
    z-index: 2;
    top: 18px;
    right: 18px;
    display: grid;
    width: 42px;
    height: 42px;
    cursor: pointer;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background-color: #fff;
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.dialog-close:hover {
    color: var(--teal-700);
    background-color: var(--teal-50);
    transform: rotate(5deg);
}

.appointment-form__intro {
    padding-right: 48px;
}

.appointment-form__icon {
    display: grid;
    width: 54px;
    height: 54px;
    margin-bottom: 16px;
    place-items: center;
    border: 1px solid rgba(7, 143, 135, 0.24);
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(135deg, var(--teal-700), var(--teal-500));
}

.appointment-form__icon .icon {
    width: 28px;
    height: 28px;
}

.appointment-form__intro h2 {
    margin-bottom: 8px;
    font-size: 1.8rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-transform: uppercase;
}

.appointment-form__intro > p:last-child {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

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

.form-field > span {
    font-size: 12px;
    font-weight: 750;
}

.form-field > span small {
    color: var(--muted);
    font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 11px;
    background-color: var(--surface-soft);
    outline: 0;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.form-field input,
.form-field select {
    height: 50px;
    padding: 0 14px;
}

.form-field textarea {
    min-height: 82px;
    padding: 12px 14px;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--teal-500);
    background-color: #fff;
    outline: 3px solid rgba(10, 160, 151, 0.24);
    outline-offset: 2px;
}

.form-field input:invalid:not(:placeholder-shown),
.form-field textarea:invalid:not(:placeholder-shown) {
    border-color: #d87c72;
}

.form-captcha {
    display: grid;
    padding: 12px 14px;
    gap: 10px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background-color: var(--surface-soft);
}

.form-captcha__prompt {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
}

.form-captcha__prompt strong {
    display: inline-grid;
    min-width: 27px;
    min-height: 27px;
    margin-left: 4px;
    place-items: center;
    border: 1px solid var(--teal-500);
    border-radius: 8px;
    color: #fff;
    background-color: var(--teal-700);
    font-size: 14px;
}

.form-captcha__control {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) 38px;
    gap: 12px;
}

.form-captcha input[type="range"] {
    width: 100%;
    min-height: 30px;
    margin: 0;
    cursor: pointer;
    accent-color: var(--teal-700);
}

.form-captcha input[type="range"]:focus-visible {
    outline: 3px solid rgba(10, 160, 151, 0.24);
    outline-offset: 2px;
}

.form-captcha output {
    display: grid;
    min-height: 34px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 9px;
    color: var(--teal-800);
    background-color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.45;
}

.form-consent input {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    accent-color: var(--teal-700);
}

.form-trap {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    white-space: nowrap !important;
}

.appointment-form__submit {
    width: 100%;
}

.appointment-form__submit[disabled] {
    cursor: wait;
    opacity: 0.72;
    transform: none;
}

.form-status {
    min-height: 0;
    margin: -3px 0 0;
    color: var(--muted);
    font-size: 12px;
    text-align: center;
}

.form-status[data-state="error"] {
    color: #a13f37;
}

.form-status[data-state="success"] {
    color: var(--teal-800);
    font-weight: 700;
}

@supports (content-visibility: auto) {
    .services,
    .why,
    .doctors,
    .process-offers,
    .reviews,
    .faq,
    .inner-benefits,
    .inner-comparison,
    .inner-details,
    .inner-travel,
    .inner-process,
    .inner-seo-text,
    .doctors-approach,
    .home-page .clinic-profile,
    .home-page .tour-promo,
    .home-page .client-gallery-section,
    .home-page .client-review-video-section,
    .home-page .patient-video-section {
        content-visibility: auto;
    }

    .services {
        contain-intrinsic-size: auto 560px;
    }

    .why,
    .doctors,
    .process-offers,
    .reviews,
    .inner-benefits,
    .inner-process,
    .doctors-approach {
        contain-intrinsic-size: auto 420px;
    }

    .faq {
        contain-intrinsic-size: auto 720px;
    }

    .inner-comparison {
        contain-intrinsic-size: auto 560px;
    }

    .inner-details {
        contain-intrinsic-size: auto 520px;
    }

    .inner-travel {
        contain-intrinsic-size: auto 480px;
    }

    .inner-seo-text {
        contain-intrinsic-size: auto 760px;
    }

    .home-page .clinic-profile {
        contain-intrinsic-size: auto 760px;
    }

    .home-page .tour-promo {
        contain-intrinsic-size: auto 520px;
    }

    .home-page .client-gallery-section {
        contain-intrinsic-size: auto 540px;
    }

    .home-page .client-review-video-section {
        contain-intrinsic-size: auto 620px;
    }

    .home-page .patient-video-section {
        contain-intrinsic-size: auto 680px;
    }
}

@media (max-width: 1360px) {
    .header__inner {
        gap: 14px;
    }

    .brand {
        min-width: 242px;
    }

    .brand__logo {
        width: 50px;
        height: 50px;
    }

    .brand__text strong {
        font-size: 9px;
    }

    .main-nav {
        gap: 13px;
    }

    .main-nav > a,
    .nav-dropdown__toggle {
        font-size: 11px;
    }

    .header-phone span {
        display: none;
    }
}

@media (max-width: 1260px) {
    .advantages-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .service-card {
        grid-template-columns: 38% 1fr;
    }

    .doctor-card {
        grid-template-columns: 38% 62%;
    }

    .doctor-card__body {
        padding-inline: 10px;
    }

    .process,
    .offers {
        padding-inline: 22px;
    }

    .contact-panel__methods {
        gap: 10px;
        padding-right: 20px;
        padding-left: 64px;
    }

    .contact-method__icon {
        width: 46px;
        height: 46px;
    }
}

@media (max-width: 1080px) {
    html {
        scroll-padding-top: 82px;
    }

    .site-header {
        min-height: 78px;
        transition: background-color 0.16s ease, border-color 0.16s ease;
    }

    .header__quick-bar {
        display: block;
        padding: 0;
        border: 0;
        background: transparent;
        margin-left: 16px;
        margin-right: auto;
    }
    
    .quick-bar__phone {
        color: var(--teal-700);
        font-size: 12px;
        font-weight: 700;
        text-decoration: none;
    }
    
    .quick-bar__socials {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .quick-bar__link {
        display: inline-flex;
        align-items: center;
        gap: 3px;
        color: var(--teal-600);
        font-size: 10px;
        font-weight: 700;
        text-decoration: none;
    }
    
    .quick-bar__link span {
        text-decoration: none;
    }
    
    .quick-bar__link .icon {
        width: 11px;
        height: 11px;
        fill: currentColor;
    }
    
    .quick-bar__divider {
        color: rgba(6, 122, 117, 0.2);
        font-size: 9px;
    }

    .brand, 
    .header__actions, 
    .header__quick-bar,
    .lang-select {
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear;
    }

    .site-header.header--hidden .brand,
    .site-header.header--hidden .header__actions,
    .site-header.header--hidden .header__quick-bar,
    .site-header.header--hidden .lang-select {
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
    }

    .site-header.header--hidden {
        background: transparent;
        border-color: transparent;
        pointer-events: none;
    }

    .site-header.header--hidden .brand {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        pointer-events: none;
    }

    .site-header.header--hidden .header__actions {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        pointer-events: none;
    }

    .site-header.header--hidden .header__quick-bar {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        pointer-events: none;
    }

    .site-header.header--hidden .lang-select {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        pointer-events: none;
    }

    .header__inner {
        gap: 8px;
    }

    .brand {
        min-width: 0;
        margin-right: 0;
    }

    .brand__text {
        display: none;
    }

    @media (min-width: 480px) {
        .brand__text {
            display: block;
        }
    }

    .lang-select {
        display: inline-block;
        position: relative;
    }
    
    .lang-toggle-btn {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        height: 38px;
        padding: 0 10px;
        border: 1px solid var(--line);
        border-radius: 11px;
        color: var(--teal-700);
        background: #fff;
        font-size: 10px;
        font-weight: 700;
        cursor: pointer;
        transition: border-color 0.2s ease, color 0.2s ease;
    }
    
    .lang-toggle-btn:hover,
    .lang-select.is-open .lang-toggle-btn {
        border-color: var(--teal-300);
        color: var(--teal-600);
    }
    
    .lang-toggle-btn .icon {
        width: 13px;
        height: 13px;
        fill: currentColor;
    }
    
    .lang-dropdown {
        position: absolute;
        top: calc(100% + 6px);
        right: 0;
        z-index: 50;
        display: flex;
        flex-direction: column;
        width: 54px;
        overflow: hidden;
        border: 1px solid var(--line);
        border-radius: 9px;
        background: #fff;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-6px);
        transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
    }
    
    .lang-select.is-open .lang-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        transition-delay: 0s;
    }
    
    .lang-dropdown__item {
        display: block;
        padding: 8px 12px;
        color: var(--ink-soft);
        font-size: 10px;
        font-weight: 700;
        text-align: center;
        text-decoration: none;
        transition: background-color 0.2s ease, color 0.2s ease;
    }
    
    .lang-dropdown__item:hover {
        background: var(--teal-50);
        color: var(--teal-700);
    }

    .lang-dropdown__item.is-disabled {
        color: var(--muted);
        background: #fff;
        cursor: not-allowed;
        opacity: 0.58;
    }
    
    .lang-dropdown__item:not(:last-child) {
        border-bottom: 1px solid var(--line);
    }

    .nav-toggle {
        display: flex;
        flex: 0 0 38px;
        order: 3;
        width: 38px;
        height: 38px;
        border: 0;
        background: transparent;
        pointer-events: auto;
    }

    .nav-toggle span {
        width: 17px;
    }
    
    .nav-toggle span + span {
        margin-top: 4px;
    }
    
    .nav-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    
    .nav-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .main-nav {
        position: fixed;
        top: 79px;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-content: start;
        gap: 10px;
        overflow-y: auto;
        padding: 18px max(20px, calc((100vw - 760px) / 2)) calc(24px + env(safe-area-inset-bottom));
        border-top: 1px solid transparent;
        background: var(--surface-soft);
        opacity: 0;
        overscroll-behavior: contain;
        pointer-events: none;
        transform: translateY(-10px);
        visibility: hidden;
        -webkit-overflow-scrolling: touch;
        transition: opacity 0.16s ease, transform 0.16s ease, visibility 0s linear 0.16s;
    }

    .main-nav.is-open {
        border-color: var(--line);
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        visibility: visible;
        transition-delay: 0s;
    }

    .main-nav > a,
    .nav-dropdown__toggle {
        font-size: 13px;
    }

    .main-nav__mobile-head {
        display: flex;
        grid-column: 1 / -1;
        align-items: end;
        justify-content: space-between;
        gap: 16px;
        padding: 0 2px 3px;
        order: 0;
    }

    .main-nav__mobile-head > span {
        color: var(--ink);
        font-size: 18px;
        font-weight: 850;
        letter-spacing: -0.025em;
    }

    .main-nav__mobile-head small {
        max-width: 230px;
        color: var(--muted);
        font-size: 10px;
        line-height: 1.35;
        text-align: right;
    }

    .main-nav > a {
        display: grid;
        min-height: 60px;
        align-items: center;
        padding: 9px 10px;
        grid-template-columns: 34px minmax(0, 1fr) 14px;
        gap: 8px;
        border: 1px solid var(--line);
        border-radius: 13px;
        background: #fff;
        order: 1;
    }

    .main-nav > a[aria-current="page"] {
        border-color: var(--teal-300);
        color: var(--teal-800);
        background: var(--teal-50);
    }

    .main-nav__mobile-home {
        display: grid;
    }

    .main-nav__mobile-icon {
        display: grid;
        width: 34px;
        height: 34px;
        place-items: center;
        border-radius: 10px;
        color: var(--teal-800);
        background: var(--teal-50);
    }

    .main-nav__mobile-icon .icon {
        width: 17px;
        height: 17px;
    }

    .main-nav__mobile-arrow {
        display: block;
        width: 13px;
        height: 13px;
        color: var(--teal-700);
    }

    .main-nav > a::after,
    .nav-dropdown__toggle::after {
        display: none;
    }

    .nav-dropdown__toggle {
        width: 100%;
        min-height: 62px;
        justify-content: space-between;
        padding: 9px 12px;
        text-align: left;
    }

    .nav-dropdown {
        grid-column: 1 / -1;
        border: 1px solid var(--line);
        border-radius: 14px;
        background: #fff;
        order: 2;
    }

    .nav-dropdown__label {
        display: grid;
        align-items: center;
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 10px;
    }

    .nav-dropdown__label > span:last-child {
        display: flex;
        min-width: 0;
        flex-direction: column;
    }

    .nav-dropdown__label strong {
        color: var(--ink);
        font-size: 14px;
        font-weight: 800;
    }

    .nav-dropdown__label small {
        display: block;
        margin-top: 1px;
        color: var(--muted);
        font-size: 10px;
        font-weight: 600;
    }

    .nav-dropdown__menu {
        position: static;
        display: none;
        width: auto;
        padding: 8px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 4px;
        border: 0;
        border-top: 1px solid var(--line);
        border-radius: 0;
        background: #fff;
        opacity: 1;
        transform: none;
        visibility: visible;
        transition: none;
    }

    .nav-dropdown.is-open .nav-dropdown__menu {
        display: grid;
        transform: none;
    }

    .nav-dropdown__menu a {
        min-height: 50px;
        padding: 6px;
        grid-template-columns: 30px minmax(0, 1fr);
        gap: 7px;
        border: 1px solid transparent;
        border-radius: 10px;
        font-size: 11px;
        line-height: 1.25;
    }

    .nav-dropdown__menu a[aria-current="page"] {
        border-color: var(--teal-300);
        color: var(--teal-800);
        background: var(--teal-50);
    }

    .nav-dropdown__menu a > span {
        width: 30px;
        height: 30px;
        border-radius: 9px;
    }

    .nav-dropdown__menu a > span .icon {
        width: 15px;
        height: 15px;
    }

    .nav-dropdown__menu a > .icon {
        display: none;
    }

    .nav-dropdown__menu strong {
        min-width: 0;
        overflow-wrap: anywhere;
        font-size: 11px;
        hyphens: auto;
    }

    .main-nav__support {
        display: grid;
        grid-column: 1 / -1;
        align-items: center;
        padding: 13px;
        grid-template-columns: minmax(0, 1fr) auto auto;
        gap: 12px;
        border: 1px solid var(--teal-800);
        border-radius: 14px;
        color: #fff;
        background: var(--teal-800);
        order: 3;
    }

    .main-nav__support-copy {
        min-width: 0;
    }

    .main-nav__support-copy small {
        display: block;
        margin-bottom: 3px;
        color: rgba(255, 255, 255, 0.78);
        font-size: 10px;
    }

    .main-nav__support-copy > a {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        font-size: 14px;
        white-space: nowrap;
    }

    .main-nav__support-copy .icon {
        width: 16px;
        height: 16px;
    }

    .main-nav__appointment {
        min-height: 40px;
        padding: 8px 13px;
        border-color: #fff;
        color: var(--teal-800);
        background: #fff;
        font-size: 11px;
    }

    .main-nav__appointment .icon {
        width: 15px;
        height: 15px;
    }

    .main-nav__socials {
        display: flex;
        gap: 6px;
    }

    .main-nav__socials a {
        display: grid;
        width: 34px;
        height: 34px;
        place-items: center;
        border: 1px solid rgba(255, 255, 255, 0.42);
        border-radius: 10px;
    }

    .main-nav__socials .icon {
        width: 16px;
        height: 16px;
    }

    .main-nav__legal {
        display: flex;
        grid-column: 1 / -1;
        justify-content: center;
        gap: 16px;
        padding: 2px 4px 0;
        color: var(--muted);
        font-size: 9px;
        order: 4;
    }

    .header__actions {
        order: 2;
    }

    .hero {
        min-height: auto;
        background-position: right -350px center;
        background-size: cover;
    }

    .hero::after {
        background: linear-gradient(90deg, #ffffff 0%, #ffffff 30%, rgba(255, 255, 255, 0) 75%);
    }

    .hero__inner {
        padding-bottom: 218px;
    }

    .hero__content {
        width: 59%;
    }


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

    .hero-trust__item {
        padding: 13px;
    }

    .hero-trust__item:first-child {
        padding-left: 13px;
    }

    .hero-trust__item:nth-child(2) {
        border-right: 0;
    }

    .hero-trust__item:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }

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

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

    .doctor-card {
        grid-template-columns: 34% 66%;
    }

    .doctor-card__body {
        padding-inline: 17px;
    }

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

    .process {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .steps {
        max-width: 680px;
        margin-inline: auto;
    }

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

    .contact-panel {
        grid-template-columns: 0.38fr 0.62fr;
    }

    .contact-panel__methods {
        grid-template-columns: 1fr;
        gap: 4px;
        padding-block: 16px;
    }

    .contact-method {
        padding: 2px 0;
    }
}

@media (max-width: 760px) {
    .home-page .client-gallery-section {
        contain-intrinsic-size: auto 430px;
    }

    .home-page .client-review-video-section {
        contain-intrinsic-size: auto 760px;
    }

    .main-nav__support {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .main-nav__socials {
        grid-column: 1 / -1;
    }

    .main-nav__legal {
        flex-wrap: wrap;
        row-gap: 4px;
    }

    .footer-promo {
        padding: 16px 0;
        contain-intrinsic-size: auto 540px;
    }

    .footer-promo__picture {
        border-radius: 11px;
    }

    .site-footer__header {
        align-items: stretch;
        flex-direction: column;
    }

    .site-footer__cta {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
    }

    .site-footer__cta p {
        max-width: none;
        text-align: left;
    }

    .site-footer__cta .button {
        width: 100%;
        justify-content: center;
    }

    .container {
        width: min(100% - 32px, var(--container));
    }

    .site-header {
        min-height: 70px;
    }

    .brand__logo {
        width: 46px;
        height: 46px;
    }

    .brand__text strong {
        font-size: 8px;
    }

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

    .header__actions {
        display: none !important;
    }

    .header-phone {
        display: none !important;
    }

    .header-cta {
        display: none !important;
    }

    .nav-toggle {
        width: 38px;
        height: 38px;
    }

    .main-nav {
        top: 70px;
    }

    .hero {
        min-height: auto;
        overflow: visible;
        background-position: 30% top;
        background-size: auto 500px;
    }

    .hero::after {
        background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.88) 35%, rgba(255, 255, 255, 0) 80%);
    }

    .hero__wash {
        display: none;
    }

    .hero__inner {
        display: flex;
        padding-top: 46px;
        padding-bottom: 25px;
        flex-direction: column;
    }

    .hero__content {
        width: min(520px, 90%);
    }

    .hero h1 {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .hero__lead {
        max-width: 470px;
        font-size: 14px;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .button {
        width: min(100%, 330px);
    }

    .hero-trust {
        position: relative;
        right: auto;
        bottom: auto;
        left: auto;
        margin-top: 14px;
        border-color: var(--line);
    }

    .section {
        padding: 52px 0;
    }

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

    .advantage-card {
        min-height: 195px;
    }

    .services-grid,
    .why__grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        grid-template-columns: 40% 1fr;
    }

    .why__grid {
        gap: 30px;
    }

    .why__content h2 {
        margin-bottom: 21px;
    }

    .why__proof {
        padding-inline: 16px;
    }

    .why__proof p {
        font-size: 12px;
    }

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

    .doctor-card {
        min-height: 164px;
        grid-template-columns: 38% 62%;
    }

    .doctor-card__photo {
        min-height: 164px;
    }

    .doctor-card h3 {
        font-size: 16px;
    }

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

    .steps {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .step {
        display: grid;
        min-height: 82px;
        align-items: center;
        grid-template-columns: 58px 30px 1fr;
        grid-template-rows: auto auto;
        column-gap: 10px;
        text-align: left;
    }

    .step:not(:last-child)::after {
        top: 70px;
        right: auto;
        bottom: -12px;
        left: 28px;
        width: 0;
        height: 24px;
        border-top: 0;
        border-left: 2px dotted var(--teal-300);
    }

    .step__icon {
        margin: 0;
        grid-row: 1 / 3;
    }

    .step__number {
        margin: 0;
        grid-row: 1 / 3;
        font-size: 18px;
    }

    .step h3 {
        align-self: end;
        margin-bottom: 3px;
        font-size: 14px;
    }

    .step p {
        align-self: start;
        font-size: 11px;
    }

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

    .offer-card {
        min-height: 134px;
    }

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

    .faq-item summary {
        min-height: 62px;
        padding: 14px 16px;
        font-size: 13px;
    }

    .faq-item > p {
        margin-right: 16px;
        margin-left: 16px;
        font-size: 12px;
    }

    .contact-panel {
        grid-template-columns: 1fr;
    }

    .contact-panel__lead {
        padding: 28px 30px 38px;
    }

    .contact-panel__lead::after {
        top: auto;
        right: -10%;
        bottom: -51px;
        width: 120%;
        height: 78px;
    }

    .contact-panel__methods {
        padding: 28px 24px 22px;
    }

    .contact-method {
        padding: 7px 0;
    }

    .site-footer__bottom {
        padding-top: 20px;
        grid-template-columns: 1fr;
        row-gap: 18px;
    }

    .site-footer__bottom-center {
        grid-column: 1;
        grid-row: auto;
        align-items: center;
        order: 3;
        margin-top: 2px;
        text-align: center;
    }

    .site-footer__credits {
        white-space: normal;
    }

    .site-footer__scroll-up {
        justify-self: start;
        order: 2;
    }

    .cookie-banner {
        right: 12px;
        bottom: 12px;
        left: 12px;
    }

    .cookie-banner__inner {
        padding: 18px;
        grid-template-columns: 1fr;
        gap: 16px;
        border-radius: 18px;
    }

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

    .cookie-banner__actions .button {
        padding: 0 12px;
    }

    .site-footer__brand {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {

    .cookie-banner__actions {
        grid-template-columns: 1fr;
    }

    .hero__content {
        width: 100%;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-trust {
        grid-template-columns: 1fr;
        padding: 8px 16px;
    }

    .hero-trust__item,
    .hero-trust__item:first-child {
        padding: 12px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .hero-trust__item:last-child {
        border-bottom: 0;
    }

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

    .advantage-card {
        display: grid;
        min-height: auto;
        align-items: center;
        padding: 20px;
        grid-template-columns: 58px 1fr;
        column-gap: 14px;
        text-align: left;
    }

    .icon-bubble {
        width: 58px;
        height: 58px;
        margin: 0;
        grid-row: 1 / 3;
    }

    .advantage-card h3 {
        align-self: end;
        margin-bottom: 3px;
    }

    .advantage-card p {
        align-self: start;
    }

    .service-card {
        grid-template-columns: 110px 1fr;
        min-height: auto;
    }

    .service-card__visual {
        min-height: auto;
        height: 100%;
    }

    .service-card__body {
        min-height: auto;
        padding: 12px 14px;
    }

    .service-card__body h3 {
        margin-bottom: 4px;
        font-size: 13px;
    }

    .service-card__body p {
        margin-bottom: 8px;
        font-size: 10.5px;
        line-height: 1.4;
    }

    .price-pill {
        padding: 3px 7px;
        font-size: 10px;
    }

    .service-card__tag {
        top: 8px;
        left: 8px;
        padding: 3px 5px;
        font-size: 6px;
    }

    .doctor-card {
        grid-template-columns: 42% 58%;
    }

    .doctor-card__body {
        padding-inline: 12px;
    }

    .process,
    .offers {
        padding-inline: 16px;
    }

    .appointment-form {
        padding: 26px 20px;
    }

    .appointment-form__intro {
        padding-right: 42px;
    }
}

@media (hover: none) {
    .button,
    .advantage-card,
    .advantage-card h3,
    .advantage-card p,
    .icon-bubble,
    .clinic-program-card,
    .clinic-program-card__icon,
    .clinic-program-card > strong,
    .clinic-program-card h3,
    .clinic-program-card p,
    .service-card,
    .doctor-card,
    .review-card,
    .contact-method__icon {
        transition: none;
    }

    .client-gallery-carousel__arrow,
    .client-gallery-carousel__dot,
    .patient-review-card__fallback,
    .patient-review-card__play {
        transition: none;
    }

    .button:hover,
    .advantage-card:hover,
    .service-card:hover,
    .doctor-card:hover,
    .review-card:hover,
    .contact-method:hover .contact-method__icon {
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

}

@media (min-width: 1460px) {
    .hero {
        --hero-wide-gutter: clamp(0px, calc((100vw - 1460px) / 2), 600px);
        background-position: right var(--hero-wide-gutter) center;
    }

    .hero::after {
        background: linear-gradient(
            90deg,
            #ffffff 45%,
            rgba(255, 255, 255, 0) 57%,
            rgba(255, 255, 255, 0) calc(100% - var(--hero-wide-gutter) - 100px),
            #ffffff calc(100% - var(--hero-wide-gutter))
        );
    }
}
