/* Home page sections. */

/* Home cycle cards */
.lp-cycle {
    margin-top: 28px;
    margin-bottom: 22px;
}

.lp-cycle > .container {
    width: min(var(--lp-container-vw), var(--lp-container-max));
    margin-left: auto;
    margin-right: auto;
}

.lp-cycle__title {
    font-family: var(--lp-font-base);
    font-size: 2rem;
    font-weight: 800;
    color: rgb(var(--lp-heading-rgb));
    text-align: var(--lp-heading-align);
    margin: 34px 0 calc(22px + var(--lp-section-title-gap, 0px));
}

.lp-cycle__grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(240px, 1fr);
    gap: 22px;
    overflow-x: auto;
    padding: 8px 10px 26px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    margin: 0;
}

.lp-cycle__card {
    position: relative;
    border-radius: var(--lp-radius-md);
    background: linear-gradient(135deg, rgba(var(--lp-text-rgb), 0.10), rgba(var(--lp-text-rgb), 0.02));
    background-size: cover;
    background-position: center bottom;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.14);
    overflow: hidden;
    scroll-snap-align: start;
    transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 380ms ease, filter 380ms ease;
    will-change: transform;
    height: 320px;
}

.lp-cycle__card:hover,
.lp-cycle__card:focus-within {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.18);
    filter: saturate(1.05);
}

.js .lp-cycle__card {
    transform: translateY(18px);
    opacity: 0;
    transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), opacity 700ms ease;
}

.js .lp-cycle__card.visible {
    transform: translateY(0);
    opacity: 1;
}

.lp-cycle__card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.70) 0%,
        rgba(0, 0, 0, 0.30) 40%,
        rgba(0, 0, 0, 0.55) 100%
    );
}

.lp-cycle__overlay {
    position: absolute;
    inset: 0;
    padding: 22px 22px 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    z-index: 1;
}

.lp-cycle__card-title {
    margin: 0;
    font-family: var(--lp-font-base);
    font-weight: 800;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.02em;
}

.lp-cycle__card-text {
    margin: 0;
    font-family: var(--lp-font-base);
    font-size: 0.875rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.85);
    transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1), opacity 600ms ease;
    max-width: 18em;
}

.js .lp-cycle__card-text {
    transform: translateY(14px);
    opacity: 0;
}

.js .lp-cycle__card.visible .lp-cycle__card-text,
.lp-cycle__card:hover .lp-cycle__card-text,
.lp-cycle__card:focus-within .lp-cycle__card-text {
    transform: translateY(0);
    opacity: 1;
}

@media (min-width: 980px) {
    .lp-cycle__grid {
        grid-auto-flow: unset;
        grid-template-columns: repeat(6, 1fr);
        overflow: visible;
    }
    .lp-cycle__card {
        height: 360px;
    }
}

/* Home cycle stories (Instagram-like) */
.lp-cycle--stories .lp-stories {
    --lp-story-h: var(--lp-story-h-desktop, 280px);
    --lp-story-radius: var(--lp-radius, 22px);
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 10px 10px 26px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    align-items: flex-start;
    position: relative;
}

html[data-lp-story-full-bleed="1"] .lp-cycle--stories .lp-stories {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: max(10px, env(safe-area-inset-left));
    padding-right: max(10px, env(safe-area-inset-right));
    box-sizing: border-box;
}

@media (max-width: 640px) {
    .lp-cycle--stories .lp-stories {
        --lp-story-h: calc(var(--lp-story-h-mobile, 220px) * 1.15);
        gap: 14px;
    }
}

.lp-cycle--stories .lp-story-card {
    height: var(--lp-story-h);
    width: calc(var(--lp-story-h) * 9 / 16);
    flex: 0 0 auto;
    position: relative;
    border-radius: var(--lp-story-radius);
    background: conic-gradient(
        from 90deg,
        rgb(var(--lp-story-ring-1-rgb, 56, 189, 248)),
        rgb(var(--lp-story-ring-2-rgb, 167, 139, 250)),
        rgb(var(--lp-story-ring-1-rgb, 56, 189, 248)),
        rgb(var(--lp-story-ring-2-rgb, 167, 139, 250)),
        rgb(var(--lp-story-ring-1-rgb, 56, 189, 248))
    );
    padding: var(--lp-story-ring-size, 3px);
    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.18),
        0 0 var(--lp-story-ring-glow, 22px) rgba(var(--lp-story-ring-rgb, 56, 189, 248), var(--lp-story-ring-alpha, 0.65));
    cursor: pointer;
    scroll-snap-align: start;
    transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), filter 240ms ease, opacity 240ms ease, box-shadow 240ms ease;
    outline: none;
}

html[data-lp-story-shape="circle"] .lp-cycle--stories .lp-story-card {
    width: var(--lp-story-h);
    border-radius: 999px;
}

html[data-lp-story-shape="circle"] .lp-cycle--stories .lp-story-card__frame,
html[data-lp-story-shape="circle"] .lp-cycle--stories .lp-story-card__media {
    border-radius: calc(999px - var(--lp-story-ring-size, 3px));
}

html[data-lp-story-shape="circle"] .lp-cycle--stories .lp-story-card__label {
    text-align: center;
}

html[data-lp-story-preview-autoplay="0"] .lp-cycle--stories .lp-story-card__sound {
    display: none !important;
}

.lp-cycle--stories .lp-story-card:focus-visible {
    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.18),
        0 0 calc(var(--lp-story-ring-glow, 22px) + 8px) rgba(var(--lp-story-ring-rgb, 56, 189, 248), 0.9);
}

.lp-cycle--stories .lp-story-card.is-viewed {
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
    filter: grayscale(0.2) saturate(0.9);
    opacity: 0.82;
}

.lp-cycle--stories .lp-story-card.is-hovered {
    transform: translateY(-10px) scale(var(--lp-story-hover-scale, 1.06));
    z-index: 2;
}

.lp-cycle--stories .lp-story-card.is-dimmed {
    opacity: var(--lp-story-dim-opacity, 0.55);
    transform: translateY(8px) scale(0.98);
}

@media (hover: none) {
    .lp-cycle--stories .lp-story-card.is-dimmed {
        filter: none;
        opacity: 1;
        transform: none;
    }
}

.lp-cycle--stories .lp-story-card__frame {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: calc(var(--lp-story-radius) - var(--lp-story-ring-size, 3px));
    overflow: hidden;
    background: rgb(var(--lp-glass-rgb));
    position: relative;
}

.lp-cycle--stories .lp-story-card__frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.65) 100%);
    pointer-events: none;
}

.lp-cycle--stories .lp-story-card__media {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.lp-cycle--stories .lp-story-card__empty {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.78);
    font-family: var(--lp-font-base);
    font-size: 0.875rem;
    z-index: 1;
}

.lp-cycle--stories .lp-story-card__label {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    display: grid;
    gap: 4px;
}

.lp-cycle--stories .lp-story-card__title {
    font-family: var(--lp-font-base);
    font-size: 0.875rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.lp-cycle--stories .lp-story-card__play {
    position: absolute;
    left: 14px;
    top: 14px;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2;
}

.lp-cycle--stories .lp-story-card__play::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 9px;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 10px solid rgba(255, 255, 255, 0.92);
}

.lp-cycle--stories .lp-story-card__sound {
    position: absolute;
    right: 14px;
    top: 14px;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.95);
    z-index: 2;
    display: grid;
    place-items: center;
    padding: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
    cursor: pointer;
}

.lp-cycle--stories .lp-story-card.is-hovered .lp-story-card__sound,
.lp-cycle--stories .lp-story-card:focus-within .lp-story-card__sound {
    opacity: 1;
    pointer-events: auto;
}

.lp-cycle--stories .lp-story-card__sound:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.9);
    outline-offset: 2px;
}

.lp-cycle--stories .lp-story-card__icon {
    width: 18px;
    height: 18px;
    display: block;
    fill: currentColor;
}

.lp-cycle--stories .lp-story-card__icon--on {
    display: none;
}

.lp-cycle--stories .lp-story-card__sound[aria-pressed="true"] .lp-story-card__icon--muted {
    display: none;
}

.lp-cycle--stories .lp-story-card__sound[aria-pressed="true"] .lp-story-card__icon--on {
    display: block;
}

