:root {
    --font-family: "Inter", sans-serif;
    --second-family: "Inter Tight", sans-serif;
    --transition: all 0.2s;

    --typograph-black: #261000;
    --typograph-black-secondary: rgba(0, 0, 0, 0.5);
    --typograph-white-primary: #fff;
    --typograph-white-secondary: rgba(255, 255, 255, 0.7);
    --typograph-blue: #094bba;
    --typograph-brown: #7c3f1a;
    --typograph-sand: #bab17a;
    --typograph-green: #14c24f;
    --typograph-more-whom-1: #8362d4;
    --typograph-more-whom-2: #4379b9;
    --typograph-more-whom-3: #28827d;

    --background-cream-primary: #ede4d8;
    --background-cream-secondary: #f4f2eb;
    --background-cream-tertiary: #f1eee7;
    --background-accent-button: #0377ff;
    --background-page: #f7f5f0;
    --background-big-card: #fff;
    --background-overlay: rgba(54, 51, 48, 0.48);
    --stroke-secondary-interface: rgba(0, 0, 0, 0.12);
    --stroke-interractive-block: rgba(255, 255, 255, 0.4);
    --more-green-background: #e4edd8;
}

[data-theme="dark"] {
    --typograph-black: #e8e4e0;
    --typograph-black-secondary: rgba(255, 255, 255, 0.5);
    --typograph-white-primary: #1a1a1a;
    --typograph-white-secondary: rgba(255, 255, 255, 0.7);
    --typograph-blue: #4a90e8;
    --typograph-brown: #d4a07a;
    --typograph-sand: #d4cb8a;
    --typograph-green: #2dd65e;

    --background-cream-primary: #2a2a2a;
    --background-cream-secondary: #222222;
    --background-cream-tertiary: #1e1e1e;
    --background-accent-button: #0377ff;
    --background-page: #121212;
    --background-big-card: #1a1a1a;
    --background-overlay: rgba(0, 0, 0, 0.6);
    --stroke-secondary-interface: rgba(255, 255, 255, 0.12);
    --stroke-interractive-block: rgba(255, 255, 255, 0.15);
    --more-green-background: #1a2e1a;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 5vw;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smooth: always;
}

body.lock-scroll {
    overflow: hidden;
}

.body {
    font-family: "Inter", "Inter Tight", sans-serif;
    color: var(--typograph-black);
}

.wrapper {
    min-height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px;
    background: var(--background-page);
}

.main {
    flex-grow: 1;
    margin-top: 116px;
}

.main > section.section-screen:not(.section_wht):not(.tech-hero),
.main > section.parameters {
    margin-left: -12px;
    margin-right: -12px;
}

.container {
    max-width: 1230px;
    margin: 0 auto;
    padding: 0 15px;
    height: 100%;
    width: 100%;
}

.first_title {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 48px;
    line-height: 125%;
    color: var(--typograph-black);
}

.second_title {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 40px;
    line-height: 130%;
    color: var(--typograph-black);
}

.section_wht {
    border-radius: 28px;
    box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.04);
    background: var(--typograph-white-primary);
}

.descript {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: var(--typograph-black-secondary);
}

.blue_element {
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: var(--transition);
    box-shadow:
        0 4px 24px 0 rgba(6, 62, 160, 0.12),
        0 4px 20px 0 rgba(6, 62, 160, 0.4);
    background:
        radial-gradient(60% 80% at 85% 20%, #4a90e8 0%, transparent 100%),
        radial-gradient(
            95.6% 92.05% at 17.92% 13.75%,
            #93cdf5 0%,
            #0b57db 100%
        ),
        var(--background-accent-button);
    border: none;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
}

.blue_element > * {
    position: relative;
    z-index: 1;
}

.blue_element:before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    transition: var(--transition);
    opacity: 0;
    z-index: -2;
    background: radial-gradient(
        95.6% 92.05% at 17.92% 13.75%,
        #6ab8ed 0%,
        #0b57db 100%
    );
}

.blue_element:hover {
    box-shadow:
        0 2px 12px 0 rgba(6, 62, 160, 0.08),
        0 2px 10px 0 rgba(6, 62, 160, 0.25);
}

.blue_element:hover:before {
    opacity: 1;
}

