:root {
    --bg-page: #fbfcfb;
    --bg-soft: #f3f7f6;
    --bg-tint: #eef3f1;
    --bg-mist: #f7faf8;
    --bg-cream: #f7f6f2;
    --bg-card: #ffffff;
    --line-soft: rgba(33, 76, 79, 0.08);
    --line-mid: rgba(33, 76, 79, 0.14);
    --ink-strong: #18353c;
    --ink-main: #35575f;
    --ink-soft: #73888d;
    --accent: #5f9099;
    --accent-deep: #406e77;
    --accent-pale: #dfe9ea;
    --footer-bg: #2e676d;
    --shadow-soft: 0 26px 70px rgba(20, 63, 68, 0.08);
    --shadow-card: 0 14px 32px rgba(20, 63, 68, 0.06);
    --shadow-hover: 0 18px 38px rgba(20, 63, 68, 0.1);
    --radius-xl: 40px;
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --container: 1200px;
    --scroll-progress: 0;
    --scroll-offset: 0px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--ink-main);
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    position: relative;
    background:
        radial-gradient(circle at 8% 4%, rgba(177, 211, 206, 0.16), transparent 18%),
        radial-gradient(circle at 92% 14%, rgba(219, 228, 222, 0.34), transparent 20%),
        radial-gradient(circle at 50% 100%, rgba(232, 239, 236, 0.55), transparent 24%),
        linear-gradient(180deg, #fdfefd 0%, #f7faf8 42%, #f4f7f5 100%);
    overflow-x: hidden;
}

html[dir="rtl"] body {
    font-family: "Manrope", sans-serif;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: auto;
    pointer-events: none;
    z-index: 0;
    filter: blur(8px);
}

body::before {
    top: 96px;
    right: -120px;
    width: 420px;
    height: 420px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(190, 216, 211, 0.24), rgba(190, 216, 211, 0) 68%);
    transform: translate3d(0, calc(var(--scroll-offset) * -0.045), 0);
    transition: transform 0.2s linear;
}

body::after {
    left: -140px;
    bottom: 12%;
    width: 360px;
    height: 360px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(216, 229, 225, 0.3), rgba(216, 229, 225, 0) 70%);
    transform: translate3d(0, calc(var(--scroll-offset) * 0.03), 0);
    transition: transform 0.2s linear;
}

html.menu-open,
body.menu-open {
    overflow: hidden;
}

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

button,
a {
    transition: color 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
}

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

.site-shell {
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
    z-index: 1;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    transform-origin: left center;
    transform: scaleX(var(--scroll-progress, 0));
    background: linear-gradient(90deg, rgba(95, 144, 153, 0.12), rgba(64, 110, 119, 0.92) 46%, rgba(196, 215, 211, 0.94));
    z-index: 120;
    pointer-events: none;
    box-shadow: 0 0 18px rgba(95, 144, 153, 0.18);
    transition: transform 0.14s ease-out;
}

.call-fab {
    position: fixed;
    right: 24px;
    bottom: 24px;
    right: calc(24px + env(safe-area-inset-right));
    bottom: calc(24px + env(safe-area-inset-bottom));
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    z-index: 130;
    color: #ffffff;
    background: linear-gradient(180deg, #b44b62, #8f2438);
    box-shadow:
        0 16px 30px rgba(74, 18, 31, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.44);
    transform: translateZ(0);
    transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
    isolation: isolate;
    animation: callFabBreathe 3.2s ease-in-out infinite;
}

.call-fab:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow:
        0 24px 40px rgba(74, 18, 31, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    filter: saturate(1.05);
}

.call-fab:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 4px rgba(180, 75, 98, 0.22),
        0 16px 30px rgba(74, 18, 31, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.44);
}

.call-fab__inner {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    animation: callIconFloat 1.8s ease-in-out infinite;
}

.call-fab__inner svg {
    width: 100%;
    height: 100%;
}

.call-fab__pulse {
    position: absolute;
    inset: -6px;
    border-radius: 999px;
    border: 2px solid rgba(180, 75, 98, 0.34);
    animation: callRing 2.1s cubic-bezier(0.22, 1, 0.36, 1) infinite;
    pointer-events: none;
}

.call-fab::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 999px;
    border: 1px solid rgba(180, 75, 98, 0.16);
    opacity: 0;
    animation: callRingOuter 2.1s cubic-bezier(0.22, 1, 0.36, 1) infinite 0.32s;
    pointer-events: none;
}

.call-fab::after {
    content: "";
    position: absolute;
    inset: -16px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(180, 75, 98, 0.22), rgba(180, 75, 98, 0) 72%);
    animation: callGlow 2.6s ease-out infinite;
    pointer-events: none;
    z-index: -1;
}

.call-fab:hover .call-fab__pulse,
.call-fab:focus-visible .call-fab__pulse {
    animation-duration: 1.5s;
}

.call-fab:hover::before,
.call-fab:focus-visible::before {
    animation-duration: 1.5s;
}

@keyframes callRing {
    0% {
        transform: scale(0.86);
        opacity: 0;
    }
    18% {
        opacity: 0.74;
    }
    70% {
        transform: scale(1.46);
        opacity: 0;
    }
    100% {
        transform: scale(1.46);
        opacity: 0;
    }
}

@keyframes callRingOuter {
    0% {
        transform: scale(0.94);
        opacity: 0;
    }
    20% {
        opacity: 0.42;
    }
    78% {
        transform: scale(1.68);
        opacity: 0;
    }
    100% {
        transform: scale(1.68);
        opacity: 0;
    }
}

@keyframes callGlow {
    0% {
        transform: scale(0.88);
        opacity: 0.44;
    }
    65% {
        transform: scale(1.26);
        opacity: 0;
    }
    100% {
        transform: scale(1.26);
        opacity: 0;
    }
}

@keyframes callIconFloat {
    0%,
    28%,
    100% {
        transform: translateY(0);
    }
    12% {
        transform: translateY(-2px) rotate(-8deg);
    }
    20% {
        transform: translateY(0.5px) rotate(8deg);
    }
    24% {
        transform: translateY(-1px) rotate(-6deg);
    }
    58% {
        transform: translateY(-1.5px);
    }
}

@keyframes callFabBreathe {
    0%,
    100% {
        transform: translateZ(0) scale(1);
    }
    50% {
        transform: translateZ(0) scale(1.03);
    }
}

html[dir="rtl"] .call-fab {
    left: 22px;
    right: auto;
}

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

.header {
    position: sticky;
    top: 0;
    z-index: 60;
    padding: 12px 0;
    overflow: visible;
}

.header__inner {
    display: flex;
    align-items: center;
    gap: 28px;
    min-height: 72px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.84);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 34px rgba(16, 55, 98, 0.06);
    backdrop-filter: blur(18px);
    transition: background-color 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
    overflow: visible;
}

.header.is-scrolled .header__inner {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(95, 144, 153, 0.12);
    box-shadow: 0 18px 40px rgba(16, 55, 98, 0.1);
    transform: translateY(-2px);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    color: var(--ink-strong);
}

.logo__media {
    width: 152px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    overflow: hidden;
    background: transparent;
    box-shadow: none;
}

.logo__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0;
    filter:
        drop-shadow(0 0 0.5px rgba(255, 255, 255, 0.52))
        drop-shadow(0 1px 2px rgba(16, 39, 48, 0.22));
}

.logo__content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.logo__title {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.logo__subtitle {
    color: var(--ink-soft);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.header__panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex: 1;
    overflow: visible;
}

.header__panel--simple {
    justify-content: flex-end;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
}

.nav a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--ink-main);
    font-size: 0.94rem;
    font-weight: 700;
}

.nav a:hover,
.nav a.is-active {
    background: var(--bg-soft);
    color: var(--accent-deep);
}

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

.lang-switcher {
    position: relative;
    overflow: visible;
}

.lang-switcher__trigger {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px 6px 10px;
    border: 1px solid var(--line-soft);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.84),
        0 10px 22px rgba(16, 55, 98, 0.06);
    color: var(--ink-main);
    font: inherit;
    cursor: pointer;
}

