@font-face {
    font-family: 'Poppins';
    src: url("../fonts/Poppins-Regular.woff") format("woff"),
         url("../fonts/Poppins-Regular.woff2") format("woff2");
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url("../fonts/Poppins-Medium.woff") format("woff"),
         url("../fonts/Poppins-Medium.woff2") format("woff2");
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url("../fonts/Poppins-Bold.woff") format("woff"),
         url("../fonts/Poppins-Bold.woff2") format("woff2");
    font-weight: 700;
    font-display: swap;
}

:root {
    --site-max-width: 1440px;
    --content-max-width: 920px;

    --radius-xs: 10px;
    --radius-sm: 16px;
    --radius-md: 24px;
    --radius-lg: 32px;
    --radius-pill: 999px;

    --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.18);
    --shadow-md: 0 18px 50px rgba(0, 0, 0, 0.22);
    --shadow-lg: 0 28px 80px rgba(0, 0, 0, 0.28);

    --surface-1: var(--css_header_background_color);
    --surface-2: var(--css_content_background_color);
    --surface-3: rgba(255, 255, 255, 0.04);
    --surface-4: rgba(255, 255, 255, 0.06);

    --border-soft: rgba(255, 255, 255, 0.10);
    --border-strong: rgba(255, 255, 255, 0.16);

    --text-main: var(--css_main_text_color);
    --text-heading: var(--css_main_heading_color);
    --text-muted: color-mix(in srgb, var(--css_main_text_color) 72%, transparent);
    --text-muted-strong: color-mix(in srgb, var(--css_main_text_color) 85%, transparent);

    --header-bg: color-mix(in srgb, var(--css_header_background_color) 82%, transparent);
    --header-link: var(--css_header_link_color);

    --main-bg: var(--css_main_background_color);
    --main-link: var(--css_main_link_color);
    --main-heading: var(--css_main_heading_color);

    --main-btn-bg: var(--css_main_primary_button_background_color);
    --main-btn-text: var(--css_main_primary_button_text_color);
    --main-btn-secondary-bg: var(--css_main_primary_second_button_background_color);
    --main-btn-secondary-text: var(--css_main_primary_second_button_text_color);

    --banner-bg: var(--css_banner_background_color);
    --banner-title: var(--css_banner_title_color);
    --banner-text: var(--css_banner_text_color);
    --banner-btn-bg: var(--css_banner_button_background_color);
    --banner-btn-text: var(--css_banner_button_text_color);

    --content-bg: var(--css_content_background_color);
    --content-link: var(--css_content_link_color);
    --content-heading: var(--css_content_heading_color);
    --content-text: var(--css_content_text_color);
    --content-btn-bg: var(--css_content_primary_button_background_color);
    --content-btn-text: var(--css_content_primary_button_text_color);
    --content-btn-secondary-bg: var(--css_content_primary_second_button_background_color, rgba(255,255,255,0.06));
    --content-btn-secondary-text: var(--css_content_primary_second_button_text_color);
    --content-table-border: var(--css_content_table_border_color);
    --content-table-head: var(--css_content_table_header_background_color);
    --content-table-row-even: var(--css_content_table_tr_paired_lines_background_color);
    --content-table-row-odd: var(--css_content_table_tr_unpaired_lines_background_color);

    --space-1: 8px;
    --space-2: 12px;
    --space-3: 16px;
    --space-4: 20px;
    --space-5: 24px;
    --space-6: 32px;
    --space-7: 48px;
    --space-8: 64px;
    --space-9: 88px;
    --space-10: 120px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 10px;
    scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
p,
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

