:root {
    --ink: #173456;
    --muted: #5d7188;
    --teal: #16a7a0;
    --teal2: #0a8b7e;
    --line: #dbeef3;
    --bg: #f7fcff;
    --card: #fff;
    --shadow: 0 18px 45px rgba(26, 80, 120, .10);
    --r: 24px;
    --header-h: 86px
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding-top: var(--header-h);
    font-family: Inter, Arial, sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, #fff 0, #f8fdff 100%);
    font-size: 16px;
    line-height: 1.55;
    overflow-x: hidden;
}

.wrap {
    width: min(1180px, calc(100% - 56px));
    margin: 0 auto;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    background: rgba(255, 255, 255, .86);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(219, 238, 243, .65)
}

.nav {
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
    z-index: 50
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
    flex-shrink: 0
}

.nav-actions__btn {
    white-space: nowrap
}

.burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    margin-left: 0;
    padding: 0;
    border: 1px solid rgba(219, 238, 243, .9);
    border-radius: 12px;
    background: #f7fafc;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
    z-index: 51
}

.burger__line {
    display: block;
    width: 20px;
    height: 2px;
    margin: 0 auto;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease
}

.burger.is-open {
    border-color: rgba(22, 167, 160, .35);
    background: #eefaf9
}

.burger.is-open .burger__line {
    background: var(--teal)
}

.burger.is-open .burger__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.burger.is-open .burger__line:nth-child(2) {
    opacity: 0
}

.burger.is-open .burger__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.nav-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 88vw);
    height: 100dvh;
    margin-left: 0;
    padding: 88px 24px 32px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: #fff;
    box-shadow: -12px 0 40px rgba(26, 80, 120, .12);
    z-index: 40;
    transform: translateX(100%);
    transition: transform .3s ease, visibility .3s ease;
    overflow-y: auto;
    visibility: hidden;
    pointer-events: none
}

.nav-panel.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto
}

.nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(23, 52, 86, .35);
    z-index: 35;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease
}

.nav-overlay.is-open {
    opacity: 1;
    pointer-events: auto
}

body.menu-open {
    overflow: hidden
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--ink);
    min-width: 235px
}

.logo img {
    width: 70px;
    height: 70px;
    object-fit: contain
}

.logo strong {
    font-size: 30px;
    line-height: 1;
    color: #4d5554;
    font-weight: 600
}

.logo span {
    display: block;
    font-size: 16px;
    color: #4d5554;
    margin-top: 2px
}

.menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0
}

.menu a {
    color: var(--ink);
    font-size: 16px;
    text-decoration: none;
    position: relative;
    padding: 14px 0;
    border-bottom: 1px solid var(--line)
}

.menu a.active,
.menu a:hover {
    color: var(--teal)
}

.menu a.active {
    font-weight: 600
}

.btn {
    border: 0;
    background: linear-gradient(135deg, var(--teal), var(--teal2));
    color: white;
    border-radius: 12px;
    padding: 15px 24px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(22, 167, 160, .24);
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.header .btn {
    padding: 8px 10px;
    font-size: 15px;
}

.contacts-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0
}

.contacts-bar-slot--panel {
    display: none
}

.nav-panel__footer {
    display: none
}

.nav-actions__btn--panel {
    display: none
}

.phone {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #f7fafc;
    border: 1px solid rgba(219, 238, 243, .9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1b65d8;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease
}

.phone__icon {
    width: 22px;
    height: 22px;
    display: block
}

.phone:hover {
    transform: translateY(-2px);
    background: #eef4ff;
    border-color: #b8d4f5;
    box-shadow: 0 8px 18px rgba(27, 101, 216, .18)
}

.socials {
    display: flex;
    align-items: center;
    gap: 8px
}

.social {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #f7fafc;
    border: 1px solid rgba(219, 238, 243, .9);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease
}

.social__icon {
    width: 22px;
    height: 22px;
    display: block
}

.social--telegram:hover {
    transform: translateY(-2px);
    background: #eef9ff;
    border-color: #9ed8f7;
    box-shadow: 0 8px 18px rgba(55, 187, 254, .28)
}

.social--whatsapp:hover {
    transform: translateY(-2px);
    background: #f0faf0;
    border-color: #a8ddb0;
    box-shadow: 0 8px 18px rgba(103, 193, 94, .28)
}

.social--max:hover {
    transform: translateY(-2px);
    background: #f3f0ff;
    border-color: #c8b8f5;
    box-shadow: 0 8px 18px rgba(85, 51, 238, .24)
}

.social--instagram:hover {
    transform: translateY(-2px);
    background: #fdf2f8;
    border-color: #f0b6d4;
    box-shadow: 0 8px 18px rgba(193, 53, 132, .22)
}

.socials--contacts {
    margin-top: 4px
}

.socials--contacts .social {
    width: auto;
    height: auto;
    padding: 0;
    border: 0;
    background: transparent;
    border-radius: 0
}

.socials--contacts .social__icon {
    width: 20px;
    height: 20px
}

.socials--header .social--telegram .social__icon,
.socials--header .social--instagram .social__icon,
.socials--contacts .social--telegram .social__icon,
.socials--contacts .social--instagram .social__icon {
    width: 24px;
    height: 24px
}

.socials--contacts .social--telegram:hover,
.socials--contacts .social--whatsapp:hover,
.socials--contacts .social--max:hover,
.socials--contacts .social--instagram:hover {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    transform: scale(1.08)
}

.contact a {
    color: var(--teal);
    text-decoration: none
}

.contact a:hover {
    color: var(--teal2)
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-width: fit-content
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px
}

.contact-item__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--teal)
}