.lang-switcher__trigger:hover {
    border-color: rgba(95, 144, 153, 0.18);
}

.lang-switcher__trigger:focus-visible {
    outline: none;
    border-color: rgba(64, 110, 119, 0.34);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.84),
        0 0 0 4px rgba(95, 144, 153, 0.12),
        0 10px 22px rgba(16, 55, 98, 0.06);
}

.lang-switcher__meta {
    color: var(--ink-soft);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    pointer-events: none;
}

.lang-switcher__current {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.lang-switcher__current-text {
    white-space: nowrap;
    color: var(--ink-main);
    font-size: 0.86rem;
    font-weight: 800;
}

.lang-switcher__chevron {
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
    border-right: 2px solid rgba(35, 79, 86, 0.68);
    border-bottom: 2px solid rgba(35, 79, 86, 0.68);
    transform: rotate(45deg) translateY(-1px);
    transition: transform 0.22s ease;
}

.lang-switcher.is-open .lang-switcher__chevron {
    transform: rotate(-135deg) translateY(-1px);
}

.lang-switcher__flag {
    width: 18px;
    height: 18px;
    display: inline-block;
    flex: 0 0 18px;
    border-radius: 999px;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.6),
        0 0 0 1px rgba(18, 43, 73, 0.08);
    overflow: hidden;
}

.lang-switcher__flag--uz {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cmask id='uz-crescent'%3E%3Ccircle cx='4.0' cy='2.9' r='1.3' fill='white'/%3E%3Ccircle cx='4.9' cy='2.9' r='1.3' fill='black'/%3E%3C/mask%3E%3Crect width='18' height='5.8' fill='%2300b5e2'/%3E%3Crect y='5.8' width='18' height='0.7' fill='%23d81e05'/%3E%3Crect y='6.5' width='18' height='5.0' fill='%23ffffff'/%3E%3Crect y='11.5' width='18' height='0.7' fill='%23d81e05'/%3E%3Crect y='12.2' width='18' height='5.8' fill='%231eb53a'/%3E%3Crect x='2.0' y='1.0' width='4.0' height='4.0' fill='white' mask='url(%23uz-crescent)'/%3E%3Ccircle cx='5.6' cy='2.0' r='0.22' fill='%23ffffff'/%3E%3Ccircle cx='6.3' cy='2.0' r='0.22' fill='%23ffffff'/%3E%3Ccircle cx='7.0' cy='2.0' r='0.22' fill='%23ffffff'/%3E%3Ccircle cx='4.9' cy='2.7' r='0.22' fill='%23ffffff'/%3E%3Ccircle cx='5.6' cy='2.7' r='0.22' fill='%23ffffff'/%3E%3Ccircle cx='6.3' cy='2.7' r='0.22' fill='%23ffffff'/%3E%3Ccircle cx='7.0' cy='2.7' r='0.22' fill='%23ffffff'/%3E%3Ccircle cx='4.2' cy='3.4' r='0.22' fill='%23ffffff'/%3E%3Ccircle cx='4.9' cy='3.4' r='0.22' fill='%23ffffff'/%3E%3Ccircle cx='5.6' cy='3.4' r='0.22' fill='%23ffffff'/%3E%3Ccircle cx='6.3' cy='3.4' r='0.22' fill='%23ffffff'/%3E%3Ccircle cx='7.0' cy='3.4' r='0.22' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat center / cover;
}

.lang-switcher__flag--ru {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Crect width='18' height='6' fill='%23ffffff'/%3E%3Crect y='6' width='18' height='6' fill='%230039a6'/%3E%3Crect y='12' width='18' height='6' fill='%23d52b1e'/%3E%3C/svg%3E") no-repeat center / cover;
}

.lang-switcher__flag--en {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Crect width='18' height='18' fill='%23012169'/%3E%3Cpath d='M0 0l18 18M18 0L0 18' stroke='%23ffffff' stroke-width='2.4'/%3E%3Cpath d='M0 0l9 9' stroke='%23C8102E' stroke-width='0.8' transform='translate(0, 0.4)'/%3E%3Cpath d='M18 0l-9 9' stroke='%23C8102E' stroke-width='0.8' transform='translate(0.4, 0)'/%3E%3Cpath d='M18 18l-9-9' stroke='%23C8102E' stroke-width='0.8' transform='translate(0, -0.4)'/%3E%3Cpath d='M0 18l9-9' stroke='%23C8102E' stroke-width='0.8' transform='translate(-0.4, 0)'/%3E%3Cpath d='M9 0v18M0 9h18' stroke='%23ffffff' stroke-width='3.6'/%3E%3Cpath d='M9 0v18M0 9h18' stroke='%23C8102E' stroke-width='2.1'/%3E%3C/svg%3E") no-repeat center / cover;
}

.lang-switcher__flag--zh {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Crect width='18' height='18' fill='%23de2f2f'/%3E%3Cpolygon points='4.5,2.7 4.9,3.9 6.1,3.9 5.1,4.7 5.5,5.9 4.5,5.1 3.5,5.9 3.9,4.7 2.9,3.9 4.1,3.9' fill='%23f5d34f'/%3E%3Cpolygon points='7.2,1.8 7.3,2.2 7.7,2.2 7.4,2.5 7.5,2.9 7.2,2.6 6.9,2.9 7.0,2.5 6.7,2.2 7.1,2.2' fill='%23f5d34f'/%3E%3Cpolygon points='8.1,2.7 8.2,3.1 8.6,3.1 8.3,3.4 8.4,3.8 8.1,3.5 7.8,3.8 7.9,3.4 7.6,3.1 8.0,3.1' fill='%23f5d34f'/%3E%3Cpolygon points='8.1,4.0 8.2,4.4 8.6,4.4 8.3,4.7 8.4,5.1 8.1,4.8 7.8,5.1 7.9,4.7 7.6,4.4 8.0,4.4' fill='%23f5d34f'/%3E%3Cpolygon points='7.2,4.9 7.3,5.3 7.7,5.3 7.4,5.6 7.5,6.0 7.2,5.7 6.9,6.0 7.0,5.6 6.7,5.3 7.1,5.3' fill='%23f5d34f'/%3E%3C/svg%3E") no-repeat center / cover;
}

.lang-switcher__flag--tr {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Crect width='18' height='18' fill='%23E30A17'/%3E%3Ccircle cx='8.1' cy='9' r='3.6' fill='%23FFF'/%3E%3Ccircle cx='9.3' cy='9' r='2.9' fill='%23E30A17'/%3E%3Cpolygon points='11.9,7.9 12.3,9.2 13.5,9.2 12.5,10.0 12.9,11.2 11.9,10.5 10.9,11.2 11.3,10.0 10.3,9.2 11.5,9.2' fill='%23FFF'/%3E%3C/svg%3E") no-repeat center / cover;
}