.light_btn,
.slider_prev,
.slider_next {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--background-cream-primary);
    border: 1px solid var(--stroke-interractive-block);
    transition: var(--transition);
    width: 62px;
    height: 62px;
}

.light_btn {
    width: auto;
    height: auto;
    padding: 16px;
}

.slider_next img,
.slider_next svg {
    transform: rotate(180deg);
}

.light_btn:hover,
.slider_prev:hover,
.slider_next:hover {
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff3e3;
}

.light_btn:hover {
    border: 1px solid var(--stroke-interractive-block);
}

.light_btn:active,
.slider_prev:active,
.slider_next:active {
    background: #fadeb8;
}

.social_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    color: var(--typograph-white-primary);
    border-radius: 20px;
    padding: 16px 24px;
    background:
        radial-gradient(60% 80% at 85% 20%, #4aab58 0%, transparent 100%),
        radial-gradient(95.6% 92.05% at 17.92% 13.75%, #5ec96e 0%, #1a7a10 100%);
    box-shadow:
        0 4px 24px 0 rgba(6, 100, 20, 0.12),
        0 4px 20px 0 rgba(6, 100, 20, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        inset 0 -1px 0 rgba(0, 60, 10, 0.2);
    border: none;
    transition: var(--transition);
    flex-shrink: 0;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.social_btn svg {
    margin-right: 12px;
}

.social_btn:hover {
    box-shadow:
        0 2px 12px 0 rgba(6, 100, 20, 0.08),
        0 2px 10px 0 rgba(6, 100, 20, 0.25);
}

.social_btn:active {
    box-shadow:
        0 1px 6px 0 rgba(6, 100, 20, 0.1),
        0 1px 4px 0 rgba(6, 100, 20, 0.2);
}

/* Buy button */
/* Theme toggle */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid var(--stroke-secondary-interface);
    background: transparent;
    color: var(--typograph-black);
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
    margin-left: 12px;
    position: relative;
}

.theme-toggle:hover {
    background: var(--background-cream-secondary);
    border-color: var(--stroke-interractive-block);
}

.theme-toggle:active {
    transform: scale(0.95);
}

/* ── Header calculator nav link ───────────────────── */

.nav_calc-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 1px solid var(--stroke-secondary-interface) !important;
}

.nav_calc-link .material-symbols-rounded {
    font-size: 24px;
    background: linear-gradient(135deg, #f5a623 0%, #ffcc02 45%, #f5a623 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 1px 4px rgba(245, 166, 35, 0.5));
}

.theme-toggle__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        opacity 0.2s,
        transform 0.3s;
    position: absolute;
}

/* Theme toggle removed — dark only */

.header_buy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    color: var(--typograph-white-primary);
    border-radius: 20px;
    padding: 12px 20px;
    background:
        radial-gradient(60% 80% at 15% 20%, #ffcc4d 0%, transparent 100%),
        radial-gradient(95.6% 92.05% at 17.92% 13.75%, #f5b731 0%, #d48b07 100%);
    box-shadow:
        0 4px 24px 0 rgba(200, 130, 10, 0.15),
        0 4px 20px 0 rgba(200, 130, 10, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(120, 60, 0, 0.2);
    border: none;
    transition: var(--transition);
    flex-shrink: 0;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin-left: 24px;
    white-space: nowrap;
}

.header_buy-btn svg {
    flex-shrink: 0;
}

.header_buy-btn:hover {
    box-shadow:
        0 2px 12px 0 rgba(200, 120, 10, 0.08),
        0 2px 10px 0 rgba(200, 120, 10, 0.25);
}

.header_buy-btn:active {
    box-shadow:
        0 1px 6px 0 rgba(200, 120, 10, 0.1),
        0 1px 4px 0 rgba(200, 120, 10, 0.2);
}

/* Mini-cart wrapper & dropdown */

.header_buy-wrap {
    position: relative;
}

.mini-cart {
    position: absolute;
    z-index: 50;
    top: calc(100% + 12px);
    right: 0;
    width: 400px;
    padding: 0;
    background: #fff;
    border: 1px solid var(--stroke-secondary-interface);
    border-radius: 20px;
    box-shadow:
        0 12px 48px rgba(0, 0, 0, 0.12),
        0 2px 6px rgba(0, 0, 0, 0.06);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.97);
    transform-origin: top right;
    transition:
        opacity 0.2s,
        visibility 0.2s,
        transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.mini-cart--open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.mini-cart__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 32px 24px;
    color: var(--typograph-black-secondary);
}

.mini-cart__empty .material-symbols-rounded {
    font-size: 40px;
    opacity: 0.4;
}

.mini-cart__empty p {
    font-family: var(--font-family);
    font-size: 20px;
}

.mini-cart__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
}

.mini-cart__item-img {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--background-cream-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.mini-cart__item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mini-cart__item-img .material-symbols-rounded {
    font-size: 28px;
    color: var(--typograph-blue);
}

.mini-cart__item-info {
    flex: 1;
    min-width: 0;
}

.mini-cart__item-name {
    display: block;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    color: var(--typograph-black);
    text-decoration: none;
    line-height: 1.3;
    transition: color 0.15s;
}

.mini-cart__item-name:hover {
    color: var(--typograph-blue);
}

.mini-cart__item-price {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    color: var(--typograph-black-secondary);
    margin-top: 2px;
    display: block;
}

.mini-cart__item-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.mini-cart__qty {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--stroke-secondary-interface);
    border-radius: 10px;
    overflow: hidden;
}

.mini-cart__qty-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: none;
    background: transparent;
    color: var(--typograph-black);
    cursor: pointer;
    transition: background 0.15s;
}