ul[class],
ol[class] {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

input,
button,
textarea,
select {
    font: inherit;
}

button {
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

a:not([class]) {
    color: var(--content-link);
    text-decoration: underline;
    text-underline-offset: 0.18em;
    text-decoration-thickness: 0.08em;
}

a:not([class]):hover {
    text-decoration-thickness: 0.12em;
}

.no-scroll {
    overflow: hidden;
}

body {
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    line-height: 1.65;
    color: var(--text-main);
    background:
        radial-gradient(circle at top left, color-mix(in srgb, var(--banner-bg) 26%, transparent) 0%, transparent 38%),
        radial-gradient(circle at top right, color-mix(in srgb, var(--main-btn-bg) 14%, transparent) 0%, transparent 28%),
        linear-gradient(180deg, color-mix(in srgb, var(--main-bg) 94%, #000 6%) 0%, var(--main-bg) 100%);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    color: var(--main-heading);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3.2rem, 5vw, 6.2rem);
}

h2 {
    font-size: clamp(2.8rem, 3.2vw, 4rem);
}

h3 {
    font-size: clamp(2rem, 2.2vw, 2.6rem);
}

h4 {
    font-size: 1.9rem;
}

p + p {
    margin-top: 1em;
}

.x23m2wf8kp7 {
    border: 0;
    background: transparent;
    cursor: pointer;
}

.xc43xevysgy {
    width: min(100%, var(--site-max-width));
    margin-inline: auto;
    padding-inline: 16px;
}

@media (min-width: 768px) {
    .xc43xevysgy {
        padding-inline: 24px;
    }
}

@media (min-width: 1280px) {
    .xc43xevysgy {
        padding-inline: 32px;
    }
}

.xgnbna9d2sz {
    padding-top: 92px;
}

@media (min-width: 768px) {
    .xgnbna9d2sz {
        padding-top: 108px;
    }
}

.x2fio3er97g {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    background: var(--header-bg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border-soft);
}

.x5skfz2m3zq {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

@media (min-width: 768px) {
    .x5skfz2m3zq {
        min-height: 88px;
    }
}

.x1t3l2oi718,
.xb6ad05wkl0 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.x9nm96cr1g7 {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border-soft);
    background: var(--surface-3);
    color: var(--header-link);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.x9nm96cr1g7 span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.x9nm96cr1g7:hover {
    transform: translateY(-1px);
    border-color: var(--border-strong);
    background: var(--surface-4);
}

.xyxcah6c1eq {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.xkafaewnxiz {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--css_header_background_color) 70%, white 6%);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.xkafaewnxiz img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.x6h9f0b8s5w {
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--header-link);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.xb6ad05wkl0 {
    margin-left: auto;
}

.xp17l2jfkhn {
    position: relative;
    z-index: 65;
    flex: 0 0 auto;
}

.xz24cscvrz2 {
    min-width: 74px;
    min-height: 44px;
    padding: 0 34px 0 14px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    cursor: pointer;
    user-select: none;
    color: var(--css_header_primary_second_button_text_color);
    background: var(--css_header_primary_second_button_background_color);
    border: 1px solid transparent;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.xz24cscvrz2::-webkit-details-marker {
    display: none;
}

.xz24cscvrz2::after {
    content: "";
    position: absolute;
    right: 14px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-65%) rotate(45deg);
    transition: transform 0.25s ease;
}

.xp17l2jfkhn[open] .xz24cscvrz2::after {
    transform: translateY(-35%) rotate(225deg);
}

.xp17l2jfkhn[open] .xz24cscvrz2,
.xz24cscvrz2:hover {
    color: var(--css_header_primary_button_text_color);
    background: var(--css_header_primary_button_background_color);
}

.xtqdco507ta {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 100%;
    display: grid;
    gap: 4px;
    padding: 6px;
    border-radius: 18px;
    background: var(--css_header_background_color);
    border: 1px solid var(--css_header_link_color);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.xp17l2jfkhn[open] .xtqdco507ta {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.xdzm7z3225y {
    min-height: 36px;
    min-width: 64px;
    padding: 0 12px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--css_header_link_color);
    background: transparent;
    border: 1px solid transparent;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.xdzm7z3225y:hover,
.xdzm7z3225y:focus-visible {
    color: var(--css_header_primary_second_button_text_color);
    background: var(--css_header_primary_second_button_background_color);
    outline: none;
}

.xdzm7z3225y.is-current {
    color: var(--css_header_primary_button_text_color);
    background: var(--css_header_primary_button_background_color);
}

.xqa90owwy4v {
    min-height: 48px;
    padding: 0 18px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.xqa90owwy4v:hover {
    transform: translateY(-1px);
}

.xd2wus21ixm {
    color: var(--css_header_primary_second_button_text_color);
    background: var(--css_header_primary_second_button_background_color);
    border: 1px solid var(--border-soft);
}

.xalytfj85nu {
    color: var(--css_header_primary_button_text_color);
    background: var(--css_header_primary_button_background_color);
    border: 1px solid transparent;
    box-shadow: 0 14px 32px color-mix(in srgb, var(--css_header_primary_button_background_color) 34%, transparent);
}

@media (max-width: 767px) {
    .xb6ad05wkl0 .xd2wus21ixm,
    .xb6ad05wkl0 .xalytfj85nu {
        display: none;
    }

    .xb6ad05wkl0 .xp17l2jfkhn {
        display: none;
    }

    .x6h9f0b8s5w {
        max-width: 150px;
        font-size: 1.5rem;
    }

    .xqa90owwy4v {
        padding-inline: 16px;
    }
}

.x2zu86bpv6v {
    position: fixed;
    inset: 0;
    z-index: 39;
    background: rgba(5, 8, 16, 0.68);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.x2zu86bpv6v.is-active {
    opacity: 1;
    visibility: visible;
}

.x1vwbchnjh7 {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 40;
    width: min(92vw, 420px);
    height: 100vh;
    transform: translateX(-104%);
    transition: transform 0.32s ease;
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--css_header_background_color) 98%, white 2%) 0%, var(--css_header_background_color) 100%);
    border-right: 1px solid var(--border-soft);
    box-shadow: var(--shadow-lg);
}

.x1vwbchnjh7.is-active {
    transform: translateX(0);
}

.xlf3n4ld9bp {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
}

.xv1nclxdk4x {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.x2sto6g3a33 {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.x2sto6g3a33 img {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--surface-3);
    border: 1px solid var(--border-soft);
    padding: 8px;
}

.x6foyhkmt4f {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.x6foyhkmt4f strong,
.x6foyhkmt4f span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.x6foyhkmt4f strong {
    color: var(--css_header_link_color);
    font-size: 1.6rem;
}

.x6foyhkmt4f span {
    color: color-mix(in srgb, var(--css_header_link_color) 72%, transparent);
    font-size: 1.2rem;
    margin-top: 3px;
}

.x094e4z5xan {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 50%;
    background: var(--surface-3);
    color: var(--css_header_link_color);
    border: 1px solid var(--border-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.x094e4z5xan:hover {
    transform: rotate(90deg);
    background: var(--surface-4);
}

.xj6umhpejot {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    padding-right: 4px;
}

.xj6umhpejot::-webkit-scrollbar {
    width: 6px;
}

.xj6umhpejot::-webkit-scrollbar-thumb {
    background: var(--surface-4);
    border-radius: 999px;
}

.xwr7hyhla0b {
    display: none;
}

@media (max-width: 767px) {
    .xwr7hyhla0b {
        display: block;
        margin-top: 14px;
    }

    .xwr7hyhla0b .xp17l2jfkhn {
        width: 100%;
    }

    .xwr7hyhla0b .xz24cscvrz2 {
        width: 100%;
    }

    .xwr7hyhla0b .xtqdco507ta {
        left: 0;
        right: 0;
        top: auto;
        bottom: calc(100% + 8px);
        transform: translateY(4px);
        max-height: min(45vh, 260px);
        overflow-y: auto;
    }

    .xwr7hyhla0b .xp17l2jfkhn[open] .xtqdco507ta {
        transform: translateY(0);
    }
}

.xiswwuhv5dn {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 10px;
}

.x25u4qfnoj2 {
    min-height: 50px;
    padding: 0 18px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    font-weight: 600;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.x25u4qfnoj2:hover {
    transform: translateY(-1px);
}

.xpi7jfj1shc {
    color: var(--css_header_primary_second_button_text_color);
    background: var(--css_header_primary_second_button_background_color);
    border: 1px solid var(--border-soft);
}

.xioy3hesr4u {
    color: var(--css_header_primary_button_text_color);
    background: var(--css_header_primary_button_background_color);
}

.xu63sfkwr51 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(58px, 1fr));
    gap: 8px;
    margin-top: 18px;
    padding: 10px;
    border-radius: 18px;
    background: var(--css_header_background_color);
    border: 1px solid var(--css_header_link_color);
}

.x4gl4zua6i5 {
    min-width: 52px;
    min-height: 36px;
    padding: 0 12px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--css_header_link_color);
    border: 1px solid currentColor;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.x4gl4zua6i5:hover,
.x4gl4zua6i5:focus-visible {
    color: var(--css_header_primary_second_button_text_color);
    background: var(--css_header_primary_second_button_background_color);
    border-color: transparent;
    outline: none;
}

.x4gl4zua6i5.is-current {
    color: var(--css_header_primary_button_text_color);
    background: var(--css_header_primary_button_background_color);
    border-color: transparent;
}

.x1vwbchnjh7 .x6iui3p6065,
.x1vwbchnjh7 .x6iui3p6065[class] {
    margin: 0;
    padding: 0;
    border: 0;
}

.x1vwbchnjh7 .menu__category-item + .menu__category-item,
.x1vwbchnjh7 .x6iui3p6065 + .x6iui3p6065 {
    margin-top: 10px;
}

.x1vwbchnjh7 .menu__category-item details,
.x1vwbchnjh7 .menu__category-item summary,
.x1vwbchnjh7 .xvjqmul3qbx {
    border-radius: 18px;
}

.x1vwbchnjh7 .menu__category-item details {
    background: transparent;
    border: 1px solid var(--border-soft);
    overflow: hidden;
}

.x1vwbchnjh7 .menu__category-item details[open] {
    background: var(--surface-3);
}

.x1vwbchnjh7 .menu__category-item summary {
    min-height: 56px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    position: relative;
    color: var(--css_header_link_color);
    list-style: none;
}

.x1vwbchnjh7 .menu__category-item summary::-webkit-details-marker {
    display: none;
}

.x1vwbchnjh7 .menu__category-item summary::after {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    position: absolute;
    right: 20px;
    top: calc(50% - 8px);
    opacity: 0.72;
    transition: transform 0.25s ease;
}

.x1vwbchnjh7 .menu__category-item details[open] summary::after {
    transform: rotate(225deg);
    top: calc(50% - 2px);
}

.x1vwbchnjh7 .menu__category-item summary span,
.x1vwbchnjh7 .xhgrfllqi3b {
    color: inherit;
    font-size: 1.45rem;
    font-weight: 600;
}

.x1vwbchnjh7 .menu__category-item summary svg,
.x1vwbchnjh7 .xvjqmul3qbx svg {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
}

.x1vwbchnjh7 .menu__category-item details > div {
    padding: 0 10px 10px;
}

.x1vwbchnjh7 .xvjqmul3qbx {
    min-height: 46px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: color-mix(in srgb, var(--css_header_link_color) 82%, transparent);
    font-size: 1.35rem;
}

.x1vwbchnjh7 .xvjqmul3qbx:hover,
.x1vwbchnjh7 .menu__category-item summary:hover {
    background: var(--surface-4);
    color: var(--css_header_link_color);
}

.x1vwbchnjh7 .menu__subcategory-list[class] {
    padding: 8px 0 4px 34px;
}

.x1vwbchnjh7 .menu__subcategory-item + .menu__subcategory-item {
    margin-top: 6px;
}

.x1vwbchnjh7 .menu__subcategory-link {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    color: color-mix(in srgb, var(--css_header_link_color) 72%, transparent);
    font-size: 1.25rem;
}

.x1vwbchnjh7 .menu__subcategory-link:hover {
    color: var(--css_header_link_color);
}

.xinj5i5afow {
    padding: 18px 0 28px;
}

@media (min-width: 768px) {
    .xinj5i5afow {
        padding: 30px 0 44px;
    }
}

.xpjveq09ipp {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 24px;
    align-items: center;
    background:
        radial-gradient(circle at top left, color-mix(in srgb, var(--banner-bg) 55%, white 8%) 0%, transparent 52%),
        linear-gradient(135deg, color-mix(in srgb, var(--banner-bg) 88%, black 12%) 0%, color-mix(in srgb, var(--banner-bg) 64%, var(--css_header_background_color) 36%) 100%);
    border: 1px solid color-mix(in srgb, var(--banner-bg) 50%, white 12%);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    isolation: isolate;
}

.xpjveq09ipp::before {
    content: "";
    position: absolute;
    inset: auto -10% -30% auto;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--banner-btn-bg) 30%, transparent);
    filter: blur(60px);
    z-index: -1;
}

.xu9ty0yefo7 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    text-align: left;
}

.xvmum9gipkt {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--banner-text);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.xn49eoo3zca {
    color: var(--banner-title);
}

.x8f5mj0npn9 {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 6px;
}

.x5wxz3l6e1h {
    min-height: 54px;
    padding: 0 22px;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
}

.x5wxz3l6e1h:hover {
    transform: translateY(-2px);
}

.x25iz46ubfc {
    color: var(--banner-btn-text);
    background: var(--banner-btn-bg);
    box-shadow: 0 16px 34px color-mix(in srgb, var(--banner-btn-bg) 40%, transparent);
}

.xurvg4fm3tr {
    color: var(--banner-text);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
}

.xbl8ezlsqcv {
    position: relative;
}

.xsdqai682aa {
    display: block;
    width: 100%;
}

.x6c0svvw4a8 {
    width: 100%;
    min-height: 220px;
    object-fit: cover;
    border-radius: calc(var(--radius-lg) - 10px);
    background: rgba(0, 0, 0, 0.15);
}

@media (min-width: 992px) {
    .xpjveq09ipp {
        grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
        gap: 36px;
        padding: 34px;
    }

    .x6c0svvw4a8 {
        min-height: 420px;
    }
}

.xcyfpwma8dy {
    padding: 26px 0;
}

@media (min-width: 768px) {
    .xcyfpwma8dy {
        padding: 40px 0;
    }
}

.xnxul2uy4ky {
    margin-bottom: 28px;
}

.x4douv8samd {
    text-align: center;
}

.section-head__label {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.x3trhtgb5i9 {
    margin-inline: auto;
}

.xwokl83yqan {
    display: grid;
    gap: 18px;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .xwokl83yqan {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .xwokl83yqan {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
    }
}

@media (min-width: 1320px) {
    .xwokl83yqan {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

.xarzpqfdu7o {
    height: 100%;
}

.xbed4hudici {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: linear-gradient(180deg, color-mix(in srgb, var(--content-bg) 86%, white 3%) 0%, color-mix(in srgb, var(--content-bg) 94%, black 6%) 100%);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.xbed4hudici:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-strong);
}

.xx8l5lexfmv {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10.1;
    background: color-mix(in srgb, var(--content-bg) 78%, black 22%);
}

.xx8l5lexfmv img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.xbed4hudici:hover .xx8l5lexfmv img {
    transform: scale(1.06);
}

.xq2dv9gmvs4 {
    padding: 18px;
    display: grid;
    gap: 10px;
    text-align: left;
}

.x81rh536tev {
    color: var(--content-heading);
    font-size: 1.85rem;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.x3hgl4fi2fg {
    color: color-mix(in srgb, var(--content-text) 75%, transparent);
    font-size: 1.35rem;
    line-height: 1.45;
    min-height: 1.45em;
}

.xpwq4vh7py8 {
    margin-top: 4px;
    min-height: 42px;
    padding: 0 16px;
    width: fit-content;
    max-width: 100%;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--main-btn-bg);
    color: var(--main-btn-text);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 10px 24px color-mix(in srgb, var(--main-btn-bg) 28%, transparent);
}

.xuhbd45ogr1 .xpwq4vh7py8 {
    background: var(--content-btn-bg);
    color: var(--content-btn-text);
}

.xsldvyilffz {
    margin-top: 26px;
    display: flex;
    justify-content: center;
}

.xk2rzb4z8l6 {
    min-height: 54px;
    padding: 0 26px;
    border: 0;
    border-radius: var(--radius-pill);
    background: var(--main-btn-secondary-bg);
    color: var(--main-btn-secondary-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.xk2rzb4z8l6:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.xcq8zi309o2 {
    overflow: hidden;
}

.image-slider-section {
    --gap: 18px;
    --max-per-view: 4;
    --img-w: 260px;
    --img-h: 148px;
}

.xmeip775e7c.x77i6ouw9d9 {
    position: relative;
}

.slider__viewport {
    overflow: hidden;
    outline: none;
}

.slider__track {
    display: flex;
    flex-wrap: nowrap;
    gap: var(--gap);
    align-items: stretch;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 4px;
    margin: 0;
    list-style: none;
    scrollbar-width: none;
}

.slider__track::-webkit-scrollbar {
    display: none;
}

.xzqkxszes9q {
    flex-shrink: 0;
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.xzqkxszes9q img {
    width: var(--img-w);
    height: var(--img-h);
    padding: 24px;
    object-fit: contain;
    border-radius: 24px;
    background: linear-gradient(180deg, color-mix(in srgb, var(--content-bg) 82%, white 3%) 0%, color-mix(in srgb, var(--content-bg) 94%, black 6%) 100%);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-sm);
}

.xy2gu58s3q3 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 48px;
    height: 48px;
    border: 1px solid var(--border-soft);
    border-radius: 50%;
    background: color-mix(in srgb, var(--content-bg) 78%, black 22%);
    color: var(--content-text);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.xy2gu58s3q3:hover {
    background: color-mix(in srgb, var(--content-bg) 62%, black 38%);
    border-color: var(--border-strong);
}

.xy2gu58s3q3:focus-visible {
    outline: 2px solid var(--main-link);
    outline-offset: 2px;
}

.slider__btn--prev {
    left: 0;
}

.slider__btn--next {
    right: 0;
}

.x77i6ouw9d9::before,
.x77i6ouw9d9::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 56px;
    pointer-events: none;
    z-index: 1;
}

.x77i6ouw9d9::before {
    left: 0;
    background: linear-gradient(to right, var(--main-bg), transparent);
}

.x77i6ouw9d9::after {
    right: 0;
    background: linear-gradient(to left, var(--main-bg), transparent);
}

@media (max-width: 599px) {
    .image-slider-section {
        --max-per-view: 1;
        --img-w: min(100vw - 64px, 320px);
        --img-h: 150px;
    }

    .xy2gu58s3q3 {
        width: 42px;
        height: 42px;
    }
}

@media (min-width: 600px) and (max-width: 991px) {
    .image-slider-section {
        --max-per-view: 2;
        --img-w: 280px;
        --img-h: 160px;
    }
}

@media (min-width: 992px) {
    .image-slider-section {
        --max-per-view: 4;
        --img-w: 280px;
        --img-h: 164px;
    }
}

.xgid56rsesb {
    padding-top: 34px;
    padding-bottom: 34px;
}

.x95790j7kn8 {
    margin-inline: auto;
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--content-bg) 86%, white 2%) 0%, color-mix(in srgb, var(--content-bg) 96%, black 4%) 100%);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.xuxaqtxwnd0 {
    padding: 28px 22px 0;
    text-align: center;
}

.x4uydqf1fxx {
    margin-left: auto;
    margin-right: auto;
}

.x4uydqf1fxx {
    color: var(--content-heading);
}

.xgsgfnr7joq {
    margin: 0 auto;
    padding: 22px 22px 30px;
    color: var(--content-text);
    text-align: left;
    font-size: 1.7rem;
    line-height: 1.82;
}

.xgsgfnr7joq h1,
.xgsgfnr7joq h2,
.xgsgfnr7joq h3,
.xgsgfnr7joq h4 {
    color: var(--content-heading);
    font-weight: 700;
    line-height: 1.2;
}

.xgsgfnr7joq h1 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: clamp(1.5rem, 2vw, 2.5rem);
}

.xgsgfnr7joq h2 {
    margin-top: 44px;
    margin-bottom: 16px;
    font-size: clamp(2.3rem, 2.5vw, 3rem);
}

.xgsgfnr7joq h3 {
    margin-top: 32px;
    margin-bottom: 14px;
    font-size: clamp(2rem, 2vw, 2.4rem);
}

.xgsgfnr7joq h4 {
    margin-top: 26px;
    margin-bottom: 12px;
    font-size: 1.9rem;
}

.xgsgfnr7joq p,
.xgsgfnr7joq ul,
.xgsgfnr7joq ol,
.xgsgfnr7joq table,
.xgsgfnr7joq .o-table__wrap,
.xgsgfnr7joq blockquote,
.xgsgfnr7joq figure {
    margin-top: 0;
    margin-bottom: 18px;
}

.xgsgfnr7joq ul,
.xgsgfnr7joq ol {
    padding-left: 24px;
}

.xgsgfnr7joq li + li {
    margin-top: 8px;
}

.xgsgfnr7joq strong {
    color: var(--content-heading);
    font-weight: 700;
}

.xgsgfnr7joq a {
    color: var(--content-link);
    text-decoration: underline;
    text-underline-offset: 0.16em;
    text-decoration-thickness: 0.08em;
}

.xgsgfnr7joq a:hover {
    text-decoration-thickness: 0.12em;
}

.xgsgfnr7joq img,
p img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: var(--radius-sm);
}

.xgsgfnr7joq blockquote {
    padding: 18px 20px;
    border-left: 3px solid var(--content-link);
    background: color-mix(in srgb, var(--content-bg) 76%, white 4%);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--content-text);
}

.o-table__wrap {
    overflow-x: auto;
    margin-bottom: 2.4rem;
    border-radius: var(--radius-sm);
}

.o-table__wrap::-webkit-scrollbar,
.xgsgfnr7joq table::-webkit-scrollbar {
    height: 8px;
}

.o-table__wrap::-webkit-scrollbar-thumb,
.xgsgfnr7joq table::-webkit-scrollbar-thumb {
    background: var(--surface-4);
    border-radius: 999px;
}

table,
.xgsgfnr7joq table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    display: table;
    overflow: hidden;
    white-space: normal;
    margin: 24px 0;
    font-size: 1.5rem;
    border: 1px solid var(--content-text);
    border-radius: var(--radius-sm);
    background: color-mix(in srgb, var(--content-bg) 90%, white 2%);
}

thead {
    color: var(--content-heading);
    background: var(--content-table-head);
}

th,
td,
.xgsgfnr7joq th,
.xgsgfnr7joq td {
    padding: 14px 16px;
    min-width: 120px;
    border: 1px solid var(--content-text);
    text-align: left;
    vertical-align: top;
    color: var(--content-text);
}

th,
.xgsgfnr7joq th {
    font-weight: 700;
}

tbody tr:nth-child(odd),
tbody tr:nth-child(even) {
    background: transparent;
}

@media (max-width: 767px) {
    table,
    .xgsgfnr7joq table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        border-radius: 18px;
    }
}

.x280512w3kr {
    padding: 8px 0 42px;
}

.x9f6jz17jkj {
    display: flex;
    justify-content: center;
}

.xx7ye2kqth0 {
    min-height: 48px;
    padding: 12px 18px;
    border-radius: var(--radius-pill);
    background: var(--surface-2);
    border: 1px solid var(--border-soft);
    color: var(--text-muted-strong);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    font-size: 1.35rem;
    box-shadow: var(--shadow-sm);
}

.x08dkeu2fal {
    padding: 34px 0 52px;
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--css_header_background_color) 86%, black 14%) 0%, var(--css_header_background_color) 100%);
    border-top: 1px solid var(--border-soft);
}