.lang-switcher__flag--ko {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Crect width='18' height='18' fill='%23ffffff'/%3E%3Cg transform='translate(9,9) rotate(-33.69)'%3E%3Ccircle cx='0' cy='0' r='3.5' fill='%230047a0'/%3E%3Cpath d='M-3.5,0 A3.5,3.5 0 0,1 3.5,0 Z' fill='%23cd2e3a'/%3E%3Ccircle cx='1.75' cy='0' r='1.75' fill='%23cd2e3a'/%3E%3Ccircle cx='-1.75' cy='0' r='1.75' fill='%230047a0'/%3E%3C/g%3E%3Cg transform='translate(9,9) rotate(-146.31) translate(6,0)' fill='%23000'%3E%3Crect x='-0.8' y='-1.1' width='0.3' height='2.2'/%3E%3Crect x='-0.3' y='-1.1' width='0.3' height='2.2'/%3E%3Crect x='0.2' y='-1.1' width='0.3' height='2.2'/%3E%3C/g%3E%3Cg transform='translate(9,9) rotate(33.69) translate(6,0)' fill='%23000'%3E%3Crect x='-0.8' y='-1.1' width='0.3' height='1.0'/%3E%3Crect x='-0.8' y='0.1' width='0.3' height='1.0'/%3E%3Crect x='-0.3' y='-1.1' width='0.3' height='1.0'/%3E%3Crect x='-0.3' y='0.1' width='0.3' height='1.0'/%3E%3Crect x='0.2' y='-1.1' width='0.3' height='1.0'/%3E%3Crect x='0.2' y='0.1' width='0.3' height='1.0'/%3E%3C/g%3E%3Cg transform='translate(9,9) rotate(-33.69) translate(6,0)' fill='%23000'%3E%3Crect x='-0.8' y='-1.1' width='0.3' height='1.0'/%3E%3Crect x='-0.8' y='0.1' width='0.3' height='1.0'/%3E%3Crect x='-0.3' y='-1.1' width='0.3' height='2.2'/%3E%3Crect x='0.2' y='-1.1' width='0.3' height='1.0'/%3E%3Crect x='0.2' y='0.1' width='0.3' height='1.0'/%3E%3C/g%3E%3Cg transform='translate(9,9) rotate(146.31) translate(6,0)' fill='%23000'%3E%3Crect x='-0.8' y='-1.1' width='0.3' height='2.2'/%3E%3Crect x='-0.3' y='-1.1' width='0.3' height='1.0'/%3E%3Crect x='-0.3' y='0.1' width='0.3' height='1.0'/%3E%3Crect x='0.2' y='-1.1' width='0.3' height='2.2'/%3E%3C/g%3E%3C/svg%3E") no-repeat center / cover;
}

.lang-switcher__menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 224px;
    display: grid;
    gap: 6px;
    padding: 10px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(95, 144, 153, 0.12);
    box-shadow:
        0 24px 42px rgba(16, 55, 98, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
    z-index: 140;
    pointer-events: none;
}

html[dir="rtl"] .lang-switcher__menu {
    right: auto;
    left: 0;
}

.lang-switcher.is-open .lang-switcher__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.lang-switcher__link {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid transparent;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink-main);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.lang-switcher.is-locked .lang-switcher__link {
    opacity: 0.74;
}

.lang-switcher.is-locked .lang-switcher__link.is-selected,
.lang-switcher.is-locked .lang-switcher__link[aria-selected="true"] {
    opacity: 1;
}

.lang-switcher.is-locked .lang-switcher__link[aria-disabled="true"] {
    cursor: default;
}

.lang-switcher__link:hover {
    background: var(--bg-soft);
    color: var(--accent-deep);
    border-color: rgba(95, 144, 153, 0.1);
}

.lang-switcher__link:focus-visible {
    outline: none;
    background: rgba(243, 247, 246, 0.96);
    border-color: rgba(64, 110, 119, 0.24);
    box-shadow: 0 0 0 3px rgba(95, 144, 153, 0.12);
}

.lang-switcher__link.is-selected,
.lang-switcher__link[aria-selected="true"] {
    background: linear-gradient(180deg, rgba(238, 244, 242, 0.98), rgba(233, 240, 238, 0.96));
    border-color: rgba(95, 144, 153, 0.16);
    color: var(--accent-deep);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.lang-switcher__text {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 10px;
    border: 0;
    border-radius: 16px;
    background: var(--bg-soft);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    border-radius: 999px;
    background: var(--ink-strong);
}

.btn {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--accent) 0%, #8db3b8 100%);
    color: #ffffff;
    font-size: 0.97rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    box-shadow: 0 14px 28px rgba(64, 110, 119, 0.16);
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 30px rgba(64, 110, 119, 0.2);
}

.btn--ghost {
    background: transparent;
    color: var(--accent-deep);
    border-color: rgba(64, 110, 119, 0.16);
    box-shadow: none;
}

.btn--ghost:hover {
    background: rgba(64, 110, 119, 0.06);
    box-shadow: none;
}

.btn--light {
    background: #ffffff;
    color: var(--accent-deep);
    box-shadow: var(--shadow-card);
}

.btn--lead {
    background: linear-gradient(180deg, #3bd26f, #29bb5b);
    color: #ffffff;
    border-color: rgba(20, 126, 61, 0.28);
    box-shadow: 0 14px 28px rgba(28, 131, 70, 0.22);
}

.btn--lead:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(28, 131, 70, 0.28);
}

.btn--surface {
    background: linear-gradient(180deg, #e9f0f2, #dbe7eb);
    color: #21474f;
    border-color: rgba(57, 105, 115, 0.14);
    box-shadow: none;
}

.btn--surface:hover {
    background: linear-gradient(180deg, #edf3f5, #e1ecef);
    box-shadow: 0 8px 18px rgba(25, 72, 86, 0.12);
}

.lead-attraction {
    padding: 18px 0 36px;
}

.lead-attraction__card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
    align-items: stretch;
    gap: 28px;
    padding: 30px 30px 24px;
    border-radius: 34px;
    overflow: hidden;
    color: #fff3f6;
    background:
        radial-gradient(circle at 88% 12%, rgba(255, 136, 156, 0.24), rgba(255, 136, 156, 0) 34%),
        radial-gradient(circle at 12% 90%, rgba(202, 37, 67, 0.28), rgba(202, 37, 67, 0) 44%),
        linear-gradient(165deg, rgba(84, 6, 19, 0.97), rgba(44, 5, 14, 0.98)),
        linear-gradient(120deg, rgba(177, 34, 62, 0.18), rgba(115, 12, 33, 0.1));
    box-shadow:
        0 24px 48px rgba(72, 7, 24, 0.32),
        inset 0 0 0 1px rgba(255, 174, 188, 0.2);
}

.lead-attraction__card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        repeating-linear-gradient(
            180deg,
            rgba(255, 174, 188, 0.1) 0 1px,
            transparent 1px 56px
        );
}

.eyebrow--soft {
    margin-bottom: 14px;
    background: rgba(255, 194, 206, 0.16);
    border: 1px solid rgba(255, 190, 204, 0.36);
    color: #ffd7e1;
}

.lead-attraction__content {
    position: relative;
    z-index: 1;
}