.contact-item__icon svg {
    width: 100%;
    height: 100%;
    display: block
}

.contact-item__title {
    display: block;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.3;
    color: var(--ink);
    margin-bottom: 6px
}

.contact-item__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: var(--ink)
}

.contact-item--socials .socials--contacts {
    margin-top: 0
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 82px 0 46px
}

.hero:after,
.wave:after {
    content: "";
    position: absolute;
    right: -70px;
    top: 30px;
    width: 600px;
    height: 460px;
    background: radial-gradient(circle at 30% 40%, rgba(22, 167, 160, .25), transparent 35%), radial-gradient(circle at 70% 60%, rgba(43, 116, 255, .25), transparent 40%);
    filter: blur(2px);
    opacity: .9;
    border-radius: 50%;
    z-index: -1
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 50px;
    align-items: center
}

.eyebrow {
    color: var(--teal);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 13px
}

.hero h1,
.section h2 {
    font-size: 58px;
    line-height: 1.05;
    margin: 14px 0 22px;
    letter-spacing: -.04em
}

.hero h1 em,
.section h2 em {
    font-style: normal;
    color: var(--teal)
}

.lead {
    font-size: 19px;
    color: var(--muted);
    max-width: 520px;
    margin-bottom: 0;
}

.hero-art {
    min-height: 410px;
    border-radius: 30px;
    background: linear-gradient(120deg, rgba(255, 255, 255, .45), rgba(255, 255, 255, .92)), url('../images/hero-clinic.svg');
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
    position: relative
}

.hero-art .mark {
    position: absolute;
    right: 120px;
    top: 120px;
    text-align: center;
    opacity: .9
}

@media (max-width: 900px) {
    .hero-art .mark {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        top: 40px;
    }
}

.hero-art .mark img {
    width: 160px
}

.pill-row,
.tabs {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 35px
}

.pill,
.tab {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .78);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 15px 20px;
    box-shadow: 0 10px 25px rgba(30, 95, 120, .05);
    font-weight: 700;
    font-size: 14px
}

.tab.active {
    background: var(--teal);
    color: white;
    border-color: var(--teal)
}

button.tab {
    cursor: pointer;
    font: inherit;
    color: inherit
}

.icon {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    background: #eafafa;
    color: var(--teal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex: 0 0 auto
}

.icon svg {
    width: 15px;
    height: 15px;
    display: block
}

.section {
    padding: 62px 0
}

@media (max-width: 720px) {
    .section {
        padding: 22px 0
    }
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center
}

.image-card {
    min-height: 340px;
    border-radius: 28px;
    background: linear-gradient(120deg, rgba(255, 255, 255, .2), rgba(255, 255, 255, .72)), url('../images/clinic-room.svg');
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow)
}

@media (max-width: 720px) {
    .image-card {
        display: none;
    }
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 34px
}

.stat strong {
    display: block;
    font-size: 30px;
    color: var(--teal)
}

.cards {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px 
}

.cards--directions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
 
.cards--directions .card:last-child {
    grid-column: 1 / -1;
}

.card,
.service,
.doctor,
.doc-row,
.price-card,
.contact {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--r);
    box-shadow: var(--shadow)
}

.card {
    padding: 24px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%
}

.cards--directions .card {
    padding: 24px; 
}

.cards--directions .card .icon {
    width: 64px;
    height: 64px;
    font-size: 32px;
}

.cards--directions .card .icon svg {
    width: 34px;
    height: 34px;
}

.cards--directions .card .icon img {
    width: 34px;
    height: 34px;
}