.x08dkeu2fal .footer {
    padding: 0;
    background: transparent;
}

.x08dkeu2fal .footer__container {
    width: min(100%, var(--site-max-width));
    margin-inline: auto;
    padding-inline: 16px;
}

.x08dkeu2fal .footer__top,
.x08dkeu2fal .footer__bottom,
.x08dkeu2fal .footer__links,
.x08dkeu2fal .footer__social,
.x08dkeu2fal .footer__copy,
.x08dkeu2fal .footer__age {
    margin-bottom: 24px;
}

.x08dkeu2fal .footer__top-name,
.x08dkeu2fal .footer__span,
.x08dkeu2fal .footer__social-span {
    color: var(--css_header_link_color);
}

.x08dkeu2fal .footer__text,
.x08dkeu2fal .footer__list-link,
.x08dkeu2fal .footer__age-text,
.x08dkeu2fal .footer-links-list li a {
    color: color-mix(in srgb, var(--css_header_link_color) 74%, transparent);
}

.x08dkeu2fal .footer__list-link:hover,
.x08dkeu2fal .footer-links-list li a:hover {
    color: var(--css_header_link_color);
}

.x08dkeu2fal .footer__social-link {
    min-height: 44px;
    padding: 0 16px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-soft);
    background: var(--surface-3);
    color: var(--css_header_link_color);
}