.mini-cart__qty-btn:hover {
    background: var(--background-cream-secondary);
}

.mini-cart__qty-btn .material-symbols-rounded {
    font-size: 24px;
}

.mini-cart__qty-val {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    min-width: 24px;
    text-align: center;
    color: var(--typograph-black);
}

.mini-cart__remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: none;
    background: transparent;
    color: var(--typograph-black-secondary);
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.15s;
}

.mini-cart__remove:hover {
    background: rgba(220, 50, 50, 0.08);
    color: #dc3232;
}

.mini-cart__remove .material-symbols-rounded {
    font-size: 24px;
}

/* ── Kit contents ── */
.mini-cart__kit {
    padding: 0 16px 14px;
}

.mini-cart__kit-title {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--typograph-black-secondary);
    margin-bottom: 8px;
}

.mini-cart__kit-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mini-cart__kit-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--typograph-black);
    line-height: 1.3;
}

.mini-cart__kit-list li .material-symbols-rounded {
    font-size: 16px;
    color: var(--typograph-green);
    flex-shrink: 0;
}

.mini-cart__kit-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--typograph-blue);
    text-decoration: none;
    transition: opacity 0.2s;
}

.mini-cart__kit-link:hover {
    opacity: 0.7;
}

.mini-cart__kit-link .material-symbols-rounded {
    font-size: 15px;
}

.mini-cart__footer {
    padding: 12px 16px 16px;
    border-top: 1px solid var(--stroke-secondary-interface);
}

.mini-cart__total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    font-family: var(--font-family);
    font-size: 20px;
    color: var(--typograph-black-secondary);
}

.mini-cart__total strong {
    font-weight: 700;
    font-size: 20px;
    color: var(--typograph-black);
}

.mini-cart__checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 12px 20px;
    border-radius: 14px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
    transition: var(--transition);
}

.mini-cart__checkout .material-symbols-rounded {
    font-size: 24px;
}

/* ===== Cookie consent dialog ===== */
.cookie_popup {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(24px);
    transition:
        opacity 0.28s ease,
        visibility 0.28s ease,
        transform 0.28s ease;
}

.cookie-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cookie_popup__dialog {
    position: relative;
    pointer-events: auto;
    width: min(100%, 1040px);
    padding: 20px 22px;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) auto auto;
    align-items: center;
    gap: 18px;
    background: rgba(22, 24, 31, 0.92);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.cookie_popup__copy {
    min-width: 0;
}

.cookie_popup__title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 6px;
}

.cookie_popup__desc {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.62);
    max-width: 540px;
}

.cookie_popup__status {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie_popup__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 9px 14px;
    border-radius: 999px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie_popup__pill--muted {
    color: rgba(255, 255, 255, 0.68);
    background: rgba(255, 255, 255, 0.04);
}

/* Action buttons */
.cookie_popup__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.cookie_btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    min-height: 56px;
    padding: 16px 26px;
    border-radius: 16px;
    border: 1px solid transparent;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
    white-space: nowrap;
}