.cards--directions .card h3 {
    font-size: 20px;
}

.cards--directions .card p {
    font-size: 15px;
}

.card .icon {
    margin: 0 0 14px;
    width: 54px;
    height: 54px;
    font-size: 27px;
    flex-shrink: 0
}

.card .icon svg {
    width: 26px;
    height: 26px
}

.card .icon img {
    width: 26px;
    height: 26px;
    display: block;
    object-fit: contain;
}

.card b,
.card h3 {
    display: block;
    width: 100%;
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.35
}

.card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--muted)
}

.service {
    display: grid;
    grid-template-columns: 285px 1fr 1.1fr 150px;
    gap: 30px;
    align-items: center;
    padding: 22px;
    margin-bottom: 20px
}

.service h2 {
    font-size: 26px;
    margin: 12px 0 8px
}

.service-img {
    height: 170px;
    border-radius: 18px;
    background: linear-gradient(135deg, #dff8ff, #88cfe5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal2);
}

.service-img svg {
    width: 72px;
    height: 72px;
    display: block;
}

.service-img img {
    width: 72px;
    height: 72px;
    display: block;
    object-fit: contain;
}

.service .small-btn {
    justify-self: start;
    cursor: pointer;
    font: inherit;
}

.service-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.service-modal[hidden] {
    display: none;
}

.service-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(23, 52, 86, .45);
}

.service-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(640px, 100%);
    max-height: min(80vh, 720px);
    overflow: auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 28px 28px 24px;
    box-shadow: var(--shadow);
    scrollbar-width: thin;
    scrollbar-color: var(--teal) #e6f6f5;
}

.service-modal__dialog::-webkit-scrollbar {
    width: 8px;
}

.service-modal__dialog::-webkit-scrollbar-button {
    display: none;
    width: 0;
    height: 0;
}

.service-modal__dialog::-webkit-scrollbar-track {
    background: #e6f6f5;
    border-radius: 999px;
    margin: 10px 0;
}

.service-modal__dialog::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--teal), var(--teal2));
    border-radius: 999px;
    border: 2px solid #e6f6f5;
}

.service-modal__dialog::-webkit-scrollbar-thumb:hover {
    background: var(--teal2);
}

.service-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: var(--muted);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.service-modal__close:hover {
    background: rgba(22, 167, 160, .08);
    color: var(--teal2);
}

.service-modal__title {
    margin: 0 36px 16px 0;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--ink);
}

.service-modal__body {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}

.service-modal__body p {
    margin: 0 0 14px;
}

.service-modal__body p:last-child {
    margin-bottom: 0;
}

body.service-modal-open {
    overflow: hidden;
}

.checks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px
}

.checks--two-cols {
    grid-template-columns: 1fr 1fr;
    column-gap: 18px;
    font-size: 14px;
}

.checks li:before {
    content: "✓";
    color: white;
    background: var(--teal);
    font-size: 11px;
    border-radius: 50%;
    padding: 1px 4px;
    margin-right: 10px
}

.small-btn {
    border: 1px solid var(--teal);
    color: var(--teal);
    background: white;
    border-radius: 10px;
    padding: 11px 18px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    justify-content: center
}

.doctors {
    display: grid;
    gap: 18px
}

.doctor {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 30px;
    align-items: start;
    padding: 24px
}

.doctor__media {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 160px
}

.doctor__cta--desktop {
    width: 100%;
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px
}

.doctor__cta--mobile {
    display: none
}