.lp-cycle--stories .lp-story-card.is-liked .lp-story-card__frame {
    filter: saturate(1.05);
}

/* Stories viewer (reels-style) */
html.lp-stories-open,
html.lp-stories-open body {
    overflow: hidden;
}

.lp-stories-viewer {
    position: fixed;
    inset: 0;
    z-index: 20050;
    background: rgba(0, 0, 0, var(--lp-story-viewer-alpha, 0.62));
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    display: none;
}

.lp-stories-viewer.is-open {
    display: block;
}

.lp-stories-viewer__actions {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    gap: 10px;
    z-index: 8;
}

.lp-stories-viewer__action {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.95);
    display: grid;
    place-items: center;
    padding: 0;
    backdrop-filter: blur(var(--lp-glass-blur)) saturate(var(--lp-glass-saturate));
    -webkit-backdrop-filter: blur(var(--lp-glass-blur)) saturate(var(--lp-glass-saturate));
}

.lp-stories-viewer__action:hover {
    filter: brightness(1.08);
}

.lp-stories-viewer__action svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    display: block;
}

.lp-stories-viewer__like.is-liked {
    background: rgba(255, 44, 90, 0.18);
    border-color: rgba(255, 44, 90, 0.4);
    color: rgba(255, 44, 90, 0.95);
}

.lp-stories-viewer__reels {
    height: 100vh;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
}

.lp-stories-viewer__reel {
    height: 100vh;
    scroll-snap-align: start;
    display: grid;
    place-items: center;
    padding: 24px 16px;
}

.lp-stories-viewer__shell {
    width: min(440px, 92vw);
    height: min(86vh, 860px);
    aspect-ratio: 9 / 16;
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    background: rgb(var(--lp-glass-rgb));
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55);
}

.lp-stories-viewer__media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lp-stories-viewer__overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.06) 38%, rgba(0,0,0,0.72) 100%);
}

.lp-stories-viewer__bars {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 52px;
    display: flex;
    gap: 6px;
    z-index: 7;
}

.lp-stories-viewer__bar {
    height: 3px;
    flex: 1;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    overflow: hidden;
}

.lp-stories-viewer__bar > span {
    display: block;
    height: 100%;
    width: 0%;
    background: rgba(255, 255, 255, 0.92);
}

.lp-stories-viewer__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(0, 0, 0, 0.35);
    color: rgba(255, 255, 255, 0.95);
    z-index: 9;
    display: grid;
    place-items: center;
    cursor: pointer;
    padding: 0;
}

.lp-stories-viewer__close:hover {
    filter: brightness(1.08);
}

.lp-stories-viewer__caption {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 7;
    color: rgba(255, 255, 255, 0.92);
    font-family: var(--lp-font-base);
    pointer-events: none;
    display: grid;
    gap: 6px;
}

.lp-stories-viewer__caption-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.lp-stories-viewer__caption-text {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.82);
    max-width: 38ch;
}

.lp-stories-viewer__mute svg,
.lp-stories-viewer__share svg,
.lp-stories-viewer__like svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    display: block;
}

/* Product categories grid (Home) */
.lp-pcats {
    margin-top: 26px;
    margin-bottom: 26px;
}

/* Advantages (glass) */
.lp-adv {
    margin-top: 34px;
    margin-bottom: 14px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.lp-adv__container {
    width: min(var(--lp-container-vw), var(--lp-container-max));
    margin-left: auto;
    margin-right: auto;
    padding: 26px 26px 22px;
    border-radius: var(--lp-radius-lg);
    background: var(--lp-glass-bg-panels);
    background-image: var(--lp-glass-sheen);
    backdrop-filter: blur(var(--lp-glass-blur)) saturate(var(--lp-glass-saturate));
    -webkit-backdrop-filter: blur(var(--lp-glass-blur)) saturate(var(--lp-glass-saturate));
    border: 1px solid rgba(255, 255, 255, var(--lp-glass-border-alpha));
    box-shadow: 0 20px calc(44px + var(--lp-glass-blur)) rgba(0, 0, 0, 0.18);
}

.page-template-template-home .main-site > .container > .advantages {
    margin-top: 34px;
    margin-bottom: 14px;
    padding: 26px 26px 22px;
    border-radius: var(--lp-radius-lg);
    background: var(--lp-glass-bg-panels);
    background-image: var(--lp-glass-sheen);
    backdrop-filter: blur(var(--lp-glass-blur)) saturate(var(--lp-glass-saturate));
    -webkit-backdrop-filter: blur(var(--lp-glass-blur)) saturate(var(--lp-glass-saturate));
    border: 1px solid rgba(255, 255, 255, var(--lp-glass-border-alpha));
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.page-template-template-home .main-site > .container > .advantages > h2 {
    font-family: var(--lp-font-base);
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(var(--lp-glass-text-rgb), 0.95);
    margin: 0 0 calc(18px + var(--lp-section-title-gap, 0px));
}

.page-template-template-home .main-site > .container > .advantages > .advantages-block > div > span {
    color: rgba(var(--lp-glass-text-rgb), 0.92);
}

.lp-adv__title {
    font-family: var(--lp-font-base);
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(var(--lp-glass-text-rgb), 0.95);
    margin: 0 0 calc(18px + var(--lp-section-title-gap, 0px));
}

.lp-adv__text {
    max-width: 62ch;
    margin: -4px auto calc(20px + var(--lp-section-title-gap, 0px));
    font-family: var(--lp-font-base);
    font-size: 0.98rem;
    line-height: 1.7;
    text-align: center;
    color: rgba(var(--lp-glass-text-rgb), 0.74);
}

.lp-adv__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.lp-adv__item {
    text-align: center;
    padding: 10px 8px;
    border-radius: var(--lp-radius-md);
    transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), background 260ms ease;
}

.lp-adv__item:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.06);
}

.lp-adv__icon {
    width: 92px;
    height: 92px;
    margin: 0 auto 12px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
}

.lp-adv__icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.92;
}

.lp-adv__label {
    font-family: var(--lp-font-base);
    font-size: 0.875rem;
    font-weight: 700;
    color: rgba(var(--lp-glass-text-rgb), 0.92);
    line-height: 1.25;
}

@media (max-width: 980px) {
    .lp-adv__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .lp-adv__container {
        width: min(var(--lp-container-vw-mobile), var(--lp-container-max));
    }
}

@media (max-width: 680px) {
    .lp-adv__container {
        width: calc(100% - 24px);
        padding: 20px 18px 18px;
    }
    .lp-adv__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .lp-adv__icon {
        width: 82px;
        height: 82px;
    }
}

/* Products grid + filters (Home) */
.lp-products {
    margin-top: 22px;
    margin-bottom: 34px;
}

.lp-products__container {
    width: min(var(--lp-container-vw), var(--lp-container-max));
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 980px) {
    .lp-products__container {
        width: min(var(--lp-container-vw-mobile), var(--lp-container-max));
    }
}

.lp-products__cats {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 8px 6px 14px;
    margin: 0 0 10px;
    justify-content: center;
}

.lp-products__cats::-webkit-scrollbar {
    height: 6px;
}

.lp-products__cats::-webkit-scrollbar-thumb {
    background: rgba(var(--lp-text-rgb), 0.22);
    border-radius: 999px;
}

.lp-products__cat {
    appearance: none;
    border: 1px solid rgba(var(--lp-heading-rgb), 0.12);
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(var(--lp-glass-blur)) saturate(var(--lp-glass-saturate));
    -webkit-backdrop-filter: blur(var(--lp-glass-blur)) saturate(var(--lp-glass-saturate));
    border-radius: 14px;
    padding: 10px 16px;
    font-family: var(--lp-font-base);
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(var(--lp-heading-rgb), 0.92);
    white-space: nowrap;
    cursor: pointer;
    transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), background 220ms ease;
}

.lp-products__cat:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.92);
}

.lp-products__cat.is-active {
    background: rgba(var(--lp-accent-rgb), 0.28);
    border-color: rgba(var(--lp-accent-rgb), 0.72);
    color: rgba(var(--lp-heading-rgb), 0.96);
}

.lp-products__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    justify-content: center;
}

.lp-products.is-loading .lp-products__grid {
    opacity: 0.55;
}