.cookie_btn--accept {
    background:
        radial-gradient(60% 80% at 85% 20%, #34d96a 0%, transparent 100%),
        radial-gradient(
            95.6% 92.05% at 17.92% 13.75%,
            #6aecaa 0%,
            #0a9e3a 100%
        ),
        linear-gradient(135deg, #0dba4a 0%, #14c24f 100%);
    color: #fff;
    box-shadow:
        0 4px 24px rgba(13, 186, 74, 0.14),
        0 10px 28px rgba(13, 186, 74, 0.28);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.22);
}

.cookie_btn--accept:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 28px rgba(13, 186, 74, 0.18),
        0 14px 34px rgba(13, 186, 74, 0.3);
}

.cookie_btn--accept:active {
    transform: translateY(0);
}

.cookie_btn--reject {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.86);
}

.cookie_btn--reject:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

/* ===== Popups (hidden by default) ===== */
.video-popup,
.product_popup,
.appmonisensa_popup {
    display: none;
}

.breadcrumb-list {
    position: relative;
    padding: 0 60px;
}

.breadcrumb-list::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1px;
    height: 1px;
    pointer-events: none;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.12) 0%,
        rgba(0, 0, 0, 0) 60%
    );
}

.breadcrumb span {
    display: flex;
    align-items: start;
    gap: 33px;
    padding: 8px 0 20px;
    position: relative;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    list-style: none;
}

.breadcrumb span span {
    padding: 0;
}

.breadcrumb span span:not(:first-child):before {
    content: "";
    position: absolute;
    left: -18px;
    top: 10px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #bab17a;
}

.breadcrumb span a {
    color: var(--typograph-black);
    transition: var(--transition);
    cursor: pointer;
}

.breadcrumb span a:hover {
    color: var(--typograph-blue);
}

.breadcrumb span a:active {
    color: var(--typograph-brown);
}

.breadcrumb_last {
    transition: var(--transition);
    color: var(--typograph-black-secondary);
}

/* header */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 12px 12px 0;
    z-index: 100;
}

.header_section {
    padding: 0px 48px;
    display: flex;
    width: 100%;
    height: 104px;
    align-items: center;
    justify-content: space-between;
    transition:
        height 0.3s ease,
        border-radius 0.3s ease;
}

.scroll .header {
    padding: 0;
}

.scroll .header_section {
    height: 64px;
    border-radius: 0 0 28px 28px;
}

body.header-drop-menu {
    overflow: hidden;
}

.header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header_logo {
    max-width: 142px;
    width: 100%;
    margin-right: 60px;
}

.logo-mb {
    display: none;
}

.logo-dark {
    display: none;
}

[data-theme="dark"] .logo-light {
    display: none;
}

[data-theme="dark"] .logo-dark {
    display: block;
}

.header_center {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.menu_title {
    display: none;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    line-height: 156%;
    letter-spacing: -0.01em;
    color: var(--typograph-black);
    margin-bottom: 24px;
}

.menu_title button {
    font-size: 30px;
    padding: 0 8px;
}

.nav_list {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav_list li a {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    transition: var(--transition);
    padding: 8px 16px;
    border-radius: 12px;
    background: transparent;
}

.nav_list li a:hover {
    color: var(--typograph-black);
    background: rgba(0, 0, 0, 0.05);
}

.nav_list .current-menu-item a {
    position: relative;
    color: var(--typograph-blue);
    background: rgba(6, 62, 160, 0.08);
    font-weight: 500;
}

.nav_list .current-menu-item a:hover {
    background: rgba(6, 62, 160, 0.12);
    color: var(--typograph-blue);
}

.nav_list .current-menu-item a::before {
    display: none;
}

.main-pc {
    display: none;
}
/**********************************/

/* Language switcher */
.lang-sw {
    position: relative;
}

.lang-sw__toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 10px;
    background: transparent;
    border: 1px solid transparent;
    cursor: pointer;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    color: var(--typograph-black);
    transition: all 0.2s;
}

.lang-sw__toggle:hover {
    background: var(--background-cream-secondary);
    border-color: var(--stroke-secondary-interface);
}

.lang-sw.is-open .lang-sw__toggle {
    background: var(--background-cream-secondary);
    border-color: var(--stroke-secondary-interface);
}

.lang-sw__flag {
    font-size: 20px;
    line-height: 1;
}

.lang-sw__code {
    letter-spacing: 0.04em;
}

.lang-sw__chevron {
    color: var(--typograph-black-secondary);
    transition: transform 0.25s;
    margin-left: 1px;
}

.lang-sw.is-open .lang-sw__chevron {
    transform: rotate(180deg);
}

/* Dropdown */
.lang-sw__dropdown {
    position: absolute;
    z-index: 50;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    padding: 6px;
    background: #fff;
    border: 1px solid var(--stroke-secondary-interface);
    border-radius: 14px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.06);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px) scale(0.97);
    transform-origin: top right;
    transition:
        opacity 0.2s,
        visibility 0.2s,
        transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.lang-sw.is-open .lang-sw__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Options */