.x08dkeu2fal .footer__social-link:hover {
    border-color: var(--border-strong);
    background: var(--surface-4);
}

.x08dkeu2fal .footer__age-span {
    border: 2px solid var(--border-soft);
    color: var(--css_header_link_color);
    background: var(--surface-3);
}

.x08dkeu2fal .footer-links-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    justify-content: center;
}

.x08dkeu2fal .footer-links-list li {
    flex: 0 0 auto;
}

.x08dkeu2fal .footer__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    justify-content: center;
}

.x08dkeu2fal .footer__top-item {
    align-items: center;
}

.x08dkeu2fal .footer__social-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.x08dkeu2fal .footer__social-item {
    width: auto;
    max-width: none;
}

@media (min-width: 768px) {
    .x08dkeu2fal .footer__container {
        padding-inline: 24px;
    }
}

@media (min-width: 1100px) {
    .x08dkeu2fal .footer__container {
        padding-inline: 32px;
    }

    .x08dkeu2fal .footer__container,
    .x08dkeu2fal .footer__top,
    .x08dkeu2fal .footer__top-items,
    .x08dkeu2fal .footer__links {
        text-align: center;
    }

    .x08dkeu2fal .footer__list,
    .x08dkeu2fal .footer-links-list,
    .x08dkeu2fal .footer__social-list {
        justify-content: center;
    }

    .x08dkeu2fal .footer__top-item {
        align-items: center;
    }
}