.avatar {
    width: 160px;
    height: 160px;
    border-radius: 18px;
    background: linear-gradient(180deg, #f0f8fb, #d7eff5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 74px
}

.avatar--photo {
    padding: 0;
    overflow: hidden;
    background: #e8f4f8
}

.avatar--photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.doctors-loading {
    margin: 0;
    color: var(--muted);
    text-align: center;
    padding: 24px 0
}

.doctor b,
.doctor__specialty {
    color: var(--teal);
    font-size: 14px;
    margin: 0
}

.doctor h3 {
    margin: .2em 0;
    font-size: 23px
}

.prices {
    display: grid;
    gap: 18px
}

.prices-list {
    display: contents
}

.prices-loading {
    grid-column: 1 / -1;
    margin: 0;
    color: var(--muted);
    text-align: center;
    padding: 24px 0
}

.price-card {
    padding: 24px
}

.price-card h3 {
    font-size: 26px;
    margin: 0 0 16px
}

.price-card--full .price-card__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.price-card--full .price-card__top h3 {
    margin: 0;
    flex: 1
}

.price-card--full .price-card__top .download {
    flex-shrink: 0
}

.price-line {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid #e8f2f5;
    padding: 9px 0
}

.price-line span {
    flex: 1;
    min-width: 0
}

.price-line strong {
    flex-shrink: 0;
    white-space: nowrap
}

.legal-list {
    display: grid;
    gap: 18px
}

.privacy-document {
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: linear-gradient(120deg, #f8fdff, #fff);
    box-shadow: 0 12px 32px rgba(26, 80, 120, .06);
}

.privacy-text {
    margin: 0;
    color: var(--ink);
    font-size: 15px;
    line-height: 1.7;
    white-space: pre-line;
}

.privacy-loading {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.legal-loading {
    margin: 0;
    color: var(--muted);
    text-align: center;
    padding: 24px 0;
    font-size: 15px;
}

.patients-list {
    display: grid;
    gap: 14px;
}

.patient-section {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: linear-gradient(120deg, #f8fdff, #fff);
    box-shadow: 0 10px 28px rgba(26, 80, 120, .05);
    overflow: hidden;
}

.patient-section__summary {
    display: grid;
    grid-template-columns: 48px 1fr 24px;
    gap: 16px;
    align-items: center;
    padding: 20px 22px;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.patient-section__summary::-webkit-details-marker {
    display: none;
}

.patient-section__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #eafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    flex-shrink: 0;
}

.patient-section__svg {
    width: 22px;
    height: 22px;
    display: block;
}

.patient-section__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
}

.patient-section__chevron {
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--teal);
    border-bottom: 2px solid var(--teal);
    transform: rotate(45deg);
    justify-self: end;
    transition: transform .2s ease;
}

.patient-section[open] .patient-section__chevron {
    transform: rotate(-135deg);
    margin-top: 6px;
}

.patient-section__body {
    padding: 0 22px 22px 86px;
}

.patient-section__text {
    margin: 0;
    color: var(--ink);
    font-size: 15px;
    line-height: 1.7;
    white-space: pre-line;
}

.patient-section__text a {
    color: var(--teal);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.patient-section__links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.patient-section__download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding: 12px 18px;
    border-radius: 14px;
    background: #eafafa;
    color: var(--teal);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: background .2s ease;
}

.patient-section__download-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.patient-section__download:hover {
    background: #d8f4f4;
}

@media (max-width: 720px) {
    .patient-section__summary {
        grid-template-columns: 40px 1fr 20px;
        gap: 12px;
        padding: 16px;
    }

    .patient-section__icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .patient-section__svg {
        width: 18px;
        height: 18px;
    }

    .patient-section__title {
        font-size: 16px;
    }

    .patient-section__body {
        padding: 0 16px 18px 16px;
    }
}

.doc-row {
    display: grid;
    grid-template-columns: 72px 1fr 58px;
    gap: 24px;
    align-items: center;
    padding: 26px
}

@media (max-width: 720px) {
    .doc-row {
        grid-template-columns: 1fr 58px;
        gap: 16px;
        padding: 18px 16px;
    }

    .doc-row>.icon {
        display: none;
    }
}

.download {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: #eafafa;
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none
}

.download svg {
    width: 28px;
    height: 28px;
}

.contact {
    display: flex;
    gap: 30px;
    padding: 28px;
    background: linear-gradient(120deg, #f2fbff, #fff)
}

.contact>* {
    flex: 1;
    min-width: 0
}

h2.contact-form__title {
    font-size: 29px;
    line-height: 1.15;
    margin: 0 0 12px;
    color: var(--ink);
    font-weight: 800
}

.contact-form__lead {
    margin: 0 0 24px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.5
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 2px;
    cursor: pointer;
    user-select: none;
    position: relative;
}

.form-consent__input {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 1px;
    height: 1px;
    margin: 0;
    padding: 0;
    border: 0;
    pointer-events: none;
}

.form-consent__box {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 1px;
    border: 1.5px solid var(--line);
    border-radius: 5px;
    background: rgba(255, 255, 255, .75);
    position: relative;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.form-consent__box::after {
    content: "";
    position: absolute;
    top: 1px;
    left: 4px;
    width: 5px;
    height: 9px;
    border: solid var(--teal);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    opacity: 0;
    transition: transform .15s ease, opacity .15s ease;
}

.form-consent__input:checked+.form-consent__box {
    border-color: var(--teal);
    background: rgba(22, 167, 160, .08);
}

.form-consent__input:checked+.form-consent__box::after {
    transform: rotate(45deg) scale(1);
    opacity: 1;
}

.form-consent__input:focus-visible+.form-consent__box {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(22, 167, 160, .12);
}

.form-consent.is-invalid .form-consent__box {
    border-color: #e05555;
    box-shadow: 0 0 0 3px rgba(224, 85, 85, .14);
    background: #fff;
}

.form-consent__text {
    font-size: 12px;
    color: #7b8da0;
    line-height: 1.60;
}

.form-consent__link {
    color: var(--teal);
    text-decoration: underline;
    text-decoration-color: rgba(22, 167, 160, .35);
    text-underline-offset: 2px;
    transition: color .2s ease, text-decoration-color .2s ease;
}

.form-consent__link:hover {
    color: var(--teal2);
    text-decoration-color: currentColor;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.form-field {
    display: block;
    position: relative;
}

.form input:not([type="checkbox"]):not([type="radio"]),
.form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, .75);
    font: inherit;
    color: var(--ink);
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.form textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.5;
}

.form-field--date .form__date-display {
    padding-right: 48px;
}

.form__date-native {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    opacity: 0;
    pointer-events: none;
    border: 0;
    padding: 0;
    margin: 0;
    background: transparent;
}

.form-field__calendar {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}

.form-field__calendar svg {
    width: 20px;
    height: 20px;
}

.form-field__calendar:hover {
    background: rgba(22, 167, 160, .1);
    color: var(--teal2);
}

.form-field.is-invalid input,
.form-field.is-invalid textarea {
    border-color: #e05555;
    box-shadow: 0 0 0 3px rgba(224, 85, 85, .14);
    background: #fff;
}

.form-field.is-invalid input:focus,
.form-field.is-invalid textarea:focus {
    border-color: #e05555;
    box-shadow: 0 0 0 3px rgba(224, 85, 85, .18);
}

.form input:not([type="checkbox"]):not([type="radio"])::placeholder {
    color: #8fa3b8
}

.form input:not([type="checkbox"]):not([type="radio"]):focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(22, 167, 160, .12);
    background: #fff
}

.form__submit {
    width: 100%;
    margin-top: 6px;
    padding: 17px 24px;
    font-size: 16px;
    cursor: pointer;
    transition: background .3s ease, box-shadow .3s ease;
    position: relative;
    min-height: 54px;
}

.form__submit:hover:not(:disabled) {
    background: var(--teal2);
}

.form__submit:disabled:not(.success) {
    cursor: wait;
}

.form__submit.is-loading {
    color: transparent;
    pointer-events: none;
}

.form__submit.is-loading::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255, 255, 255, .35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: form-submit-spin .7s linear infinite;
}

.form__submit.success {
    background: linear-gradient(135deg, #2db88a, #1a9170);
    box-shadow: 0 10px 24px rgba(42, 158, 112, .24);
    pointer-events: none;
    font-size: 15px;
    line-height: 1.35;
    padding-block: 14px;
}

@keyframes form-submit-spin {
    to {
        transform: rotate(360deg);
    }
}

.map {
    min-height: 240px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: block
}

.map img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    display: block
}

.footer {
    padding: 40px 0 28px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
    text-align: center;
    border-top: 1px solid var(--line);
}

.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
    width: 100%;
    max-width: 820px;
}