/* Products (Home) style variants (from theme settings) */
.lp-products[data-lp-products-style="freepik"] {
    background: var(--lp-products-freepik-bg, #0c0d10);
    border-radius: var(--lp-radius-lg);
    padding: 34px 0 40px;
    margin-top: 28px;
    margin-bottom: 40px;
}
.lp-products[data-lp-products-style="freepik"] .lp-products__cats {
    justify-content: flex-start;
    padding-left: 10px;
    padding-right: 10px;
}
.lp-products[data-lp-products-style="freepik"] .lp-products__cat {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.92);
}
.lp-products[data-lp-products-style="freepik"] .lp-products__cat.is-active {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.96);
}
.lp-products[data-lp-products-style="freepik"] .lp-products__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-flow: dense;
    gap: 16px;
}
.lp-products[data-lp-products-style="freepik"] .lp-prod-card {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.10);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
}
.lp-products[data-lp-products-style="freepik"] .lp-prod-card__media {
    background: transparent;
}
.lp-products[data-lp-products-style="freepik"] .lp-prod-card__media img {
    height: 280px;
    border-radius: calc(var(--lp-radius-md) - 4px);
}
.lp-products[data-lp-products-style="freepik"] .lp-prod-card__title,
.lp-products[data-lp-products-style="freepik"] .lp-prod-card__title a {
    color: rgba(255, 255, 255, 0.96);
}
.lp-products[data-lp-products-style="freepik"] .lp-prod-card__spec dt {
    color: rgba(255, 255, 255, 0.62);
}
.lp-products[data-lp-products-style="freepik"] .lp-prod-card__spec dd {
    color: rgba(255, 255, 255, 0.92);
}
.lp-products[data-lp-products-style="freepik"] .lp-prod-card__link {
    color: rgba(255, 255, 255, 0.88);
}
.lp-products[data-lp-products-style="freepik"] .lp-prod-card:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}
.lp-products[data-lp-products-style="freepik"] .lp-prod-card:nth-child(1) .lp-prod-card__media img {
    height: 520px;
}
.lp-products[data-lp-products-style="freepik"] .lp-prod-card:nth-child(5n + 3) {
    grid-column: span 2;
}

.lp-products[data-lp-products-style="glass"] .lp-prod-card {
    background: rgba(var(--lp-glass-rgb), var(--lp-glass-panels-alpha));
    border: 1px solid rgba(255, 255, 255, var(--lp-glass-border-alpha));
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(var(--lp-glass-blur)) saturate(var(--lp-glass-saturate));
    -webkit-backdrop-filter: blur(var(--lp-glass-blur)) saturate(var(--lp-glass-saturate));
    position: relative;
}
.lp-products[data-lp-products-style="glass"] .lp-prod-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--lp-products-card-bg-image, none);
    background-size: cover;
    background-position: center;
    opacity: var(--lp-products-card-bg-alpha, 0);
    pointer-events: none;
}
.lp-products[data-lp-products-style="glass"] .lp-prod-card__media,
.lp-products[data-lp-products-style="glass"] .lp-prod-card__body {
    position: relative;
    z-index: 1;
}
.lp-products[data-lp-products-style="glass"] .lp-prod-card__title,
.lp-products[data-lp-products-style="glass"] .lp-prod-card__title a {
    color: rgba(var(--lp-glass-text-rgb), 0.98);
}
.lp-products[data-lp-products-style="glass"] .lp-prod-card__spec dt {
    color: rgba(var(--lp-glass-muted-rgb), 0.9);
}
.lp-products[data-lp-products-style="glass"] .lp-prod-card__spec dd {
    color: rgba(var(--lp-glass-text-rgb), 0.95);
}
.lp-products[data-lp-products-style="glass"] .lp-prod-card__link {
    color: rgba(var(--lp-glass-link-rgb), 0.92);
}

.lp-prod-card {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(var(--lp-text-rgb), 0.10);
    border-radius: var(--lp-radius-md);
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
    transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 260ms ease;
    display: flex;
    flex-direction: column;
    min-height: 360px;
}

.lp-prod-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
}

.lp-prod-card__media {
    position: relative;
    display: block;
    padding: 14px;
    background: rgba(255, 255, 255, 0.8);
}

.lp-prod-card__media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--lp-radius-sm);
    display: block;
}

.lp-prod-card__badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 10px;
    border-radius: var(--lp-radius-xs);
    background: rgb(var(--lp-accent-rgb));
    color: #fff;
    font-family: var(--lp-font-base);
    font-size: 0.75rem;
    font-weight: 800;
}

.lp-prod-card__body {
    padding: 12px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.lp-prod-card__title {
    margin: 0;
    font-family: var(--lp-font-base);
    font-size: 1rem;
    font-weight: 800;
    color: rgba(var(--lp-heading-rgb), 0.98);
}

.lp-prod-card__title a {
    color: inherit;
    text-decoration: none;
}

.lp-prod-card__specs {
    margin: 0;
    padding: 0;
}

.lp-prod-card__spec {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 6px 0;
    border-top: 1px solid rgba(12, 14, 18, 0.06);
}

.lp-prod-card__spec dt {
    margin: 0;
    color: rgba(var(--lp-text-rgb), 0.55);
    font-family: var(--lp-font-base);
    font-size: 0.8125rem;
    font-weight: 600;
}

.lp-prod-card__spec dd {
    margin: 0;
    color: rgba(var(--lp-text-rgb), 0.92);
    font-family: var(--lp-font-base);
    font-size: 0.8125rem;
    font-weight: 800;
}

.lp-prod-card__link {
    margin-top: auto;
    display: inline-flex;
    justify-content: flex-end;
    text-decoration: none;
    color: rgb(var(--lp-link-rgb));
    font-family: var(--lp-font-base);
    font-size: 0.875rem;
    font-weight: 700;
}

@media (max-width: 1180px) {
    .lp-products__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

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

    .lp-prod-card {
        min-height: 0;
    }

    .lp-prod-card__media {
        padding: 8px;
    }

    .lp-prod-card__media img {
        height: min(42vw, 240px);
        border-radius: calc(var(--lp-radius-sm) - 2px);
    }

    .lp-prod-card__badge {
        top: 14px;
        left: 14px;
    }

    .lp-prod-card__body {
        padding: 10px 12px 14px;
        gap: 8px;
    }

    .lp-prod-card__title {
        font-size: 0.94rem;
    }

    .lp-products[data-lp-products-style="freepik"] .lp-products__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .lp-products[data-lp-products-style="freepik"] .lp-prod-card__media {
        padding: 10px;
    }

    .lp-products[data-lp-products-style="freepik"] .lp-prod-card:nth-child(1),
    .lp-products[data-lp-products-style="freepik"] .lp-prod-card:nth-child(5n + 3) {
        grid-column: span 1;
        grid-row: span 1;
    }
    .lp-products[data-lp-products-style="freepik"] .lp-prod-card__media img,
    .lp-products[data-lp-products-style="freepik"] .lp-prod-card:nth-child(1) .lp-prod-card__media img {
        height: min(54vw, 300px);
    }
}

/* Service (Home) */
.lp-service {
    margin: 34px 0 44px;
}

.lp-service__container {
    width: min(var(--lp-container-vw), var(--lp-container-max));
    margin-left: auto;
    margin-right: auto;
}

.lp-service__title {
    font-family: var(--lp-font-base);
    font-size: 2.75rem;
    font-weight: 900;
    text-align: var(--lp-heading-align);
    color: rgb(var(--lp-heading-rgb));
    margin: 0 0 12px;
}

.lp-service__subtitle {
    margin: 0 0 calc(22px + var(--lp-section-title-gap, 0px));
    font-family: var(--lp-font-base);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.6;
    text-align: var(--lp-subheading-align);
    color: rgba(var(--lp-text-rgb), 0.88);
}

.lp-service__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: stretch;
}

.lp-service__media {
    border-radius: var(--lp-radius-lg);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(12, 14, 18, 0.10);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.14);
    min-height: 520px;
}

.lp-service__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 260ms ease, transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.lp-service__media.is-swapping img {
    opacity: 0.55;
    transform: scale(1.02);
}