.lead-attraction__title {
    margin: 12px 0 10px;
    max-width: 18ch;
    color: #fff7f8;
    font-size: clamp(1.6rem, 1.35rem + 1.2vw, 2.35rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.lead-attraction__subtitle {
    margin: 0;
    max-width: 60ch;
    color: rgba(255, 227, 233, 0.95);
    font-size: 1.02rem;
    line-height: 1.7;
    font-weight: 550;
}

.lead-attraction__list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    border-top: 1px solid rgba(255, 170, 186, 0.24);
}

.lead-attraction__item {
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: #fff3f6;
    font-size: 1.03rem;
    font-weight: 650;
    border-bottom: 1px solid rgba(255, 170, 186, 0.24);
}

.lead-attraction__icon {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    border-radius: 999px;
    background: #ff4e6e;
    box-shadow:
        0 0 0 4px rgba(255, 78, 110, 0.2),
        0 0 10px rgba(255, 78, 110, 0.34);
}

.lead-attraction__visual {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
}

.lead-attraction__image-frame {
    width: 100%;
    min-height: 100%;
    border-radius: 26px;
    border: 1px solid rgba(255, 161, 181, 0.36);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 14px 10px 0;
    position: relative;
    background:
        radial-gradient(circle at 70% 18%, rgba(255, 121, 147, 0.22), rgba(255, 121, 147, 0) 58%),
        radial-gradient(circle at 28% 86%, rgba(255, 80, 109, 0.2), rgba(255, 80, 109, 0) 62%),
        linear-gradient(180deg, rgba(110, 12, 31, 0.84), rgba(56, 7, 18, 0.84));
}

.lead-attraction__image {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: contain;
    object-position: center bottom;
    display: block;
    mix-blend-mode: normal;
    opacity: 1;
    filter: none;
}

.lead-attraction__after {
    padding: 24px 12px 0;
    text-align: center;
}

.lead-attraction__after p {
    margin: 0 auto;
    max-width: 62ch;
    color: #334f56;
    font-size: 1.06rem;
    line-height: 1.8;
    font-weight: 600;
}

.lead-attraction__actions {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.disk-offer {
    padding: 14px 0 8px;
}

.disk-offer__card {
    position: relative;
    padding: 42px 36px 34px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 8% 8%, rgba(169, 215, 209, 0.2), rgba(169, 215, 209, 0) 38%),
        radial-gradient(circle at 92% 10%, rgba(201, 225, 221, 0.34), rgba(201, 225, 221, 0) 34%),
        linear-gradient(135deg, #f7fbfb 0%, #edf4f3 56%, #e6efee 100%);
    border: 1px solid rgba(52, 98, 107, 0.1);
    box-shadow: 0 24px 54px rgba(26, 80, 88, 0.1);
    overflow: hidden;
}

.disk-offer__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    align-items: center;
    gap: 30px;
}

.disk-offer__content {
    min-width: 0;
}

.disk-offer__eyebrow {
    margin-bottom: 14px;
}

.disk-offer__title {
    max-width: 16ch;
    margin-bottom: 14px;
    color: #0d3f5c;
    font-size: clamp(2rem, 1.45rem + 1.85vw, 3.85rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.disk-offer__method {
    margin: 0 0 18px;
    color: #2c5f71;
    font-size: clamp(1.28rem, 1.05rem + 0.82vw, 2.06rem);
    line-height: 1.2;
    letter-spacing: -0.015em;
}

.disk-offer__text {
    margin: 0;
    max-width: 60ch;
    color: #1e4f62;
    font-size: 1.03rem;
    line-height: 1.66;
    font-weight: 600;
}

.disk-offer__actions {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.disk-offer__actions .btn {
    min-height: 60px;
    min-width: 260px;
    padding-inline: 30px;
    font-size: 1rem;
}

.disk-offer__stats {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: 660px;
}

.disk-offer__stat {
    padding: 20px 18px;
    border-radius: 24px;
    border: 1px solid rgba(106, 168, 178, 0.28);
    background:
        radial-gradient(circle at 86% 20%, rgba(132, 216, 210, 0.2), rgba(132, 216, 210, 0) 38%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(241, 250, 249, 0.86));
}

.disk-offer__stat strong {
    display: block;
    color: #0d3f5c;
    font-size: clamp(2.1rem, 1.7rem + 0.8vw, 3rem);
    line-height: 1;
    letter-spacing: -0.02em;
}

.disk-offer__stat span {
    margin-top: 8px;
    display: block;
    color: #476b76;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.45;
}

.disk-offer__visual {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(180px, 0.54fr);
    align-items: center;
    gap: 16px;
}

.disk-offer__portrait-wrap {
    position: relative;
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 100%;
    max-width: 470px;
    aspect-ratio: 1 / 1.2;
    border-radius: 260px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(238, 247, 246, 0.88));
    border: 1px solid rgba(56, 105, 115, 0.12);
    box-shadow: 0 20px 44px rgba(27, 75, 88, 0.16);
}

.disk-offer__portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.disk-offer__quote {
    margin: 0;
    grid-column: 2;
    align-self: end;
    color: #1a4d62;
    font-size: 1.9rem;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.015em;
}

.disk-offer__quote::before {
    content: "“";
    display: block;
    margin-bottom: 6px;
    color: rgba(87, 146, 158, 0.68);
    font-size: 3rem;
    line-height: 0.6;
}

.disk-offer__doctor {
    grid-column: 2;
    align-self: start;
}

.disk-offer__doctor strong {
    display: block;
    color: #0e3f5c;
    font-size: 1.9rem;
    line-height: 1.15;
    letter-spacing: -0.015em;
}

.disk-offer__doctor p {
    margin: 8px 0 0;
    color: #466f7c;
    font-size: 1rem;
    line-height: 1.55;
    font-weight: 600;
}

html[dir="rtl"] .disk-offer__layout {
    direction: rtl;
}

html[dir="rtl"] .disk-offer__visual {
    grid-template-columns: minmax(180px, 0.54fr) minmax(0, 1fr);
}

html[dir="rtl"] .disk-offer__portrait-wrap {
    grid-column: 2;
}

html[dir="rtl"] .disk-offer__quote,
html[dir="rtl"] .disk-offer__doctor {
    grid-column: 1;
}

html[dir="rtl"] .disk-offer__content,
html[dir="rtl"] .disk-offer__doctor,
html[dir="rtl"] .disk-offer__text,
html[dir="rtl"] .disk-offer__method {
    text-align: right;
}

.section {
    padding: 116px 0;
    position: relative;
}

.section--plain {
    background: transparent;
}

.section--tint {
    background:
        radial-gradient(circle at top right, rgba(200, 220, 214, 0.2), transparent 24%),
        linear-gradient(180deg, rgba(242, 246, 244, 0.94), rgba(237, 243, 241, 0.96));
}

.section--soft {
    background:
        radial-gradient(circle at 14% 18%, rgba(222, 233, 228, 0.22), transparent 20%),
        linear-gradient(180deg, rgba(250, 251, 250, 0.98), rgba(242, 246, 244, 0.96));
}

.hero {
    padding: 32px 0 96px;
}

.hero__frame--premium {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.96fr);
    gap: 56px;
    align-items: center;
    padding: 52px;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at top right, rgba(175, 208, 205, 0.16), transparent 28%),
        radial-gradient(circle at bottom left, rgba(233, 239, 236, 0.55), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 249, 0.96));
    box-shadow: var(--shadow-soft);
    overflow: clip;
}

.hero__content--premium {
    max-width: 560px;
    min-width: 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 14px;
    margin-bottom: 20px;
    border-radius: 999px;
    background: rgba(64, 110, 119, 0.08);
    color: var(--accent-deep);
    font-size: 0.79rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

h1 {
    max-width: 11ch;
    margin-bottom: 20px;
    color: var(--ink-strong);
    font-size: clamp(3.1rem, 5vw, 5.3rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

h2 {
    margin-bottom: 16px;
    color: var(--ink-strong);
    font-size: clamp(2.15rem, 3vw, 3.15rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

h3 {
    margin-bottom: 10px;
    color: var(--ink-strong);
    font-size: 1.13rem;
    line-height: 1.35;
}

.section-text {
    color: var(--ink-soft);
    font-size: 1.01rem;
    line-height: 1.82;
}

.hero__text {
    max-width: 55ch;
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.hero__text--solo {
    margin-bottom: 0;
}

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

.hero__visual {
    display: flex;
    min-width: 0;
}

.hero-media {
    position: relative;
    width: 100%;
    min-height: 650px;
    padding: 18px;
    border-radius: 36px;
    background:
        radial-gradient(circle at top right, rgba(182, 210, 205, 0.2), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #edf3f2 100%);
    border: 1px solid rgba(20, 57, 97, 0.08);
    box-shadow: 0 24px 52px rgba(16, 55, 98, 0.1);
    overflow: hidden;
    transform: translate3d(0, calc(var(--scroll-offset) * -0.018), 0);
    transition: transform 0.22s ease-out, box-shadow 0.28s ease;
}

.hero-media__frame {
    position: relative;
    min-height: 614px;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(239, 245, 243, 0.92));
}

.hero-media__frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(24, 53, 60, 0.02), rgba(24, 53, 60, 0.1));
    pointer-events: none;
}

.hero-media__image {
    width: 100%;
    height: 100%;
    min-height: 614px;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.hero-media__caption {
    position: absolute;
    z-index: 2;
    max-width: 228px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink-main);
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.5;
    box-shadow: 0 18px 34px rgba(16, 55, 98, 0.08);
    backdrop-filter: blur(8px);
}

.hero-media__caption--top {
    top: 34px;
    left: 34px;
}

.hero-media__caption--bottom {
    right: 28px;
    bottom: 30px;
}

.hero-scene {
    position: relative;
    width: 100%;
    min-height: 650px;
    padding: 18px;
    border-radius: 36px;
    background: linear-gradient(180deg, #ffffff 0%, #edf3f2 100%);
    border: 1px solid rgba(20, 57, 97, 0.08);
    box-shadow: 0 24px 52px rgba(16, 55, 98, 0.1);
    overflow: hidden;
    transform: translate3d(0, calc(var(--scroll-offset) * -0.018), 0);
    transition: transform 0.22s ease-out, box-shadow 0.28s ease;
}

.hero-scene__backdrop {
    position: absolute;
    inset: 18px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top left, rgba(162, 201, 198, 0.2), transparent 24%),
        radial-gradient(circle at bottom right, rgba(233, 239, 236, 0.72), transparent 26%),
        linear-gradient(180deg, #fdfefe, #edf4f2);
    transform: translate3d(0, calc(var(--scroll-offset) * -0.01), 0);
    transition: transform 0.22s ease-out;
}

.hero-scene__svg {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.hero-scene__caption {
    position: absolute;
    z-index: 2;
    max-width: 220px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink-main);
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.5;
    box-shadow: 0 18px 34px rgba(16, 55, 98, 0.08);
}

.hero-scene__caption--top {
    top: 34px;
    left: 34px;
}

.hero-scene__caption--bottom {
    right: 28px;
    bottom: 30px;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 46px;
    text-align: center;
}

.section-heading--compact {
    max-width: 720px;
}

.section-heading--left {
    margin-left: 0;
    text-align: left;
}

.about-preview--refined {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.about-preview__item {
    position: relative;
    padding-top: 18px;
}

.about-preview__item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 44px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), rgba(95, 144, 153, 0.15));
}

.about-preview__item strong {
    display: block;
    margin-bottom: 10px;
    color: var(--ink-strong);
    font-size: 1.02rem;
}

.about-preview__item span {
    color: var(--ink-soft);
    line-height: 1.78;
}

.service-grid--refined {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.service-card--refined {
    position: relative;
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 22px 18px 18px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 251, 250, 0.98));
    border: 1px solid rgba(20, 57, 97, 0.07);
    box-shadow: var(--shadow-card);
}

.service-card--refined::before {
    content: "";
    position: absolute;
    top: 0;
    left: 18px;
    width: 46px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-deep), rgba(95, 144, 153, 0.12));
}