.footer__warning {
    margin: 0;
    max-width: 100%;
    color: var(--ink);
    font-size: clamp(15px, 2.2vw, 18px);
    font-weight: 700;
    letter-spacing: .04em;
    line-height: 1.45;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.footer__links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    width: 100%;
    max-width: 100%;
}

.footer__links a {
    display: block;
    max-width: 100%;
    color: var(--teal2);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    overflow-wrap: anywhere;
}

.footer__links a:hover {
    color: var(--teal);
}

.footer__requisites {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.footer__requisites p {
    margin: 0;
}

.footer__copy {
    margin: 0;
    max-width: 100%;
    font-size: 12px;
    color: var(--muted);
    overflow-wrap: anywhere;
}

@media (max-width: 720px) {
    .footer {
        padding: 32px 0 24px;
    }

    .footer__inner {
        gap: 18px;
    }

    .footer__warning {
        font-size: 14px;
    }

    .footer__links {
        gap: 8px;
        font-size: 13px;
    }

    .footer__requisites {
        font-size: 13px;
    }
}

.page-hero {
    padding: 40px 0 40px;
    position: relative;
}

.breadcrumbs {
    margin-bottom: 16px
}

.breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 14px;
    line-height: 1.4
}

.breadcrumbs__item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted)
}

.breadcrumbs__item+.breadcrumbs__item::before {
    content: "/";
    color: #c5d9e4
}