.x08dkeu2fal .footer__container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.x08dkeu2fal .footer__top,
.x08dkeu2fal .footer__bottom {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.x08dkeu2fal .footer__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    justify-content: center;
}

.x08dkeu2fal .footer-links-list {
    justify-content: center;
}

.reviews-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    list-style: none;
}

.reviews-item__title {
    margin-bottom: 12px;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--content-heading);
}

.reviews-list .stars-rating {
    margin-bottom: 20px;
}

.reviews-item__content {
    font-size: 1.7rem;
    line-height: 1.7;
    color: var(--content-text);
}

.big-confirm-btn {
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    border-radius: var(--radius-pill) !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: auto !important;
    min-width: 200px;
    min-height: 52px;
    padding: 0 24px !important;
}

@media (max-width: 768px) {
    .xgsgfnr7joq {
        padding: 18px 18px 24px;
        font-size: 1.6rem;
        line-height: 1.76;
    }

    .xuxaqtxwnd0 {
        padding: 22px 18px 0;
    }
}

@media (max-width: 440px) {
    .xkafaewnxiz {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }

    .xpjveq09ipp {
        padding: 18px;
        border-radius: 24px;
    }

    .x6c0svvw4a8 {
        border-radius: 16px;
    }

    .xq2dv9gmvs4 {
        padding: 16px;
    }

    .xgsgfnr7joq {
        padding: 16px 14px 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.footer__top-items {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .xz24cscvrz2 {
        min-width: 62px;
        min-height: 42px;
        padding-inline: 12px 30px;
        font-size: 1.15rem;
    }

    .xtqdco507ta {
        right: 0;
    }
}