.lp-service__panel {
    border-radius: var(--lp-radius-lg);
    padding: 28px;
    background: var(--lp-glass-bg-panels);
    background-image: var(--lp-glass-sheen);
    backdrop-filter: blur(var(--lp-glass-blur)) saturate(var(--lp-glass-saturate));
    -webkit-backdrop-filter: blur(var(--lp-glass-blur)) saturate(var(--lp-glass-saturate));
    border: 1px solid rgba(255, 255, 255, var(--lp-glass-border-alpha));
    box-shadow: 0 22px calc(44px + var(--lp-glass-blur)) rgba(0, 0, 0, 0.18);
    color: rgba(var(--lp-glass-text-rgb), 0.92);
    text-align: var(--lp-glass-text-align);
}

.lp-service__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp-service__item {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.lp-service__item:first-child {
    border-top: 0;
}

.lp-service__link {
    position: relative;
    display: block;
    padding: 18px 54px 18px 16px;
    border-radius: var(--lp-radius-md);
    text-decoration: none;
    color: inherit;
    transition: background 220ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.lp-service__link:hover,
.lp-service__link:focus-visible,
.lp-service__item.is-active .lp-service__link {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-1px);
}

.lp-service__name {
    display: block;
    font-family: var(--lp-font-base);
    font-size: 1.125rem;
    font-weight: 800;
    color: rgba(var(--lp-glass-text-rgb), 0.96);
}

.lp-service__desc {
    display: block;
    margin-top: 6px;
    font-family: var(--lp-font-base);
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(var(--lp-glass-muted-rgb), 0.92);
    line-height: 1.45;
}

.lp-service__arrow {
    position: absolute;
    top: 50%;
    right: 16px;
    font-size: 1.375rem;
    color: rgba(var(--lp-glass-text-rgb), 0.82);
    transform: translate3d(0, -50%, 0);
    transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), color 220ms ease;
}

.lp-service__link:hover .lp-service__arrow,
.lp-service__link:focus-visible .lp-service__arrow,
.lp-service__item.is-active .lp-service__arrow {
    transform: translate3d(3px, -50%, 0);
    color: rgba(var(--lp-glass-text-rgb), 0.96);
}

@media (max-width: 980px) {
    .lp-service__container {
        width: min(var(--lp-container-vw-mobile), var(--lp-container-max));
    }
    .lp-service__layout {
        grid-template-columns: 1fr;
    }
    .lp-service__media {
        min-height: 420px;
    }
    .lp-service__title {
        font-size: 2.25rem;
    }
}

/* Works (Home) */
.lp-works {
    margin: 44px 0 34px;
    background: var(--lp-products-freepik-bg, #0c0d10);
    border-radius: var(--lp-radius-lg);
    padding: 34px 0 40px;
}

.lp-works.lp-works--classic {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 238, 228, 0.98));
    border: 1px solid rgba(43, 34, 21, 0.08);
    box-shadow: 0 24px 56px rgba(44, 36, 26, 0.10);
}

.lp-works__header {
    position: relative;
    display: block;
    margin-bottom: calc(18px + var(--lp-section-title-gap, 0px));
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 10px;
    padding-right: 10px;
}

.lp-works__header.has-cta {
    padding-bottom: 58px;
}

.lp-works__heading {
    flex: 1;
    width: 100%;
}

.lp-works__title {
    font-family: var(--lp-font-base);
    font-size: 2.75rem;
    font-weight: 900;
    color: rgb(var(--lp-heading-rgb));
    text-align: var(--lp-heading-align);
    margin: 0;
}

.lp-works__text {
    margin: 10px 0 0;
    margin-left: var(--lp-subheading-ml, 0);
    margin-right: var(--lp-subheading-mr, 0);
    font-family: var(--lp-font-base);
    font-size: 1rem;
    line-height: 1.45;
    color: rgba(var(--lp-text-rgb), 0.72);
    max-width: 70ch;
    text-align: var(--lp-subheading-align);
}

.lp-works__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: var(--lp-btn-radius);
    border: 1px solid transparent;
    background: rgb(var(--lp-btn-rgb));
    color: rgb(var(--lp-btn-text-rgb));
    text-decoration: none;
    font-family: var(--lp-font-base);
    font-size: 0.875rem;
    font-weight: 700;
    transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), background 220ms ease;
    white-space: nowrap;
    position: absolute;
    right: 0;
    bottom: 0;
}

.lp-works__cta:hover,
.lp-works__cta:focus-visible {
    transform: translateY(-1px);
    filter: brightness(1.08);
}

.lp-works__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding-left: 10px;
    padding-right: 10px;
}

.lp-work-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--lp-radius-md);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
    color: inherit;
    text-decoration: none;
    transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 260ms ease;
    min-height: 360px;
}

.lp-works.lp-works--classic .lp-works__title {
    color: #1f1911;
}

.lp-works.lp-works--classic .lp-works__text {
    color: rgba(52, 42, 28, 0.78);
}

.lp-works.lp-works--classic .lp-works__cta {
    background: #f1e0c8;
    color: #2f2415;
    border-color: rgba(77, 59, 34, 0.16);
    box-shadow: 0 10px 24px rgba(111, 84, 46, 0.14);
}

.lp-works.lp-works--classic .lp-work-card {
    background: #fffdf8;
    border: 1px solid rgba(73, 57, 34, 0.10);
    box-shadow: 0 18px 36px rgba(71, 56, 34, 0.10);
}

.lp-works.lp-works--classic .lp-work-card:hover,
.lp-works.lp-works--classic .lp-work-card:focus-visible {
    box-shadow: 0 24px 46px rgba(71, 56, 34, 0.16);
}

.lp-works.lp-works--classic .lp-work-card__body {
    background: linear-gradient(180deg, rgba(255, 252, 246, 0.98), rgba(247, 241, 231, 0.98));
}

.lp-works.lp-works--classic .lp-work-card__title {
    color: #241c12;
}

.lp-works.lp-works--classic .lp-work-card__excerpt {
    color: rgba(53, 43, 30, 0.82);
}

.lp-works.lp-works--classic .lp-chip {
    color: rgba(53, 43, 30, 0.82);
    background: rgba(233, 220, 198, 0.72);
    border-color: rgba(114, 88, 52, 0.14);
}

.lp-work-card:hover,
.lp-work-card:focus-visible {
    transform: translateY(-6px);
    box-shadow: 0 28px 86px rgba(0, 0, 0, 0.55);
}

.lp-work-card__media {
    height: 240px;
    background: transparent;
    background-size: cover;
    background-position: center;
}

.lp-work-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lp-work-card__body {
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.lp-work-card__title {
    margin: 0;
    font-family: var(--lp-font-base);
    font-size: 1.125rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.96);
    letter-spacing: 0.01em;
}

.lp-work-card__excerpt {
    margin: 0;
    font-family: var(--lp-font-base);
    font-size: 0.875rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.74);
}

.lp-work-card__meta {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.lp-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    font-family: var(--lp-font-base);
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 980px) {
    .lp-works__header {
        padding-bottom: 0;
    }
    .lp-works__cta {
        position: static;
        margin-top: 14px;
    }
    .lp-works__title {
        font-size: 2.25rem;
    }
    .lp-works__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .lp-works__grid {
        grid-template-columns: 1fr;
    }
    .lp-work-card__media {
        height: 220px;
    }
}

/* Support (Home) */
.lp-support {
    margin: 44px 0 34px;
}

.lp-support__glass {
    width: min(var(--lp-container-vw), var(--lp-container-max));
    margin-left: auto;
    margin-right: auto;
    border-radius: var(--lp-radius-lg);
    padding: 44px 22px;
    background: linear-gradient(90deg, rgba(255, 64, 162, 0.95) 0%, rgba(84, 70, 255, 0.92) 100%);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
    text-align: center;
    position: relative;
    overflow: hidden;
}

@media (max-width: 980px) {
    .lp-support__glass {
        width: min(var(--lp-container-vw-mobile), var(--lp-container-max));
    }
}

.lp-support__glass::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(12, 14, 18, 0.22);
}

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

.lp-support__title {
    font-family: var(--lp-font-base);
    font-size: 1.125rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.96);
    margin-bottom: calc(12px + var(--lp-section-title-gap, 0px));
}

.lp-support__phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--lp-font-base);
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.96);
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(12, 14, 18, 0.35);
    backdrop-filter: blur(12px) saturate(160%);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.lp-support__phone:hover,
.lp-support__phone:focus-visible {
    background: rgba(12, 14, 18, 0.46);
}