.breadcrumbs a {
    color: var(--muted);
    text-decoration: none;
    transition: color .2s ease
}

.breadcrumbs a:hover {
    color: var(--teal)
}

.breadcrumbs__item[aria-current="page"] {
    color: var(--ink);
    font-weight: 500
}

.page-hero h1,
.page-hero h2 {
    font-size: 56px;
    margin: 0 0 18px
}

.page-hero h1 em,
.page-hero h2 em {
    font-style: normal;
    color: var(--teal)
}

.doctor-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px
}

.doctor-mini {
    padding: 18px
}

.doctor-mini .avatar {
    width: 100%;
    height: 180px
}

.doctor-mini h3 {
    font-size: 17px;
    margin: 12px 0 4px
}

.promo-hero {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center
}

.promo-hero .breadcrumbs {
    grid-column: 1 / -1;
    margin-bottom: 8px
}

.promo-hero__mark {
    opacity: .92
}

.promo-hero__mark img {
    width: min(220px, 36vw)
}

.promo-lead {
    margin: -8px 0 32px
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.promo-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--r);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column
}

.promo-card__media { 
    position: relative;
    height: 210px;
    flex-shrink: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #dff8ff, #88cfe5);
}

.promo-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.promo-card__media--empty {
    height: 140px;
}

.promo-card--no-image .promo-card__body {
    padding-top: 24px;
}

.promo-card__media--family {
    background-image: linear-gradient(135deg, rgba(23, 52, 86, .08), rgba(22, 167, 160, .12)),
        url("https://images.unsplash.com/photo-1511895426328-dc8714191300?auto=format&fit=crop&w=800&q=80")
}

.promo-card__media--birthday {
    background-image: linear-gradient(135deg, rgba(23, 52, 86, .08), rgba(22, 167, 160, .12)),
        url("https://images.unsplash.com/photo-1464349153735-7db50ed83c84?auto=format&fit=crop&w=800&q=80")
}

.promo-card__media--repeat {
    background-image: linear-gradient(135deg, rgba(23, 52, 86, .08), rgba(22, 167, 160, .12)),
        url("https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?auto=format&fit=crop&w=800&q=80")
}

.promo-card__badge {
    position: absolute;
    left: 18px;
    bottom: -22px;
    z-index: 1
}

.promo-card__badge .icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--teal);
    color: #fff;
    font-size: 18px;
    font-style: normal;
    box-shadow: 0 10px 24px rgba(22, 167, 160, .28)
}

.promo-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1
}

.promo-card__body h3 {
    margin: 0 0 10px;
    font-size: 22px
}

.promo-card__body p {
    margin: 0;
    color: var(--muted);
    flex: 1
}

.promo-card__link {
    margin-top: 18px;
    color: var(--teal);
    font-weight: 700;
    text-decoration: none
}

.promo-card__link:hover {
    color: var(--teal2)
}

.promo-card__link::after {
    content: " ›";
}

.section--soft {
    background: linear-gradient(180deg, rgba(247, 252, 255, .6) 0, rgba(255, 255, 255, 0) 100%);
}

@media (max-width: 720px) {
    .section--soft .wrap--reviews {
        padding: 0;
        width: 100%;
    }
}

@media (max-width: 720px) {
    .reviews-wrap {
        padding: 0 20px;
    }
}

.reviews-lead {
    max-width: 640px;
    margin-bottom: 18px;
}

.reviews-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 0 28px;
}

.patients-list+.reviews-actions {
    margin-top: 36px;
}

.reviews-actions+.review-form-block {
    margin-top: 8px;
}

.reviews-carousel {
    margin-bottom: 42px;
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

.reviews-carousel .swiper {
    width: 100%;
    min-width: 0;
    overflow: hidden;
    padding-left: 20px;
    padding-right: 20px;
}

.reviews-carousel .swiper-slide {
    padding: 4px 2px 8px;
    height: auto;
}

.review-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 28px 28px 24px;
    min-height: 210px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.review-stars {
    display: flex;
    gap: 2px;
    color: #d5e3eb;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 1px;
}

.review-stars__item.is-active {
    color: #e6a412;
}

.review-card__text {
    margin: 0;
    color: var(--ink);
    font-size: 16px;
    line-height: 1.65;
    flex: 1;
}

.review-card__text.reviews-loading,
.review-card__text.reviews-empty {
    color: var(--muted);
}

.review-card__author {
    margin: 0;
    font-weight: 700;
    color: var(--teal2);
    font-size: 15px;
}

.reviews-carousel__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 18px;
}

.reviews-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: border-color .2s ease, color .2s ease, background .2s ease;
}