.lang-sw__option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    color: var(--typograph-black);
    text-decoration: none;
    transition: background 0.15s;
}

.lang-sw__option:hover {
    background: var(--background-cream-secondary);
}

.lang-sw__option--active {
    font-weight: 600;
    background: rgba(9, 75, 186, 0.04);
}

.lang-sw__opt-flag {
    font-size: 20px;
    line-height: 1;
}

.lang-sw__opt-label {
    flex: 1;
}

.lang-sw__check {
    color: var(--typograph-blue);
    flex-shrink: 0;
}

.lang-active a {
    background: var(--background-cream-primary);
}

/**********************************/

.scroll .header_buy-btn {
    color: #b8860b;
    background: transparent;
    padding: 16px 12px;
    margin-left: 12px;
    box-shadow: none;
    text-shadow: none;
}

.scroll .header_buy-btn:hover {
    color: #d4a017;
}

.scroll .header_buy-btn:active {
    color: var(--typograph-black);
}

.header_dropdown-btn {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 22px 19px;
    border-radius: 50%;
    background: var(--background-cream-primary);
    border: 1px solid var(--stroke-interractive-block);
    transition: var(--transition);
}

.header_dropdown-btn span {
    width: 18px;
    height: 2px;
    background-color: var(--typograph-black);
}

.header_dropdown-btn:hover {
    border-color: rgba(0, 0, 0, 0.12);
    background: #fff3e3;
}

.header_dropdown-btn:active {
    background: #fadeb8;
}

/* footer */

.footer_top {
    display: flex;
    padding: 100px 0 112px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            black 20%,
            black 90%,
            transparent
        ),
        linear-gradient(to right, black 95%, transparent 100%);
    mask-composite: intersect;
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
}