.lp-support__phone-icon {
    font-size: 1rem;
    line-height: 1;
    opacity: 0.95;
}

/* About banners (Home) */
.lp-about {
    margin-top: 44px;
    margin-bottom: 34px;
}

.lp-about.is-partners .lp-about__viewport {
    display: none;
}

.lp-partners {
    padding: 6px 0 10px;
}

.lp-partners__viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--lp-radius-lg);
    background: var(--lp-glass-bg-panels);
    background-image: var(--lp-glass-sheen);
    backdrop-filter: blur(var(--lp-glass-blur)) saturate(var(--lp-glass-saturate));
    -webkit-backdrop-filter: blur(var(--lp-glass-blur)) saturate(var(--lp-glass-saturate));
    border: 1px solid rgba(255, 255, 255, var(--lp-glass-border-alpha));
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.14);
    padding: 18px 10px;
}

.lp-partners__track {
    display: flex;
    width: max-content;
    gap: var(--lp-partners-gap, 34px);
    animation: lp-marquee var(--lp-partners-duration, 26s) linear infinite;
    will-change: transform;
}

.lp-partners__viewport.is-pause-hover:hover .lp-partners__track {
    animation-play-state: paused;
}

.lp-partners__run {
    display: flex;
    align-items: center;
    gap: var(--lp-partners-gap, 34px);
}

.lp-partners__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    padding: 6px 8px;
    border-radius: var(--lp-radius-sm);
    transition: transform 220ms ease, filter 220ms ease, opacity 220ms ease;
    opacity: 0.92;
}

.lp-partners__item img {
    height: 100%;
    width: auto;
    display: block;
    object-fit: contain;
    filter: grayscale(var(--lp-partners-grayscale, 20%));
}

.lp-partners__item:hover,
.lp-partners__item:focus-visible {
    transform: translateY(-2px) scale(1.02);
    opacity: 1;
}

.lp-partners__item:hover img,
.lp-partners__item:focus-visible img {
    filter: grayscale(0%);
}

@keyframes lp-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.lp-about__header {
    position: relative;
    display: block;
    margin-bottom: calc(12px + var(--lp-section-title-gap, 0px));
    padding-left: 10px;
    padding-right: 10px;
}

.lp-about__heading {
    text-align: var(--lp-heading-align);
}

.lp-about__controls {
    position: absolute;
    right: 0;
    top: 0;
}

.lp-about__section-title {
    font-family: var(--lp-font-base);
    font-size: 2.75rem;
    font-weight: 900;
    color: rgb(var(--lp-heading-rgb));
    text-align: inherit;
    margin: 0;
}

.lp-about__section-text {
    margin: 10px 0 0;
    margin-left: var(--lp-subheading-ml, 0);
    margin-right: var(--lp-subheading-mr, 0);
    font-family: var(--lp-font-base);
    font-size: 1rem;
    line-height: 1.45;
    color: rgba(var(--lp-text-rgb), 0.72);
    max-width: 70ch;
    text-align: var(--lp-subheading-align);
}

.lp-about__track {
    display: grid;
    gap: 18px;
}

.lp-about__viewport {
    width: 100%;
}

.lp-about__banner {
    position: relative;
    border-radius: var(--lp-radius-lg);
    overflow: hidden;
    min-height: var(--lp-about-banner-h);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(var(--lp-glass-rgb), 0.35);
}

.lp-about.is-stacked .lp-about__banner {
    width: min(92vw, var(--lp-about-banner-w));
    margin-left: auto;
    margin-right: auto;
}

.lp-about__bg {
    position: absolute;
    inset: 0;
    background-image: var(--lp-about-bg);
    background-size: cover;
    background-position: center;
    filter: saturate(1.05);
}

.lp-about__banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(12, 14, 18, 0.82) 0%,
        rgba(12, 14, 18, 0.55) 45%,
        rgba(12, 14, 18, 0.25) 100%
    );
    z-index: 1;
}

.lp-about__banner::after {
    content: "";
    position: absolute;
    inset: -40px -40px -40px 35%;
    background:
        repeating-linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.10),
            rgba(255, 255, 255, 0.10) 2px,
            rgba(255, 255, 255, 0) 2px,
            rgba(255, 255, 255, 0) 18px
        );
    opacity: 0.22;
    transform: skewX(-10deg);
    z-index: 2;
    pointer-events: none;
}

.lp-about__inner {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 44px 0;
}

.lp-about__inner-container {
    width: 100%;
}

.lp-about__content {
    max-width: 52ch;
    padding: 26px 26px 22px;
    border-radius: var(--lp-radius-md);
    background: var(--lp-glass-bg-panels);
    background-image: var(--lp-glass-sheen);
    backdrop-filter: blur(var(--lp-glass-blur)) saturate(var(--lp-glass-saturate));
    -webkit-backdrop-filter: blur(var(--lp-glass-blur)) saturate(var(--lp-glass-saturate));
    border: 1px solid rgba(255, 255, 255, var(--lp-glass-border-alpha));
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.lp-about__title {
    margin: 0 0 10px;
    font-family: var(--lp-font-base);
    font-size: 1.75rem;
    font-weight: 900;
    color: rgba(var(--lp-glass-text-rgb), 0.96);
    letter-spacing: 0.01em;
}

.lp-about__text {
    margin: 0;
    font-family: var(--lp-font-base);
    font-size: 0.9375rem;
    line-height: 1.5;
    color: rgba(var(--lp-glass-muted-rgb), 0.9);
}

.lp-about__cta {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: var(--lp-btn-radius);
    background: rgb(var(--lp-btn-rgb));
    border: 1px solid transparent;
    color: rgb(var(--lp-btn-text-rgb));
    text-decoration: none;
    font-family: var(--lp-font-base);
    font-size: 0.875rem;
    font-weight: 800;
}

.lp-about__cta:hover,
.lp-about__cta:focus-visible {
    filter: brightness(1.08);
}

.lp-about__banner.is-center .lp-about__inner {
    justify-content: center;
    text-align: center;
}

.lp-about__banner.is-right .lp-about__inner {
    justify-content: flex-end;
    text-align: right;
}

/* About carousel */
.lp-about.is-carousel {
    position: relative;
}

.lp-about.is-carousel .lp-about__track {
    display: flex;
    gap: 18px;
    padding: 4px 8px 10px;
}

.lp-about.is-carousel .lp-about__viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.lp-about.is-carousel .lp-about__banner {
    width: min(92vw, var(--lp-about-banner-w));
    flex: 0 0 auto;
    scroll-snap-align: center;
}

.lp-about__controls {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.lp-about__control {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    cursor: pointer;
    background: var(--lp-glass-bg-panels);
    background-image: var(--lp-glass-sheen);
    backdrop-filter: blur(var(--lp-glass-blur)) saturate(var(--lp-glass-saturate));
    -webkit-backdrop-filter: blur(var(--lp-glass-blur)) saturate(var(--lp-glass-saturate));
    border: 1px solid rgba(255, 255, 255, var(--lp-glass-border-alpha));
    color: rgba(var(--lp-glass-text-rgb), 0.92);
    font-size: 1.125rem;
    line-height: 1;
}

.lp-about__control:hover,
.lp-about__control:focus-visible {
    background: var(--lp-glass-bg-panels-strong);
    background-image: var(--lp-glass-sheen);
}

/* About split */
.lp-about.is-split .lp-about__banner {
    width: min(92vw, var(--lp-about-banner-w));
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 1.25fr 1fr;
}

.lp-about.is-team .lp-about__viewport {
    display: none;
}

.lp-about.is-team {
    position: relative;
    padding: 16px 0 8px;
}

.lp-about.is-team::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(var(--lp-team-grad-angle, 90deg), rgba(var(--lp-team-grad-1-rgb, 255, 132, 0), 0.12), rgba(var(--lp-team-grad-2-rgb, 124, 58, 237), 0.10));
    pointer-events: none;
}

html[data-lp-team-glass="1"] .lp-about.is-team::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: var(--lp-glass-panels-bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: calc(var(--lp-glass-panels-bg-alpha) * 0.28);
    filter: blur(calc(var(--lp-glass-blur) / 2)) saturate(1.1) contrast(1.05);
    transform: translateZ(0);
}

html[data-lp-team-glass="1"] .lp-about.is-team::before {
    background-color: transparent;
    background-image: var(--lp-glass-sheen), var(--lp-glass-panels-surface);
    background-size: auto, auto, cover;
    background-position: 0 0, 0 0, center;
    background-repeat: no-repeat, no-repeat, no-repeat;
    backdrop-filter: blur(var(--lp-glass-blur)) saturate(var(--lp-glass-saturate));
    -webkit-backdrop-filter: blur(var(--lp-glass-blur)) saturate(var(--lp-glass-saturate));
    border-top: 1px solid rgba(255, 255, 255, var(--lp-glass-border-alpha));
    border-bottom: 1px solid rgba(255, 255, 255, var(--lp-glass-border-alpha));
}

.lp-team {
    position: relative;
    z-index: 1;
    padding: 14px 0 10px;
}

.lp-team__row {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 22px;
    padding: 18px 0 8px;
}

.lp-team__row::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    height: 64px;
    background: linear-gradient(90deg, rgba(var(--lp-team-stripe-rgb), 0.0) 0%, rgba(var(--lp-team-stripe-rgb), var(--lp-team-stripe-alpha)) 14%, rgba(var(--lp-team-stripe-rgb), var(--lp-team-stripe-alpha)) 86%, rgba(var(--lp-team-stripe-rgb), 0.0) 100%);
    z-index: 0;
}