.service-card__media {
    width: 100%;
    height: 88px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(20, 57, 97, 0.08);
    background: #edf5f4;
}

.service-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.service-card__media--photo {
    background: linear-gradient(180deg, #eef4f5, #e4eef0);
}

.service-card__image--contain {
    object-fit: contain;
    object-position: center;
    transform: none;
    padding: 2px 0;
}

.service-card--refined:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.service-card--refined h3 {
    margin-bottom: 2px;
    font-size: 1.02rem;
    line-height: 1.32;
}

.service-card--refined p {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.56;
}

.service-card--refined p,
.why-card--editorial p,
.doctor-card__text {
    color: var(--ink-soft);
    line-height: 1.76;
}

.why-shell {
    display: grid;
    gap: 20px;
}

.why-shell__heading {
    margin-bottom: 0;
    text-align: center;
}

.why-grid--editorial {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 34px;
}

.why-card--editorial {
    position: relative;
    padding-left: 58px;
}

.why-card--editorial::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(95, 144, 153, 0.16), rgba(171, 203, 200, 0.36));
}

.why-card--editorial h3 {
    text-wrap: balance;
}

.why-card--editorial p {
    margin-bottom: 0;
    max-width: 34ch;
}

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

.doctor-card--editorial {
    border-radius: 26px;
    background: linear-gradient(180deg, #ffffff, #fbfdff);
    border: 1px solid rgba(20, 57, 97, 0.07);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.doctor-card--editorial:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.doctor-card__photo--editorial {
    position: relative;
    height: 314px;
    overflow: hidden;
}

.doctor-card__photo--real::before,
.doctor-card__photo--real::after {
    display: none;
}

.doctor-card__photo--real {
    background:
        radial-gradient(circle at top right, rgba(214, 228, 224, 0.72), transparent 22%),
        radial-gradient(circle at bottom left, rgba(235, 241, 238, 0.92), transparent 26%),
        linear-gradient(180deg, #f8fbfa 0%, #e8f0ee 100%);
    isolation: isolate;
}

.doctor-card__photo--tone-a {
    background: linear-gradient(180deg, #eef4f2 0%, #dce8e6 100%);
}

.doctor-card__photo--tone-b {
    background: linear-gradient(180deg, #f3f7f5 0%, #e1ebe8 100%);
}

.doctor-card__photo--tone-c {
    background: linear-gradient(180deg, #edf3f1 0%, #d7e6e3 100%);
}

.doctor-card__photo--editorial::before {
    content: "";
    position: absolute;
    top: 26px;
    right: 24px;
    width: 94px;
    height: 94px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.34);
}

.doctor-card__photo--editorial::after {
    content: "";
    position: absolute;
    left: 24px;
    bottom: 18px;
    width: 120px;
    height: 120px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.26);
}

.doctor-card__portrait {
    position: absolute;
    inset: 0;
}

.doctor-card__portrait::before,
.doctor-card__portrait::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.doctor-card__portrait::before {
    top: 68px;
    width: 92px;
    height: 92px;
    border-radius: 999px;
    background: #f0d3bc;
}

.doctor-card__portrait::after {
    top: 148px;
    width: 210px;
    height: 214px;
    border-radius: 110px 110px 28px 28px;
    background: linear-gradient(180deg, #ffffff 0%, #edf5ff 100%);
}

.doctor-card__portrait--male::before {
    box-shadow: 0 -24px 0 14px #24466d;
}

.doctor-card__portrait--female::before {
    box-shadow: 0 -20px 0 18px #31547f;
}

.doctor-card__portrait--male-alt::before {
    box-shadow: 0 -22px 0 16px #1f3c62;
}

.doctor-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.doctor-card__photo--real .doctor-card__image {
    mix-blend-mode: normal;
    object-fit: cover;
    object-position: center top;
    transform: scale(1.03);
    filter: saturate(1.02) contrast(1.02);
}

.doctor-card__body {
    display: grid;
    gap: 10px;
    align-content: start;
    padding: 24px 24px 26px;
}

.doctor-card__body h3 {
    margin-bottom: 0;
    font-size: 1.08rem;
    line-height: 1.3;
}

.doctor-card__role {
    margin-bottom: 0;
    color: var(--accent-deep);
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.45;
    letter-spacing: -0.01em;
}

.doctor-card__text {
    margin-bottom: 0;
    font-size: 0.98rem;
    line-height: 1.7;
    max-width: 32ch;
}

.page-hero {
    padding: 32px 0 56px;
}

.page-hero__inner {
    padding: 38px;
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(239, 245, 251, 0.96));
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow-soft);
}

.page-hero__content {
    max-width: 760px;
}

.page-hero__text {
    max-width: 66ch;
    margin-bottom: 0;
}

.page-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.page-chip {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(23, 114, 208, 0.08);
    color: var(--accent-deep);
    font-size: 0.88rem;
    font-weight: 700;
}

.page-hero--services {
    padding-bottom: 64px;
}

.page-hero__inner--services {
    padding: 42px;
    background:
        radial-gradient(circle at top right, rgba(126, 178, 187, 0.14), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 246, 248, 0.94));
}

.page-hero__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 32px;
    align-items: start;
}

.page-hero__content--services {
    max-width: 680px;
}

.services-intro {
    display: grid;
    gap: 18px;
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 251, 0.98));
    border: 1px solid rgba(20, 57, 97, 0.08);
    box-shadow: var(--shadow-card);
}

.services-intro__label {
    display: inline-flex;
    width: fit-content;
    min-height: 34px;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(95, 144, 153, 0.1);
    color: var(--accent-deep);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.services-intro__list {
    display: grid;
    gap: 14px;
}

.services-intro__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
}

.services-intro__item-index {
    min-width: 42px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(95, 144, 153, 0.14), rgba(95, 144, 153, 0.04));
    color: var(--accent-deep);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.services-intro__item p,
.services-intro__note {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.75;
}

.services-intro__note {
    padding-top: 18px;
    border-top: 1px solid rgba(20, 57, 97, 0.08);
    font-size: 0.95rem;
}

.service-grid--services-page {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.service-card--services-page {
    position: relative;
    display: grid;
    align-content: start;
    gap: 12px;
    min-height: 250px;
    padding: 30px 28px 28px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 251, 0.98));
    border: 1px solid rgba(20, 57, 97, 0.08);
    box-shadow: var(--shadow-card);
}