.footer_top-inner {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.footer_top-img-wrapp {
    position: relative;
    max-width: 274px;
}

.footer_img-main {
    border-radius: 40px;
    width: 100%;
}

.footer_img-badge {
    position: absolute;
    bottom: -35px;
    right: -75px;
    max-width: 158px;
    background: radial-gradient(
        circle,
        rgba(63, 94, 251, 0.7) 0%,
        rgba(245, 245, 245, 0) 55%
    );
}

.footer_img-badge img {
    transform: scaleX(-1);
    width: 100%;
}

.footer_content-head {
    max-width: 828px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.footer_btn-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer_btn {
    display: flex;
    flex-direction: column;
    align-items: start;
    border-radius: 24px;
    background: var(--typograph-black);
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 48px;
    line-height: 125%;
    color: var(--typograph-white-primary);
    transition: var(--transition);
}

.footer_btn:hover {
    background: #5d2700;
}

.footer_btn:active {
    background: #441c00;
}

.footer_btn-item .blue_element {
    padding: 10px 28px;
    border: 0.5px solid var(--stroke-interractive-block);
    border-radius: 20px;
    background:
        radial-gradient(
            95.6% 92.05% at 17.92% 13.75%,
            #93cdf5 0%,
            #0b57db 100%
        ),
        var(--background-accent-button);
}

.footer_btn-item .blue_element span {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    line-height: 156%;
    letter-spacing: -0.01em;
    text-decoration: line-through;
    color: var(--typograph-white-secondary);
    margin-bottom: -12.8px;
}

.contacts__email {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 40px;
    line-height: 130%;
    color: var(--typograph-sand);
    margin-top: 8px;
}

.contacts__email span {
    transition: var(--transition);
    color: var(--typograph-black);
}

.contacts__email:hover span {
    color: var(--typograph-blue);
}

.footer_top-contact {
    background: none;
    mask-image: none;
    mask-composite: unset;
}

.footer_contact {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 72px;
}

.footer_contact-descript {
    font-size: 20px;
    line-height: 156%;
    letter-spacing: -0.01em;
    text-align: center;
    margin-top: 12px;
}

.footer__emails {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 40px;
    row-gap: 48px;
}

.footer__email-block {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.footer__whatsapp {
    margin: 0;
    grid-column: 1/3;
    width: 100%;
}

.footer_main {
    padding: 72px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.footer_main-inner ul {
    display: inline;
}

.footer_main-inner ul li {
    display: inline;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 200%;
    margin-right: 4px;
}

.footer_main-inner ul li p {
    display: inline;
}

.footer_main-inner ul li:first-child:before {
    display: none;
}

.footer_main-inner ul li::before {
    content: "•";
    margin: 0 8px 0 0;
    color: #bab17a;
    font-size: 20px;
}

.footer_main-inner ul a {
    text-decoration: underline;
    transition: var(--transition);
}

.footer_main-inner ul a:hover {
    color: var(--typograph-blue);
    text-decoration: none;
}

.footer_main-inner ul a:active {
    color: var(--typograph-brown);
}

.footer_main-logo {
    display: block;
    max-width: 222px;
    margin-bottom: 24px;
}

.footer_main-logo img {
    width: 100%;
}

.footer_info-list {
    margin-top: 12px;
}

.footer_info-item {
    color: var(--typograph-black-secondary);
}

/* Footer sitemap nav */
.footer-nav {
    padding: 48px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-nav__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.footer-nav__heading {
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 20px;
    color: var(--typograph-black);
    margin-bottom: 16px;
    letter-spacing: 0.01em;
}

.footer-nav__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav__list li {
    list-style: none;
}

.footer-nav__list a {
    font-family: var(--font-family);
    font-size: 20px;
    color: var(--typograph-black-secondary);
    text-decoration: none;
    transition: color 0.15s;
}

.footer-nav__list a:hover {
    color: var(--typograph-blue);
}

@media (max-width: 768px) {
    .footer-nav__grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

@media (max-width: 450px) {
    .footer-nav__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-nav {
        padding: 36px 0;
    }
}

.footer_bottom {
    padding: 72px 0;
}

.footer_bottom-inner {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer_bottom-logo {
    max-width: 136px;
}

.footer_bottom-logo img {
    width: 100%;
}

.footer_descript {
    max-width: 915px;
}

/* Full-screen section layout */

.section-screen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
}

.main > .section-screen:first-child {
    min-height: calc(100vh - 152px);
}

.section-screen > .container {
    width: 100%;
}

/* Section scroll-down arrow */

.section-scroll-down {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: rgba(0, 0, 0, 0.4);
    text-decoration: none;
    cursor: pointer;
    transition:
        border-color 0.2s,
        color 0.2s,
        background 0.2s;
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
}

.section-scroll-down:hover {
    border-color: rgba(0, 0, 0, 0.2);
    color: rgba(0, 0, 0, 0.6);
    background: rgba(255, 255, 255, 0.7);
}

.section-scroll-down .material-symbols-rounded {
    font-size: 32px;
}

/* scroll to top */

.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 900;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--typograph-white-primary);
    border: 1px solid var(--stroke-secondary-interface);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition:
        opacity 0.3s,
        visibility 0.3s,
        transform 0.3s,
        background 0.2s,
        border-color 0.2s;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--background-cream-primary);
    border-color: rgba(0, 0, 0, 0.12);
}

.scroll-top:active {
    background: #fadeb8;
}

.scroll-top .material-symbols-rounded {
    font-size: 28px;
    color: var(--typograph-black);
}

/* ═══════════════════════════════════════════════════
   Material Input — unified floating-label component
   Usage: <div class="mi"><input placeholder=" "/><label>Label</label></div>
   ═══════════════════════════════════════════════════ */
.mi {
    position: relative;
}

.mi input,
.mi textarea {
    display: block;
    width: 100%;
    padding: 22px 16px 10px;
    border: 1.5px solid var(--stroke-secondary-interface);
    border-radius: 12px;
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.5;
    color: var(--typograph-black);
    background: transparent;
    outline: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
    box-sizing: border-box;
}

.mi textarea {
    resize: vertical;
    min-height: 100px;
}

.mi select {
    display: block;
    width: 100%;
    padding: 22px 16px 10px;
    border: 1.5px solid var(--stroke-secondary-interface);
    border-radius: 12px;
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.5;
    color: var(--typograph-black);
    background: transparent;
    outline: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    padding-right: 40px;
}

.mi select:focus {
    border-color: var(--background-accent-button);
    box-shadow: 0 0 0 3px rgba(9, 75, 186, 0.12);
}

.mi select:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

/* Float label when select has a value */
.mi select.has-value + label,
.mi select:focus + label {
    top: 8px;
    transform: translateY(0);
    font-size: 11px;
}

/* Label — inside the input */
.mi label {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    padding: 0;
    font-family: var(--font-family);
    font-size: 16px;
    color: var(--typograph-black-secondary);
    background: transparent;
    pointer-events: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1;
    z-index: 1;
    transform-origin: left center;
}

/* Textarea label starts at top, not center */
.mi:has(textarea) label {
    top: 22px;
    transform: none;
}

/* Textarea floated label */
.mi textarea:focus + label,
.mi textarea:not(:placeholder-shown) + label {
    top: 8px;
}

/* ── Float up inside input on focus or filled ── */
.mi input:focus + label,
.mi input:not(:placeholder-shown) + label,
.mi textarea:focus + label,
.mi textarea:not(:placeholder-shown) + label {
    top: 12px;
    transform: none;
    font-size: 11px;
    font-weight: 600;
    color: var(--typograph-blue);
    letter-spacing: 0.02em;
}

/* ── Focus ring ── */
.mi input:focus,
.mi textarea:focus {
    border-color: var(--typograph-blue);
    box-shadow: 0 0 0 3px rgba(9, 75, 186, 0.1);
}

/* ── Hover ── */
.mi input:hover:not(:focus),
.mi textarea:hover:not(:focus) {
    border-color: var(--typograph-black-secondary);
}

/* ── Filled but not focused — label stays up, neutral color ── */
.mi input:not(:focus):not(:placeholder-shown) + label,
.mi textarea:not(:focus):not(:placeholder-shown) + label {
    color: var(--typograph-black-secondary);
    font-weight: 500;
}

/* ── Browser autofill — keep dark background ── */
.mi input:-webkit-autofill,
.mi input:-webkit-autofill:hover,
.mi input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
    -webkit-text-fill-color: var(--typograph-black) !important;
    transition: background-color 5000s ease-in-out 0s;
}

.mi input:-webkit-autofill + label {
    top: 12px;
    transform: none;
    font-size: 11px;
    font-weight: 600;
    color: var(--typograph-blue);
    letter-spacing: 0.02em;
}

/* ── Error state ── */
.mi--error input,
.mi--error textarea {
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
    animation: mi-shake 0.4s ease;
}

.mi--error label {
    color: #e53e3e !important;
}

@keyframes mi-shake {
    0%,
    100% {
        transform: translateX(0);
    }
    20%,
    60% {
        transform: translateX(-4px);
    }
    40%,
    80% {
        transform: translateX(4px);
    }
}

/* ── Vertical stacking within forms ── */
.mi + .mi,
.mi-row + .mi,
.mi + .mi-row {
    margin-top: 14px;
}

/* ── Row layout for side-by-side inputs ── */
.mi-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

@media (max-width: 640px) {
    .mi-row {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════
   Material Input — dark theme refinements
   (base colors handled by CSS variables, this adds
   the glassmorphic input style for dark pages)
   ═══════════════════════════════════════════════════ */
[data-theme="dark"] .mi input,
[data-theme="dark"] .mi textarea {
    background: rgba(255, 255, 255, 0.04);
}

[data-theme="dark"] .mi input:focus,
[data-theme="dark"] .mi textarea:focus {
    box-shadow: 0 0 0 3px rgba(74, 144, 232, 0.15);
}

[data-theme="dark"] .mi--error input,
[data-theme="dark"] .mi--error textarea {
    border-color: #f56565;
    box-shadow: none;
}

[data-theme="dark"] .mi--error label {
    color: #f56565 !important;
}