.lp-team-card {
    position: relative;
    z-index: 1;
    flex: 1 1 180px;
    max-width: 220px;
    text-align: center;
}

.lp-team-card:nth-child(even) {
    transform: translateY(14px);
}

.lp-team-card__photo {
    width: var(--lp-team-photo-w, 160px);
    height: var(--lp-team-photo-h, 160px);
    margin: 0 auto 12px;
    padding: var(--lp-team-photo-frame, 4px);
    border-radius: var(--lp-radius);
    background: conic-gradient(
        from 90deg,
        rgb(var(--lp-story-ring-1-rgb, 56, 189, 248)),
        rgb(var(--lp-story-ring-2-rgb, 167, 139, 250)),
        rgb(var(--lp-story-ring-1-rgb, 56, 189, 248))
    );
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.14),
        0 0 18px rgba(var(--lp-story-ring-1-rgb, 56, 189, 248), 0.35);
    overflow: hidden;
    background-clip: padding-box;
}

.lp-team-card__photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: calc(var(--lp-radius) - var(--lp-team-photo-frame, 4px));
    background: rgba(255,255,255,0.2);
}

html[data-lp-story-shape="circle"] .lp-team-card__photo,
html[data-lp-story-shape="circle"] .lp-team-card__photo img {
    border-radius: 999px;
}

.lp-team-card__name {
    margin: 0;
    font-family: var(--lp-font-base);
    font-size: 1.05rem;
    font-weight: 800;
    color: rgb(var(--lp-heading-rgb));
}

.lp-team-card__role {
    margin: 6px 0 0;
    font-family: var(--lp-font-base);
    font-size: 0.875rem;
    line-height: 1.35;
    color: rgba(var(--lp-text-rgb), 0.7);
}

@media (max-width: 980px) {
    .lp-team__row {
        flex-wrap: wrap;
        justify-content: center;
    }
    .lp-team-card {
        max-width: 240px;
    }
    .lp-team__row::before {
        top: 74px;
        height: 56px;
    }
}

.lp-about.is-split .lp-about__bg {
    position: relative;
    inset: auto;
    min-height: var(--lp-about-banner-h);
    grid-column: 1;
}

.lp-about.is-split .lp-about__banner::before {
    background: linear-gradient(
        180deg,
        rgba(12, 14, 18, 0.60) 0%,
        rgba(12, 14, 18, 0.25) 55%,
        rgba(12, 14, 18, 0.45) 100%
    );
}

.lp-about.is-split .lp-about__banner::after {
    display: none;
}

.lp-about.is-split .lp-about__inner {
    padding: 0;
    display: flex;
    align-items: center;
    grid-column: 2;
}

.lp-about.is-split .lp-about__inner-container {
    padding: 26px;
}

.lp-about.is-split .lp-about__content {
    max-width: none;
}

.lp-about.is-split .lp-about__banner.is-right {
    grid-template-columns: 1fr 1.25fr;
}

.lp-about.is-split .lp-about__banner.is-right .lp-about__bg {
    grid-column: 2;
}

.lp-about.is-split .lp-about__banner.is-right .lp-about__inner {
    grid-column: 1;
}

@media (max-width: 980px) {
    .lp-about__header {
        padding-top: 2px;
    }
    .lp-about__controls {
        position: static;
        margin-top: 12px;
    }
    .lp-about__section-title {
        font-size: 2.25rem;
    }
    .lp-about__inner {
        padding: 28px 0;
    }
    .lp-about__content {
        max-width: none;
    }
    .lp-about.is-split .lp-about__banner {
        grid-template-columns: 1fr;
    }
    .lp-about.is-split .lp-about__bg,
    .lp-about.is-split .lp-about__inner {
        grid-column: auto;
    }
    .lp-about.is-split .lp-about__inner-container {
        padding: 18px;
    }
}

/* Plans (Home) */
.lp-plans {
    position: relative;
    padding: 76px 0;
    margin: 40px 0;
    background: radial-gradient(circle at 15% 0%, rgba(255, 255, 255, 0.09), rgba(0, 0, 0, 0) 46%),
        radial-gradient(circle at 85% 0%, rgba(var(--lp-accent-rgb), 0.14), rgba(0, 0, 0, 0) 52%),
        #0a0d12;
    border-radius: 0;
    overflow: hidden;
}

.lp-plans > .container {
    width: min(var(--lp-container-vw), var(--lp-container-max));
    margin-left: auto;
    margin-right: auto;
}

.lp-plans__header {
    text-align: var(--lp-heading-align);
    margin-bottom: calc(30px + var(--lp-section-title-gap, 0px));
}

.lp-plans__title {
    margin: 0;
    font-family: var(--lp-font-base);
    font-size: 2.35rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.96);
}

.lp-plans__text {
    margin: 14px 0 0;
    margin-left: var(--lp-subheading-ml, auto);
    margin-right: var(--lp-subheading-mr, auto);
    max-width: 78ch;
    font-family: var(--lp-font-base);
    font-size: 1rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.72);
    text-align: var(--lp-subheading-align);
}
.lp-plans__promo {
    margin: 18px auto 0;
    margin-left: var(--lp-subheading-ml, auto);
    margin-right: var(--lp-subheading-mr, auto);
    max-width: 78ch;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(var(--lp-accent-rgb), 0.12);
    color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(var(--lp-accent-rgb), 0.24);
    font-family: var(--lp-font-base);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}

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

.lp-plan-card {
    position: relative;
    border-radius: var(--lp-radius-lg);
    background: var(--lp-glass-bg-panels-soft);
    background-image: var(--lp-glass-sheen);
    backdrop-filter: blur(var(--lp-glass-blur)) saturate(var(--lp-glass-saturate));
    -webkit-backdrop-filter: blur(var(--lp-glass-blur)) saturate(var(--lp-glass-saturate));
    border: 1px solid rgba(255, 255, 255, var(--lp-glass-border-alpha));
    box-shadow: 0 18px 56px rgba(0, 0, 0, 0.38);
    overflow: hidden;
}

.lp-plan-card.is-featured {
    border-color: rgba(var(--lp-accent-rgb), 0.58);
    box-shadow: 0 22px 76px rgba(0, 0, 0, 0.48);
    transform: translateY(-4px);
}

.lp-plan-card__inner {
    padding: 28px 26px 24px;
    display: grid;
    gap: 14px;
    text-align: var(--lp-glass-text-align);
}

.lp-plan-card__title {
    margin: 0;
    font-family: var(--lp-font-base);
    font-size: 1.35rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.96);
}

.lp-plan-card__desc {
    margin: 0;
    font-family: var(--lp-font-base);
    font-size: 0.95rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.68);
}

.lp-plan-card__price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 6px;
    justify-content: var(--lp-glass-items, flex-start);
}

.lp-plan-card__amount {
    font-family: var(--lp-font-base);
    font-size: 1.8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.96);
}
.lp-plan-card__amount--old {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    text-decoration-thickness: 1.5px;
}
.lp-plan-card__amount--discounted {
    color: rgba(var(--lp-accent-rgb), 1);
}
.lp-plan-card__discount-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgb(var(--lp-accent-rgb));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    box-shadow: 0 10px 24px rgba(var(--lp-accent-rgb), 0.28);
}