.reviews-nav-btn:hover:not(:disabled) {
    border-color: var(--teal);
    color: var(--teal2);
    background: rgba(22, 167, 160, .06);
}

.reviews-nav-btn:disabled {
    opacity: .45;
    cursor: default;
}

.reviews-carousel .swiper-pagination {
    position: static;
    width: auto;
}

.reviews-carousel .swiper-pagination-bullet {
    background: var(--teal);
    opacity: .28;
}

.reviews-carousel .swiper-pagination-bullet-active {
    opacity: 1;
}

.review-form-block {
    max-width: 560px;
    margin: 0 auto;
    padding: 8px 0 0;
}

.patients-list+.review-form-block {
    margin-top: 36px;
}

.review-form-block__title {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 800;
    color: var(--ink);
}

.review-form-block__lead {
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.review-rating {
    margin: 0;
    padding: 0;
    border: 0;
    min-width: 0;
}

.review-rating__legend {
    margin: 0 0 8px;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
}

.review-rating__stars {
    display: inline-flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 4px;
    position: relative;
}

.review-rating__input {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 1px;
    height: 1px;
    margin: 0;
    padding: 0;
    border: 0;
    pointer-events: none;
}

.review-rating__star {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    color: #d5e3eb;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: color .15s ease, background .15s ease, transform .15s ease;
    user-select: none;
}

.review-rating__stars:not(:hover) .review-rating__input:checked+.review-rating__star,
.review-rating__stars:not(:hover) .review-rating__input:checked~.review-rating__star {
    color: #e6a412;
}

.review-rating__stars:hover .review-rating__star {
    color: #d5e3eb;
}

.review-rating__stars:hover .review-rating__star:hover,
.review-rating__stars:hover .review-rating__star:hover~.review-rating__star {
    color: #e6a412;
}

.review-rating__input:focus-visible+.review-rating__star {
    background: rgba(230, 164, 18, .12);
    box-shadow: 0 0 0 3px rgba(230, 164, 18, .18);
}

.review-rating__star:hover {
    transform: scale(1.08);
}

.review-rating.is-invalid .review-rating__star {
    color: #f0b0b0;
}

.review-rating.is-invalid .review-rating__legend {
    color: #e05555;
}

@media (max-width: 720px) {
    .review-card {
        padding: 22px 18px 20px;
        min-height: 0;
    }
}

.promo-offers {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.promo-offers-loading {
    color: var(--muted);
    margin: 0;
}

.promo-offer {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--r);
    box-shadow: var(--shadow);
    overflow: hidden;
    min-height: 200px;
}

.promo-offer__content {
    min-width: 0;
    padding: 28px 20px 28px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-offer__content h3 {
    margin: 0 0 10px;
    font-size: 26px;
}

.promo-offer__content p {
    margin: 0;
    color: var(--muted);
    max-width: 52ch;
}

.promo-offer__dates {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 14px;
    margin-bottom: 12px;
    color: var(--teal);
    font-size: 14px;
    font-weight: 700;
}

.promo-offer__period+.promo-offer__timer::before {
    content: "·";
    margin-right: 14px;
    color: rgba(22, 167, 160, .45);
    font-weight: 400;
}

.promo-offer__timer {
    color: var(--ink);
    font-weight: 600;
}

.promo-offer__link {
    display: inline-block;
    margin-top: 18px;
    color: var(--teal);
    font-weight: 700;
    text-decoration: none;
}

.promo-offer__link:hover {
    color: var(--teal2);
}

.promo-offer__link::after {
    content: " ›";
}

.promo-offer__discount {
    flex-shrink: 0;
    align-self: center;
    font-size: clamp(44px, 5vw, 68px);
    font-weight: 800;
    color: var(--teal);
    line-height: 1;
    padding: 0 12px;
    white-space: nowrap;
}

.promo-offer__media {
    flex: 0 0 min(30%, 320px);
    align-self: stretch;
    position: relative;
}

.promo-offer__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 var(--r) var(--r) 0;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 32%);
    mask-image: linear-gradient(to right, transparent 0%, #000 32%);
}

.promo-offer--no-image .promo-offer__content {
    padding-right: 28px;
}

.promo-note {
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 14px;
}

@media(max-width:1230px) {
    :root {
        --header-h: 92px
    }

    .nav {
        height: auto;
        min-height: 72px;
        padding: 10px 0
    }

    .logo {
        min-width: 0
    }
}

@media(max-width:800px) {
    .contacts-bar-slot--header {
        display: none
    }

    .nav-panel__footer {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        padding-top: 24px;
    }

    .contacts-bar-slot--panel {
        display: block
    }

    .contacts-bar-slot--panel .contacts-bar {
        justify-content: center
    }
}

@media(max-width:530px) {
    .nav-actions {
        display: none
    }

    .nav-actions__btn--panel {
        display: inline-flex;
        width: 100%;
        justify-content: center
    }
}

@media(max-width:1200px) {
    .cards {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }
}

@media(max-width:900px) {
    .nav-actions {
        gap: 10px
    }

    .nav-actions__btn {
        padding: 12px 14px;
        font-size: 14px
    }

    .header .btn {
        padding: 12px 14px
    }

    .wrap {
        width: min(100% - 28px, 1180px)
    }

    .hero-grid,
    .about-grid,
    .service,
    .doctor {
        grid-template-columns: 1fr
    }

    .doctor__media {
        width: auto
    }

    .doctor__cta--desktop {
        display: none
    }
 
    .doctor__cta--mobile {
        display: inline-flex
    }

    .checks--two-cols {
        grid-template-columns: 1fr;
        column-gap: 0;
    }

    .contact {
        flex-direction: column
    }

    .hero h1,
    .section h2,
    .page-hero h1 {
        font-size: 40px
    }

    .cards,
    .stats,
    .doctor-grid,
    .promo-grid {
        grid-template-columns: 1fr 1fr
    }

    .cards--directions {
        grid-template-columns: 1fr 1fr;
    }

    .cards--directions .card:last-child {
        grid-column: 1 / -1;
    }

    .promo-hero {
        grid-template-columns: 1fr
    }

    .promo-hero__mark {
        display: none
    }

    .promo-offer {
        flex-direction: column;
    }

    .promo-offer__content {
        padding: 24px;
    }

    .promo-offer__discount {
        align-self: flex-start;
        padding: 0 24px 8px;
    }

    .promo-offer__media {
        flex: none;
        width: 100%;
        min-height: 180px;
    }

    .promo-offer__media img {
        border-radius: 0 0 var(--r) var(--r);
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 28%);
        mask-image: linear-gradient(to bottom, transparent 0%, #000 28%);
    }

    .promo-offer--no-image .promo-offer__content {
        padding-right: 24px;
    }

    .hero-art {
        min-height: 280px
    }

    .service-img {
        height: 150px
    }

    .doctor {
        gap: 15px
    }

    .contact {
        gap: 18px
    }
}

.cookie-notice {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 40;
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: min(420px, calc(100% - 40px));
    padding: 14px 16px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .3s ease, transform .3s ease;
    pointer-events: none
}

.cookie-notice--visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto
}

