:root {
    --teal: #0b4f6c;
    --teal-deep: #083d54;
    --teal-soft: #e6f1f5;
    --ink: #1a1a1a;
    --muted: #5c656c;
    --bg: #f6f3ee;
    --paper: #fffdf9;
    --copper: #c4a574;
    --copper-d: #9a7b4a;
    --line: rgba(11, 79, 108, .12);
    --shadow: 0 18px 50px rgba(11, 79, 108, .08);
    --radius: 18px;
    --serif: "Source Serif 4", "Times New Roman", serif;
    --sans: Manrope, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    overflow-y: scroll;
    scrollbar-gutter: stable;
    scrollbar-width: thin;
    scrollbar-color: rgba(11, 79, 108, .45) #e8e2d9;
}
html::-webkit-scrollbar { width: 12px; }
html::-webkit-scrollbar-track { background: #e8e2d9; }
html::-webkit-scrollbar-thumb {
    background: rgba(11, 79, 108, .35);
    border: 3px solid #e8e2d9;
    border-radius: 999px;
}
html::-webkit-scrollbar-thumb:hover { background: rgba(11, 79, 108, .55); }
body {
    margin: 0;
    font-family: var(--sans);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-deep); }
h1, h2, h3, .serif { font-family: var(--serif); font-weight: 600; letter-spacing: -.02em; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

.topbar {
    background: var(--teal-deep);
    color: #e8f3f7;
    font-size: 13px;
}
.topbar__in {
    display: flex; justify-content: space-between; gap: 16px; align-items: center;
    min-height: 38px;
}
.topbar a { color: #fff; }
.topbar__links { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.topbar__sep { opacity: .55; line-height: 1; user-select: none; }
.topbar__note { margin: 0; opacity: .8; }

.header {
    position: sticky; top: 0; z-index: 40;
    background: rgba(246, 243, 238, .98);
    border-bottom: 1px solid var(--line);
}
.header__in { display: flex; align-items: center; gap: 28px; min-height: 78px; }
.logo {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
}
.logo img {
    display: block;
    height: 42px;
    width: auto;
    max-width: none;
    object-fit: contain;
}
.nav { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.nav__in { display: flex; align-items: center; gap: 6px; }
.nav__contacts { display: none; }
.nav__link {
    padding: 8px 12px; border-radius: 999px; color: var(--ink); font-weight: 600; font-size: 14px;
}
.nav__link:hover, .nav__link.is-active { background: var(--teal-soft); color: var(--teal); }
.nav__more { position: relative; }
.nav__more-btn {
    border: 0; background: transparent; font: inherit; font-weight: 600; font-size: 14px;
    padding: 8px 12px; cursor: pointer; border-radius: 999px;
}
.nav__drop {
    display: none; position: absolute; right: 0; top: 100%;
    background: #fff; min-width: 220px; padding: 10px;
    border-radius: 14px; box-shadow: var(--shadow); border: 1px solid var(--line);
}
.nav__drop a { display: block; padding: 8px 10px; border-radius: 10px; color: var(--ink); }
.nav__drop a:hover { background: var(--teal-soft); }
.nav__more:hover .nav__drop, .nav__more:focus-within .nav__drop { display: block; }
.header__actions { display: flex; align-items: center; gap: 8px; }
.cart-link { position: relative; color: var(--ink); padding: 8px; }
.cart-link__n {
    position: absolute; top: 0; right: 0; background: var(--copper); color: #fff;
    border-radius: 99px; font-size: 11px; min-width: 16px; height: 16px;
    display: grid; place-items: center; font-weight: 700;
}
.burger {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    cursor: pointer;
    position: relative;
    z-index: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.burger__bar {
    display: block;
    width: 20px;
    height: 2px;
    margin: 0 auto;
    background: var(--ink);
    border-radius: 1px;
    transition: transform .25s ease, opacity .2s ease;
}
.burger__bar + .burger__bar { margin-top: 5px; }
.burger[aria-expanded="true"] .burger__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] .burger__bar:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] .burger__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.flash { margin: 16px 0 0; padding: 12px 16px; border-radius: 12px; }
.flash--ok { background: #e7f6ee; color: #1b6b3a; }
.flash--err { background: #fdecea; color: #9b1c1c; }

.toast-stack {
    position: fixed;
    right: 20px;
    bottom: 24px;
    z-index: 1100;
    display: grid;
    gap: 10px;
    max-width: min(420px, calc(100vw - 32px));
    pointer-events: none;
}
.toast {
    pointer-events: auto;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 14px 14px 16px;
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(16, 38, 47, .18);
    animation: toast-in .28s ease;
}
.toast.is-leaving { animation: toast-out .22s ease forwards; }
.toast--ok { background: #e7f6ee; color: #1b6b3a; border: 1px solid #b9e3c9; }
.toast--err { background: #fdecea; color: #9b1c1c; border: 1px solid #f3c4bf; }
.toast__text { flex: 1; font-weight: 600; line-height: 1.45; }
.toast__close {
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 999px;
    background: rgba(0, 0, 0, .06);
    color: inherit;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
}
.toast__close:hover { background: rgba(0, 0, 0, .12); }
@keyframes toast-in {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes toast-out {
    to { opacity: 0; transform: translateY(8px); }
}

.hero {
    padding: 42px 0 20px;
}
.hero__grid {
    display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center;
    background: linear-gradient(135deg, #fff 0%, #eef5f8 100%);
    border: 1px solid var(--line); border-radius: 28px; padding: 48px 40px;
    box-shadow: var(--shadow);
}
.eyebrow {
    color: var(--copper-d); font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; font-size: 12px; margin: 0 0 12px;
}
.hero h1 { font-size: clamp(32px, 4vw, 52px); line-height: 1.15; margin: 0 0 16px; }
.hero p { color: var(--muted); font-size: 18px; margin: 0 0 28px; }
.hero__photo {
    background: #fff; border-radius: 22px; padding: 20px;
    display: grid; place-items: center; min-height: 320px;
}
.hero__photo img { max-height: 340px; width: auto; margin: 0 auto; }

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    border: 0; cursor: pointer; font: inherit; font-weight: 700;
    border-radius: 999px; padding: 13px 22px; text-decoration: none;
    transition: background-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.btn--primary { background: var(--teal); color: #fff; }
.btn--primary:hover { background: var(--teal-deep); color: #fff; }
.btn:disabled,
.btn[disabled] {
    opacity: .55;
    cursor: not-allowed;
    pointer-events: none;
}
.btn--ghost { background: transparent; color: var(--teal); box-shadow: inset 0 0 0 1.5px var(--teal); }
.btn--ghost:hover,
.btn--ghost:focus-visible {
    background: var(--teal-soft);
    color: var(--teal-deep);
    box-shadow: inset 0 0 0 1.5px var(--teal-deep);
}
.btn--copper { background: var(--copper); color: #fff; }
.btn--copper:hover { background: var(--copper-d); color: #fff; }
.btn--sm { padding: 8px 14px; font-size: 14px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 10px; }

.event-strip {
    display: flex; justify-content: space-between; gap: 16px; align-items: center;
    margin: 22px 0 8px; padding: 16px 22px; border-radius: 16px;
    background: var(--teal); color: #fff;
}
.event-strip a { color: #fff; font-weight: 700; }
.event-strip small { opacity: .8; display: block; }

.section { padding: 56px 0; }
.section--tight { padding: 28px 0 56px; }
.section__head { display: flex; justify-content: space-between; align-items: end; gap: 16px; margin-bottom: 28px; }
.section h2 { font-size: clamp(28px, 3vw, 40px); margin: 0; }
.section__lead { color: var(--muted); max-width: 640px; }

.dirs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.dir {
    background: var(--paper); border-radius: var(--radius); padding: 28px;
    border: 1px solid var(--line); min-height: 220px;
    display: flex; flex-direction: column; gap: 12px;
    transition: transform .2s, box-shadow .2s;
}
.dir:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.dir__n { color: var(--copper); font-weight: 700; font-size: 13px; letter-spacing: .08em; }
.dir h3 { margin: 0; font-size: 26px; }
.dir p { margin: 0; color: var(--muted); flex: 1; }

.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--inline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.prose .cards.cards--inline { margin: 1.5em 0; }
.prose .cards.cards--inline .card__body h3 { margin-top: 0; font-size: 20px; }
.prose .cards:not(.cards--inline) { margin: 1.5em 0; }
.prose .cards:not(.cards--inline) .card__body h3 { margin-top: 0; font-size: 18px; line-height: 1.35; }
.card {
    background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid var(--line);
    display: flex; flex-direction: column; height: 100%;
}
.card__img { height: 200px; background: #fff; display: grid; place-items: center; padding: 16px; flex: 0 0 auto; }
.card__img img { max-height: 170px; width: auto; object-fit: contain; }
.card__body { padding: 16px 16px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; min-height: 0; }
.card__body h3 { margin: 0; font-size: 18px; line-height: 1.3; }
.card__body > p { margin: 0; flex: 1; color: var(--muted); font-size: 14px; line-height: 1.45; }
.card__price { font-weight: 700; color: var(--teal); margin-top: auto; }
.card__body form { margin: 0; width: 100%; }
.card__body > .btn,
.card__body form .btn { margin-top: 0; width: 100%; }
.card__body:not(:has(.card__price)) > .btn { margin-top: auto; }

.trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.trust__i {
    background: #fff; border-radius: 16px; padding: 20px; border: 1px solid var(--line);
}
.trust__i strong { display: block; font-size: 28px; font-family: var(--serif); color: var(--teal); }
.trust__i span { color: var(--muted); font-size: 14px; }

.method {
    display: grid; grid-template-columns: .9fr 1.1fr; gap: 32px; align-items: start;
    background: var(--teal-deep); color: #fff; border-radius: 28px; padding: 40px;
}
.method h2 { color: #fff; }
.method p, .method li { color: #d5e6ee; }
.method a { color: var(--copper); font-weight: 700; }
.effects { display: grid; gap: 10px; padding: 0; margin: 0; list-style: none; }
.effects li {
    background: rgba(255,255,255,.06); border-radius: 12px; padding: 12px 14px;
}

.news-grid { column-count: 3; column-gap: 16px; }
.news-card {
    background: #fff; border-radius: 16px; padding: 0; border: 1px solid var(--line);
    min-height: 0; display: block; width: 100%; overflow: hidden;
    margin: 0 0 16px; break-inside: avoid; page-break-inside: avoid;
    color: inherit; text-decoration: none;
}
.news-card__body {
    padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 8px;
}
.news-date {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    opacity: .55;
}
.news-card time { color: var(--muted); font-size: 13px; font-weight: 500; opacity: .55; }
.news-card h3 { font-size: 20px; margin: 0; }
.news-card p { color: var(--muted); margin: 0; margin-top: auto; }

.page-hero { padding: 36px 0 10px; }
.page-hero h1 { font-size: clamp(32px, 4vw, 48px); margin: 0 0 12px; }
.page-hero p { color: var(--muted); max-width: 720px; }

.product {
    display: grid; grid-template-columns: .9fr 1.1fr; gap: 36px; padding: 20px 0 28px;
    align-items: start;
}
.product__media {
    background: #fff; border-radius: 22px; padding: 28px; border: 1px solid var(--line);
    display: flex; align-items: center; justify-content: center;
    align-self: start;
}
.product__media img { max-width: 100%; max-height: 420px; width: auto; height: auto; object-fit: contain; }
.product__info { min-width: 0; }
.product__price { font-size: 28px; margin: 12px 0 20px; }
.product__summary { margin: 0 0 20px; color: #333; }
.product__buy { margin-top: 20px; }
.product-desc { padding: 0 0 36px; }
.product-desc__box {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 32px;
}
.product-desc__box.prose > :first-child { margin-top: 0; }
.product-desc__box.prose > :last-child { margin-bottom: 0; }
.product-certs { padding: 0 0 36px; }
.product-certs__box {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 32px;
}
.product-certs__box h2 {
    margin: 0 0 16px;
    font-size: clamp(22px, 3vw, 28px);
}
.product-lead { padding: 8px 0 50px; }
.product-lead .lead-card { margin-top: 0; }
.prose { font-size: 17px; }
.prose h2, .prose h3 { margin: 1.4em 0 .5em; }
.prose p, .prose li { color: #333; }
.prose table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 15px; }
.prose th, .prose td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; vertical-align: top; }
.prose th { width: 30%; background: var(--teal-soft); color: var(--teal); font-weight: 700; }
.prose ol { padding-left: 1.25em; }
.prose figure { margin: 1.2em 0; }
.prose figure img { width: 100%; height: auto; border-radius: 12px; object-fit: contain; background: none; }
.prose .video-embed { margin: 1.2em 0; border-radius: 12px; }
.prose figcaption,
.prose p > em:only-child { color: var(--muted); font-style: italic; display: block; text-align: center; margin: .45em 0 0; font-size: 15px; }
.prose .photo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 1.2em 0; }
.prose .photo-grid figure { margin: 0; }
.prose .photo-grid--logos figure img { max-height: 220px; width: auto; max-width: 100%; margin: 0 auto; display: block; }
.prose .photo-grid--logos figcaption { text-align: center; }
.prose .photo-grid--4 { grid-template-columns: repeat(4, 1fr); }
.prose .photo-masonry {
    column-count: 4;
    column-gap: 12px;
    margin: 1.2em 0;
}
.prose .photo-masonry__item {
    display: block;
    break-inside: avoid;
    margin: 0 0 12px;
    border-radius: 12px;
    overflow: hidden;
    cursor: zoom-in;
    border: 1px solid var(--line);
    background: #fff;
    transition: box-shadow .2s ease, transform .2s ease;
}
.prose .photo-masonry__item:hover {
    box-shadow: 0 10px 28px rgba(16, 38, 47, .12);
    transform: translateY(-2px);
}
.prose .photo-masonry__item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    object-fit: cover;
}
.prose .text-center { text-align: center; }
.training-stages {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 1.5em 0;
}
.training-stage {
    background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px;
}
.training-stage h3 { margin-top: 0; font-size: 20px; line-height: 1.35; }
.training-courses .card__media { overflow: hidden; border-radius: 16px 16px 0 0; }
.training-courses .card__media img { width: 100%; height: auto; display: block; aspect-ratio: 3 / 2; object-fit: cover; }
.training-note { margin-top: 24px; color: var(--muted); }

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 24px;
}
.lightbox[hidden] { display: none; }
.lightbox__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    padding: 0;
    background: rgba(16, 38, 47, .88);
    cursor: zoom-out;
}
.lightbox__stage {
    position: relative;
    z-index: 1;
    max-width: min(96vw, 1200px);
    max-height: 90vh;
    display: grid;
    place-items: center;
}
.lightbox__img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .35);
}
.lightbox__close,
.lightbox__prev,
.lightbox__next {
    position: absolute;
    z-index: 2;
    border: 0;
    border-radius: 999px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .14);
    color: #fff;
    cursor: pointer;
    transition: background .2s ease;
}
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover { background: rgba(255, 255, 255, .24); }
.lightbox__close { top: 20px; right: 20px; font-size: 28px; line-height: 1; }
.lightbox__prev,
.lightbox__next { top: 50%; transform: translateY(-50%); font-size: 28px; line-height: 1; }
.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }
.lightbox__counter {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    z-index: 2;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 14px;
}
body.lightbox-open { overflow: hidden; }
html.lightbox-open { overflow: hidden; }
.prose .elementor-widget-image img { width: 100%; height: auto; object-fit: contain; background: none; }
@media (min-width: 801px) {
    .prose .elementor-container:has(> .elementor-col-50 + .elementor-col-50) {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 28px;
        align-items: center;
        margin: 8px 0 28px;
    }
    .prose .elementor-col-50 { min-width: 0; }
}
.content-box {
    background: #fff; border-radius: 22px; padding: 32px; border: 1px solid var(--line);
}
.content-box > h2 {
    margin: 0 0 20px;
}

.form { display: grid; gap: 12px; }
.form input, .form textarea, .form select,
.lead-form input:not([type="checkbox"]), .lead-form textarea {
    width: 100%; border: 1px solid var(--line); border-radius: 14px;
    padding: 13px 16px; font: inherit; background: #fff;
    transition: border-color .15s, box-shadow .15s;
}
.form input:focus, .form textarea:focus, .form select:focus,
.lead-form input:not([type="checkbox"]):focus, .lead-form textarea:focus {
    outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(11, 79, 108, .12);
}
.form textarea, .lead-form textarea { min-height: 110px; resize: vertical; }
.form label { font-size: 13px; font-weight: 600; color: var(--muted); }
.form-consents { display: grid; gap: 10px; margin-top: 4px; }

.lead-wrap { margin-top: 22px; }
.lead-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #fff 0%, #f3f8fa 100%);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 28px 32px 30px;
    box-shadow: var(--shadow);
}
.lead-card__eyebrow {
    margin: 0 0 8px;
    color: var(--copper-d);
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: 12px;
}
.lead-card__title {
    margin: 0 0 8px;
    font-size: clamp(26px, 3vw, 34px);
    line-height: 1.2;
}
.lead-card__note {
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 15px;
    max-width: 46em;
}
.lead-form { display: grid; gap: 14px; }
.lead-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lead-form__field { display: grid; gap: 6px; }
.lead-form__field span {
    font-size: 13px; font-weight: 600; color: var(--muted);
}
.lead-form__consent {
    display: flex; gap: 10px; align-items: flex-start;
    font-size: 13px; color: var(--muted); font-weight: 500; line-height: 1.45;
}
.lead-form__consent input {
    width: 18px; height: 18px; margin-top: 2px; flex: 0 0 18px; accent-color: var(--teal);
}
.lead-form__submit { justify-self: start; min-width: 210px; margin-top: 4px; }
@media (min-width: 981px) {
    .lead-card--wide {
        display: grid;
        grid-template-columns: minmax(240px, 28%) 1fr;
        gap: 28px 36px;
        align-items: start;
    }
    .lead-card--wide .lead-card__head { min-width: 0; }
    .lead-card--wide .lead-card__note { margin-bottom: 0; }
    .lead-form--wide {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
        align-items: end;
    }
    .lead-form--wide .lead-form__row { display: contents; }
    .lead-form--wide .lead-form__message,
    .lead-form--wide .smart-captcha,
    .lead-form--wide .lead-form__consent,
    .lead-form--wide .lead-form__submit { grid-column: 1 / -1; }
    .lead-form--wide .lead-form__submit { justify-self: start; }
}
.contacts-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 28px;
    align-items: start;
}
.contacts-page .contacts-intro {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 28px;
}
.contacts-block h2 { margin-top: 0; }
.contacts-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 28px;
}
.contact-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 16px;
    align-items: start;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
}
.contact-card > img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    background: var(--paper);
}
.contact-card__body { min-width: 0; }
.contact-card__body h3 { margin: 0 0 8px; font-size: 20px; }
.contact-card__body p { margin: 0 0 6px; }
.contact-card__role { color: var(--muted); font-size: 14px; line-height: 1.45; }
.contact-card__messengers {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}
.contact-card__messengers a {
    display: inline-flex;
    line-height: 0;
}
.contact-card__messengers img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    background: transparent;
}
.contacts-office {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    margin-bottom: 20px;
}
.contacts-office img { max-width: 300px; height: auto; margin-bottom: 14px; }
.contacts-office h2 { margin-top: 0; }
.contacts-procedure { text-align: center; }
.contacts-procedure p { margin: 0 0 8px; }

.metodika-page > :first-child { margin-top: 0; }
.metodika-page > :last-child { margin-bottom: 0; }
.metodika-hero {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 28px;
    align-items: center;
    padding: 28px;
    margin-bottom: 24px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--teal-deep) 0%, #0a6288 100%);
    color: #fff;
}
.metodika-hero h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.25;
}
.metodika-hero .eyebrow { color: var(--copper); margin-bottom: 10px; }
.metodika-hero__label {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.72);
}
.metodika-hero__media { margin: 0; }
.metodika-hero__media img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}
.metodika-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}
.metodika-nav a {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--teal);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: border-color .15s, background .15s;
}
.metodika-nav a:hover {
    border-color: var(--teal);
    background: var(--teal-soft);
}
.metodika-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
    margin: 0 0 32px;
}
.metodika-split--reverse .metodika-split__text { order: 2; }
.metodika-split--reverse .metodika-split__media { order: 1; }
.metodika-split__text h2 { margin-top: 0; }
.metodika-split__media {
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #f8fbfc;
}
.metodika-split__media img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}
.metodika-split__media figcaption {
    padding: 10px 14px 12px;
    font-size: 13px;
    color: var(--muted);
    text-align: center;
}
.metodika-panel {
    margin: 0 0 32px;
    padding: 28px;
    border-radius: 24px;
    background: var(--teal-deep);
    color: #fff;
}
.metodika-panel h2 { margin: 0; color: #fff; }
.metodika-panel .eyebrow { color: var(--copper); margin-bottom: 8px; }
.metodika-panel__inner {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 24px;
    align-items: start;
}
.metodika-effects {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.metodika-effects li {
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255,255,255,.08);
    color: #d5e6ee;
}
.metodika-section { margin: 0 0 32px; }
.metodika-section__head { max-width: 760px; margin-bottom: 20px; }
.metodika-section__head h2 { margin-top: 0; }
.metodika-section--soft {
    padding: 24px 28px;
    border-radius: 20px;
    background: var(--teal-soft);
    border: 1px solid rgba(11, 79, 108, .08);
}
.metodika-section--soft h2 { margin-top: 0; color: var(--teal); }
.metodika-indications {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.metodika-indication {
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
}
.metodika-indication h3 {
    margin: 0 0 10px;
    font-size: 18px;
    color: var(--teal);
}
.metodika-indication ul {
    margin: 0;
    padding-left: 1.1em;
}
.metodika-indication li { margin-bottom: 6px; }
.metodika-indication__note {
    margin: 12px 0 0;
    padding: 10px 12px;
    border-radius: 10px;
    background: #fff8ef;
    border: 1px solid #f0dfc8;
    font-size: 14px;
}
.metodika-callout {
    margin-top: 20px;
    padding: 18px 22px;
    border-left: 4px solid var(--copper);
    border-radius: 0 14px 14px 0;
    background: #faf6f1;
}
.metodika-callout p { margin: 0 0 8px; }
.metodika-callout p:last-child { margin-bottom: 0; }
.metodika-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 0 0 32px;
}
.metodika-column {
    padding: 22px 24px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: #fff;
}
.metodika-column h2 { margin-top: 0; font-size: 22px; }
.metodika-column--accent {
    background: linear-gradient(180deg, #f3f8fa 0%, #fff 100%);
    border-color: rgba(11, 79, 108, .12);
}
.metodika-column ul { margin: 0; padding-left: 1.1em; }
.metodika-checklist {
    margin: 0;
    padding: 0;
    list-style: none;
}
.metodika-checklist li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
}
.metodika-checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .45em;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: inset 0 0 0 3px #fff, 0 0 0 1px var(--teal);
}
.metodika-note {
    margin: 0 0 32px;
    padding: 24px 28px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: inset 4px 0 0 var(--copper);
}
.metodika-note h2 { margin-top: 0; }
.metodika-tags-section { margin: 0 0 32px; }
.metodika-tags-section h2 { margin-top: 0; }
.metodika-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.metodika-tags li {
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--teal-soft);
    color: var(--teal);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .02em;
}
.video-page { display: grid; gap: 28px; }
.video-page__lead {
    margin: 0;
    font-size: clamp(22px, 2.5vw, 28px);
    line-height: 1.25;
}
.video-cards { align-items: stretch; }
.video-card {
    padding: 0;
    overflow: hidden;
    height: 100%;
}
.video-card .card__body {
    padding-top: 14px;
}
.video-card .card__body h3 {
    font-size: 16px;
    line-height: 1.35;
}
.video-embed {
    position: relative;
    padding-top: 56.25%;
    width: 100%;
    overflow: hidden;
    background: #000;
}
.video-embed iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 0;
}
.news-back { margin-top: 28px; }
.news-stream-wrap { margin-top: 22px; }
.news-stream {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px 28px;
    padding: 22px 26px;
    border-radius: 22px;
    background: var(--teal);
    color: #fff;
    box-shadow: var(--shadow);
}
.news-stream__eyebrow {
    margin: 0 0 6px;
    color: var(--copper);
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: 12px;
}
.news-stream__title { margin: 0 0 6px; color: #fff; font-size: clamp(22px, 2.4vw, 28px); line-height: 1.2; }
.news-stream__hint { margin: 0; color: #d5e6ee; font-size: 15px; }
.news-stream .btn { background: #fff; color: var(--teal); border-color: #fff; flex: 0 0 auto; }
.news-stream .btn:hover { background: #f3f8fa; color: var(--teal-deep); }
.wpcf7, form.wpcf7-form,
.elementor-hidden-desktop.elementor-hidden-tablet.elementor-hidden-mobile { display: none !important; }

.teachers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.teacher {
    background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid var(--line);
    display: flex; flex-direction: column;
}
.teacher__photo { aspect-ratio: 1; background: none; overflow: hidden; }
.teacher__photo img { width: 100%; height: 100%; object-fit: contain; display: block; }
.teacher__body { padding: 14px 16px 16px; }
.teacher strong { display: block; font-size: 15px; line-height: 1.35; }
.teacher span { display: block; color: var(--muted); font-size: 13px; margin-top: 4px; }
.teacher__body p { margin: 8px 0 0; font-size: 13px; color: var(--text); }
.teachers-cta { margin-top: 16px; }

@media (max-width: 1200px) {
    .teachers { grid-template-columns: repeat(3, 1fr); }
}

.price-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 20px;
}
.price-row {
    background: #fff; border-radius: 16px; padding: 22px 24px; border: 1px solid var(--line);
    display: flex; flex-direction: column; gap: 12px; min-height: 100%;
}
.price-row h3 { margin: 0; font-size: 20px; line-height: 1.35; }
.price-row p { margin: 0; color: var(--muted); flex: 1; }
.price-row strong { font-size: 22px; color: var(--teal); margin-top: auto; }

.cart-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 16px; overflow: hidden; }
.cart-table th, .cart-table td { padding: 14px; border-bottom: 1px solid var(--line); text-align: left; }
.cart-table__title a { color: var(--ink); font-weight: 600; line-height: 1.35; }
.cart-table__unit {
    display: block;
    margin-top: 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
}
.cart-total {
    margin: 18px 0;
    font-size: 22px;
    font-weight: 700;
}
.qty { width: 72px; padding: 8px; border-radius: 8px; border: 1px solid var(--line); }

.footer {
    margin-top: 40px; background: #10262f; color: #d7e4ea; padding: 48px 0 24px;
}
.copy-mail {
    display: inline-flex; align-items: center; gap: 6px; vertical-align: middle;
}
.copy-mail__btn {
    display: inline-grid; place-items: center;
    width: 28px; height: 28px; padding: 0; margin: 0;
    border: 0; border-radius: 8px; cursor: pointer;
    background: var(--teal-soft); color: var(--teal);
}
.copy-mail__btn:hover { background: #d5e8ef; color: var(--teal-deep); }
.copy-mail__done { display: none; }
.copy-mail__btn.is-copied { background: #e7f6ee; color: #1b6b3a; }
.copy-mail__btn.is-copied .copy-mail__icon { display: none; }
.copy-mail__btn.is-copied .copy-mail__done { display: block; }

.footer a { color: #d7e4ea; display: block; margin: 6px 0; }
.footer .copy-mail { display: inline-flex; margin: 6px 0; }
.footer .copy-mail a { display: inline; margin: 0; }
.footer .copy-mail__btn { background: rgba(255,255,255,.08); color: #d7e4ea; }
.footer .copy-mail__btn:hover { background: rgba(255,255,255,.16); color: #fff; }
.footer .copy-mail__btn.is-copied { background: #e7f6ee; color: #1b6b3a; }
.footer a:hover { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 24px; }
.footer__brand { font-family: var(--serif); font-size: 24px; color: #fff; margin: 0 0 8px; }
.footer__h { color: var(--copper); font-weight: 700; margin: 0 0 10px; }
.footer__muted { color: #9bb0b8; font-size: 14px; }
.footer__bottom {
    display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
    margin-top: 32px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08);
    font-size: 13px; color: #8ea3ab;
}
@media (min-width: 981px) {
    .footer__bottom { align-items: center; }
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 12px; }
.footer__legal a { display: inline; margin: 0; }

.cookie {
    position: fixed; bottom: 16px; left: 50%; transform: translateX(-50%);
    width: min(720px, calc(100% - 24px)); background: #fff; border-radius: 16px;
    box-shadow: var(--shadow); padding: 14px 16px; display: flex; gap: 14px; align-items: center;
    z-index: 50; border: 1px solid var(--line);
}
.cookie[hidden] { display: none; }
.cookie p { margin: 0; font-size: 14px; }
body:has(.cookie:not([hidden])) { padding-bottom: 96px; }

.reviews { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.review {
    background: #fff; border-radius: 16px; padding: 22px; border: 1px solid var(--line);
}
.review-cards { align-items: stretch; }
.review-card {
    padding: 0;
    overflow: hidden;
    height: 100%;
}
.review-card__media {
    display: block;
    padding: 14px;
    background: #fff;
}
.review-card__media img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}
.review-card .card__body h3 {
    font-size: 15px;
    line-height: 1.35;
}

.article-list { display: grid; gap: 10px; }
.article-item {
    display: flex; align-items: flex-start; gap: 14px;
    background: #fff; border-radius: 12px; padding: 14px 16px; border: 1px solid var(--line);
    color: inherit; text-decoration: none;
    transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}
a.article-item:hover,
a.article-item:focus-visible {
    border-color: var(--teal);
    box-shadow: var(--shadow);
    background: var(--teal-soft);
}
.article-item__icon {
    flex: 0 0 auto; width: 38px; height: 38px; border-radius: 10px;
    background: var(--teal-soft); color: var(--teal);
    display: grid; place-items: center;
}
a.article-item:hover .article-item__icon,
a.article-item:focus-visible .article-item__icon {
    background: #fff;
}
.article-item__body { display: grid; gap: 4px; min-width: 0; }
.article-item strong { font-size: 16px; line-height: 1.35; }
.article-item small { color: var(--muted); line-height: 1.45; }

.empty { padding: 40px 0; color: var(--muted); }
.checkout-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.checkout-summary { display: grid; gap: 0; }
.checkout-line {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}
.checkout-line:first-child { padding-top: 0; }
.checkout-line__title {
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 8px;
}
.checkout-line__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.checkout-line__qty {
    font-size: 14px;
    color: var(--muted);
}
.checkout-line__sum {
    font-size: 16px;
    font-weight: 700;
    color: var(--teal);
    white-space: nowrap;
}
.checkout-total {
    margin: 16px 0 0;
    padding-top: 16px;
    font-size: 20px;
    font-weight: 700;
}

@media (max-width: 980px) {
    .hero__grid, .product, .method, .footer__grid, .contacts-grid { grid-template-columns: 1fr; }
    .contacts-page .contacts-intro,
    .contacts-cards { grid-template-columns: 1fr; }
    .metodika-hero,
    .metodika-split,
    .metodika-panel__inner,
    .metodika-indications,
    .metodika-columns { grid-template-columns: 1fr; }
    .metodika-split--reverse .metodika-split__text,
    .metodika-split--reverse .metodika-split__media { order: unset; }
    .contact-card { grid-template-columns: 88px 1fr; }
    .contact-card img { width: 88px; height: 88px; }
    .dirs, .cards, .cards--3, .trust, .teachers, .reviews { grid-template-columns: 1fr 1fr; }
    .news-grid { column-count: 2; }
    .header__in { justify-content: space-between; gap: 12px; }
    .header__actions { flex-shrink: 0; }
    .topbar {
        position: sticky;
        top: 0;
        z-index: 43;
    }
    .header {
        position: sticky;
        top: 38px;
        z-index: 42;
    }
    .logo,
    .header__actions {
        position: relative;
        z-index: 43;
    }
    .section__head {
        align-items: center;
        gap: 12px;
    }
    .section__head > div {
        min-width: 0;
        flex: 1 1 auto;
    }
    .section h2 {
        font-size: clamp(22px, 4.5vw, 32px);
        line-height: 1.2;
    }
    .section__head .btn--sm {
        flex-shrink: 0;
        white-space: nowrap;
    }
    .nav {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: calc(38px + 78px);
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 41;
        margin-left: 0;
        padding: 16px 0 0;
        background: var(--bg);
        border-top: 1px solid var(--line);
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity .32s ease, transform .32s ease, visibility .32s;
        pointer-events: none;
    }
    .nav__in {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        flex: 1 1 auto;
        width: min(1180px, calc(100% - 32px));
        margin: 0 auto;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
    }
    .nav__contacts {
        display: flex;
        flex-direction: column;
        gap: 2px;
        flex-shrink: 0;
        width: min(1180px, calc(100% - 32px));
        margin: 0 auto;
        padding: 14px 0 calc(18px + env(safe-area-inset-bottom, 0px));
        border-top: 1px solid var(--line);
        background: var(--bg);
    }
    .nav__contacts a {
        display: block;
        padding: 8px 10px;
        border-radius: 10px;
        font-weight: 600;
        font-size: 15px;
        color: var(--teal);
    }
    .nav__contacts .copy-mail {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 10px;
        margin: 0;
    }
    .nav__contacts .copy-mail a {
        padding: 0;
        margin: 0;
    }
    body.nav-open .nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
    body.nav-open { overflow: hidden; }
    html.nav-open { overflow: hidden; }
    .nav .nav__link,
    .nav .nav__drop a {
        padding: 12px 10px;
        border-radius: 10px;
        font-weight: 600;
        font-size: 15px;
    }
    .nav__more-btn { display: none; }
    .nav__more { display: block; width: 100%; }
    .nav__drop {
        position: static;
        display: flex;
        flex-direction: column;
        box-shadow: none;
        background: transparent;
        min-width: 0;
        padding: 0;
        border: 0;
    }
    .burger { display: flex; }
    .topbar__note { display: none; }
    .price-table { grid-template-columns: 1fr; }
    .training-stages { grid-template-columns: 1fr; }
    .prose .photo-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .prose .photo-masonry { column-count: 2; }
    .checkout-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
    .burger__bar {
        transition: none;
    }
    @media (max-width: 980px) {
        .nav {
            transition: none;
            transform: none;
        }
    }
}
@media (max-width: 640px) {
    .dirs, .cards, .cards--3, .teachers, .reviews, .lead-form__row { grid-template-columns: 1fr; }
    .trust { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .trust__i { padding: 18px 14px; }
    .trust__i strong { font-size: 24px; }
    .section h2 {
        font-size: clamp(20px, 5.4vw, 24px);
    }
    .section__head .eyebrow {
        font-size: 10px;
        letter-spacing: .08em;
        margin-bottom: 6px;
    }
    .section__head .btn--sm {
        padding: 7px 11px;
        font-size: 13px;
    }
    .page-home .section__head > a {
        display: none;
    }
    .cart-table { display: block; background: transparent; border-radius: 0; overflow: visible; }
    .cart-table thead { display: none; }
    .cart-table tbody { display: block; }
    .cart-table tr {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "title title"
            "qty sum";
        gap: 10px 12px;
        padding: 16px;
        margin-bottom: 12px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 14px;
    }
    .cart-table td {
        display: block;
        padding: 0;
        border: 0;
    }
    .cart-table__title {
        grid-area: title;
        font-size: 15px;
    }
    .cart-table__title a {
        display: block;
        font-size: 15px;
        line-height: 1.35;
    }
    .cart-table__unit {
        margin-top: 6px;
        font-size: 13px;
    }
    .cart-table__qty {
        grid-area: qty;
        align-self: center;
    }
    .cart-table__qty::before,
    .cart-table__sum::before {
        display: block;
        margin-bottom: 6px;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: .08em;
        text-transform: uppercase;
        color: var(--muted);
        content: attr(data-label);
    }
    .cart-table__sum {
        grid-area: sum;
        align-self: center;
        text-align: right;
        font-size: 17px;
        font-weight: 700;
        color: var(--teal);
    }
    .cart-table .qty {
        width: 64px;
        padding: 7px 8px;
        font-size: 15px;
    }
    .cart-total {
        margin: 16px 0;
        font-size: 20px;
    }
    .cart-table + .cart-total + .btn-row {
        flex-direction: column;
        align-items: stretch;
    }
    .cart-table + .cart-total + .btn-row .btn {
        width: 100%;
    }
    .cards--inline { grid-template-columns: 1fr; }
    .news-grid { column-count: 1; }
    .prose .photo-grid { grid-template-columns: 1fr; }
    .prose .photo-grid--4 { grid-template-columns: 1fr; }
    .prose .photo-masonry { column-count: 1; }
    .lightbox { padding: 12px; }
    .lightbox__prev { left: 8px; }
    .lightbox__next { right: 8px; }
    .lightbox__close { top: 12px; right: 12px; }
    .lead-card { padding: 22px 18px 24px; }
    .product-desc__box { padding: 22px 18px 24px; }
    .product-certs__box { padding: 22px 18px 24px; }
    .lead-form__submit { width: 100%; }
    .hero__grid, .method { padding: 24px 18px; }
    .event-strip, .news-stream { flex-direction: column; align-items: flex-start; }
    .contact-card {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }
    .contact-card > img {
        width: 96px;
        height: 96px;
    }
    .contact-card__body { width: 100%; }
    .contact-card__messengers {
        justify-content: center;
        gap: 8px;
        margin-top: 8px;
    }
    .contact-card__messengers img {
        width: 24px;
        height: 24px;
    }
    .news-stream .btn { width: 100%; }
    .cookie { flex-direction: column; align-items: stretch; }
}

.social-widget {
    position: fixed;
    z-index: 99;
    bottom: 19px;
    right: 80px;
}
.social-widget__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    padding: 13px;
    border: 0;
    border-radius: 65px;
    background: #3148a4c4;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    cursor: pointer;
    transition: background .3s ease;
}
.social-widget__toggle:hover,
.social-widget__toggle:focus-visible {
    background: #3148a4;
    outline: none;
}
.social-widget__toggle-icon {
    display: flex;
    width: 100%;
    height: 100%;
}
.social-widget__toggle-icon svg {
    width: 100%;
    height: 100%;
}
.social-widget__links {
    position: fixed;
    z-index: 99;
    right: 80px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 65px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
}
.social-widget__links.active {
    opacity: 1;
    visibility: visible;
}
.social-widget__link {
    position: relative;
    width: 63px;
    height: 63px;
    border: 2px solid #fff;
    border-radius: 65px;
    background-color: #d4d9f0c4;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 40px 40px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: transform .3s ease, background-color .3s ease;
}
.social-widget__link:hover,
.social-widget__link:focus-visible {
    background-color: #c8d0f1;
    transform: scale(1.15);
    outline: none;
}
.social-widget__link--telegram {
    background-image: url('../img/social/telegram.png');
}
.social-widget__link--max {
    background-image: url('../img/social/max.png');
}
.social-widget__link--whatsapp {
    background-image: url('../img/social/whatsapp.png');
}
@media (max-width: 746px) {
    .social-widget {
        right: 20px;
    }
    .social-widget__links {
        right: 20px;
        bottom: 95px;
    }
}