.lp-plan-card__unit {
    font-family: var(--lp-font-base);
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.72);
}

.lp-plan-card__note {
    margin: -6px 0 0;
    font-family: var(--lp-font-base);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.62);
}
.lp-plan-card__deadline {
    margin: -6px 0 0;
    font-family: var(--lp-font-base);
    font-size: 0.84rem;
    font-weight: 700;
    color: rgba(var(--lp-accent-rgb), 0.96);
}

.lp-plan-card__btn {
    width: 100%;
    margin-top: 6px;
}

.lp-plan-card__features-title {
    font-family: var(--lp-font-base);
    font-size: 0.92rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.92);
    margin-top: 10px;
}

.lp-plan-card__features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.lp-plan-card__features li {
    position: relative;
    padding-left: 26px;
    font-family: var(--lp-font-base);
    font-size: 0.9rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.76);
}

.lp-plan-card__features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: rgba(var(--lp-accent-rgb), 0.95);
    font-weight: 900;
}

@media (max-width: 980px) {
    .lp-plans {
        padding: 56px 0;
    }
    .lp-plans > .container {
        width: min(var(--lp-container-vw-mobile), var(--lp-container-max));
    }
    .lp-plans__grid {
        grid-template-columns: 1fr;
    }
    .lp-plan-card.is-featured {
        transform: none;
    }
}

.lp-pcats > .container {
    width: min(var(--lp-container-vw), var(--lp-container-max));
    margin-left: auto;
    margin-right: auto;
}

.lp-pcats__title {
    font-family: var(--lp-font-base);
    font-size: 2rem;
    font-weight: 800;
    color: rgb(var(--lp-heading-rgb));
    text-align: var(--lp-heading-align);
    margin: 34px 0 calc(22px + var(--lp-section-title-gap, 0px));
}

/* Glass blocks text alignment (global) */
.lp-adv__container,
.page-template-template-home .main-site > .container > .advantages,
.lp-service__panel,
.main-site > .container > .data-maintenance > div,
.main-site > .container > .content-maintenance > div,
.main-site > .container > .ds-mt-data > div > div,
.main-site > .container > .our-cenoc > .content > div,
.main-site > .container > .about-center > div,
.main-site > .container > .descService > div:nth-child(2),
.main-site > .container > .status-manufacturer > div,
.lp-contact__panel,
.lp-support__glass {
    text-align: var(--lp-glass-text-align);
}

/* Keep per-banner alignment for About (position left/center/right). */
.lp-about__content {
    text-align: inherit;
}

.lp-pcats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.lp-pcats__card {
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border-radius: var(--lp-radius-lg);
    overflow: hidden;
    background: radial-gradient(circle at 50% 0%, rgba(18, 40, 86, 0.8), rgba(8, 20, 44, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.16);
    transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 380ms ease, filter 380ms ease;
    will-change: transform;
    min-height: 380px;
}

.lp-pcats__card:hover,
.lp-pcats__card:focus-visible {
    transform: translateY(-10px);
    box-shadow: 0 32px 78px rgba(0, 0, 0, 0.22);
    filter: saturate(1.06);
}

.lp-pcats__media {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 22px 10px;
}

.lp-pcats__media img {
    width: 100%;
    max-width: 360px;
    height: 240px;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.28));
}

.lp-pcats__content {
    flex: 0 0 auto;
    padding: 16px 22px 22px;
    text-align: center;
}

.lp-pcats__name {
    margin: 0;
    font-family: var(--lp-font-base);
    font-weight: 800;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
}

.lp-pcats__desc {
    margin: 8px auto 0;
    max-width: 28ch;
    font-family: var(--lp-font-base);
    font-size: 0.8125rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.72);
}

.lp-pcats__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-family: var(--lp-font-base);
    font-weight: 700;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.92);
    opacity: 0.92;
    transition: opacity 220ms ease, transform 220ms ease;
}

.lp-pcats__card:hover .lp-pcats__cta {
    opacity: 1;
    transform: translateY(-1px);
}

.js .lp-pcats__card {
    opacity: 0;
    transform: translateY(18px);
    transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), opacity 700ms ease, box-shadow 380ms ease, filter 380ms ease;
}

.js .lp-pcats__card.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .lp-pcats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .lp-pcats > .container {
        width: calc(100% - 24px);
    }
    .lp-pcats__grid {
        grid-template-columns: 1fr;
    }
    .lp-pcats__card {
        min-height: 360px;
    }
}

/* Home hero variants. */

/* Elevator-style hero (Home) */
.lp-hero {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--lp-header-h));
  min-height: 560px;
  overflow: hidden;
  background: rgb(var(--lp-glass-rgb));
}

.lp-hero[data-lp-hero-style="freepik"] {
  height: auto;
  min-height: calc(100vh - var(--lp-header-h));
  padding: 56px 0;
  overflow: visible;
  background: radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.10), rgba(0, 0, 0, 0) 52%),
    radial-gradient(circle at 82% 30%, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0) 58%),
    linear-gradient(180deg, #0b0f14 0%, #05070a 100%);
}

.lp-hero--freepik .lp-hero-fp__inner {
  width: min(var(--lp-container-vw), var(--lp-container-max));
  margin: 0 auto;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.lp-hero--freepik .lp-hero-fp__copy {
  color: rgba(255, 255, 255, 0.92);
}

.lp-hero--freepik .lp-hero-fp__kicker {
  margin: 0 0 14px;
  font-family: var(--lp-font-base);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.75);
  text-align: var(--lp-subheading-align);
}

.lp-hero--freepik .lp-hero-fp__title {
  margin: 0;
  font-family: var(--lp-font-base);
  font-weight: 800;
  line-height: 1.02;
  font-size: clamp(40px, 4.6vw, 72px);
  color: #fff;
  text-align: var(--lp-heading-align);
}

.lp-hero--freepik .lp-hero-fp__title .lp-highlight {
  color: rgb(var(--lp-accent-rgb));
  position: relative;
  display: inline-block;
  padding: 0 0.06em;
}

.lp-hero--freepik .lp-hero-fp__title .lp-highlight::after {
  content: "";
  position: absolute;
  left: 0.02em;
  right: 0.02em;
  bottom: 0.08em;
  height: 0.18em;
  background: rgba(var(--lp-accent-rgb), 0.32);
  border-radius: 999px;
  transform: rotate(-1deg);
  pointer-events: none;
}

.lp-hero--freepik .lp-hero-fp__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  padding: 14px 26px;
  border-radius: var(--lp-btn-radius);
  font-family: var(--lp-font-base);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  color: rgb(var(--lp-btn-text-rgb));
  background: rgb(var(--lp-btn-rgb));
  border: 1px solid transparent;
  transition: transform 200ms ease, filter 200ms ease, background 200ms ease;
}

.lp-hero--freepik .lp-hero-fp__cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.lp-hero-mobile-contact {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  margin-top: 16px;
  padding: 0 22px;
  border-radius: var(--lp-btn-radius);
  border: 1px solid transparent;
  background: rgb(var(--lp-btn-rgb));
  color: rgb(var(--lp-btn-text-rgb));
  font-family: var(--lp-font-base);
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.lp-hero[data-lp-hero-style="cinema"] {
  height: auto;
  min-height: calc(100vh - var(--lp-header-h));
  padding: 18px 0 24px;
  background:
    radial-gradient(circle at 18% 20%, rgba(var(--lp-accent-rgb), 0.18), transparent 42%),
    linear-gradient(180deg, rgba(7, 10, 15, 0.98), rgba(14, 22, 32, 0.96));
}

.lp-hero--cinema {
  width: min(var(--lp-container-vw), var(--lp-container-max));
  margin: 0 auto;
  padding-inline: 18px;
  box-sizing: border-box;
}

.lp-hero-cinema__track {
  position: relative;
  min-height: clamp(520px, 78vh, 820px);
}

.lp-hero-cinema__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: clamp(28px, 4vw, 42px);
  border-radius: var(--lp-radius-lg);
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  transition: opacity var(--lp-hero-speed, 900ms) ease, transform var(--lp-hero-speed, 900ms) ease, visibility 0s linear var(--lp-hero-speed, 900ms);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.38);
}