.cookie-notice--hide {
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none
}

.cookie-notice__text {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
    color: var(--muted)
}

.cookie-notice__link {
    color: var(--teal2);
    text-decoration: underline;
    text-underline-offset: 2px
}

.cookie-notice__link:hover {
    color: var(--teal)
}

.cookie-notice__btn {
    flex-shrink: 0;
    border: 0;
    border-radius: 10px;
    padding: 10px 18px;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--teal), var(--teal2));
    box-shadow: 0 8px 18px rgba(22, 167, 160, .22);
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease
}

.cookie-notice__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(22, 167, 160, .28)
}

@media(max-width:560px) {
    .cookie-notice {
        right: 12px;
        left: 12px;
        bottom: 12px;
        max-width: none;
        flex-direction: column;
        align-items: stretch;
        gap: 12px
    }

    .cookie-notice__btn {
        width: 100%
    }
}

@media(max-width:560px) {

    .cards,
    .stats,
    .doctor-grid,
    .promo-grid {
        grid-template-columns: 1fr
    }

    .cards--directions { 
        grid-template-columns: 1fr;
    }

    .cards--directions .card:last-child {
        grid-column: auto;
    }

    .logo strong {
        font-size: 24px
    }

    .logo img {
        width: 58px;
        height: 58px
    }

    .hero h1,
    .section h2,
    .page-hero h1 {
        font-size: 34px
    }

    .cards--directions .card {
        padding: 20px; 
    }

    .cards--directions .card .icon {
        width: 52px;
        height: 52px;
        margin: 0 0 12px;
        font-size: 28px;
    }

    .cards--directions .card .icon svg {
        width: 28px;
        height: 28px;
    }

    .cards--directions .card .icon img {
        width: 28px;
        height: 28px;
    }

    .cards--directions .card h3 {
        font-size: 18px;
        margin: 0 0 6px;
    }

    .cards--directions .card p {
        font-size: 13px;
        line-height: 1.45;
    }
}