.service-card--services-page::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28px;
    width: 58px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-deep), rgba(95, 144, 153, 0.18));
}

.service-card--services-page:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.service-card__index {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    color: rgba(18, 43, 73, 0.32);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.service-card--services-page h3,
.detail-card--services h3 {
    margin-bottom: 0;
}

.service-card--services-page p,
.detail-card--services p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.75;
}

.service-card--services-page p {
    max-width: 34ch;
}

.detail-grid--services {
    gap: 20px;
}

.detail-card--services {
    display: grid;
    align-content: start;
    gap: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 251, 0.98));
}

.detail-card__icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(95, 144, 153, 0.14), rgba(95, 144, 153, 0.04));
    color: var(--accent-deep);
    font-size: 0.94rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.page-grid,
.detail-grid {
    display: grid;
    gap: 24px;
}

.page-grid {
    grid-template-columns: 1.1fr 0.9fr;
}

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

.page-card,
.detail-card {
    padding: 26px;
    border-radius: 26px;
    background: var(--bg-card);
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow-card);
}

.page-card--soft {
    background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.page-card__text,
.detail-list__item span {
    color: var(--ink-soft);
    line-height: 1.8;
}

.page-card__media {
    height: 280px;
    margin-bottom: 20px;
    border-radius: 22px;
    overflow: hidden;
    background: var(--bg-soft);
}

.detail-list {
    display: grid;
    gap: 14px;
    margin-top: 20px;
}

.detail-list__item {
    padding: 16px 18px;
    border-radius: 18px;
    background: var(--bg-soft);
}

.detail-list__item strong {
    display: block;
    margin-bottom: 6px;
    color: var(--ink-strong);
}

.footer {
    padding: 42px 0 40px;
    background:
        radial-gradient(circle at 18% 16%, rgba(37, 122, 126, 0.28), transparent 28%),
        radial-gradient(circle at 82% 82%, rgba(17, 97, 113, 0.2), transparent 32%),
        linear-gradient(180deg, #08485a 0%, #033b4d 100%);
}

@media (prefers-reduced-motion: no-preference) {
    .reveal-target {
        opacity: 0;
        transform: translate3d(0, 30px, 0) scale(0.985);
        transition:
            opacity 0.78s cubic-bezier(0.22, 1, 0.36, 1),
            transform 0.92s cubic-bezier(0.22, 1, 0.36, 1),
            filter 0.72s ease;
        transition-delay: var(--reveal-delay, 0s);
        will-change: opacity, transform;
        filter: blur(8px);
    }

    .reveal-target.is-visible {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        filter: blur(0);
    }

    .hero__frame--premium {
        transition:
            transform 0.38s ease,
            box-shadow 0.38s ease;
    }

    .header.is-scrolled + main .hero__frame--premium,
    .header.is-scrolled ~ main .hero__frame--premium {
        transform: translateY(-4px) scale(0.998);
    }
}

@media (max-width: 1180px) {
    .hero__frame--premium,
    .page-grid,
    .page-hero__layout {
        grid-template-columns: 1fr;
    }

    .hero__frame--premium {
        gap: 34px;
        padding: 38px;
    }

    .hero__content--premium,
    .hero__text {
        max-width: none;
    }

    .hero__visual {
        max-width: 720px;
        width: 100%;
        margin: 0 auto;
    }

    .service-grid--refined,
    .service-grid--services-page,
    .doctor-grid--editorial,
    .detail-grid,
    .about-preview--refined,
    .why-grid--editorial {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .disk-offer__layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .disk-offer__visual {
        grid-template-columns: minmax(0, 1fr) minmax(210px, 0.62fr);
    }

    .disk-offer__portrait-wrap {
        max-width: 540px;
    }

}

@media (max-width: 920px) {
    .header__inner {
        min-height: 68px;
        gap: 14px;
        border-radius: 22px;
    }

    .header__panel {
        display: flex;
        position: static;
        flex: 0 0 auto;
        justify-content: flex-end;
    }

    .header__actions {
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
    }

    .lang-switcher__trigger {
        min-height: 44px;
        padding: 6px 12px 6px 9px;
        gap: 8px;
    }

    .lang-switcher__meta {
        font-size: 0.68rem;
    }

    .hero__actions .btn {
        width: 100%;
    }

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

    .hero__frame--premium {
        gap: 30px;
        padding: 30px;
    }

    .header .logo__subtitle {
        display: none;
    }

    .lead-attraction {
        padding-top: 10px;
    }

    .lead-attraction__card {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 22px 20px 20px;
        border-radius: 28px;
    }

    .lead-attraction__title {
        max-width: 100%;
    }

    .lead-attraction__item {
        min-height: 44px;
        font-size: 0.98rem;
    }

    .lead-attraction__image-frame {
        min-height: 280px;
        padding: 8px 8px 0;
    }

    .lead-attraction__image {
        min-height: 280px;
        object-position: center bottom;
    }

    .lead-attraction__after p {
        font-size: 1rem;
    }

    .disk-offer {
        padding-top: 10px;
    }

    .disk-offer__card {
        padding: 30px 22px 24px;
        border-radius: 28px;
    }

    .disk-offer__title {
        max-width: 100%;
    }

    .disk-offer__actions .btn {
        min-height: 54px;
        min-width: 220px;
    }

    .disk-offer__stat {
        border-radius: 20px;
    }

    .disk-offer__doctor strong {
        font-size: 1.6rem;
    }

    .disk-offer__doctor p {
        font-size: 0.95rem;
    }

}

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

    .section {
        padding: 74px 0;
    }

    .hero {
        padding: 18px 0 64px;
    }

    .hero__frame--premium,
    .page-hero__inner,
    .page-card,
    .detail-card {
        padding: 22px;
    }

    .page-hero__inner--services {
        padding: 26px 22px;
    }

    .services-intro {
        padding: 22px;
        border-radius: 22px;
    }

    .hero-scene,
    .hero-media {
        min-height: auto;
        padding: 12px;
        border-radius: 26px;
        transform: none;
    }

    .hero-scene__caption,
    .hero-media__caption {
        position: static;
        max-width: none;
        margin-top: 12px;
        padding: 12px 14px;
        font-size: 0.82rem;
        border-radius: 16px;
    }

    .hero-media__frame,
    .hero-media__image {
        min-height: 400px;
    }


    .service-grid--refined,
    .service-grid--services-page,
    .about-preview--refined,
    .why-grid--editorial,
    .doctor-grid--editorial,
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .header {
        padding-top: 8px;
    }

    .header__inner {
        min-height: 62px;
        padding: 10px 12px;
        border-radius: 20px;
    }

    .logo__media {
        width: 118px;
        height: 42px;
        border-radius: 14px;
    }

    .logo__title {
        font-size: 0.92rem;
        line-height: 1.15;
    }

    .logo__subtitle {
        display: none;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
        border-radius: 14px;
    }

    .nav a {
        min-height: 46px;
        padding: 12px 14px;
        font-size: 1rem;
    }

    h1 {
        max-width: none;
        font-size: clamp(2.45rem, 10vw, 3.6rem);
        line-height: 1.02;
    }

    h2 {
        font-size: clamp(1.9rem, 7vw, 2.5rem);
    }

    .eyebrow {
        min-height: 34px;
        padding: 7px 12px;
        margin-bottom: 16px;
        font-size: 0.72rem;
    }

    .section-heading {
        margin-bottom: 30px;
    }

    .section-text,
    .hero__text {
        font-size: 0.98rem;
        line-height: 1.72;
    }

    .disk-offer__layout {
        gap: 14px;
    }

    .disk-offer__card {
        padding: 20px;
        border-radius: 20px;
    }

    .disk-offer__visual {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .disk-offer__portrait-wrap,
    html[dir="rtl"] .disk-offer__portrait-wrap {
        grid-column: auto;
        grid-row: auto;
        max-width: 302px;
        margin: 0 auto;
    }

    .disk-offer__quote,
    .disk-offer__doctor,
    html[dir="rtl"] .disk-offer__quote,
    html[dir="rtl"] .disk-offer__doctor {
        grid-column: auto;
        text-align: left;
    }

    html[dir="rtl"] .disk-offer__quote,
    html[dir="rtl"] .disk-offer__doctor {
        text-align: right;
    }

    .disk-offer__quote {
        font-size: 0.96rem;
        line-height: 1.42;
        font-weight: 700;
    }

    .disk-offer__quote::before {
        font-size: 1.8rem;
        margin-bottom: 4px;
    }

    .disk-offer__doctor strong {
        font-size: 1.02rem;
        line-height: 1.25;
    }

    .disk-offer__doctor p {
        margin-top: 4px;
        font-size: 0.82rem;
        line-height: 1.45;
    }

    .disk-offer__actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .disk-offer__actions .btn {
        width: 100%;
        min-width: 0;
        min-height: 48px;
        font-size: 0.95rem;
        padding-inline: 16px;
    }

    .disk-offer__stats {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .disk-offer__stat {
        padding: 14px 12px;
        border-radius: 14px;
    }

    .disk-offer__stat strong {
        font-size: 1.8rem;
    }

    .disk-offer__stat span {
        margin-top: 4px;
        font-size: 0.82rem;
    }

    .service-card--refined {
        padding: 16px 12px 14px;
        border-radius: 16px;
        gap: 8px;
    }

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

    .service-card__media {
        height: 74px;
        border-radius: 12px;
    }

    .service-card__image--contain {
        padding: 1px 0;
    }

    .service-grid--services-page {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .service-card--services-page {
        min-height: auto;
        padding: 24px 20px 22px;
        border-radius: 22px;
    }

    .service-card--services-page::before {
        left: 20px;
        width: 44px;
    }

    .service-card__index {
        font-size: 1.25rem;
    }

    .service-card--refined h3 {
        font-size: 0.86rem;
        line-height: 1.28;
    }

    .service-card--refined p {
        font-size: 0.76rem;
        line-height: 1.46;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
    }

    .why-grid--editorial {
        gap: 18px;
    }

    .why-card--editorial {
        padding-left: 46px;
    }

    .why-card--editorial::before {
        width: 30px;
        height: 30px;
        top: 2px;
    }

    .why-card--editorial p {
        max-width: none;
    }

    .footer {
        padding: 28px 0 24px;
    }

}

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

    .header__inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        padding: 10px;
        gap: 10px;
    }

    .logo {
        gap: 8px;
        min-width: 0;
    }

    .logo__media {
        width: 104px;
        height: 38px;
        border-radius: 12px;
    }

    .logo__title {
        font-size: 0.86rem;
        line-height: 1.1;
        max-width: 128px;
    }

    .logo__subtitle {
        display: none;
    }

    .call-fab {
        width: 58px;
        height: 58px;
        right: 24px;
        bottom: 24px;
        right: calc(24px + env(safe-area-inset-right));
        bottom: calc(24px + env(safe-area-inset-bottom));
    }

    html[dir="rtl"] .call-fab {
        left: 16px;
        right: auto;
    }

    .call-fab__inner {
        width: 24px;
        height: 24px;
    }

    h1 {
        max-width: none;
        font-size: clamp(2.15rem, 11vw, 3.1rem);
        letter-spacing: -0.04em;
    }

    h2 {
        font-size: clamp(1.72rem, 8vw, 2.25rem);
    }

    .hero__frame--premium,
    .page-hero__inner,
    .page-card,
    .detail-card {
        padding: 18px;
        border-radius: 22px;
    }

    .lang-switcher__trigger {
        min-height: 42px;
        max-width: 154px;
        padding: 6px 10px 6px 8px;
        gap: 7px;
    }

    .lang-switcher__current {
        gap: 6px;
        min-width: 0;
    }

    .lang-switcher__current-text {
        font-size: 0.74rem;
        max-width: 78px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .lang-switcher__meta {
        display: none;
    }

    .lang-switcher__menu {
        top: calc(100% + 10px);
        right: 0;
        min-width: 184px;
        padding: 6px;
        border-radius: 18px;
    }

    .lang-switcher__link {
        min-height: 42px;
        padding: 9px 10px;
        gap: 8px;
        font-size: 0.84rem;
    }

    .lang-switcher__flag {
        width: 16px;
        height: 16px;
        flex-basis: 16px;
    }

    .page-hero__inner--services {
        padding: 20px 18px;
    }

    .page-hero__layout {
        gap: 22px;
    }

    .services-intro {
        padding: 18px;
        border-radius: 20px;
        gap: 14px;
    }

    .services-intro__item {
        gap: 12px;
    }

    .services-intro__item-index {
        min-width: 38px;
        min-height: 38px;
        border-radius: 12px;
        font-size: 0.82rem;
    }

    .services-intro__note {
        padding-top: 14px;
        font-size: 0.9rem;
    }

    .hero-scene,
    .hero-media {
        min-height: auto;
    }

    .hero-media__frame,
    .hero-media__image {
        min-height: 320px;
    }

    .lead-attraction__card {
        padding: 18px 16px 16px;
        border-radius: 24px;
    }

    .lead-attraction__title {
        font-size: 1.45rem;
    }

    .lead-attraction__subtitle {
        font-size: 0.95rem;
    }

    .lead-attraction__item {
        gap: 10px;
        font-size: 0.92rem;
    }

    .lead-attraction__icon {
        width: 12px;
        height: 12px;
        flex-basis: 12px;
    }

    .lead-attraction__image-frame {
        min-height: 236px;
        border-radius: 20px;
        padding: 6px 6px 0;
    }

    .lead-attraction__image {
        min-height: 236px;
        object-position: center bottom;
    }

    .lead-attraction__after {
        padding-top: 16px;
    }

    .lead-attraction__after p {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .lead-attraction__actions {
        margin-top: 14px;
        gap: 10px;
    }

    .disk-offer__layout {
        gap: 10px;
    }

    .disk-offer__visual {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .disk-offer__portrait-wrap,
    html[dir="rtl"] .disk-offer__portrait-wrap {
        grid-column: auto;
        grid-row: auto;
        max-width: 248px;
        margin: 0 auto;
    }

    .disk-offer__quote,
    .disk-offer__doctor,
    html[dir="rtl"] .disk-offer__quote,
    html[dir="rtl"] .disk-offer__doctor {
        grid-column: auto;
        text-align: left;
    }

    html[dir="rtl"] .disk-offer__quote,
    html[dir="rtl"] .disk-offer__doctor {
        text-align: right;
    }

    .disk-offer__quote {
        font-size: 0.9rem;
        line-height: 1.38;
    }

    .disk-offer__quote::before {
        font-size: 1.55rem;
    }

    .disk-offer__doctor strong {
        font-size: 0.94rem;
    }

    .disk-offer__doctor p {
        font-size: 0.76rem;
        line-height: 1.4;
    }

    .disk-offer__actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .disk-offer__actions .btn {
        width: 100%;
        min-width: 0;
        min-height: 46px;
        font-size: 0.9rem;
    }

    .disk-offer__stats {
        grid-template-columns: 1fr;
    }


    .disk-offer__card {
        padding: 20px;
        border-radius: 20px;
    }

    .disk-offer__title {
        font-size: 1.24rem;
        margin-bottom: 10px;
    }

    .disk-offer__method {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .disk-offer__text {
        font-size: 0.84rem;
        line-height: 1.5;
    }

    .disk-offer__actions .btn {
        min-height: 50px;
    }

    .disk-offer__stats {
        margin-top: 12px;
        gap: 7px;
    }

    .disk-offer__stat {
        padding: 11px 10px;
        border-radius: 12px;
    }

    .disk-offer__stat strong {
        font-size: 1.56rem;
    }

    .disk-offer__stat span {
        font-size: 0.72rem;
    }

    .service-grid--refined {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .service-grid--services-page {
        gap: 14px;
        grid-template-columns: 1fr;
    }

    .service-card--services-page {
        padding: 20px 16px 18px;
        border-radius: 18px;
        gap: 10px;
    }

    .service-card--services-page::before {
        left: 16px;
        width: 38px;
    }

    .service-card--services-page h3 {
        font-size: 1rem;
        line-height: 1.35;
    }

    .service-card--services-page p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .service-card--refined {
        padding: 14px 10px 12px;
        border-radius: 14px;
        gap: 7px;
    }

    .service-card--refined::before {
        left: 10px;
        width: 32px;
    }

    .service-card--refined h3 {
        font-size: 0.8rem;
    }

    .service-card--refined p {
        font-size: 0.7rem;
        line-height: 1.38;
        -webkit-line-clamp: 3;
    }

    .service-card__media {
        height: 64px;
        border-radius: 10px;
    }

    .service-card__image--contain {
        padding: 0;
    }

    .btn {
        min-height: 50px;
        padding: 13px 18px;
        font-size: 0.94rem;
    }

    .why-card--editorial {
        padding-left: 0;
        padding-top: 42px;
    }

    .why-card--editorial::before {
        top: 0;
        left: 0;
    }

    .footer {
        padding: 22px 0 24px;
    }

    body::before {
        width: 260px;
        height: 260px;
        right: -80px;
    }

    body::after {
        width: 220px;
        height: 220px;
        left: -90px;
    }
}

@media (max-width: 400px) {
    .service-grid--refined {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
    }

    .service-card--refined p {
        -webkit-line-clamp: 3;
    }

    .service-card--refined {
        padding: 12px 8px 10px;
        border-radius: 12px;
    }

    .service-card__media {
        height: 56px;
        border-radius: 9px;
    }

    .service-card--refined h3 {
        font-size: 0.74rem;
    }

    .service-card--refined p {
        font-size: 0.66rem;
        line-height: 1.32;
    }
}

/* Services premium readability refresh */
.service-grid--refined {
    gap: 14px;
}

.service-card--refined {
    padding: 18px 16px 16px;
    border-radius: 18px;
    gap: 9px;
}

.service-card__media {
    position: relative;
    width: 100%;
    height: 110px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(20, 57, 97, 0.1);
    background: linear-gradient(180deg, #edf5f4, #e1eeef);
}

.service-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.service-card__image--wellness {
    object-fit: cover;
    object-position: center 32%;
}

.service-card__problem {
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 8px;
    min-height: 24px;
    padding: 4px 8px;
    border-radius: 8px;
    background: rgba(12, 69, 90, 0.7);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    backdrop-filter: blur(3px);
}

.service-card--refined h3 {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.26;
}

.service-card--refined p {
    font-size: 0.78rem;
    line-height: 1.45;
    -webkit-line-clamp: 3;
}

@media (max-width: 720px) {
    .service-grid--refined {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .service-card--refined {
        padding: 12px 10px 10px;
        border-radius: 14px;
        gap: 7px;
    }

    .service-card__media {
        height: 88px;
        border-radius: 10px;
    }

    .service-card__problem {
        left: 6px;
        right: 6px;
        bottom: 6px;
        min-height: 22px;
        padding: 3px 7px;
        border-radius: 7px;
        font-size: 0.62rem;
    }

    .service-card--refined h3 {
        font-size: 0.8rem;
    }

    .service-card--refined p {
        font-size: 0.68rem;
        line-height: 1.36;
    }
}

@media (max-width: 540px) {
    .service-grid--refined {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
    }

    .service-card--refined {
        padding: 10px 8px 9px;
        border-radius: 12px;
    }

    .service-card__media {
        height: 76px;
        border-radius: 9px;
    }

    .service-card__problem {
        font-size: 0.58rem;
        min-height: 20px;
    }

    .service-card--refined h3 {
        font-size: 0.74rem;
    }

    .service-card--refined p {
        font-size: 0.64rem;
        line-height: 1.32;
    }
}

@media (max-width: 400px) {
    .service-grid--refined {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
    }

    .service-card__media {
        height: 68px;
        border-radius: 8px;
    }

    .service-card__problem {
        left: 5px;
        right: 5px;
        bottom: 5px;
        font-size: 0.54rem;
        min-height: 18px;
    }

    .service-card--refined p {
        -webkit-line-clamp: 3;
    }
}

/* Services redesign */
.services-pro .section-heading {
    margin-bottom: 28px;
}

.services-pro-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 16px;
    align-items: stretch;
}

.services-pro-card {
    display: grid;
    grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
    align-items: stretch;
    gap: 14px;
    height: 100%;
    padding: 14px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 250, 0.97));
    border: 1px solid rgba(18, 63, 91, 0.1);
    box-shadow: 0 14px 30px rgba(20, 66, 81, 0.08);
}

.services-pro-card__media {
    min-height: 178px;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(18, 63, 91, 0.1);
    background: #dfeaec;
}

.services-pro-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    padding: 0;
}

.services-pro-card__image--photo {
    object-position: center 40%;
}

.services-pro-card__body {
    min-width: 0;
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr) auto;
    gap: 8px;
}

.services-pro-card__issue {
    min-height: 26px;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(37, 132, 141, 0.12);
    color: #1d5f69;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.2;
}

.services-pro-card__body h3 {
    margin: 0;
    color: #113f58;
    font-size: 1.42rem;
    line-height: 1.16;
    letter-spacing: -0.02em;
    min-height: calc(1.16em * 2);
}

.services-pro-card__body p {
    margin: 0;
    color: #5f7a84;
    font-size: 1.01rem;
    line-height: 1.56;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.services-pro-card__btn {
    margin-top: 2px;
    min-height: 48px;
    width: min(188px, 100%);
    padding-inline: 20px;
    font-size: 0.93rem;
}

html[dir="rtl"] .services-pro-card {
    direction: rtl;
}

html[dir="rtl"] .services-pro-card__body {
    text-align: right;
}

@media (max-width: 1120px) {
    .services-pro-card {
        grid-template-columns: minmax(150px, 190px) minmax(0, 1fr);
    }

    .services-pro-card__media {
        min-height: 160px;
    }

    .services-pro-card__body h3 {
        font-size: 1.2rem;
    }

    .services-pro-card__body p {
        font-size: 0.9rem;
    }
}

@media (max-width: 860px) {
    .services-pro-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 12px;
    }
}

@media (max-width: 720px) {
    .services-pro .section-heading {
        margin-bottom: 18px;
    }

    .services-pro-card {
        grid-template-columns: 124px minmax(0, 1fr);
        gap: 10px;
        padding: 10px;
        border-radius: 16px;
    }

    .services-pro-card__media {
        min-height: 116px;
        border-radius: 12px;
    }

    .services-pro-card__body {
        grid-template-rows: auto auto minmax(0, 1fr) auto;
        gap: 6px;
    }

    .services-pro-card__issue {
        min-height: 22px;
        padding: 3px 8px;
        font-size: 0.6rem;
    }

    .services-pro-card__body h3 {
        font-size: 0.92rem;
        line-height: 1.2;
        min-height: calc(1.2em * 2);
    }

    .services-pro-card__body p {
        font-size: 0.74rem;
        line-height: 1.4;
        -webkit-line-clamp: 3;
    }

    .services-pro-card__btn {
        min-height: 38px;
        width: min(132px, 100%);
        padding-inline: 12px;
        font-size: 0.74rem;
    }
}

@media (max-width: 420px) {
    .services-pro-card {
        grid-template-columns: 108px minmax(0, 1fr);
        gap: 8px;
        padding: 9px;
        border-radius: 14px;
    }

    .services-pro-card__media {
        min-height: 102px;
        border-radius: 10px;
    }

    .services-pro-card__body h3 {
        font-size: 0.82rem;
        min-height: calc(1.2em * 2);
    }

    .services-pro-card__issue {
        min-height: 20px;
        font-size: 0.56rem;
        padding: 2px 7px;
    }

    .services-pro-card__body p {
        font-size: 0.68rem;
        line-height: 1.35;
        -webkit-line-clamp: 3;
    }

    .services-pro-card__btn {
        min-height: 34px;
        width: min(116px, 100%);
        font-size: 0.68rem;
        padding-inline: 10px;
    }
}