.lp-hero-cinema__slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition-delay: 0s;
}

.lp-hero-cinema__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(6, 10, 16, 0.82), rgba(6, 10, 16, 0.42) 54%, rgba(var(--lp-accent-rgb), 0.22) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
}

.lp-hero-cinema__content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  color: #fff;
}

.lp-hero-cinema__kicker {
  margin: 0 0 12px;
  font-size: 0.9rem;
  line-height: 1.6;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.lp-hero-cinema__title {
  margin: 0;
  font-size: clamp(2.8rem, 5.6vw, 5.6rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: #fff;
}

.lp-hero-cinema__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.lp-hero-cinema__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 18px;
}

.lp-hero-cinema__dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.26);
  transition: transform 180ms ease, background 180ms ease, width 180ms ease;
}

.lp-hero-cinema__dot.is-active {
  width: 44px;
  background: rgb(var(--lp-accent-rgb));
}

.lp-hero--freepik .lp-hero-fp__stage {
  display: grid;
  gap: 16px;
  align-content: start;
}

.lp-hero--freepik .lp-hero-fp__main {
  position: relative;
  border-radius: var(--lp-radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.42);
  transform: translate3d(0, calc(var(--lp-hero-fp-progress, 0) * 10px), 0)
    scale(calc(1 + (var(--lp-hero-fp-progress, 0) * 0.10)));
  transform-origin: center;
  will-change: transform;
}

.lp-hero--freepik .lp-hero-fp__img,
.lp-hero--freepik .lp-hero-fp__video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.lp-hero--freepik .lp-hero-fp__thumb {
  position: relative;
  width: clamp(160px, 18vw, 240px);
  aspect-ratio: 16 / 9;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: var(--lp-radius-md);
  overflow: hidden;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.38);
  transform: translate3d(0, calc(var(--lp-hero-fp-progress, 0) * -6px), 0)
    scale(calc(1 + (var(--lp-hero-fp-progress, 0) * 0.04)));
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), filter 200ms ease;
  will-change: transform;
}

.lp-hero--freepik .lp-hero-fp__thumbs {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.lp-hero--freepik .lp-hero-fp__thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.lp-hero--freepik .lp-hero-fp__main.is-video .lp-hero-fp__img {
  display: none;
}

.lp-hero--freepik .lp-hero-fp__main.is-image .lp-hero-fp__video {
  display: none;
}

.lp-hero--freepik .lp-hero-fp__thumb:hover {
  filter: brightness(1.07);
  transform: translate3d(0, -2px, 0) scale(1.03);
}

.lp-hero--freepik .lp-hero-fp__thumb.is-active {
  outline: 2px solid rgba(255, 255, 255, 0.55);
  outline-offset: 2px;
}

@media (max-width: 980px) {
  .lp-hero--cinema {
    width: min(var(--lp-container-vw-mobile), var(--lp-container-max));
  }

  .lp-hero-cinema__track {
    min-height: min(82vh, 620px);
  }

  .lp-hero--freepik .lp-hero-fp__inner {
    width: min(var(--lp-container-vw-mobile), var(--lp-container-max));
    grid-template-columns: 1fr;
  }
  .lp-hero--freepik .lp-hero-fp__thumbs {
    justify-content: flex-start;
  }
  .lp-hero--freepik .lp-hero-fp__thumb {
    width: calc(50% - 8px);
  }
  .lp-hero-mobile-contact {
    display: inline-flex;
  }
  .lp-hero-cinema__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .lp-hero-cinema__actions .lp-hero-mobile-contact,
  .lp-hero-cinema__actions .lp-hero__cta {
    width: 100%;
    justify-content: center;
  }
  .lp-hero__cta,
  .lp-hero--freepik .lp-hero-fp__cta {
    display: none;
  }
}

.lp-hero__track {
  position: absolute;
  inset: 0;
  transition: transform var(--lp-hero-speed, 900ms) cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.lp-hero__slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.lp-hero__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 50% 35%,
      rgba(0, 0, 0, 0.2),
      rgba(0, 0, 0, 0.75)
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.65));
}

.lp-hero__content {
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100% - 80px));
  text-align: center;
}

.lp-hero__kicker {
  margin: 0 0 14px;
  font-family: var(--lp-font-base);
  font-size: 0.875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-align: var(--lp-subheading-align);
}

.lp-hero__title {
  margin: 0;
  font-family: var(--lp-font-base);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.95;
  font-size: clamp(44px, 6vw, 92px);
  color: #fff;
  text-align: var(--lp-heading-align);
}

.lp-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
  padding: 14px 28px;
  border-radius: var(--lp-btn-radius);
  text-decoration: none;
  font-family: var(--lp-font-base);
  font-weight: 700;
  font-size: 0.875rem;
  color: rgb(var(--lp-btn-text-rgb));
  background: rgb(var(--lp-btn-rgb));
  border: 1px solid transparent;
  transition: transform 200ms ease, filter 200ms ease, background 200ms ease, color 200ms ease,
    border-color 200ms ease;
}

.lp-hero__cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.lp-hero__pager {
  position: absolute;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
  width: 66px;
  padding: 16px 10px;
  border-radius: var(--lp-radius-md);
  background: var(--lp-glass-bg-panels-soft);
  background-image: var(--lp-glass-sheen);
  border: 1px solid rgba(255, 255, 255, var(--lp-glass-border-alpha));
  backdrop-filter: blur(var(--lp-glass-blur)) saturate(var(--lp-glass-saturate));
  -webkit-backdrop-filter: blur(var(--lp-glass-blur)) saturate(var(--lp-glass-saturate));
}

.lp-hero__shaft {
  position: absolute;
  left: 50%;
  top: 16px;
  bottom: 16px;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.25),
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.25)
  );
  border-radius: 2px;
}

.lp-hero__floors {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.lp-hero__floor {
  width: 28px;
  height: 28px;
  border-radius: var(--lp-radius-xs);
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: var(--lp-glass-bg-panels-soft);
  background-image: var(--lp-glass-sheen);
  cursor: pointer;
  padding: 0;
  outline: none;
  transition: transform 200ms ease, background 200ms ease;
  font-family: var(--lp-font-base);
  font-weight: 700;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
}

.lp-hero__floor:hover {
  transform: scale(1.15);
  background: rgba(255, 255, 255, 0.22);
}

.lp-hero__floor.is-active {
  background: rgba(255, 255, 255, 0.92);
  color: rgb(var(--lp-text-rgb));
}

.lp-hero__car {
  position: absolute;
  left: 50%;
  top: 16px;
  width: 22px;
  height: 20px;
  transform: translate(-50%, 0);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
  transition: transform var(--lp-hero-speed, 900ms) cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2;
}

.lp-hero__car::before,
.lp-hero__car::after {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: rgba(11, 15, 20, 0.22);
}

.lp-hero__car::before {
  left: 50%;
  transform: translateX(-5px);
}

.lp-hero__car::after {
  left: 50%;
  transform: translateX(5px);
}

.lp-hero.is-moving .lp-hero__car {
  background: rgba(255, 255, 255, 1);
}

.lp-hero__scroll {
  position: absolute;
  left: 36px;
  bottom: 28px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(18, 22, 28, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}

.lp-hero__scroll span {
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255, 255, 255, 0.9);
  border-bottom: 2px solid rgba(255, 255, 255, 0.9);
  transform: rotate(45deg);
  margin: 18px auto 0;
  animation: lp-hero-bounce 1.6s ease-in-out infinite;
}

@keyframes lp-hero-bounce {
  0%,
  100% {
    transform: translateY(0) rotate(45deg);
    opacity: 0.85;
  }
  50% {
    transform: translateY(8px) rotate(45deg);
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .lp-hero {
    min-height: 520px;
  }
  .lp-hero__pager {
    right: 18px;
  }
  .lp-hero__scroll {
    left: 18px;
  }
}

@media (max-width: 680px) {
  .lp-hero {
    height: calc(92vh - 86px);
    min-height: 460px;
  }
  .lp-hero__pager {
    right: 14px;
    width: 58px;
  }
  .lp-hero__content {
    width: calc(100% - 44px);
  }
  .lp-hero__title {
    font-size: clamp(34px, 9vw, 56px);
  }
}
