@font-face {
    font-family: "Gilroy";
    src: url("../fonts/gilroy/Gilroy-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

body.kp-page.kp-page--group {
    background:
        radial-gradient(circle at 18% 18%, rgba(20, 66, 171, 0.28), transparent 30%),
        radial-gradient(circle at 82% 34%, rgba(255, 91, 0, 0.14), transparent 26%),
        linear-gradient(180deg, #020708 0%, #061011 48%, #080b28 100%);
}

.kp-group-main {
    position: relative;
    overflow: hidden;
}

.kp-group-main::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.42) 0 1px, transparent 1px),
        radial-gradient(circle, rgba(86, 215, 255, 0.26) 0 1px, transparent 1px);
    background-position: 0 0, 28px 34px;
    background-size: 92px 92px, 128px 128px;
    opacity: 0.18;
}

.kp-group-hero,
.kp-group-section {
    position: relative;
    z-index: 1;
}

.kp-group-hero {
    padding: 56px 0 66px;
}

.kp-group-heading {
    margin: 0 0 28px;
}

.kp-group-heading h1 {
    margin: 6px 0 0;
    color: var(--kp-text);
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: 0;
    text-transform: uppercase;
}

.kp-group-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: 28px;
    align-items: start;
}

.kp-group-gallery,
.kp-group-card,
.kp-group-type-card {
    border: 1px solid var(--kp-line);
    background: rgba(5, 13, 16, 0.9);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
}

.kp-group-gallery {
    padding: 16px;
    border-radius: 30px;
}

.kp-group-gallery__stage {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-radius: 24px;
    background: #071012;
}

.kp-group-gallery__stage::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(2, 7, 8, 0.4) 0%, rgba(2, 7, 8, 0) 8%),
        linear-gradient(180deg, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.36) 100%);
}

.kp-group-gallery__image {
    position: absolute;
    inset: -8px 0;
    width: 100%;
    height: calc(100% + 16px);
    object-fit: cover;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 220ms ease, transform 300ms ease;
}

.kp-group-gallery__image.is-active {
    opacity: 1;
    transform: scale(1);
}

.kp-group-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.kp-group-thumb {
    min-width: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    color: var(--kp-text);
    background: rgba(255, 255, 255, 0.04);
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.kp-group-thumb:hover,
.kp-group-thumb:focus-visible,
.kp-group-thumb.is-active {
    border-color: rgba(255, 91, 0, 0.78);
    background: rgba(255, 91, 0, 0.12);
    transform: translateY(-1px);
}

.kp-group-thumb img {
    display: block;
    width: 100%;
    aspect-ratio: 1.5;
    object-fit: cover;
    transform: scale(1.025);
}

.kp-group-thumb span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.kp-group-sidebar {
    display: grid;
    gap: 16px;
}

.kp-group-tags {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.kp-group-tag {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 8px 14px;
    border: 1px solid var(--kp-line);
    border-radius: 14px;
    color: var(--kp-text);
    background: rgba(5, 13, 16, 0.88);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.24);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.12;
}

.kp-group-tag.is-active {
    border-color: rgba(255, 91, 0, 0.68);
    background: linear-gradient(180deg, rgba(255, 91, 0, 0.18) 0%, rgba(8, 17, 20, 0.92) 100%);
}

.kp-group-card {
    border-radius: 26px;
    padding: 24px;
}

.kp-group-intro h1 {
    margin: 6px 0 14px;
    max-width: 520px;
    color: var(--kp-text);
    font-size: clamp(36px, 4.2vw, 56px);
    font-weight: 500;
    line-height: 0.96;
    letter-spacing: 0;
    text-transform: uppercase;
}

.kp-group-intro > p:not(.kp-eyebrow),
.kp-group-pricing__head p,
.kp-group-order > p {
    margin: 0;
    color: var(--kp-muted);
    font-size: 17px;
    line-height: 1.4;
}

.kp-group-meta {
    display: grid;
    gap: 4px;
    margin-top: 18px;
    color: var(--kp-text);
    font-size: 18px;
    font-weight: 400;
}

.kp-group-meta strong {
    color: var(--kp-accent-2);
    font-size: 20px;
}

.kp-group-benefits h2,
.kp-group-pricing h2,
.kp-group-order h2 {
    margin: 0 0 14px;
    color: var(--kp-text);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.05;
}

.kp-group-benefits ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.kp-group-benefits li {
    position: relative;
    padding-left: 28px;
    color: var(--kp-muted);
    font-size: 16px;
    line-height: 1.38;
}

.kp-group-benefits li::before {
    content: "";
    position: absolute;
    top: 0.58em;
    left: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: radial-gradient(circle, #fff 0 22%, var(--kp-accent) 24% 100%);
    box-shadow: 0 0 20px rgba(255, 91, 0, 0.36);
    transform: translateY(-50%);
}

.kp-group-ticket-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.kp-group-ticket {
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.045);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.kp-group-ticket.is-selected {
    border-color: rgba(255, 91, 0, 0.72);
    box-shadow: 0 0 0 1px rgba(255, 91, 0, 0.22), 0 16px 48px rgba(255, 91, 0, 0.12);
}

.kp-group-ticket h3 {
    margin: 0;
    min-height: 40px;
    color: var(--kp-text);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.15;
    text-transform: uppercase;
}

.kp-group-ticket .t_price {
    display: flex;
    align-items: baseline;
    gap: 9px;
    flex-wrap: wrap;
}

.kp-group-ticket .new {
    color: var(--kp-text);
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
}

.kp-group-ticket .old {
    color: var(--kp-dim);
    font-size: 16px;
    font-weight: 400;
    text-decoration: line-through;
}

.kp-group-count {
    display: grid;
    gap: 8px;
    color: var(--kp-muted);
    font-size: 13px;
    font-weight: 400;
}

.kp-group-stepper {
    display: grid;
    grid-template-columns: 38px 1fr 38px;
    min-height: 42px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
}

.kp-group-stepper button,
.kp-group-stepper input {
    border: 0;
    color: var(--kp-text);
    background: transparent;
    font: inherit;
    font-weight: 500;
    text-align: center;
}

.kp-group-stepper button {
    cursor: pointer;
    transition: background 180ms ease;
}

.kp-group-stepper button:hover,
.kp-group-stepper button:focus-visible {
    background: rgba(255, 91, 0, 0.22);
}

.kp-group-buy,
.kp-group-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(180deg, #ff8a1b 0%, #ff5b00 100%);
    box-shadow: 0 14px 38px rgba(255, 91, 0, 0.28);
    font: inherit;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.kp-group-buy:hover,
.kp-group-buy:focus-visible,
.kp-group-submit:hover,
.kp-group-submit:focus-visible {
    transform: translateY(-1px);
    filter: brightness(1.05);
    box-shadow: 0 18px 44px rgba(255, 91, 0, 0.34);
}

.kp-group-form {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.kp-group-dop {
    color: var(--kp-muted);
    font-size: 14px;
    line-height: 1.36;
}

.kp-group-form .block_inputs {
    display: grid;
    gap: 12px;
}

.kp-group-form .input_cosmo {
    position: relative;
}

.kp-group-form .input_cosmo input {
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    color: var(--kp-text);
    background: rgba(255, 255, 255, 0.07);
    font: inherit;
    font-size: 16px;
    outline: none;
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.kp-group-form .input_cosmo input::placeholder {
    color: rgba(166, 181, 189, 0.72);
}

.kp-group-form .input_cosmo input:focus,
.kp-group-form .input_cosmo input:focus-visible {
    border-color: rgba(255, 91, 0, 0.82);
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 0 0 3px rgba(255, 91, 0, 0.16);
}

.kp-group-field {
    display: grid;
    gap: 7px;
    color: var(--kp-muted);
    font-size: 13px;
    font-weight: 400;
}

.kp-group-field input {
    width: 100%;
    min-height: 52px;
    padding: 0 17px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    color: var(--kp-text);
    background: rgba(255, 255, 255, 0.07);
    font: inherit;
    font-size: 16px;
    outline: none;
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.kp-group-field input::placeholder {
    color: rgba(166, 181, 189, 0.72);
}

.kp-group-field input:focus,
.kp-group-field input:focus-visible {
    border-color: rgba(255, 91, 0, 0.82);
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 0 0 3px rgba(255, 91, 0, 0.16);
}

.kp-group-field input.has-error,
.kp-group-form .input_cosmo input.has-error,
.kp-group-consent input.has-error,
.kp-group-form .checkbox input.has-error + label::before {
    border-color: #ff6262;
    box-shadow: 0 0 0 3px rgba(255, 98, 98, 0.15);
}

.kp-group-consent {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--kp-muted);
    font-size: 13px;
    line-height: 1.38;
    cursor: pointer;
}

.kp-group-consent input {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    margin: 2px 0 0;
    appearance: none;
    border: 2px solid rgba(166, 181, 189, 0.58);
    border-radius: 5px;
    background: transparent;
    cursor: pointer;
}

.kp-group-consent input:checked {
    border-color: var(--kp-accent);
    background: var(--kp-accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='11' viewBox='0 0 13 11' fill='none'%3E%3Cpath d='M1.4 5.2 4.8 8.6 11.6 1.4' stroke='%23fff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 13px 11px no-repeat;
}

.kp-group-consent input:focus-visible {
    outline: 3px solid rgba(255, 91, 0, 0.22);
    outline-offset: 2px;
}

.kp-group-consent a {
    color: var(--kp-text);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.kp-group-form .input_robo.input_check .checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.kp-group-form .input_robo.input_check .checkbox label {
    position: relative;
    display: block;
    min-height: 22px;
    padding-left: 32px;
    color: var(--kp-muted);
    font-size: 13px;
    line-height: 1.38;
    cursor: pointer;
}

.kp-group-form .input_robo.input_check .checkbox label::before {
    content: "";
    position: absolute;
    top: 1px;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    background: transparent;
    box-shadow: inset 0 0 0 2px rgba(166, 181, 189, 0.58);
}

.kp-group-form .input_robo.input_check .checkbox input[type="checkbox"]:checked + label::before {
    background: var(--kp-accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='11' viewBox='0 0 13 11' fill='none'%3E%3Cpath d='M1.4 5.2 4.8 8.6 11.6 1.4' stroke='%23fff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 13px 11px no-repeat;
    box-shadow: inset 0 0 0 2px var(--kp-accent);
}

.kp-group-form .input_robo.input_check .checkbox input[type="checkbox"]:focus-visible + label::before {
    box-shadow: inset 0 0 0 2px var(--kp-accent), 0 0 0 3px rgba(255, 91, 0, 0.22);
}

.kp-group-form .input_robo.input_check a {
    color: var(--kp-text);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.kp-group-submit {
    width: 100%;
    min-height: 56px;
}

.kp-group-note {
    color: var(--kp-muted);
    font-size: 13px;
    line-height: 1.35;
}

.kp-group-section {
    padding: 10px 0 70px;
}

.kp-group-type-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.kp-group-type-card {
    overflow: hidden;
    border-radius: 24px;
}

.kp-group-type-card img {
    display: block;
    width: 100%;
    aspect-ratio: 1.35;
    object-fit: cover;
}

.kp-group-type-card h3 {
    margin: 18px 18px 8px;
    color: var(--kp-text);
    font-size: 21px;
    font-weight: 500;
    line-height: 1.1;
    text-transform: uppercase;
}

.kp-group-type-card p {
    margin: 0 18px 20px;
    color: var(--kp-muted);
    font-size: 15px;
    line-height: 1.4;
}

@media (max-width: 1180px) {
    .kp-group-layout {
        grid-template-columns: 1fr;
    }

    .kp-group-gallery__stage {
        min-height: 460px;
    }

    .kp-group-sidebar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kp-group-pricing,
    .kp-group-order {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .kp-group-hero {
        padding: 28px 0 46px;
    }

    .kp-group-gallery {
        padding: 10px;
        border-radius: 24px;
    }

    .kp-group-gallery__stage {
        min-height: 360px;
        border-radius: 20px;
    }

    .kp-group-sidebar,
    .kp-group-ticket-grid,
    .kp-group-type-grid {
        grid-template-columns: 1fr;
    }

    .kp-group-pricing,
    .kp-group-order {
        grid-column: auto;
    }

    .kp-group-card {
        padding: 20px;
        border-radius: 22px;
    }

    .kp-group-heading {
        margin-bottom: 22px;
    }

    .kp-group-heading h1 {
        font-size: clamp(34px, 9vw, 46px);
    }

    .kp-group-tags {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kp-group-intro h1 {
        font-size: clamp(32px, 9vw, 44px);
    }

    .kp-group-type-grid {
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .kp-group-gallery__stage {
        min-height: 300px;
    }

    .kp-group-intro h1 {
        font-size: 30px;
    }

    .kp-group-meta {
        font-size: 16px;
    }

    .kp-group-meta strong {
        font-size: 18px;
    }

    .kp-group-ticket {
        padding: 16px;
    }

    .kp-group-tags {
        grid-template-columns: 1fr;
    }

    .kp-group-section {
        padding-bottom: 48px;
    }
}

@font-face {
    font-family: "Gilroy";
    src: url("../fonts/gilroy/Gilroy-Medium.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gilroy";
    src: url("../fonts/gilroy/Gilroy-SemiBold.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gilroy";
    src: url("../fonts/gilroy/Gilroy-Bold.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gilroy";
    src: url("../fonts/gilroy/Gilroy-ExtraBold.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gilroy";
    src: url("../fonts/gilroy/Gilroy-Heavy.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

:root {
    --kp-bg: #020708;
    --kp-bg-soft: #061011;
    --kp-card: rgba(8, 17, 20, 0.92);
    --kp-card-strong: #081014;
    --kp-line: rgba(142, 178, 190, 0.16);
    --kp-text: #f5f7fb;
    --kp-muted: #a6b5bd;
    --kp-dim: #71828a;
    --kp-accent: #ff5b00;
    --kp-accent-2: #ff9b20;
    --kp-blue: #56d7ff;
    --kp-max: 1180px;
    --kp-header-height: 78px;
    --kp-promo-height: 0px;
    --kp-header-stack-height: calc(var(--kp-header-height) + var(--kp-promo-height));
    --kp-container-edge: max(24px, (100vw - var(--kp-max)) / 2);
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body.kp-page {
    min-width: 320px;
    margin: 0;
    padding-top: var(--kp-header-stack-height);
    color: var(--kp-text);
    background: linear-gradient(180deg, #020708 0%, #061011 42%, #050d0e 76%, #070b24 100%);
    font-family: "Gilroy", Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.45;
    overflow-x: hidden;
}

@media (min-width: 769px) {
    body.kp-page::after {
        content: "";
        position: fixed;
        left: 50%;
        bottom: -10px;
        width: min(1800px, 100vw);
        height: 160px;
        z-index: 20;
        pointer-events: none;
        transform: translateX(-50%);
        background: linear-gradient(180deg, rgba(32, 37, 155, 0) 0%, rgba(17, 20, 73, 0.7) 100%);
        filter: blur(10px);
    }

    body.kp-page--form::after {
        content: none;
    }
}

body.kp-page--promo {
    --kp-promo-height: 28px;
    --kp-header-stack-height: calc(var(--kp-header-height) + var(--kp-promo-height));
}

[data-kp-promo-bar][hidden],
[data-kp-promo-inline][hidden],
[data-kp-promo-modal][hidden],
[data-kp-promo-variant][hidden],
[data-kp-promo-left][hidden],
[data-kp-promo-inline-left][hidden],
.kp-ticket-card__discount[hidden],
.kp-promo-modal__discount[hidden],
.kp-promo-code[hidden] {
    display: none !important;
}

body.kp-page--tickets .pf-page {
    position: relative;
    z-index: 0;
    overflow: hidden;
    background:
        radial-gradient(100% 74% at 48% 30%, rgba(18, 36, 84, 0.24), transparent 68%),
        #000807;
    color: var(--pf-text);
    font-family: "Circe", "Gilroy", Arial, Helvetica, sans-serif;
}

body.kp-page--tickets .pf-page::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;

    background-image:
            radial-gradient(circle, rgba(255, 255, 255, 0.72) 0 1px, transparent 1.4px),
            radial-gradient(circle, rgba(255, 255, 255, 0.56) 0 1px, transparent 1.3px),
            radial-gradient(circle, rgba(160, 205, 255, 0.58) 0 1px, transparent 1.5px),
            radial-gradient(circle, rgba(255, 255, 255, 0.42) 0 1px, transparent 1.2px),
            radial-gradient(circle, rgba(120, 175, 255, 0.46) 0 1px, transparent 1.4px),
            radial-gradient(circle, rgba(255, 255, 255, 0.34) 0 1px, transparent 1.3px),
            radial-gradient(circle, rgba(190, 220, 255, 0.38) 0 1px, transparent 1.5px);

    background-size:
            187px 211px,
            263px 197px,
            331px 251px,
            419px 307px,
            541px 383px,
            691px 467px,
            823px 587px;

    background-position:
            17px 29px,
            83px 151px,
            211px 47px,
            59px 263px,
            337px 119px,
            503px 311px,
            131px 421px;

    opacity: 0.72;
}

body.kp-page--tickets .pf-page::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-repeat: no-repeat;
}

body.kp-page--tickets .pf-page::before {
    opacity: 0.58;
    background:
        radial-gradient(circle at 6% 14%, rgba(255, 255, 255, 0.75) 0 0.9px, transparent 1.7px),
        radial-gradient(circle at 13% 46%, rgba(178, 205, 255, 0.48) 0 0.8px, transparent 1.5px),
        radial-gradient(circle at 19% 77%, rgba(255, 255, 255, 0.42) 0 0.7px, transparent 1.4px),
        radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.36) 0 0.75px, transparent 1.45px),
        radial-gradient(circle at 39% 60%, rgba(170, 201, 255, 0.45) 0 0.9px, transparent 1.6px),
        radial-gradient(circle at 48% 12%, rgba(255, 255, 255, 0.58) 0 0.85px, transparent 1.55px),
        radial-gradient(circle at 58% 83%, rgba(255, 255, 255, 0.38) 0 0.75px, transparent 1.45px),
        radial-gradient(circle at 69% 31%, rgba(188, 214, 255, 0.46) 0 0.8px, transparent 1.5px),
        radial-gradient(circle at 77% 69%, rgba(255, 255, 255, 0.32) 0 0.65px, transparent 1.35px),
        radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.68) 0 1px, transparent 1.8px),
        radial-gradient(circle at 93% 51%, rgba(173, 204, 255, 0.42) 0 0.85px, transparent 1.55px),
        radial-gradient(circle at 96% 88%, rgba(255, 255, 255, 0.56) 0 0.9px, transparent 1.6px);
}

body.kp-page--tickets .pf-page::after {
    opacity: 0.5;
    background:
        radial-gradient(70% 58% at 51% 58%, rgba(21, 41, 116, 0.28), transparent 72%),
        radial-gradient(circle at 8% 86%, rgba(255, 255, 255, 0.32) 0 0.65px, transparent 1.35px),
        radial-gradient(circle at 24% 8%, rgba(255, 255, 255, 0.25) 0 0.6px, transparent 1.25px),
        radial-gradient(circle at 34% 91%, rgba(188, 214, 255, 0.32) 0 0.7px, transparent 1.4px),
        radial-gradient(circle at 54% 38%, rgba(255, 255, 255, 0.26) 0 0.62px, transparent 1.3px),
        radial-gradient(circle at 73% 7%, rgba(255, 255, 255, 0.32) 0 0.65px, transparent 1.35px),
        radial-gradient(circle at 81% 94%, rgba(174, 205, 255, 0.3) 0 0.7px, transparent 1.4px);
}

body.kp-page--tickets .pf-page {
    --kp-payment-surface: rgba(2, 7, 8, 0.88);
    --kp-payment-surface-soft: rgba(255, 255, 255, 0.95);
    --kp-payment-text: #ffffff;
    --kp-payment-muted: rgba(255, 255, 255, 0.68);
    --kp-payment-border: rgba(255, 255, 255, 0.14);
    --kp-payment-danger: #ff3a2f;
    --kp-payment-danger-hover: #df3029;
    --kp-payment-badge: rgba(255, 255, 255, 0.22);
    --kp-payment-card-bg: radial-gradient(72% 110% at 82% 94%, rgba(255, 51, 51, 0.1), transparent 56%), linear-gradient(180deg, rgba(4, 8, 12, 0.98), rgba(1, 5, 7, 0.96));
    --kp-payment-panel-bg: radial-gradient(120% 110% at 50% 105%, rgba(255, 91, 0, 0.13), transparent 44%), linear-gradient(180deg, rgba(5, 10, 14, 0.98), rgba(2, 7, 8, 0.96));
    --kp-payment-border-fade: linear-gradient(to top, rgba(184, 184, 184, 0.38), rgba(132, 132, 132, 0.16) 44%, rgba(132, 132, 132, 0.04) 72%, transparent 100%);
    --kp-payment-block-shadow:
    0 26px 80px rgba(20, 45, 120, 0.34),
    0 0 48px rgba(58, 116, 255, 0.16),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08);
    z-index: 1;
}

body.kp-page--tickets .pf-main {
    position: relative;
    z-index: 1;
    padding: 76px 0 86px;
}

body.kp-page--tickets .pf-container {
    width: min(1200px, calc(100% - 56px));
}

body.kp-page--tickets .pf-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 760px) 400px;
    gap: 40px;
    align-items: start;
}

body.kp-page--tickets .pf-layout::before {
    content: none;
}

body.kp-page--tickets .pf-content {
    min-width: 0;
}

body.kp-page--tickets .pf-step-title {
    margin: 0 0 22px;
    color: #fff;
    font-size: clamp(34px, 2.7vw, 40px);
    line-height: 1.04;
    font-weight: 500;
    text-transform: uppercase;
}

body.kp-page--tickets .pf-step-subtitle {
    margin: -4px 0 22px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    line-height: 1.28;
    font-weight: 400;
}

body.kp-page--tickets .pf-usp,
body.kp-page--tickets .pf-products {
    display: grid;
    gap: 20px;
}

body.kp-page--tickets .pf-usp {
    margin: 0 0 22px;
}

body.kp-page--tickets .pf-usp__item {
    box-sizing: border-box;
    height: 76px;
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 8px 20px 8px 8px;
    border: 1px solid transparent;
    border-radius: 50px;
    background:
        linear-gradient(180deg, rgba(5, 10, 14, 0.94), rgba(4, 8, 10, 0.88)) padding-box,
        var(--kp-payment-border-fade) border-box;
    color: var(--kp-payment-text);
    box-shadow: var(--kp-payment-block-shadow);
}

body.kp-page--tickets .pf-usp__item--accent {
    background:
        linear-gradient(180deg, rgba(5, 10, 14, 0.94), rgba(4, 8, 10, 0.88)) padding-box,
        var(--kp-payment-border-fade) border-box;
}

body.kp-page--tickets .pf-usp__avatar {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
    object-fit: contain;
}

body.kp-page--tickets .pf-usp__copy_wrap {
    min-width: 0;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

body.kp-page--tickets .pf-usp__copy {
    min-width: 0;
    display: grid;
    gap: 2px;
}

body.kp-page--tickets .pf-usp__text {
    color: #fff;
    font-size: 21px;
    line-height: 1.1;
    font-weight: 500;
}

body.kp-page--tickets .pf-usp__subtext {
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.18;
    font-weight: 400;
}

body.kp-page--tickets .pf-usp__pill {
    flex: 0 0 auto;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    border-radius: 14px;
    background: linear-gradient(180deg, #ff7b13 0%, #ff5b00 100%);
    color: #fff;
    box-shadow: 0 10px 24px rgba(255, 91, 0, 0.28);
    font-size: 15px;
    line-height: 1;
    font-weight: 500;
    white-space: nowrap;
}

body.kp-page--tickets .pf-usp__item--accent .pf-usp__pill {
    margin-left: 18px;
}

body.kp-page--tickets .pf-usp__item--accent .pf-usp__pill::before {
    content: "";
    position: absolute;
    left: -30px;
    top: 50%;
    width: 1px;
    height: 34px;
    background: rgba(255, 255, 255, 0.34);
    transform: translateY(-50%);
}

body.kp-page--tickets .pf-card {
    position: relative;
    isolation: isolate;
    overflow: visible;
    padding: 36px 36px 32px 36px;
    border-radius: 30px;
    background: radial-gradient(120% 110% at 50% 105%, rgba(255, 91, 0, 0.14), transparent 44%) padding-box,        linear-gradient(180deg, rgba(5, 10, 14, 0.98), rgba(2, 7, 8, 0.96)) padding-box,        var(--kp-payment-border-fade) border-box;
    color: var(--kp-payment-text);
    box-shadow: var(--kp-payment-block-shadow);
}

body.kp-page--tickets .pf-card::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 0;
    box-sizing: border-box;
    border: none;
    border-radius: inherit;
    background:
        var(--kp-payment-card-bg) padding-box,
        var(--kp-payment-border-fade) border-box;
    box-shadow: var(--kp-payment-block-shadow);
    pointer-events: none;
}

body.kp-page--tickets .pf-card::after {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(circle 32px at 0 50%, #020807 0 31.5px, transparent 32px),
        radial-gradient(circle 32px at 100% 50%, #020807 0 31.5px, transparent 32px);
    pointer-events: none;
}

body.kp-page--tickets .pf-card > * {
    position: relative;
    z-index: 2;
}

body.kp-page--tickets .pf-card__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(190px, 240px);
    gap: 26px;
    align-items: center;
}

body.kp-page--tickets .pf-card__title {
    margin: 0;
    color: #fff;
    font-size: clamp(22px, 1.7vw, 24px);
    line-height: 1.05;
    font-weight: 500;
}

body.kp-page--tickets .pf-card__subtitle {
    max-width: 460px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
    line-height: 1.24;
    font-weight: 500;
}

body.kp-page--tickets .pf-card__aside {
    display: grid;
    justify-items: end;
    gap: 28px;
}

body.kp-page--tickets .pf-card__controls {
    min-width: 0;
}

body.kp-page--tickets .pf-price {
    display: grid;
    justify-items: end;
    gap: 3px;
    color: #fff;
}

body.kp-page--tickets .pf-price__current {
    color: #fff;
    font-size: clamp(36px, 2.6vw, 40px);
    line-height: 1;
    font-weight: 500;
}

body.kp-page--tickets .pf-price__old {
    order: -1;
    color: rgba(255, 255, 255, 0.48);
    font-size: 18px;
    line-height: 1;
    font-weight: 400;
    text-decoration: line-through;
}

body.kp-page--tickets .pf-tags {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

body.kp-page--tickets .pf-tag {
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
    font-size: 13px;
    line-height: 1;
    font-weight: 500;
}

body.kp-page--tickets .pf-tag--discount {
    background: var(--kp-payment-badge);
    color: #fff;
}

body.kp-page--tickets .pf-btn {
    min-height: 52px;
    border: 0;
    border-radius: 25px;
    font-weight: 500;
    text-transform: uppercase;
    transition: filter 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

body.kp-page--tickets .pf-btn--primary {
    background: var(--kp-payment-danger);
    color: #fff;
    box-shadow: 0 8px 18px rgba(255, 91, 0, 0.14), 0 0 8px rgba(255, 58, 47, 0.08);
}

body.kp-page--tickets .pf-btn--secondary {
    background: #fff;
    color: #1f2230;
    box-shadow: 0 16px 54px rgba(255, 91, 0, 0.34);
}

body.kp-page--tickets .pf-btn--primary:not(:disabled):hover,
body.kp-page--tickets .pf-btn--primary:not(:disabled):focus-visible {
    background: var(--kp-payment-danger-hover);
    filter: none;
}

body.kp-page--tickets .pf-btn--secondary:not(:disabled):hover,
body.kp-page--tickets .pf-btn--secondary:not(:disabled):focus-visible {
    background: rgba(255, 255, 255, 0.9);
    color: #1f2230;
    filter: none;
}

body.kp-page--tickets .pf-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

body.kp-page--tickets .pf-btn--item {
    min-width: 124px;
    padding: 2px 24px 0px;
    background: var(--kp-payment-danger);
    min-height: 42px;
}

body.kp-page--tickets .pf-qty {
    min-width: 124px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 25px;
    background: #fff;
    color: #22242d;
    box-shadow: 0 16px 56px rgba(195, 89, 50, 0.48), 0 0 22px rgba(255, 255, 255, 0.12);
}

body.kp-page--tickets .pf-qty__btn {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    color: #22242d;
    font-size: 28px;
    line-height: 1;
    font-weight: 500;
    transition: 0.2s;
    opacity: 1;
    padding-top: 3px;
}
body.kp-page--tickets .pf-qty__btn:hover{
    opacity: 0.85;
}

body.kp-page--tickets .pf-qty__value {
    min-width: 22px;
    color: #22242d;
    font-size: 21px;
    font-weight: 500;
    text-align: center;
}

body.kp-page--tickets .pf-card__toggle {
    width: auto;
    height: 30px;
    margin-left: 0;
    padding: 0 14px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, #ff7b13 0%, #ff5b00 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    vertical-align: middle;
}

body.kp-page--tickets .pf-card__toggle-icon {
    position: relative;
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    border-color: #fff;
    transform: translateY(-2px) rotate(45deg);
    right: -2px;
}

body.kp-page--tickets .pf-card__toggle.is-open .pf-card__toggle-icon {
    transform: translateY(2px) rotate(-135deg);
}

body.kp-page--tickets .pf-card__toggle:hover,
body.kp-page--tickets .pf-card__toggle:focus-visible {
    background: linear-gradient(180deg, #f06e12 0%, #e75200 100%);
    color: #fff;
}

body.kp-page--tickets .pf-card__toggle::before {
    content: "Подробнее";
    color: #fff;
    font-size: 13px;
    line-height: 1;
    font-weight: 500;
}

body.kp-page--tickets .pf-card-details {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 270px;
    gap: 32px;
    align-items: center;
    margin-top: 38px;
    padding: 34px 0 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 0;
    background: transparent;
    color: var(--kp-payment-text);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

body.kp-page--tickets .pf-card--combo-open,
body.kp-page--tickets .pf-card--combo-open .pf-card__head,
body.kp-page--tickets .pf-card--combo-open .pf-card-details,
body.kp-page--tickets .pf-card--addon .pf-card-details {
    background-color: transparent;
}

body.kp-page--tickets .pf-card--combo-open .pf-card__head {
    padding: 0;
    box-shadow: none;
}

body.kp-page--tickets .pf-card-details__copy {
    min-width: 0;
    background: transparent;
    color: var(--kp-payment-text);
}

body.kp-page--tickets .pf-card-details__lead,
body.kp-page--tickets .pf-card-details__name,
body.kp-page--tickets .pf-card-details__group,
body.kp-page--tickets .pf-card-details__text {
    color: var(--kp-payment-text);
}

body.kp-page--tickets .pf-card-details__lead {
    margin: 16px 0 22px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 1.35;
    font-weight: 500;
}

body.kp-page--tickets .pf-card-details__slider {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 18px;
    overflow: visible;
}

body.kp-page--tickets .pf-card-details__slider .pf-icon-btn {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 999px;
    background: rgba(4, 8, 12, 0.28);
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.46), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    backdrop-filter: none;
}

body.kp-page--tickets .pf-card-details__slider .pf-icon-btn:hover,
body.kp-page--tickets .pf-card-details__slider .pf-icon-btn:focus-visible {
    background: rgba(255, 255, 255, 0.15);
}

body.kp-page--tickets .pf-card-details__counter,
body.kp-page--tickets .pf-card-details__group {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 500;
}

body.kp-page--tickets .pf-card-details__counter {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

body.kp-page--tickets .pf-card-details__progress {
    --kp-progress-dot: 8px;
    --kp-progress-step: 24px;
    --kp-progress-gap: calc(var(--kp-progress-step) - var(--kp-progress-dot));
    --kp-progress-bar: 32px;
    position: relative;
    width: 56px;
    height: var(--kp-progress-dot);
    flex: 0 0 auto;
    display: block;
    overflow: visible;
    border-radius: 99px;
    background: transparent;
}

body.kp-page--tickets .pf-card-details__progress-dots {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    gap: var(--kp-progress-gap);
}

body.kp-page--tickets .pf-card-details__progress-dot {
    display: block;
    width: var(--kp-progress-dot);
    height: var(--kp-progress-dot);
    flex: 0 0 var(--kp-progress-dot);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

body.kp-page--tickets .pf-card-details__progress-bar {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: var(--kp-progress-bar);
    height: var(--kp-progress-dot);
    border-radius: inherit;
    background: #fff;
    transform: translateX(0);
    transition: transform 0.34s cubic-bezier(0.22, 0.74, 0.26, 1), width 0.22s ease;
}

body.kp-page--tickets .pf-card-details__name {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.15;
    font-weight: 500;
}

body.kp-page--tickets .pf-card-details__text {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.35;
    font-weight: 400;
}

body.kp-page--tickets .pf-card-details__media {
    position: relative;
    overflow: hidden;
    min-height: 180px;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.28);
}

body.kp-page--tickets .pf-card-details__image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
}

body.kp-page--tickets .pf-card-details__media-counter {
    position: absolute;
    right: 12px;
    bottom: 12px;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.58);
    color: #fff;
    font-size: 13px;
    line-height: 1;
    font-weight: 500;
}

body.kp-page--tickets .pf-icon-btn {
    position: relative;
    width: 48px;
    height: 48px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(5, 9, 12, 0.44);
    color: #fff;
    font-size: 0;
    line-height: 1;
    font-weight: 500;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.04),
        0 10px 26px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

body.kp-page--tickets .pf-icon-btn::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 10px;
    border-left: 3px solid currentColor;
    border-bottom: 3px solid currentColor;
    border-radius: 2px;
}

body.kp-page--tickets .pf-card-details__slider .pf-icon-btn:first-child::before,
body.kp-page--tickets .pf-icon-btn--prev::before {
    transform: translate(-42%, -50%) rotate(45deg);
}

body.kp-page--tickets .pf-card-details__slider .pf-icon-btn:last-child::before,
body.kp-page--tickets .pf-icon-btn--next::before {
    transform: translate(-58%, -50%) rotate(-135deg);
}

body.kp-page--tickets .pf-icon-btn:hover,
body.kp-page--tickets .pf-icon-btn:focus-visible {
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(8, 14, 18, 0.68);
}

body.kp-page--tickets .pf-icon-btn--media {
    position: absolute;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.48);
}

body.kp-page--tickets .pf-icon-btn--prev {
    left: 10px;
}

body.kp-page--tickets .pf-icon-btn--next {
    right: 10px;
}

body.kp-page--tickets .pf-panel {
    position: sticky;
    top: calc(var(--kp-header-stack-height) + 35px);
    margin-top: 65px;
    padding: 20px;
    border: 1px solid transparent;
    border-radius: 28px;
    background:
        radial-gradient(120% 110% at 50% 105%, rgba(255, 91, 0, 0.14), transparent 44%) padding-box,
        linear-gradient(180deg, rgba(5, 10, 14, 0.98), rgba(2, 7, 8, 0.96)) padding-box,
        var(--kp-payment-border-fade) border-box;
    color: var(--kp-payment-text);
    box-shadow: var(--kp-payment-block-shadow);
}

body.kp-page--tickets .pf-panel__title {
    margin: 0 0 28px;
    color: #fff;
    font-size: 24px;
    line-height: 1;
    font-weight: 500;
}

body.kp-page--tickets .pf-panel__scroll {
    display: grid;
    gap: 16px;
}

body.kp-page--tickets .pf-empty {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 400;
}

body.kp-page--tickets .pf-cart-section {
    display: grid;
    gap: 12px;
}

body.kp-page--tickets .pf-cart-line {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: baseline;
    color: #fff;
}

body.kp-page--tickets .pf-cart-line__name,
body.kp-page--tickets .pf-cart-line__sum {
    font-weight: 500;
}

body.kp-page--tickets .pf-cart-line__meta {
    display: inline-flex;
    align-items: baseline;
    gap: 14px;
}

body.kp-page--tickets .pf-cart-line__qty {
    color: rgba(255, 255, 255, 0.62);
    font-weight: 400;
}

body.kp-page--tickets .pf-promo {
    display: grid;
    gap: 8px;
}

body.kp-page--tickets .pf-promo__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

body.kp-page--tickets .pf-promo__row {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
}

body.kp-page--tickets .pf-promo__applied {
    min-width: 0;
}

body.kp-page--tickets .pf-promo .pf-input,
body.kp-page--tickets .pf-checkout .pf-input {
    width: 100%;
    min-height: 58px;
    border: 0;
    border-radius: 15px;
    background: var(--kp-payment-surface-soft);
    color: #56596b;
    box-shadow: 0 0 14px rgba(255, 91, 0, 0.14);
}

body.kp-page--tickets .pf-promo .pf-input {
    padding: 0 20px;
    font-weight: 400;
}

body.kp-page--tickets .pf-promo__clear,
body.kp-page--tickets .pf-promo__row .pf-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    width: 58px;
    min-width: 58px;
    min-height: 48px;
    padding: 0;
    border-radius: 15px;
    align-self: center;
    margin-left: 0;
    transform: translateY(-50%);
}

body.kp-page--tickets .pf-promo__status {
    color: var(--kp-payment-muted);
    font-weight: 400;
}

body.kp-page--tickets .pf-promo__status--error {
    color: var(--kp-payment-danger);
}

body.kp-page--tickets .pf-total {
    margin-top: 2px;
    padding-top: 22px;
    border-top: 1px solid var(--kp-payment-border);
}

body.kp-page--tickets .pf-total__line,
body.kp-page--tickets .pf-discount__head,
body.kp-page--tickets .pf-discount__line {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
}

body.kp-page--tickets .pf-total__title,
body.kp-page--tickets .pf-total__sum {
    color: #fff;
    font-weight: 500;
}

body.kp-page--tickets .pf-total__title {
    font-size: 24px;
}

body.kp-page--tickets .pf-total__sum {
    font-size: 24px;
    line-height: 1;
}

body.kp-page--tickets .pf-discount__head {
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
}

body.kp-page--tickets .pf-discount__list {
    margin-top: 8px;
    display: grid;
    gap: 6px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
}

body.kp-page--tickets .pf-panel__footer {
    margin-top: 20px;
    padding-top: 0;
    border-top: 0 !important;
}

body.kp-page--tickets .pf-panel .pf-actions {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    padding-top: 0;
    border-top: 0 !important;
}

body.kp-page--tickets .pf-panel .pf-actions--single,
body.kp-page--tickets .pf-panel .pf-actions--drawer-single {
    grid-template-columns: 1fr;
}

body.kp-page--tickets .pf-btn--wide {
    width: 100%;
}

body.kp-page--tickets .pf-action-hint {
    min-width: 0;
}

body.kp-page--tickets .pf-form-error,
body.kp-page--tickets .pf-action-hint__tooltip {
    color: var(--kp-payment-danger);
}

body.kp-page--tickets .pf-checkout {
    padding: 32px 32px 30px;
    border: 1px solid transparent;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(5, 10, 14, 0.96), rgba(2, 7, 8, 0.92)) padding-box,
        var(--kp-payment-border-fade) border-box;
    color: var(--kp-payment-text);
}

body.kp-page--tickets .pf-checkout__title {
    margin: 0 0 16px;
    color: #fff;
    font-size: clamp(24px, 2vw, 26px);
    line-height: 1.04;
    font-weight: 500;
}

body.kp-page--tickets .pf-checkout__desc {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 16px;
    line-height: 1.3;
    font-weight: 400;
}

body.kp-page--tickets .pf-form-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

body.kp-page--tickets .pf-field {
    display: grid;
    gap: 8px;
}

body.kp-page--tickets .pf-field label {
    color: #fff;
    font-weight: 500;
}

body.kp-page--tickets .pf-checkout .pf-input {
    padding: 0 20px;
}

body.kp-page--tickets .pf-checkout .input_robo.input_check {
    margin-top: 20px;
    margin-bottom: 0;
}

body.kp-page--tickets .pf-checkout .input_robo.input_check .checkbox {
    position: relative;
}

body.kp-page--tickets .pf-checkout .input_robo.input_check .checkbox input[type="checkbox"] {
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    opacity: 0;
    pointer-events: none;
}

body.kp-page--tickets .pf-checkout .input_robo.input_check .checkbox label {
    position: relative;
    display: block;
    min-height: 34px;
    padding-left: 46px;
    color: #fff;
    font-size: 15px;
    line-height: 1.32;
    font-weight: 500;
    cursor: pointer;
}

body.kp-page--tickets .pf-checkout .input_robo.input_check a {
    color: #fff;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: opacity 0.18s ease;
}

body.kp-page--tickets .pf-checkout .input_robo.input_check .checkbox label a {
    color: #fff;
}

body.kp-page--tickets .pf-checkout .input_robo.input_check a:hover,
body.kp-page--tickets .pf-checkout .input_robo.input_check a:focus-visible {
    color: #fff;
    opacity: 0.72;
}

body.kp-page--tickets .pf-mobile-actions,
body.kp-page--tickets .pf-mobile-cart-trigger,
body.kp-page--tickets .pf-mobile-cart__sheet {
    color: var(--kp-payment-text);
}

body.kp-page--tickets .pf-mobile-actions {
    background: transparent;
    box-shadow: none;
}

body.kp-page--tickets .pf-mobile-cart-trigger {
    border: 0;
    background: #ff3a2f;
    box-shadow: 0 10px 24px rgba(255, 58, 47, 0.24);
}

body.kp-page--tickets .pf-mobile-cart-trigger svg {
    stroke: #fff;
}

body.kp-page--tickets .pf-mobile-cart__sheet .pf-panel {
    position: static;
    margin-top: 0;
    border-radius: 28px 28px 0 0;
    background:
        radial-gradient(120% 110% at 50% 105%, rgba(255, 91, 0, 0.16), transparent 44%) padding-box,
        linear-gradient(180deg, rgba(3, 7, 10, 1), rgba(1, 5, 7, 1)) padding-box,
        var(--kp-payment-border-fade) border-box;
}

@media (max-width: 1180px) {
    body.kp-page--tickets .pf-layout {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 360px);
        gap: 28px;
    }

    body.kp-page--tickets .pf-card__head {
        grid-template-columns: minmax(0, 1fr) minmax(180px, 220px);
        gap: 20px;
    }

    body.kp-page--tickets .pf-card__subtitle {
        font-size: 19px;
    }

    body.kp-page--tickets .pf-panel {
        padding: 24px;
    }
}

@media (max-width: 900px) {
    body.kp-page--tickets .pf-main {
        padding: 32px 0 calc(156px + env(safe-area-inset-bottom));
    }

    body.kp-page--tickets .pf-container {
        width: min(100% - 32px, 1320px);
    }

    body.kp-page--tickets .pf-layout {
        display: block;
    }

    body.kp-page--tickets .pf-panel--desktop {
        display: none;
    }

    body.kp-page--tickets .pf-step-title {
        margin-bottom: 18px;
        font-size: clamp(24px, 6vw, 36px);
    }

    body.kp-page--tickets .pf-step-subtitle {
        margin: -6px 0 20px;
        font-size: 17px;
    }

    body.kp-page--tickets .pf-usp {
        gap: 12px;
        margin-bottom: 18px;
    }

    body.kp-page--tickets .pf-usp__item {
        height: auto;
        min-height: 66px;
        gap: 12px;
        padding: 10px 14px;
        border-radius: 20px;
    }

    body.kp-page--tickets .pf-usp__avatar {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
    }

    body.kp-page--tickets .pf-usp__copy_wrap {
        gap: 2px;
    }

    body.kp-page--tickets .pf-usp__text {
        font-size: 14px;
    }

    body.kp-page--tickets .pf-usp__subtext {
        font-size: 12px;
    }

    body.kp-page--tickets .pf-usp__pill {
        padding: 7px 9px;
        font-size: 12px;
    }

    body.kp-page--tickets .pf-products {
        gap: 14px;
    }

    body.kp-page--tickets .pf-card,
    body.kp-page--tickets .pf-checkout {
        padding: 22px;
        border-radius: 24px;
    }

    body.kp-page--tickets .pf-card__head {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    body.kp-page--tickets .pf-card-details {
        grid-template-columns: 1fr;
        padding: 18px;
        border-radius: 20px;
    }

    body.kp-page--tickets .pf-card__aside,
    body.kp-page--tickets .pf-price {
        justify-items: start;
    }

    body.kp-page--tickets .pf-card__aside {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        width: 100%;
    }

    body.kp-page--tickets .pf-card__title {
        font-size: clamp(24px, 7vw, 30px);
    }

    body.kp-page--tickets .pf-card__subtitle {
        font-size: 14px;
        margin: 10px 0 0;
    }

    body.kp-page--tickets .pf-price__current {
        font-size: 32px;
    }

    body.kp-page--tickets .pf-price__old {
        font-size: 18px;
    }

    body.kp-page--tickets .pf-btn--item {
        min-width: 120px;
        height: 42px;
        padding: 2px 12px 0px 12px;
        width: auto !important;
        min-height: 42px;
        font-size: 12px;
    }

    body.kp-page--tickets .pf-form-grid {
        grid-template-columns: 1fr;
    }

    body.kp-page--tickets .pf-checkout__title {
        font-size: 28px;
    }

    body.kp-page--tickets .pf-checkout__desc {
        font-size: 16px;
    }

    body.kp-page--tickets .pf-mobile-actions .pf-btn--primary {
        background: #ffc400;
        color: #fff;
        font-size: 12px;
        line-height: 1;
        box-shadow: 0 12px 28px rgba(255, 196, 0, 0.2);
    }

    body.kp-page--tickets .pf-mobile-actions .pf-btn,
    body.kp-page--tickets .pf-mobile-actions .pf-btn--secondary {
        font-size: 14px;
        line-height: 1;
        padding-top: 2px;
    }

    body.kp-page--tickets .pf-mobile-actions,
    body.kp-page--tickets .pf-mobile-actions__buttons,
    body.kp-page--tickets .pf-mobile-actions .pf-action-hint {
        background: transparent !important;
        box-shadow: none !important;
    }

    body.kp-page--tickets .pf-mobile-actions {
        z-index: 5001;
    }

    body.kp-page--tickets .pf-mobile-actions .pf-btn--primary:not(:disabled):hover,
    body.kp-page--tickets .pf-mobile-actions .pf-btn--primary:not(:disabled):focus-visible {
        background: #e8ad00;
        color: #fff;
    }

    body.kp-page--tickets .pf-mobile-actions .pf-btn--primary:disabled {
        background: rgba(255, 196, 0, 0.84);
        color: rgba(255, 255, 255, 0.92);
    }

    body.kp-page--tickets .pf-mobile-cart-trigger {
        background: #ff3a2f !important;
        box-shadow: 0 10px 24px rgba(255, 58, 47, 0.28) !important;
        z-index: 5002 !important;
    }

    body.kp-page--tickets .pf-mobile-cart-trigger svg {
        stroke: #fff !important;
    }

    body.kp-page--tickets .pf-mobile-cart {
        position: fixed;
        inset: 0;
        z-index: 5000;
        background: #000807;
        overflow: hidden;
    }

    body.kp-page--tickets .pf-mobile-cart__backdrop {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.78);
    }

    body.kp-page--tickets .pf-mobile-cart__sheet {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        display: flex;
        align-items: flex-start;
        background: #000807;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-top: 83px;
    }

    body.kp-page--tickets .pf-mobile-cart__sheet .pf-panel {
        display: block;
        width: 100%;
        min-height: auto;
        padding-bottom: calc(132px + env(safe-area-inset-bottom));
        overflow: visible;
    }

    body.kp-page--tickets .pf-mobile-cart__sheet .pf-panel__scroll {
        max-height: none;
        overflow: visible;
    }

    body.kp-page--tickets .pf-mobile-cart__sheet .pf-panel__footer {
        display: none;
    }

    body.kp-page--tickets .pf-mobile-cart__sheet .pf-promo {
        margin-top: 8px;
    }

    body.kp-page--tickets .pf-mobile-cart__sheet .pf-promo__row {
        position: relative;
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        min-height: 58px;
    }

    body.kp-page--tickets .pf-mobile-cart__sheet .pf-promo__applied {
        width: 100%;
        min-width: 0;
    }

    body.kp-page--tickets .pf-mobile-cart__sheet .pf-promo .pf-input {
        min-height: 58px;
        padding: 0 72px 0 20px;
        border-radius: 15px;
        background: #fff;
        color: #56596b;
        box-shadow: 0 0 14px rgba(255, 91, 0, 0.14);
    }

    body.kp-page--tickets .pf-mobile-cart__sheet .pf-promo__clear,
    body.kp-page--tickets .pf-mobile-cart__sheet .pf-promo__row .pf-btn {
        right: 5px;
        top: 5px;
        width: 58px;
        min-width: 58px;
        min-height: 48px;
        padding: 0;
        border-radius: 15px;
        background: #ff3a2f;
        transform: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    body.kp-page--tickets .pf-mobile-cart__sheet .pf-promo__clear-icon {
        flex: 0 0 14px;
    }
}

@media (max-width: 520px) {
    body.kp-page--tickets .pf-container {
        width: min(100% - 28px, 1320px);
    }

    body.kp-page--tickets .pf-card__aside {
        grid-template-columns: 1fr;
        justify-items: stretch;
        gap: 18px;
        display: flex;
        align-items: center;
    }

    body.kp-page--tickets .pf-card__controls,
    body.kp-page--tickets .pf-btn--item,
    body.kp-page--tickets .pf-qty {
        width: auto;
    }

    body.kp-page--tickets .pf-qty {
        justify-content: space-between;
        padding: 0 8px;
        gap: 6px;
    }
    body.kp-page--tickets .pf-qty{
        width: 120px;
        min-width: 120px;
    }
    body.kp-page--tickets .pf-qty__btn {
        width: 28px;
        height: 30px;
    }
    body.kp-page--tickets .pf-qty__value{
        font-size: 18px;
    }

    body.kp-page--tickets .pf-usp__copy_wrap {
        align-items: flex-start;
        flex-direction: column;
    }

    body.kp-page--tickets .pf-usp__pill {
        align-self: flex-start;
    }

    body.kp-page--tickets .pf-usp__item--accent .pf-usp__pill {
        margin-left: 0;
    }

    body.kp-page--tickets .pf-usp__item--accent .pf-usp__pill::before {
        content: none;
    }
}

body.kp-promo-modal-open {
    overflow: hidden;
}

body.kp-page--bdb .pf-page--bdb {
    min-height: auto;
    color: var(--pf-text);
    font-family: "Circe", "Gilroy", Arial, Helvetica, sans-serif;
}

body.kp-page--bdb .kp-section--bdb-tickets {
    padding: 72px 0 84px;
    background:
        radial-gradient(70% 52% at 50% 46%, rgba(32, 37, 155, 0.26), rgba(32, 37, 155, 0.06) 58%, transparent 82%),
        linear-gradient(180deg, rgba(2, 7, 8, 0) 0%, rgba(6, 12, 30, 0.66) 52%, rgba(2, 7, 8, 0) 100%);
    z-index: 999;
}

body.kp-page--bdb .kp-section--bdb-tickets .pf-main {
    padding: 0;
}

body.kp-page--form {
    --kp-form-check-color: var(--kp-accent);
    --kp-form-check-focus-color: rgba(255, 196, 0, 0.22);
    --kp-form-check-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='11' viewBox='0 0 13 11' fill='none'%3E%3Cpath d='M1.4 5.2 4.8 8.6 11.6 1.4' stroke='%2306090b' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

body.kp-page--form .modal_wrapper {
    min-height: calc(100vh - var(--kp-header-stack-height));
}

body.kp-page--winners,
body.kp-page--free-ticket {
    --kp-form-check-color: #ffc400;
}

body.kp-page--bloggers {
    --kp-form-check-color: #34b24d;
    --kp-form-check-focus-color: rgba(52, 178, 77, 0.24);
    --kp-form-check-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='11' viewBox='0 0 13 11' fill='none'%3E%3Cpath d='M1.4 5.2 4.8 8.6 11.6 1.4' stroke='%23fff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

body.kp-page--form .kp-footer {
    margin-top: 48px;
}

body.kp-page--form .new_modal,
body.kp-page--form .popup_block {
    color: #1f2230;
}

body.kp-page--form .new_modal .modal_title p,
body.kp-page--form .new_modal .form_title,
body.kp-page--form .new_modal .form_note p,
body.kp-page--form .new_modal .input_robo.input_check label,
body.kp-page--form .popup_block .main_title p,
body.kp-page--form .popup_block .form_note p,
body.kp-page--form .popup_block .input_robo.input_check label {
    color: #6b6f7b;
}

body.kp-page--form .popup_block {
    position: absolute;
    z-index: 1101;
}

body.kp-page--form .input:focus-within input {
    padding-right: 50px;
    background-color: #fff;
    border-color: var(--text);
    color: #333;
}

body.kp-page--form .input:focus-within input::placeholder {
    opacity: 1;
}

body.kp-page--form .input:focus-within > input ~ label,
body.kp-page--form .input:focus-within .autocomplete-wrap > input ~ label {
    top: 11px;
    left: 46px;
    color: #333;
    font-size: 0.75em;
}

body.kp-page--form .input.name:focus-within::before,
body.kp-page--form .input.email:focus-within::before,
body.kp-page--form .input.phone:focus-within::before,
body.kp-page--form .input.comment:focus-within::before {
    width: 12px;
    height: 12px;
    top: 14px;
}

body.kp-page--form .input.name:focus-within::before {
    width: 10px;
    left: 26px;
}

body.kp-page--form .input.email:focus-within::before {
    width: 13px;
    height: 10px;
    top: 16px;
}

body.kp-page--form .input.comment:focus-within::before {
    top: 15px;
}

body.kp-page--form .input.show-p:focus-within input {
    background-color: transparent;
}

body.kp-page--form #overlay_form,
body.kp-page--form .popup_block {
    display: none;
}

body.kp-page--form .input_robo.input_check .checkbox label {
    position: relative;
    display: block;
    min-height: 22px;
    padding-left: 30px;
    cursor: pointer;
}

body.kp-page--form .input_robo.input_check .checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

body.kp-page--form .input_robo.input_check .checkbox label::before {
    content: "";
    position: absolute;
    display: block;
}

body.kp-page--form .input_robo.input_check .checkbox label::before {
    top: 1px;
    left: 0;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background: #fff;
    box-shadow: inset 0 0 0 2px rgba(92, 95, 112, 0.32);
}

body.kp-page--form .input_robo.input_check .checkbox input[type="checkbox"]:checked + label::before {
    background: var(--kp-form-check-color) var(--kp-form-check-icon) center / 13px 11px no-repeat;
    box-shadow: inset 0 0 0 2px var(--kp-form-check-color);
}

body.kp-page--form .input_robo.input_check .checkbox label::after {
    content: none;
    display: none;
}

body.kp-page--form .input_robo.input_check .checkbox input[type="checkbox"]:focus + label::before,
body.kp-page--form .input_robo.input_check .checkbox input[type="checkbox"]:focus-visible + label::before {
    box-shadow: inset 0 0 0 2px var(--kp-form-check-color), 0 0 0 3px var(--kp-form-check-focus-color);
}

body.kp-page--form .input_robo.input_check a {
    color: #2f75ff;
    text-decoration: underline;
}

body.kp-page--tickets .pf-checkout .input_robo.input_check .checkbox label::before,
body.kp-page--tickets .pf-checkout .input_robo.input_check .checkbox label::after {
    content: "";
    position: absolute;
    display: block;
}

body.kp-page--tickets .pf-checkout .input_robo.input_check .checkbox label::before {
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #fff;
    box-shadow: inset 0 0 0 3px rgba(166, 170, 181, 0.72);
}

body.kp-page--tickets .pf-checkout .input_robo.input_check .checkbox label::after {
    top: 9px;
    left: 9px;
    width: 14px;
    height: 8px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    opacity: 0;
    transform: rotate(-45deg);
}

body.kp-page--tickets .pf-checkout .input_robo.input_check .checkbox input[type="checkbox"]:checked + label::before {
    background: #ff6b00;
    box-shadow: inset 0 0 0 2px #ff6b00;
}

body.kp-page--tickets .pf-checkout .input_robo.input_check .checkbox input[type="checkbox"]:checked + label::after {
    opacity: 1;
}

body.kp-page--tickets .pf-checkout .input_robo.input_check .checkbox input[type="checkbox"]:not(:checked) + label::before {
    background: #fff;
    box-shadow: inset 0 0 0 3px rgba(166, 170, 181, 0.72);
}

body.kp-page--tickets .pf-checkout .pf-consent--error .checkbox label::before,
body.kp-page--tickets .pf-checkout .input_robo.input_check.pf-consent--error .checkbox label::before {
    background: #ff6b00;
    box-shadow: inset 0 0 0 2px #ff6b00;
}

body.kp-page--tickets .pf-checkout .input_robo.input_check .checkbox input[type="checkbox"]:focus + label::before,
body.kp-page--tickets .pf-checkout .input_robo.input_check .checkbox input[type="checkbox"]:focus-visible + label::before {
    box-shadow: inset 0 0 0 3px rgba(166, 170, 181, 0.72), 0 0 0 3px rgba(255, 255, 255, 0.16);
}

.kp-page [id] {
    scroll-margin-top: calc(var(--kp-header-stack-height) + 18px);
}

body.kp-menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
video {
    display: block;
    max-width: 100%;
}

button,
input,
textarea {
    font: inherit;
}

.kp-container {
    width: min(var(--kp-max), calc(100% - 48px));
    margin: 0 auto;
}

.kp-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    background: rgba(2, 7, 8, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(14px);
}

body.kp-page:not(.kp-page--promo) .kp-header {
    border-bottom-color: rgba(255, 255, 255, 0.07);
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.04);
}

.kp-header__inner {
    width: min(var(--kp-max), calc(100% - 48px));
    min-height: var(--kp-header-height);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 8px 0;
}

.kp-logo {
    flex: 0 0 auto;
    display: block;
    width: auto;
    height: 50px;
}

.kp-logo img,
.kp-mobile-menu__brand img {
    width: auto;
    height: 100%;
    display: block;
}

.kp-nav {
    min-width: 0;
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    gap: clamp(4px, 0.75vw, 14px);
    font-size: 14px;
    font-weight: 500;
    color: #dce5e9;
}

.kp-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 10px 8px;
    border-radius: 8px;
    line-height: 1;
    white-space: nowrap;
    transition: color 0.18s ease, background 0.18s ease;
}

.kp-nav a:hover,
.kp-nav a:focus-visible {
    color: var(--kp-accent-2);
    background: rgba(255, 255, 255, 0.04);
}

.kp-header__meta {
    flex: 0 0 auto;
    display: grid;
    gap: 3px;
    justify-items: end;
    color: #fff;
    font-size: 12px;
    line-height: 1.16;
    text-align: right;
}

.kp-header__meta strong,
.kp-header__meta span {
    max-width: 330px;
    color: inherit;
    font-size: inherit;
    font-weight: 400;
    text-align: right;
}

.kp-header__ticket-info {
    min-width: 0;
    flex: 1 1 auto;
    display: grid;
    justify-content: center;
    justify-items: center;
    gap: 4px;
    color: rgba(213, 222, 226, 0.82);
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
}

.kp-header__ticket-info strong,
.kp-header__ticket-info span {
    min-width: 0;
    max-width: 420px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.kp-header__ticket-info span {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.kp-header__mobile-place {
    display: none;
}

.kp-header__promo {
    position: relative;
    height: var(--kp-promo-height);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    overflow: visible;
}

.kp-header__promo-icon,
.kp-promo-info img {
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
    opacity: 0.86;
}

.kp-header__promo-text {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.kp-promo-info-wrap {
    position: relative;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.kp-promo-info {
    width: 22px;
    height: 22px;
    padding: 4px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
}

.kp-promo-info:hover,
.kp-promo-info:focus-visible {
    background: rgba(255, 255, 255, 0.08);
}

.kp-promo-tooltip {
    position: absolute;
    left: 50%;
    top: calc(100% + 10px);
    z-index: 80;
    width: 340px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(6, 14, 16, 0.98);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.42);
    color: #e5eef3;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.35;
    text-align: left;
    white-space: normal;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -4px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.kp-header__promo.is-tooltip-open .kp-promo-tooltip {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.kp-menu-toggle,
.kp-close {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: background 0.18s ease, transform 0.18s ease;
}

.kp-menu-toggle:hover,
.kp-menu-toggle:focus-visible,
.kp-close:hover,
.kp-close:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.kp-menu-toggle:focus-visible,
.kp-close:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.42);
    outline-offset: 2px;
}

.kp-menu-toggle {
    display: none;
    position: relative;
}

.kp-menu-toggle span,
.kp-close span {
    position: absolute;
    left: 9px;
    right: 9px;
    height: 2px;
    border-radius: 2px;
    background: #fff;
    transform-origin: center;
    transition: transform 0.24s ease, opacity 0.18s ease;
}

.kp-menu-toggle span:nth-child(1) {
    top: 13px;
}

.kp-menu-toggle span:nth-child(2) {
    top: 20px;
}

.kp-menu-toggle span:nth-child(3) {
    top: 27px;
}

.kp-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.kp-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.kp-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.kp-mobile-menu[hidden] {
    display: none;
}

.kp-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: rgba(0, 0, 0, 0.72);
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.kp-mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

body.kp-menu-open .kp-mobile-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.kp-mobile-menu__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    min-height: 100%;
    padding: 22px;
    background: #071012;
    border-left: 1px solid var(--kp-line);
}

.kp-mobile-menu__top,
.kp-mobile-menu__place,
.kp-mobile-menu__contacts {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.kp-mobile-menu__top {
    align-items: center;
    margin-bottom: 28px;
}

.kp-mobile-menu__brand {
    width: 104px;
    flex: 0 0 auto;
}

.kp-close {
    position: relative;
}

.kp-close span:nth-child(1) {
    top: 13px;
    transform: translateY(7px) rotate(45deg);
}

.kp-close span:nth-child(2) {
    top: 20px;
    opacity: 0;
}

.kp-close span:nth-child(3) {
    top: 27px;
    transform: translateY(-7px) rotate(-45deg);
}

.kp-mobile-menu__place,
.kp-mobile-menu__contacts {
    flex-direction: column;
    color: var(--kp-muted);
    font-size: 14px;
}

.kp-mobile-menu__place strong {
    color: rgba(255, 255, 255, 0.8);
}

.kp-mobile-menu__contact-links {
    display: grid;
    gap: 8px;
}

.kp-mobile-menu__nav {
    display: grid;
    gap: 16px;
    margin: 30px 0;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

.kp-mobile-menu__schedule {
    display: grid;
    gap: 4px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(166, 181, 189, 0.82);
}

.kp-stars {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.74;
    transform-origin: 43% 52%;
    will-change: opacity, transform;
    animation: kp-stars-breathe 18s cubic-bezier(0.45, 0, 0.25, 1) -3s infinite;
    background:
        radial-gradient(circle at 2.4% 11%, rgba(255, 255, 255, 0.75) 0 0.82px, transparent 1.56px),
        radial-gradient(circle at 9.7% 26%, rgba(255, 255, 255, 1) 0 1.13px, transparent 1.92px),
        radial-gradient(circle at 4.1% 47%, rgba(255, 255, 255, 0.6) 0 0.86px, transparent 1.61px),
        radial-gradient(circle at 12.9% 71%, rgba(176, 204, 255, 0.49) 0 0.94px, transparent 1.68px),
        radial-gradient(circle at 5.8% 92%, rgba(255, 255, 255, 0.65) 0 0.78px, transparent 1.52px),
        radial-gradient(circle at 18.4% 13%, rgba(255, 255, 255, 0.36) 0 0.72px, transparent 1.4px),
        radial-gradient(circle at 23.8% 56%, rgba(255, 255, 255, 0.44) 0 0.82px, transparent 1.56px),
        radial-gradient(circle at 31.6% 88%, rgba(255, 255, 255, 0.34) 0 0.74px, transparent 1.44px),
        radial-gradient(circle at 39.2% 21%, rgba(255, 255, 255, 0.42) 0 0.84px, transparent 1.56px),
        radial-gradient(circle at 47.8% 78%, rgba(255, 255, 255, 0.55) 0 1.03px, transparent 1.75px),
        radial-gradient(circle at 55.1% 34%, rgba(177, 205, 255, 0.39) 0 0.86px, transparent 1.58px),
        radial-gradient(circle at 63.7% 93%, rgba(255, 255, 255, 0.46) 0 0.84px, transparent 1.56px),
        radial-gradient(circle at 70.9% 18%, rgba(255, 255, 255, 0.7) 0 1.01px, transparent 1.73px),
        radial-gradient(circle at 76.2% 62%, rgba(255, 255, 255, 0.31) 0 0.72px, transparent 1.4px),
        radial-gradient(circle at 83.6% 86%, rgba(164, 196, 255, 0.42) 0 0.89px, transparent 1.61px),
        radial-gradient(circle at 88.8% 29%, rgba(255, 255, 255, 0.52) 0 0.91px, transparent 1.63px),
        radial-gradient(circle at 96.4% 12%, rgba(255, 255, 255, 0.78) 0 1.06px, transparent 1.78px),
        radial-gradient(circle at 93.1% 44%, rgba(255, 255, 255, 0.46) 0 0.82px, transparent 1.54px),
        radial-gradient(circle at 98.3% 67%, rgba(255, 255, 255, 0.68) 0 0.98px, transparent 1.7px),
        radial-gradient(circle at 91.6% 91%, rgba(255, 255, 255, 0.55) 0 0.79px, transparent 1.51px),
        radial-gradient(circle at 15.2% 39%, rgba(255, 255, 255, 0.26) 0 0.7px, transparent 1.34px),
        radial-gradient(circle at 33.4% 6%, rgba(255, 255, 255, 0.33) 0 0.72px, transparent 1.39px),
        radial-gradient(circle at 58.6% 8%, rgba(255, 255, 255, 0.29) 0 0.7px, transparent 1.37px),
        radial-gradient(circle at 67.3% 49%, rgba(255, 255, 255, 0.36) 0 0.77px, transparent 1.46px),
        radial-gradient(circle at 42.7% 96%, rgba(180, 208, 255, 0.35) 0 0.79px, transparent 1.49px),
        radial-gradient(circle at 80.4% 7%, rgba(255, 255, 255, 0.26) 0 0.67px, transparent 1.34px),
        radial-gradient(circle at 11.6% 6%, rgba(255, 255, 255, 0.38) 0 0.73px, transparent 1.4px),
        radial-gradient(circle at 20.8% 93%, rgba(190, 215, 255, 0.32) 0 0.76px, transparent 1.44px),
        radial-gradient(circle at 27.1% 34%, rgba(255, 255, 255, 0.3) 0 0.67px, transparent 1.32px),
        radial-gradient(circle at 36.8% 67%, rgba(255, 255, 255, 0.43) 0 0.86px, transparent 1.58px),
        radial-gradient(circle at 50.6% 4%, rgba(255, 255, 255, 0.31) 0 0.68px, transparent 1.35px),
        radial-gradient(circle at 54.4% 61%, rgba(180, 208, 255, 0.34) 0 0.79px, transparent 1.48px),
        radial-gradient(circle at 61.8% 16%, rgba(255, 255, 255, 0.48) 0 0.9px, transparent 1.62px),
        radial-gradient(circle at 72.7% 39%, rgba(255, 255, 255, 0.28) 0 0.66px, transparent 1.3px),
        radial-gradient(circle at 78.9% 97%, rgba(172, 203, 255, 0.36) 0 0.8px, transparent 1.5px),
        radial-gradient(circle at 86.1% 5%, rgba(255, 255, 255, 0.34) 0 0.72px, transparent 1.38px),
        radial-gradient(circle at 90.4% 76%, rgba(255, 255, 255, 0.4) 0 0.83px, transparent 1.52px),
        radial-gradient(circle at 97.6% 53%, rgba(255, 255, 255, 0.3) 0 0.69px, transparent 1.34px);
    background-repeat: no-repeat;
}

.kp-stars::before,
.kp-stars::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-repeat: no-repeat;
    will-change: opacity, transform;
}

.kp-stars::before {
    opacity: 0.24;
    transform-origin: 18% 74%;
    animation: kp-stars-twinkle-soft 16s cubic-bezier(0.45, 0, 0.2, 1) -7s infinite;
    background:
        radial-gradient(circle at 7.4% 18%, rgba(255, 255, 255, 0.58) 0 0.72px, transparent 1.38px),
        radial-gradient(circle at 21.2% 76%, rgba(173, 202, 255, 0.34) 0 0.66px, transparent 1.26px),
        radial-gradient(circle at 46.5% 13%, rgba(255, 255, 255, 0.3) 0 0.58px, transparent 1.14px),
        radial-gradient(circle at 74.8% 72%, rgba(255, 255, 255, 0.42) 0 0.72px, transparent 1.36px),
        radial-gradient(circle at 95.2% 33%, rgba(255, 255, 255, 0.52) 0 0.78px, transparent 1.45px),
        radial-gradient(circle at 14.6% 52%, rgba(255, 255, 255, 0.32) 0 0.62px, transparent 1.22px),
        radial-gradient(circle at 58.1% 82%, rgba(174, 204, 255, 0.3) 0 0.7px, transparent 1.32px),
        radial-gradient(circle at 84.4% 11%, rgba(255, 255, 255, 0.4) 0 0.68px, transparent 1.3px);
}

.kp-stars::after {
    opacity: 0.16;
    transform-origin: 82% 28%;
    animation: kp-stars-twinkle-deep 27s ease-in-out -13s infinite;
    background:
        radial-gradient(circle at 3.7% 64%, rgba(255, 255, 255, 0.4) 0 0.64px, transparent 1.26px),
        radial-gradient(circle at 29.8% 31%, rgba(255, 255, 255, 0.25) 0 0.54px, transparent 1.08px),
        radial-gradient(circle at 51.3% 91%, rgba(180, 208, 255, 0.28) 0 0.62px, transparent 1.2px),
        radial-gradient(circle at 68.4% 24%, rgba(255, 255, 255, 0.36) 0 0.7px, transparent 1.34px),
        radial-gradient(circle at 88.7% 58%, rgba(255, 255, 255, 0.32) 0 0.6px, transparent 1.16px),
        radial-gradient(circle at 17.9% 88%, rgba(255, 255, 255, 0.28) 0 0.58px, transparent 1.14px),
        radial-gradient(circle at 44.2% 43%, rgba(185, 211, 255, 0.26) 0 0.64px, transparent 1.22px),
        radial-gradient(circle at 79.3% 83%, rgba(255, 255, 255, 0.34) 0 0.66px, transparent 1.28px);
}

@keyframes kp-stars-breathe {
    0%,
    100% {
        opacity: 0.64;
        transform: scale(0.99);
    }

    29% {
        opacity: 0.82;
        transform: scale(1.018);
    }

    57% {
        opacity: 0.58;
        transform: scale(0.98);
    }

    83% {
        opacity: 0.76;
        transform: scale(1.006);
    }
}

@keyframes kp-stars-twinkle-soft {
    0%,
    100% {
        opacity: 0.14;
        transform: scale(0.9);
    }

    24% {
        opacity: 0.58;
        transform: scale(1.11);
    }

    52% {
        opacity: 0.26;
        transform: scale(0.98);
    }

    81% {
        opacity: 0.44;
        transform: scale(1.05);
    }
}

@keyframes kp-stars-twinkle-deep {
    0%,
    100% {
        opacity: 0.08;
        transform: scale(1.06);
    }

    31% {
        opacity: 0.44;
        transform: scale(0.9);
    }

    63% {
        opacity: 0.18;
        transform: scale(1.12);
    }

    86% {
        opacity: 0.34;
        transform: scale(0.96);
    }
}

.kp-hero {
    position: relative;
    padding: 42px 0 84px;
    overflow: hidden;
}

.kp-hero__inner {
    position: relative;
    z-index: 1;
}

.kp-hero__inner::before {
    content: "";
    position: absolute;
    inset: -35px -42px;
    z-index: -1;
    border-radius: 82px;
    background: rgba(32, 37, 155, 0.32);
    filter: blur(58px);
    opacity: 0.75;
    pointer-events: none;
}

.kp-hero-card {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
    overflow: hidden;
    contain: paint;
    min-height: 0;
    border: 1px solid #151515;
    border-radius: 80px;
    background: #081014;
    box-shadow: 0 4px 80px rgba(32, 37, 155, 0.3), 0 22px 90px rgba(0, 0, 0, 0.52);
}

.kp-hero-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0) 36.06%, rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
}

.kp-hero-card__media,
.kp-hero-card__media picture,
.kp-hero-card__media img,
.kp-hero-card__media video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.kp-hero-card__media picture {
    display: block;
}

.kp-hero-card__img {
    object-fit: cover;
    object-position: center;
    z-index: 0;
    filter: saturate(1.06);
    transition: opacity 0.55s ease;
}

.kp-hero-card__video {
    z-index: 1;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    filter: saturate(1.06);
    transition: opacity 0.65s ease;
}

.kp-hero-card__media.is-video-ready .kp-hero-card__video {
    opacity: 1;
}

.kp-hero-card__media.is-video-ready .kp-hero-card__img {
    opacity: 0;
}

.kp-hero-card__copy {
    position: relative;
    z-index: 3;
    width: min(665px, 62%);
    min-height: 100%;
    padding: 0 0 76px 80px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}

.kp-hero-card__copy h1 {
    margin: 0 0 22px;
    color: #fff;
    font-size: 40px;
    line-height: 46px;
    letter-spacing: 0;
    font-weight: 500;
    text-transform: uppercase;
}

.kp-hero-card__copy > p,
.kp-hero-card__copy > span {
    margin: 0;
    color: #fff;
    font-size: 26px;
    font-weight: 400;
    line-height: 32px;
}

.kp-hero-card__copy > span {
    margin-top: 4px;
    color: #fff;
}

.kp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 56px;
    padding: 0 25px;
    margin-top: 22px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, #ff981e 0%, var(--kp-accent) 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    box-shadow: 0 16px 30px rgba(255, 107, 0, 0.32);
    transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}

.kp-btn > span:last-child {
    font-weight: 500;
    letter-spacing: 0;
}

.kp-btn--hero {
    min-height: 62px;
    margin-top: 34px;
    padding: 0 28px;
    border-radius: 26px;
    font-size: 20px;
    line-height: 1;
}

.kp-btn:hover,
.kp-btn:focus-visible {
    transform: translateY(-1px);
    filter: brightness(1.06);
    box-shadow: 0 20px 38px rgba(255, 107, 0, 0.42);
}

.kp-btn__icon {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
}

.kp-btn__icon img {
    width: 24px;
    height: 24px;
}

.kp-section {
    position: relative;
    padding: 54px 0;
}

.kp-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 26px;
}

.kp-section-head--center {
    justify-content: center;
    text-align: center;
}

.kp-section-title {
    max-width: 820px;
    margin: 0;
    color: #f4f8fb;
    font-size: clamp(28px, 2.7vw, 40px);
    line-height: 46px;
    letter-spacing: 0;
    font-weight: 500;
}

.kp-eyebrow {
    margin: 0 0 8px;
    color: var(--kp-accent);
    font-size: 13px;
    font-weight: 400;
}

.kp-learn-grid {
    overflow: visible;
}

.kp-slider--learn .kp-slider__track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px 20px;
    overflow: visible;
    padding: 0;
    scroll-snap-type: none;
}

.kp-section--learn .kp-section-head {
    position: relative;
    z-index: 1;
    margin-bottom: 32px;
}

.kp-section--learn::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.68;
    transform-origin: 36% 62%;
    will-change: opacity, transform;
    animation: kp-stars-learn-base 22s cubic-bezier(0.4, 0, 0.24, 1) -5s infinite;
    background:
        radial-gradient(circle at 6% 34%, rgba(255, 255, 255, 0.75) 0 0.9px, transparent 1.62px),
        radial-gradient(circle at 83% 19%, rgba(255, 255, 255, 0.55) 0 0.78px, transparent 1.46px),
        radial-gradient(circle at 29% 82%, rgba(255, 255, 255, 0.39) 0 0.66px, transparent 1.42px),
        radial-gradient(circle at 58% 47%, rgba(164, 195, 255, 0.36) 0 0.96px, transparent 1.74px),
        radial-gradient(circle at 96% 73%, rgba(255, 255, 255, 0.47) 0 0.84px, transparent 1.58px),
        radial-gradient(circle at 41% 12%, rgba(255, 255, 255, 0.26) 0 0.6px, transparent 1.32px),
        radial-gradient(circle at 17% 61%, rgba(255, 255, 255, 0.33) 0 0.7px, transparent 1.4px),
        radial-gradient(circle at 72% 91%, rgba(170, 200, 255, 0.31) 0 0.77px, transparent 1.49px),
        radial-gradient(circle at 13% 8%, rgba(255, 255, 255, 0.34) 0 0.7px, transparent 1.36px),
        radial-gradient(circle at 47% 76%, rgba(255, 255, 255, 0.29) 0 0.66px, transparent 1.32px),
        radial-gradient(circle at 67% 14%, rgba(188, 214, 255, 0.32) 0 0.72px, transparent 1.4px),
        radial-gradient(circle at 91% 46%, rgba(255, 255, 255, 0.36) 0 0.76px, transparent 1.46px);
    background-size: 307px 353px, 421px 389px, 563px 487px, 677px 617px, 269px 443px, 823px 701px, 367px 509px, 941px 797px, 491px 383px, 733px 569px, 587px 647px, 811px 503px;
    background-position: -41px 83px, 137px -67px, 61px 149px, -157px -31px, 23px 211px, -211px 97px, 101px -149px, -263px 181px, 179px -101px, -83px 247px, 293px 59px, -317px 127px;
}

.kp-section--learn::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.2;
    transform-origin: 71% 38%;
    will-change: opacity, transform;
    animation: kp-stars-learn-twinkle 17s cubic-bezier(0.4, 0, 0.3, 1) -11s infinite;
    background:
        radial-gradient(circle at 11% 24%, rgba(255, 255, 255, 0.36) 0 0.66px, transparent 1.28px),
        radial-gradient(circle at 36% 68%, rgba(172, 203, 255, 0.28) 0 0.72px, transparent 1.36px),
        radial-gradient(circle at 62% 27%, rgba(255, 255, 255, 0.32) 0 0.62px, transparent 1.2px),
        radial-gradient(circle at 87% 79%, rgba(255, 255, 255, 0.42) 0 0.78px, transparent 1.42px),
        radial-gradient(circle at 24% 42%, rgba(255, 255, 255, 0.28) 0 0.58px, transparent 1.16px),
        radial-gradient(circle at 73% 57%, rgba(180, 208, 255, 0.3) 0 0.68px, transparent 1.3px);
    background-size: 383px 431px, 617px 541px, 467px 659px, 743px 683px, 523px 601px, 691px 467px;
    background-position: 71px -43px, -109px 139px, 211px 67px, -257px -83px, 149px 223px, -191px -127px;
}

@keyframes kp-stars-learn-base {
    0%,
    100% {
        opacity: 0.58;
        transform: scale(0.99);
    }

    34% {
        opacity: 0.76;
        transform: scale(1.018);
    }

    68% {
        opacity: 0.5;
        transform: scale(0.982);
    }
}

@keyframes kp-stars-learn-twinkle {
    0%,
    100% {
        opacity: 0.1;
        transform: scale(0.9);
    }

    27% {
        opacity: 0.46;
        transform: scale(1.1);
    }

    59% {
        opacity: 0.18;
        transform: scale(0.96);
    }

    84% {
        opacity: 0.34;
        transform: scale(1.06);
    }
}

@media (prefers-reduced-motion: reduce) {
    .kp-stars::before,
    .kp-stars::after,
    .kp-stars,
    .kp-section--learn::before,
    .kp-section--learn::after,
    .kp-adventure-card__icon,
    .kp-ticket-card__planet-img {
        animation: none;
        will-change: auto;
    }
}

.kp-section--learn .kp-section-title {
    font-size: 40px;
    line-height: 46px;
    text-transform: uppercase;
}

.kp-section--learn .kp-learn-grid {
    position: relative;
    z-index: 1;
    padding-top: 3px;
}

.kp-slider-controls--learn,
.kp-slider-controls--emotions {
    display: none;
}

@media (min-width: 769px) {
    .kp-section--learn > .kp-container > .kp-slider-controls--learn,
    .kp-section--emotions > .kp-container > .kp-slider-controls--emotions {
        display: none !important;
    }
}

.kp-learn-card {
    min-width: 0;
}

.kp-learn-card h3,
.kp-included-card h3,
.kp-audience-card h3,
.kp-adventure-card h3 {
    margin: 15px 0 8px;
    color: #fff;
    font-size: 17px;
    line-height: 1.12;
    font-weight: 400;
    text-transform: uppercase;
}

.kp-learn-card h3 {
    margin: 21px 0 7px;
    font-size: 20px;
    line-height: 23px;
    font-weight: 500;
}

.kp-learn-card p,
.kp-included-card p,
.kp-audience-card p,
.kp-adventure-card p,
.kp-groups-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.kp-learn-card p {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.kp-learn-card__media,
.kp-included-card__media,
.kp-audience-card__media,
.kp-gallery__item,
.kp-media-card,
.kp-video-card,
.kp-groups-card__media {
    overflow: hidden;
    contain: paint;
    border-radius: 28px;
    background: #0a1417;
}

.kp-learn-card__media {
    display: block;
    aspect-ratio: 379 / 211;
    border: 1px solid #686868;
    border-radius: 26px;
    box-shadow: 0 4px 54px rgba(32, 37, 155, 0.3);
    text-decoration: none;
    transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.kp-learn-card__media:hover,
.kp-learn-card__media:focus-visible {
    transform: translateY(-2px);
    filter: brightness(1.06);
    box-shadow: 0 8px 64px rgba(32, 37, 155, 0.36);
}

.kp-learn-card__media:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.72);
    outline-offset: 4px;
}

.kp-learn-card__img,
.kp-included-card__img,
.kp-audience-card__img,
.kp-gallery__img,
.kp-media-card__img,
.kp-groups-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kp-lazy {
    opacity: 0;
    transition: opacity 0.24s ease;
}

.kp-lazy.is-loaded {
    opacity: 1;
}

.kp-lazy.is-error,
.kp-img-missing {
    opacity: 0.28;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.kp-section--adventures,
.kp-section--included,
.kp-section--emotions {
    overflow-x: clip;
}

.kp-section--adventures {
    isolation: isolate;
}

.kp-section--adventures::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 88px;
    z-index: -1;
    width: min(1180px, calc(100% - 48px));
    height: 300px;
    border-radius: 140px;
    background:
        radial-gradient(72% 58% at 50% 52%, rgba(32, 37, 155, 0.3), rgba(32, 37, 155, 0.08) 58%, transparent 82%);
    filter: blur(54px);
    opacity: 0.72;
    transform: translateX(-50%);
    pointer-events: none;
}

.kp-slider {
    overflow: hidden;
}

.kp-slider--adventures,
.kp-slider--included,
.kp-slider--emotions {
    overflow: visible;
}

.kp-slider__track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 2px 0 16px;
    padding-right: var(--kp-slider-trailing, 0px);
}

.kp-section--adventures .kp-slider,
.kp-section--included .kp-slider,
.kp-section--emotions .kp-slider {
    width: calc(100vw - var(--kp-container-edge));
    max-width: none;
    margin-right: calc(-1 * var(--kp-container-edge));
}

.kp-slider--adventures .kp-slider__track {
    padding-top: 54px;
}

.kp-slider--emotions .kp-slider__track {
    padding-bottom: 52px;
}

.kp-slider--included .kp-slider__track {
    gap: 24px;
}

.kp-slider__track::-webkit-scrollbar {
    display: none;
}

.kp-slider-controls {
    --kp-progress-dot: 8px;
    --kp-progress-step: 32px;
    --kp-progress-gap: calc(var(--kp-progress-step) - var(--kp-progress-dot));
    --kp-progress-bar: 40px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    overflow: visible;
}

.kp-arrow {
    width: 56px;
    height: 56px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(5, 9, 12, 0.44);
    backdrop-filter: blur(10px);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 10px 26px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    position: relative;
    transition: background 0.14s ease, border-color 0.14s ease, transform 0.14s ease, opacity 0.14s ease;
}

.kp-arrow:not(:disabled):not(.is-disabled):hover,
.kp-arrow:not(:disabled):not(.is-disabled):focus-visible {
    border-color: rgba(255, 255, 255, 0.52);
    background: rgba(10, 10, 10, 0.28);
    transform: translateY(-1px);
}

.kp-arrow:disabled,
.kp-arrow.is-disabled {
    cursor: default;
    opacity: 0.46;
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(5, 9, 12, 0.44);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 10px 26px rgba(0, 0, 0, 0.18);
    transform: none;
}

.kp-arrow::before {
    content: "";
    position: absolute;
    width: 13px;
    height: 13px;
    left: 50%;
    top: 50%;
    border-left: 4px solid #fff;
    border-bottom: 4px solid #fff;
    transform: translate(-34%, -50%) rotate(45deg);
    border-radius: 2px;
}

.kp-arrow--next::before {
    transform: translate(-66%, -50%) rotate(225deg);
}

.kp-slider-progress {
    position: relative;
    width: 56px;
    height: 8px;
    flex: 0 0 auto;
    display: block;
    overflow: visible;
    border-radius: 99px;
    background: transparent;
}

.kp-slider-progress__dots {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    gap: var(--kp-progress-gap);
}

.kp-slider-progress__dot {
    display: block;
    width: var(--kp-progress-dot);
    height: var(--kp-progress-dot);
    flex: 0 0 var(--kp-progress-dot);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

.kp-slider-progress__bar {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: var(--kp-progress-bar);
    height: var(--kp-progress-dot);
    border-radius: inherit;
    background: #fff;
    transform: translateX(0);
    transition: transform 0.34s cubic-bezier(0.22, 0.74, 0.26, 1), width 0.22s ease;
}

.kp-section--adventures > .kp-container > .kp-slider-controls,
.kp-section--included > .kp-container > .kp-slider-controls {
    display: flex;
    justify-content: center;
    margin: 22px auto 0;
}

.kp-adventure-card {
    position: relative;
    flex: 0 0 calc((min(var(--kp-max), calc(100vw - 48px)) - 40px) / 3);
    min-height: 146px;
    padding: 30px 25px 23px;
    overflow: visible;
    border: 1px solid rgba(21, 21, 21, 0.96);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(8, 13, 15, 0.72), rgba(5, 9, 11, 0.86));
    box-shadow: 0 4px 54px rgba(32, 37, 155, 0.2), 0 18px 42px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(10px);
    scroll-snap-align: start;
}

.kp-adventure-card__planet {
    position: absolute;
    right: -45px;
    top: -48px;
    z-index: 3;
    width: 90px;
    height: 90px;
    pointer-events: none;
    filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.28));
}

.kp-adventure-card__icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center;
    will-change: transform;
    animation: kp-planet-rotate 92s linear infinite;
}

.kp-adventure-card:nth-child(4n + 1) .kp-adventure-card__icon {
    animation-duration: 76s;
}

.kp-adventure-card:nth-child(4n + 2) .kp-adventure-card__icon {
    animation-duration: 104s;
    animation-direction: reverse;
}

.kp-adventure-card:nth-child(4n + 3) .kp-adventure-card__icon {
    animation-duration: 88s;
}

.kp-adventure-card:nth-child(4n) .kp-adventure-card__icon {
    animation-duration: 116s;
    animation-direction: reverse;
}

@keyframes kp-planet-rotate {
    to {
        transform: rotate(360deg);
    }
}

.kp-section--ticket {
    padding: 66px 0 104px;
    overflow-x: clip;
    overflow-y: visible;
}

.kp-section--ticket::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 18px;
    z-index: 0;
    width: min(666px, calc(100% - 32px));
    height: min(651px, 92vw);
    border-radius: 120px;
    background:
        radial-gradient(66% 60% at 50% 42%, rgba(35, 67, 255, 0.44), rgba(32, 37, 155, 0.23) 45%, rgba(32, 37, 155, 0.04) 72%, transparent 82%),
        radial-gradient(62% 54% at 50% 50%, rgba(48, 176, 210, 0.16), transparent 68%);
    filter: blur(34px);
    opacity: 0.78;
    transform: translateX(-50%);
    pointer-events: none;
}

.kp-ticket-card {
    --kp-ticket-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 368 352' preserveAspectRatio='none'%3E%3Cpath fill='white' fill-rule='evenodd' d='M21 0H347Q368 0 368 21V331Q368 352 347 352H21Q0 352 0 331V21Q0 0 21 0ZM-32 176a32 32 0 1 0 64 0a32 32 0 1 0-64 0ZM336 176a32 32 0 1 0 64 0a32 32 0 1 0-64 0Z'/%3E%3C/svg%3E");
    position: relative;
    z-index: 1;
    width: min(368px, 100%);
    min-height: 352px;
    margin: 0 auto;
    padding: 31px 41px 29px;
    border: 0;
    border-radius: 21px;
    background: transparent;
    box-shadow: none;
    isolation: isolate;
    text-align: center;
}

.kp-ticket-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    background:
        radial-gradient(28% 30% at 99% 73%, rgba(255, 131, 76, 0.32), rgba(255, 131, 76, 0.08) 44%, transparent 74%),
        radial-gradient(70% 46% at 50% 0%, rgba(40, 94, 145, 0.16), transparent 70%),
        linear-gradient(180deg, rgba(8, 16, 23, 0.96), rgba(4, 9, 13, 0.98));
    box-shadow:
        inset 0 0 0 1px rgba(74, 99, 111, 0.44),
        0 28px 92px rgba(0, 0, 0, 0.62),
        0 0 68px rgba(32, 37, 155, 0.26);
    -webkit-mask-image: var(--kp-ticket-mask);
    mask-image: var(--kp-ticket-mask);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.kp-ticket-card::after {
    content: none;
}

.kp-ticket-card__content {
    position: relative;
    z-index: 3;
}

.kp-ticket-card h2 {
    width: min(240px, 100%);
    margin: 0 auto 19px;
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
}

.kp-btn--ticket {
    min-height: 42px;
    padding: 0 22px;
    margin-top: 0;
    border-radius: 17px;
    font-size: 14px;
    box-shadow:
        0 12px 26px rgba(255, 107, 0, 0.38),
        0 0 23px rgba(255, 107, 0, 0.28);
}

.kp-btn--ticket .kp-btn__icon,
.kp-btn--ticket .kp-btn__icon img {
    width: 17px;
    height: 17px;
}

.kp-ticket-card__divider {
    width: 100%;
    height: 1px;
    margin: 33px 0 25px;
    background: rgba(255, 255, 255, 0.16);
}

.kp-ticket-card__discount {
    display: grid;
    gap: 4px;
    margin: 0 0 20px;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
}

.kp-ticket-card__discount strong {
    font-size: inherit;
    font-weight: 400;
}

.kp-ticket-card__discount span {
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    line-height: 17px;
}

.kp-ticket-card__promo-left {
    width: min(260px, 100%);
    margin: 13px auto 0;
    color: rgba(220, 228, 233, 0.76);
    font-size: 11px;
    font-weight: 400;
    line-height: 15px;
    white-space: pre-line;
}

.kp-promo-code {
    appearance: none;
    position: relative;
    display: block;
    width: min(207px, 100%);
    margin: 0 auto;
    padding: 8px 36px 9px 17px;
    border: 3px dashed rgba(255, 255, 255, 0.94);
    border-radius: 8px;
    background: rgba(4, 9, 13, 0.1);
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    font-size: 20px;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: 0;
    text-align: center;
    transition: border-color 0.2s ease, filter 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.kp-promo-code:focus-visible {
    outline: 2px solid rgba(255, 107, 0, 0.72);
    outline-offset: 6px;
}

.kp-promo-code em {
    position: absolute;
    left: 50%;
    top: -10px;
    padding: 0 6px;
    background: #070d11;
    color: #fff;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
    text-transform: lowercase;
    transform: translateX(-50%);
    white-space: nowrap;
}

.kp-promo-code__value {
    display: block;
}

.kp-promo-code__icon {
    position: absolute;
    right: 17px;
    top: 50%;
    display: grid;
    width: 18px;
    height: 18px;
    place-items: center;
    transform: translateY(-50%);
    transition: transform 0.2s ease;
}

.kp-promo-code__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.kp-promo-code:hover,
.kp-promo-code.is-copy-success {
    border-color: #fff;
    filter: brightness(1.06);
}

.kp-promo-code:hover .kp-promo-code__icon,
.kp-promo-code.is-copy-success .kp-promo-code__icon {
    transform: translate(3px, -50%);
}

.kp-promo-code__message {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 12px);
    z-index: 8;
    width: max-content;
    max-width: min(260px, calc(100vw - 32px));
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    background: rgba(6, 13, 18, 0.96);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.36);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    line-height: 15px;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 6px);
    transition: opacity 0.18s ease, transform 0.18s ease;
    white-space: normal;
}

.kp-promo-code.is-copy-success .kp-promo-code__message {
    opacity: 1;
    transform: translate(-50%, 0);
}

.kp-promo-modal {
    position: fixed;
    inset: 0;
    z-index: 1300;
    display: grid;
    place-items: center;
    padding: 24px;
}

.kp-promo-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(1, 6, 8, 0.72);
    backdrop-filter: blur(8px);
}

.kp-promo-modal__dialog {
    --kp-ticket-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 368 352' preserveAspectRatio='none'%3E%3Cpath fill='white' fill-rule='evenodd' d='M21 0H347Q368 0 368 21V331Q368 352 347 352H21Q0 352 0 331V21Q0 0 21 0ZM-32 176a32 32 0 1 0 64 0a32 32 0 1 0-64 0ZM336 176a32 32 0 1 0 64 0a32 32 0 1 0-64 0Z'/%3E%3C/svg%3E");
    position: relative;
    z-index: 1;
    width: min(368px, 100%);
    min-height: 352px;
    padding: 31px 41px 29px;
    border: 0;
    border-radius: 21px;
    background: transparent;
    box-shadow: none;
    isolation: isolate;
    text-align: center;
}

.kp-promo-modal__dialog::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    background:
        radial-gradient(28% 30% at 82% 76%, rgba(255, 131, 76, 0.18), rgba(255, 131, 76, 0.05) 48%, transparent 76%),
        radial-gradient(70% 46% at 50% 0%, rgba(40, 94, 145, 0.16), transparent 70%),
        linear-gradient(180deg, rgba(8, 16, 23, 0.97), rgba(4, 9, 13, 0.99));
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.02),
        0 28px 92px rgba(0, 0, 0, 0.62),
        0 0 68px rgba(32, 37, 155, 0.26);
    -webkit-mask-image: var(--kp-ticket-mask);
    mask-image: var(--kp-ticket-mask);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.kp-promo-modal__body {
    position: relative;
    z-index: 2;
}

.kp-promo-modal__close {
    appearance: none;
    position: absolute;
    z-index: 3;
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.kp-promo-modal__close::before,
.kp-promo-modal__close::after {
    content: "";
    position: absolute;
    left: 12px;
    top: 20px;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
}

.kp-promo-modal__close::before {
    transform: rotate(45deg);
}

.kp-promo-modal__close::after {
    transform: rotate(-45deg);
}

.kp-promo-modal__eyebrow {
    display: none !important;
}

.kp-promo-modal h2 {
    width: min(240px, 100%);
    margin: 0 auto 19px;
    color: #fff;
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
}

.kp-promo-modal p {
    margin: 0;
    color: rgba(220, 228, 233, 0.78);
    font-size: 13px;
    line-height: 17px;
}

.kp-promo-modal__left {
    width: min(260px, 100%);
    margin: 13px auto 0 !important;
    color: rgba(220, 228, 233, 0.76) !important;
    font-size: 11px !important;
    font-weight: 400;
    line-height: 15px !important;
    white-space: pre-line;
}

.kp-promo-modal__divider {
    width: 100%;
    height: 1px;
    margin: 33px 0 25px;
    background: rgba(255, 255, 255, 0.16);
}

.kp-promo-modal__discount {
    display: grid;
    gap: 4px;
    margin: 0 0 20px !important;
    color: #fff !important;
    font-size: 20px !important;
    font-weight: 400;
    line-height: 24px !important;
}

.kp-promo-modal__discount strong {
    font: inherit;
}

.kp-promo-modal__discount span {
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    line-height: 17px;
}

.kp-promo-modal__code {
    margin-top: 0;
}

.kp-promo-modal__button {
    min-height: 42px;
    margin: 0 auto;
    padding: 0 22px;
    border-radius: 17px;
    font-size: 14px;
    box-shadow:
        0 12px 26px rgba(255, 107, 0, 0.38),
        0 0 23px rgba(255, 107, 0, 0.28);
}

.kp-promo-modal__button .kp-btn__icon,
.kp-promo-modal__button .kp-btn__icon img {
    width: 17px;
    height: 17px;
}

.kp-ticket-card__notes {
    position: relative;
    z-index: 3;
    width: min(488px, 100%);
    margin: 13px auto 0;
    color: rgba(167, 178, 188, 0.72);
    font-size: 11px;
    line-height: 15px;
    text-align: center;
}

.kp-ticket-card__notes p {
    margin: 0;
}

.kp-ticket-card__planet {
    position: absolute;
    right: -193px;
    bottom: -64px;
    width: 296px;
    pointer-events: none;
    z-index: 0;
    filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.38));
}

.kp-ticket-card__planet-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transform-origin: center;
    will-change: transform;
    animation: kp-ticket-planet-orbit 112s linear infinite;
}

@keyframes kp-ticket-planet-orbit {
    0% {
        transform: rotate(0deg) scale(0.992);
    }

    50% {
        transform: rotate(180deg) scale(1.018);
    }

    100% {
        transform: rotate(360deg) scale(0.992);
    }
}

.kp-included-card {
    flex: 0 0 calc((min(var(--kp-max), calc(100vw - 48px)) - 24px) / 2);
    scroll-snap-align: start;
}

.kp-included-card__link {
    display: block;
    color: inherit;
    text-decoration: none;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.kp-included-card__link:hover,
.kp-included-card__link:focus-visible {
    transform: translateY(-2px);
    filter: brightness(1.06);
}

.kp-included-card__link:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.72);
    outline-offset: 4px;
}

.kp-included-card__media {
    aspect-ratio: 1.92;
    border: 1px solid rgba(104, 104, 104, 0.62);
    box-shadow: 0 4px 54px rgba(32, 37, 155, 0.24);
    transition: box-shadow 0.2s ease;
}

.kp-included-card__link:hover .kp-included-card__media,
.kp-included-card__link:focus-visible .kp-included-card__media {
    box-shadow: 0 8px 64px rgba(32, 37, 155, 0.36);
}

.kp-section--audience .kp-section-title {
    margin: 0 auto;
}

.kp-section--audience .kp-section-title::first-line {
    color: var(--kp-accent);
}

.kp-audience-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}

.kp-audience-card {
    min-height: 500px;
}

.kp-audience-card__link {
    display: flex;
    flex-direction: column;
    min-height: inherit;
    color: inherit;
    text-decoration: none;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.kp-audience-card__link:hover,
.kp-audience-card__link:focus-visible {
    transform: translateY(-2px);
    filter: brightness(1.06);
}

.kp-audience-card__link:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.72);
    outline-offset: 4px;
}

.kp-audience-card__copy {
    margin-bottom: 28px;
    text-align: center;
}

.kp-audience-card__copy h3 {
    text-transform: none;
}

.kp-audience-card__media {
    flex: 1 1 auto;
    min-height: 386px;
    border: 1px solid rgba(104, 104, 104, 0.55);
    box-shadow: 0 4px 54px rgba(32, 37, 155, 0.24);
    transition: box-shadow 0.2s ease;
}

.kp-audience-card__link:hover .kp-audience-card__media,
.kp-audience-card__link:focus-visible .kp-audience-card__media {
    box-shadow: 0 8px 64px rgba(32, 37, 155, 0.36);
}

.kp-section--groups {
    overflow-x: clip;
    overflow-y: visible;
    isolation: isolate;
}

.kp-section--groups::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 54%;
    z-index: -1;
    width: min(1160px, calc(100% - 20px));
    height: 500px;
    border-radius: 210px;
    background:
        radial-gradient(54% 42% at 50% 50%, rgba(255, 107, 0, 0.92), rgba(255, 107, 0, 0.46) 48%, rgba(255, 107, 0, 0.14) 72%, transparent 88%),
        radial-gradient(78% 64% at 50% 50%, rgba(255, 127, 23, 0.34), rgba(255, 107, 0, 0.16) 58%, transparent 86%);
    filter: blur(30px);
    opacity: 1;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.kp-groups-card {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(500px, 1fr);
    gap: 44px;
    align-items: center;
    min-height: 282px;
    padding: 24px 26px 24px 34px;
    border: 1px solid transparent;
    border-radius: 28px;
    background:
        radial-gradient(42% 72% at 2% 50%, rgba(26, 44, 52, 0.34), transparent 70%) padding-box,
        linear-gradient(135deg, rgba(7, 14, 17, 0.98), rgba(5, 11, 14, 0.94)) padding-box,
        linear-gradient(to top, rgba(184, 184, 184, 0.38), rgba(132, 132, 132, 0.16) 44%, rgba(132, 132, 132, 0.04) 72%, transparent 100%) border-box;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.03),
        0 14px 54px rgba(0, 0, 0, 0.34);
}

.kp-groups-card .kp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
    color: var(--kp-accent);
    font-size: 13px;
    line-height: 16px;
}

.kp-groups-card .kp-eyebrow::before {
    content: "%";
    display: inline-grid;
    width: 18px;
    height: 18px;
    place-items: center;
    border-radius: 50%;
    background: var(--kp-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
}

.kp-groups-card h2 {
    max-width: 360px;
    margin: 0 0 16px;
    font-size: 27px;
    line-height: 1.18;
}

.kp-groups-card__copy > p:not(.kp-eyebrow) {
    max-width: 510px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 16px;
    line-height: 1.42;
}

.kp-more,
.kp-partner-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    margin-top: 22px;
    padding: 0 30px;
    border-radius: 999px;
    background: #fff;
    color: #081014;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    box-shadow:
        0 2px 10px rgba(0, 0, 0, 0.05),
        0 18px 34px rgba(255, 255, 255, 0.08);
    transition: transform 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

.kp-more:hover,
.kp-more:focus-visible,
.kp-partner-button:hover,
.kp-partner-button:focus-visible {
    transform: translateY(-1px);
    color: var(--kp-accent);
    box-shadow:
        0 2px 10px rgba(0, 0, 0, 0.05),
        0 18px 34px rgba(255, 107, 0, 0.18);
}

.kp-groups-card .kp-more {
    position: relative;
    gap: 13px;
    min-height: 48px;
    margin-top: 34px;
    padding: 0 52px 0 24px;
    color: #050b0e;
    font-size: 17px;
    line-height: 1;
    text-decoration: none;
}

.kp-groups-card .kp-more::before {
    content: "";
    position: absolute;
    right: 24px;
    top: 50%;
    z-index: 1;
    width: 7px;
    height: 7px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.18s ease;
}

.kp-groups-card .kp-more::after {
    content: "";
    position: absolute;
    right: 14px;
    top: 50%;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #050b0e;
    transform: translateY(-50%);
    transition: transform 0.18s ease, background-color 0.18s ease;
}

.kp-groups-card .kp-more:hover::before,
.kp-groups-card .kp-more:focus-visible::before {
    transform: translate(2px, -50%) rotate(45deg);
}

.kp-groups-card .kp-more:hover::after,
.kp-groups-card .kp-more:focus-visible::after {
    transform: translate(2px, -50%);
    background-color: var(--kp-accent);
}

.kp-groups-card__media {
    aspect-ratio: 1.72;
    border: 1px solid rgba(104, 104, 104, 0.52);
    border-radius: 24px;
    box-shadow: 0 4px 54px rgba(32, 37, 155, 0.18);
}

.kp-media-card,
.kp-video-card {
    flex: 0 0 214px;
    aspect-ratio: 0.68;
    scroll-snap-align: start;
}

.kp-section--emotions .kp-media-card {
    flex-basis: min(280px, calc((100vw - 108px) / 4));
}

.kp-media-card--emotion {
    overflow: visible;
    contain: none;
    background: transparent;
    box-shadow:
        0 8px 58px rgba(32, 37, 155, 0.42),
        0 22px 52px rgba(0, 0, 0, 0.44);
    transition: transform 0.22s ease, filter 0.22s ease, box-shadow 0.22s ease;
}

.kp-media-card--emotion .kp-video-card {
    box-shadow: none;
}

.kp-media-card--emotion:hover,
.kp-media-card--emotion:focus-within {
    transform: translateY(-2px);
    filter: brightness(1.06) saturate(1.04);
    box-shadow:
        0 12px 72px rgba(32, 37, 155, 0.52),
        0 26px 58px rgba(0, 0, 0, 0.48);
}

.kp-media-card--emotion:hover .kp-video-card:not(.is-playing) .kp-video-card__play,
.kp-media-card--emotion:focus-within .kp-video-card:not(.is-playing) .kp-video-card__play {
    transform: translate(-50%, -50%) scale(1.06);
}

.kp-media-card__img,
.kp-video-card__poster,
.kp-video-card__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kp-video-card {
    position: relative;
}

.kp-video-card__stage {
    position: absolute;
    inset: 0;
    display: block;
    border: 0;
    padding: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
}

.kp-video-card__poster,
.kp-video-card__video {
    position: absolute;
    inset: 0;
}

.kp-video-card__poster {
    transition: opacity 0.28s ease;
}

.kp-video-card__video {
    opacity: 0;
    transition: opacity 0.28s ease;
}

.kp-video-card.is-video-ready .kp-video-card__video {
    opacity: 1;
}

.kp-video-card.is-video-ready .kp-video-card__poster {
    opacity: 0;
}

.kp-video-card__progress {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 12px;
    z-index: 3;
    height: 3px;
    overflow: hidden;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.22);
}

.kp-video-card__progress span {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: #fff;
    transition: width 0.1s linear;
}

.kp-video-card__play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 4;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: rgba(255, 107, 0, 0.96);
    transform: translate(-50%, -50%);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.kp-video-card__play::before {
    content: "";
    position: absolute;
    left: 22px;
    top: 17px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
}

.kp-video-card.is-playing .kp-video-card__play {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.88);
}

.kp-video-card__sound {
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 5;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88) url("../icons/icon_volume.svg") center / 21px 21px no-repeat;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.kp-video-card__sound::before {
    content: none;
}

.kp-video-card__sound::after {
    content: none;
}

.kp-video-card:not(.is-muted) .kp-video-card__sound {
    background-color: rgba(255, 255, 255, 1);
    background-image: url("../icons/icon_volume_on.svg");
}

.kp-gallery {
    position: relative;
}

.kp-gallery-page {
    display: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    padding: 4px 0 44px;
}

.kp-gallery-page.is-active {
    display: grid;
}

.kp-gallery__item {
    contain: none;
    min-width: 0;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    box-shadow:
        0 8px 58px rgba(32, 37, 155, 0.42),
        0 22px 52px rgba(0, 0, 0, 0.44);
    transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}

.kp-gallery__item:hover {
    transform: translateY(-2px);
    filter: brightness(1.04) saturate(1.04);
    box-shadow:
        0 12px 72px rgba(32, 37, 155, 0.52),
        0 26px 58px rgba(0, 0, 0, 0.48);
}

.kp-partners-card {
    width: 100%;
    margin: 0 auto;
    padding: 60px 66px 58px;
    border: 1px solid transparent;
    border-radius: 28px;
    background:
        linear-gradient(rgba(6, 14, 16, 0.96), rgba(6, 14, 16, 0.96)) padding-box,
        linear-gradient(to top, rgba(150, 177, 190, 0.38), rgba(85, 112, 130, 0.16) 54%, rgba(85, 112, 130, 0) 100%) border-box;
    box-shadow:
        0 4px 54px rgba(32, 37, 155, 0.22),
        0 18px 46px rgba(0, 0, 0, 0.24);
    text-align: center;
}

.kp-partners-card h2 {
    margin: 0 0 36px;
    font-size: 34px;
    line-height: 1.12;
}

.kp-partners-list {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px 20px;
}

.kp-partner-item {
    flex: 0 1 calc((100% - 80px) / 5);
    min-width: 0;
    height: 94px;
    padding: 18px 22px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: #fff;
    color: #0b1417;
    font-size: 13px;
    font-weight: 500;
    overflow: hidden;
}

.kp-partner-item--link {
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.kp-partner-item--link:hover,
.kp-partner-item--link:focus-visible {
    transform: translateY(-2px);
    filter: brightness(1.03);
    box-shadow: 0 12px 34px rgba(32, 37, 155, 0.22);
}

.kp-partner-item--link:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.7);
    outline-offset: 4px;
}

.kp-partner-item__img {
    display: block;
    width: auto;
    height: auto;
    object-fit: contain;
    transform: none;
    max-width: 100%;
    max-height: 62px;
}

.kp-partner-button {
    position: relative;
    gap: 13px;
    min-height: 48px;
    margin-top: 34px;
    padding: 0 24px 0 20px;
    border: 0;
    color: #050b0e;
    cursor: pointer;
    font-size: 17px;
    line-height: 1;
    text-decoration: none;
}

.kp-partner-button::before {
    content: "+";
    display: inline-grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 50%;
    background: #050b0e;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    transition: transform 0.18s ease, background-color 0.18s ease;
}

.kp-partner-button:hover,
.kp-partner-button:focus-visible {
    color: #050b0e;
}

.kp-partner-button:hover::before,
.kp-partner-button:focus-visible::before {
    transform: scale(1.08);
    background-color: var(--kp-accent);
}

body.kp-popup-open {
    overflow: hidden;
}

.kp-partner-popup {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 24px;
}

.kp-partner-popup[hidden] {
    display: none;
}

.kp-partner-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 7, 8, 0.74);
    backdrop-filter: blur(8px);
}

.kp-partner-popup__dialog {
    position: relative;
    width: min(620px, 100%);
    max-height: calc(100vh - 48px);
    padding: 34px;
    overflow: auto;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    background: linear-gradient(160deg, rgba(8, 17, 20, 0.98), rgba(11, 16, 34, 0.98));
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.46);
}

.kp-partner-popup__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
    -webkit-tap-highlight-color: transparent;
}

.kp-partner-popup__close:hover,
.kp-partner-popup__close:focus-visible {
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    transform: translateY(-1px) scale(1.04);
}

.kp-partner-popup__close:focus-visible {
    outline: 2px solid rgba(255, 107, 0, 0.58);
    outline-offset: 4px;
}

.kp-partner-popup__close::before,
.kp-partner-popup__close::after {
    content: "";
    position: absolute;
    left: 11px;
    top: 18px;
    width: 16px;
    height: 2px;
    border-radius: 2px;
    background: #fff;
}

.kp-partner-popup__close::before {
    transform: rotate(45deg);
}

.kp-partner-popup__close::after {
    transform: rotate(-45deg);
}

.kp-partner-popup h2 {
    margin: 0 42px 10px 0;
    font-size: 28px;
    line-height: 1.12;
}

.kp-partner-popup p {
    max-width: 470px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.78);
}

.kp-partner-popup__form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.kp-partner-popup__form label {
    display: grid;
    gap: 7px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 400;
}

.kp-partner-popup__wide {
    grid-column: 1 / -1;
}

.kp-partner-popup__input {
    width: 100%;
    min-height: 46px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    outline: none;
    resize: vertical;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.kp-partner-popup__input:focus {
    border-color: rgba(255, 107, 0, 0.84);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.16);
}

.kp-partner-popup__form .kp-partner-popup__consent {
    display: flex;
    grid-template-columns: none;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    line-height: 1.35;
}

.kp-partner-popup__consent input {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--kp-accent);
}

.kp-partner-popup__consent a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.kp-partner-popup__submit {
    min-height: 50px;
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: #050b0e;
    cursor: pointer;
    font-weight: 500;
    text-transform: uppercase;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.kp-partner-popup__submit:hover,
.kp-partner-popup__submit:focus-visible {
    transform: translateY(-1px);
}

.kp-partner-popup__submit:disabled {
    cursor: wait;
    opacity: 0.72;
}

.kp-partner-popup__status {
    min-height: 20px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 400;
    text-align: center;
}

.kp-partner-popup__status.is-error {
    color: #ffb39a;
}

.kp-partner-popup__status.is-success {
    color: #a6ffbf;
}

.kp-footer {
    margin-top: 72px;
    padding: 48px 0 74px;
    color: #fff;
    background:
        radial-gradient(78% 120% at 50% 114%, rgba(35, 40, 126, 0.62) 0%, rgba(16, 20, 70, 0.62) 45%, rgba(8, 12, 24, 0.94) 100%),
        linear-gradient(180deg, #070c11 0%, #0b1022 48%, #11143a 100%);
    border-top: 0;
}

.kp-footer__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
    gap: 44px;
    align-items: start;
}

.kp-footer__city strong {
    display: block;
    color: #fff;
    font-size: 25px;
    line-height: 1.1;
    font-weight: 500;
    text-transform: uppercase;
}

.kp-footer__city strong span {
    margin-left: 8px;
    color: inherit;
    font-size: 20px;
    line-height: inherit;
}

.kp-footer__city p,
.kp-footer__schedule span,
.kp-footer__contact,
.kp-footer__doc-links a,
.kp-footer__legal {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.45;
}

.kp-footer__city p {
    margin-top: 16px;
}

.kp-footer__meta {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(230px, 1fr);
    gap: 40px;
    align-items: start;
}

.kp-footer__schedule {
    display: grid;
    gap: 2px;
    justify-self: start;
}

.kp-footer__schedule span {
    display: block;
    font-weight: 500;
}

.kp-footer__contacts {
    display: grid;
    gap: 12px;
    justify-items: start;
}

.kp-footer__contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.kp-footer__contact img {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    opacity: 0.96;
}

.kp-footer__contact:hover,
.kp-footer__contact:focus-visible,
.kp-footer__doc-links a:hover,
.kp-footer__doc-links a:focus-visible,
.kp-footer__legal a:hover,
.kp-footer__legal a:focus-visible {
    color: #fff;
    transform: translateY(-1px);
}

.kp-footer__middle {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
    gap: 44px;
    margin-top: 34px;
}

.kp-footer__docs strong,
.kp-footer__subscribe strong {
    display: block;
    margin-bottom: 12px;
    color: #fff;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 500;
}

.kp-footer__doc-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
}

.kp-footer__doc-links a,
.kp-footer__legal a {
    text-decoration: none;
}

.kp-footer__subscribe {
    justify-self: start;
}

.kp-footer__socials {
    display: flex;
    gap: 12px;
}

.kp-footer__socials a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 14px;
    background: #20259B;
    box-shadow: 0 12px 26px rgba(6, 10, 78, 0.34);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.kp-footer__socials a:hover,
.kp-footer__socials a:focus-visible {
    transform: translateY(-2px);
    background: #1d22a8;
    box-shadow: 0 16px 30px rgba(6, 10, 78, 0.42);
}

.kp-footer__socials img {
    width: 25px;
    height: 25px;
    filter: brightness(0) invert(1);
}

.kp-footer__legal {
    width: min(620px, 100%);
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.48);
}

.kp-footer__legal a {
    color: #fff;
    font-weight: 400;
}

.kp-floating-ticket {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 30;
    min-width: 118px;
    min-height: 44px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    background: var(--kp-accent);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.34);
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
    transition: opacity 0.2s ease, transform 0.2s ease, filter 0.18s ease, box-shadow 0.18s ease;
}

.kp-floating-ticket.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.kp-floating-ticket.is-visible:hover,
.kp-floating-ticket.is-visible:focus-visible {
    transform: translateY(-1px);
    filter: brightness(1.06);
    box-shadow: 0 20px 38px rgba(255, 107, 0, 0.42);
}

.kp-floating-ticket img {
    width: 18px;
    height: 18px;
}

@media (max-width: 1024px) {
    :root {
        --kp-header-height: 74px;
    }

    .kp-header__meta {
        display: none;
    }

    .kp-nav {
        justify-content: flex-end;
        gap: 16px;
    }

    .kp-slider--learn .kp-slider__track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kp-audience-grid,
    .kp-footer__grid {
        grid-template-columns: 1fr;
    }

    .kp-audience-card {
        min-height: 0;
    }

    .kp-audience-card__media {
        min-height: 360px;
    }

    .kp-adventure-card {
        flex-basis: calc((100% - 20px) / 2);
    }

    .kp-included-card {
        flex-basis: calc((100% - 24px) / 2);
    }

    .kp-groups-card {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 26px;
    }

    .kp-section--groups::before {
        width: min(860px, calc(100% - 24px));
        height: 460px;
        filter: blur(30px);
        opacity: 0.9;
    }

    .kp-partners-card {
        padding: 48px 34px 46px;
    }

    .kp-partners-list {
        gap: 18px;
    }

    .kp-partner-item {
        flex-basis: calc((100% - 36px) / 3);
        height: 86px;
    }

    .kp-gallery-page {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    body.kp-page--promo {
        --kp-promo-height: 24px;
    }

    body.kp-menu-open .kp-header {
        z-index: 200;
    }

    body.kp-menu-open.kp-page--form .kp-header {
        z-index: 1200;
    }

    :root {
        --kp-header-height: 60px;
        --kp-container-edge: 16px;
    }

    .kp-container,
    .kp-header__inner {
        width: min(100% - 32px, var(--kp-max));
    }

    .kp-header__inner {
        padding: 4px 0;
        gap: 10px;
    }

    .kp-logo {
        height: 32px;
    }

    .kp-header__mobile-place {
        min-width: 0;
        flex: 1 1 auto;
        display: grid;
        gap: 3px;
        color: rgba(213, 222, 226, 0.8);
        font-size: 11px;
        line-height: 1.12;
    }

    .kp-header__mobile-place strong,
    .kp-header__mobile-place span {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .kp-header__mobile-place strong {
        color: rgba(213, 222, 226, 0.78);
        font-weight: 400;
    }

    .kp-header__mobile-place span {
        color: #fff;
        font-weight: 500;
    }

    .kp-header__ticket-info {
        display: none;
    }

    body.kp-page--tickets .pf-main {
        padding-top: 24px;
    }

    .kp-mobile-menu__brand {
        width: auto;
        height: 48px;
    }

    .kp-nav {
        display: none;
    }

    .kp-menu-toggle {
        display: block;
        margin-left: auto;
        flex: 0 0 auto;
    }

    .kp-header__promo {
        min-height: var(--kp-promo-height);
        height: var(--kp-promo-height);
        justify-content: flex-start;
        align-items: center;
        gap: 5px;
        padding: 2px 14px;
        font-size: clamp(9px, 2.45vw, 10px);
        line-height: 1.12;
        white-space: nowrap;
    }

    .kp-header__promo-text {
        flex: 1 1 auto;
        overflow: hidden;
        text-overflow: clip;
        white-space: nowrap;
    }

    .kp-promo-info-wrap {
        align-self: center;
    }

    .kp-promo-info {
        width: 18px;
        height: 18px;
        padding: 3px;
    }

    .kp-promo-modal {
        padding: 16px;
    }

    .kp-promo-modal__dialog {
        width: min(360px, 100%);
        min-height: 342px;
        padding: 30px 34px 27px;
        border-radius: 20px;
    }

    .kp-promo-modal__close {
        width: 44px;
        height: 44px;
    }

    .kp-promo-modal__close::before,
    .kp-promo-modal__close::after {
        left: 13px;
        top: 21px;
        width: 18px;
        height: 2px;
    }

    .kp-promo-modal h2 {
        margin-bottom: 18px;
        font-size: 19px;
        line-height: 23px;
    }

    .kp-promo-modal p {
        font-size: 12px;
        line-height: 16px;
    }

    .kp-promo-modal__button {
        width: min(222px, 100%);
        min-height: 40px;
        justify-content: center;
        padding: 0 18px;
        font-size: 14px;
    }

    .kp-mobile-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        bottom: auto;
        height: calc(100vh - var(--kp-header-stack-height));
        max-height: calc(100vh - var(--kp-header-stack-height));
        background: rgba(2, 10, 11, 0.98);
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }

    .kp-mobile-menu__panel {
        position: static;
        width: 100%;
        min-height: 100%;
        padding: 28px max(24px, calc((100vw - 560px) / 2)) 38px;
        border-left: 0;
    }

    .kp-mobile-menu__nav {
        gap: 15px;
        margin: 0;
        font-size: 18px;
        line-height: 1.12;
    }

    .kp-mobile-menu__contacts {
        gap: 13px;
        margin-top: 24px;
        padding-top: 18px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        color: rgba(166, 181, 189, 0.9);
        font-size: 16px;
        line-height: 1.22;
    }

    .kp-mobile-menu__schedule {
        gap: 3px;
        padding-top: 11px;
        font-size: 14px;
        line-height: 1.2;
    }

    .kp-hero {
        padding-top: 26px;
        padding-bottom: 44px;
    }

    .kp-hero-card {
        aspect-ratio: auto;
        width: min(100%, 560px);
        min-height: clamp(570px, 118vw, 700px);
        border-radius: 34px;
        background: #030608;
        border-color: rgba(255, 255, 255, 0.16);
    }

    .kp-hero-card::after {
        background:
            linear-gradient(180deg, rgba(4, 7, 10, 0.06) 0%, rgba(4, 7, 10, 0.28) 43%, rgba(4, 7, 10, 0.72) 68%, rgba(4, 7, 10, 0.86) 100%),
            radial-gradient(70% 52% at 50% 58%, rgba(255, 68, 0, 0.1) 0%, rgba(0, 0, 0, 0) 48%),
            radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0) 36.06%, rgba(0, 0, 0, 0.58) 100%);
    }

    .kp-hero-card__copy {
        position: absolute;
        inset: 0;
        width: 100%;
        min-height: 0;
        justify-content: flex-end;
        align-items: center;
        padding: 0 22px 62px;
        text-align: center;
    }

    .kp-hero-card__copy h1 {
        max-width: 480px;
        margin-bottom: 18px;
        font-size: clamp(28px, 7vw, 39px);
        line-height: 1.08;
    }

    .kp-hero-card__copy > p,
    .kp-hero-card__copy > span {
        font-size: clamp(19px, 4.8vw, 25px);
        font-weight: 500;
        line-height: 1.16;
    }

    .kp-hero-card__copy > span {
        margin-top: 3px;
    }

    .kp-hero-card__media {
        overflow: hidden;
        border-radius: inherit;
        background: #030608;
    }

    .kp-hero-card__media picture,
    .kp-hero-card__img {
        border-radius: inherit;
    }

    .kp-hero-card__img {
        object-position: center center;
        transform: none;
    }

    .kp-hero-card__video {
        display: block;
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

    .kp-section--learn .kp-section-title {
        max-width: 330px;
        font-size: 27px;
        line-height: 31px;
        text-align: left;
    }

    .kp-btn--hero {
        min-height: 58px;
        margin-top: 28px;
        padding: 0 31px;
        font-size: 18px;
        border-radius: 23px;
    }

    .kp-slider-controls {
        --kp-progress-dot: 6px;
        --kp-progress-step: 22px;
        --kp-progress-bar: 34px;
        gap: 8px;
    }

    .kp-arrow {
        width: 44px;
        height: 44px;
    }

    .kp-arrow::before {
        width: 10px;
        height: 10px;
        border-left-width: 3px;
        border-bottom-width: 3px;
    }

    .kp-slider-progress {
        height: 6px;
        margin-left: 7px;
    }

    .kp-section--adventures > .kp-container > .kp-slider-controls,
    .kp-section--included > .kp-container > .kp-slider-controls {
        justify-content: flex-start;
        margin: 14px 0 0;
    }

    .kp-section--emotions .kp-section-head {
        margin-bottom: 18px;
    }

    .kp-section--emotions .kp-section-head .kp-slider-controls {
        display: none;
    }

    .kp-section--gallery .kp-container {
        display: flex;
        flex-direction: column;
    }

    .kp-section--gallery .kp-section-head {
        display: contents;
    }

    .kp-section--gallery .kp-section-head > div {
        order: 1;
        margin-bottom: 18px;
    }

    .kp-section--gallery .kp-gallery {
        order: 2;
    }

    .kp-section--gallery .kp-section-head > .kp-slider-controls {
        order: 3;
        justify-content: flex-start;
        margin: 10px 0 0;
    }

    .kp-slider--emotions .kp-slider__track {
        gap: 14px;
        padding-bottom: 8px;
    }

    .kp-section--emotions .kp-media-card,
    .kp-section--emotions .kp-video-card {
        flex-basis: min(336px, calc(100vw - 104px));
        aspect-ratio: 0.66;
        border-radius: 22px;
    }

    .kp-slider-controls--emotions {
        justify-content: flex-start;
        margin: 10px 0 0;
    }

    .kp-promo-tooltip {
        right: 0;
        left: auto;
        width: min(320px, calc(100vw - 24px));
        transform: translateY(-4px);
    }

    .kp-header__promo.is-tooltip-open .kp-promo-tooltip {
        transform: translateY(0);
    }

    .kp-section {
        padding: 34px 0;
    }

    .kp-section-title {
        line-height: 1.08;
    }

    .kp-section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .kp-section-head--center {
        align-items: center;
    }

    .kp-section--adventures {
        padding-top: 38px;
        padding-bottom: 36px;
    }

    .kp-section--adventures::before {
        top: 74px;
        width: min(760px, 118vw);
        height: 430px;
        border-radius: 190px;
        background:
            radial-gradient(62% 52% at 50% 46%, rgba(32, 37, 155, 0.5), rgba(32, 37, 155, 0.18) 54%, transparent 82%),
            radial-gradient(56% 48% at 50% 70%, rgba(18, 118, 255, 0.22), transparent 70%);
        filter: blur(42px);
        opacity: 0.92;
    }

    .kp-section--adventures .kp-section-head {
        align-items: center;
        margin-bottom: 18px;
        text-align: center;
    }

    .kp-section--adventures .kp-eyebrow {
        margin-bottom: 8px;
        font-size: 13px;
        line-height: 1.1;
        font-weight: 500;
    }

    .kp-section--adventures .kp-section-title {
        max-width: 330px;
        font-size: 30px;
        line-height: 34px;
    }

    .kp-section--learn .kp-section-head--center {
        align-items: flex-start;
        text-align: left;
        margin-bottom: 18px;
    }

    .kp-adventure-card,
    .kp-included-card {
        flex-basis: 100%;
    }

    .kp-section--adventures .kp-slider__track {
        gap: 14px;
        padding-top: 43px;
        padding-bottom: 12px;
    }

    .kp-section--adventures .kp-adventure-card {
        flex: 0 0 min(318px, calc(100vw - 70px));
        min-height: 184px;
        padding: 27px 26px 24px;
        border-radius: 20px;
        background: linear-gradient(145deg, rgba(6, 13, 17, 0.84), rgba(4, 9, 12, 0.94));
        box-shadow: 0 5px 44px rgba(32, 37, 155, 0.34), 0 18px 36px rgba(0, 0, 0, 0.28);
    }

    .kp-section--adventures .kp-adventure-card__planet {
        top: -42px;
        right: -24px;
        width: 74px;
        height: 74px;
    }

    .kp-section--adventures .kp-adventure-card h3 {
        margin: 0 0 11px;
        font-size: 16px;
        line-height: 19px;
    }

    .kp-section--adventures .kp-adventure-card p {
        font-size: 14px;
        line-height: 20px;
    }

    .kp-section--ticket {
        padding: 46px 0 58px;
        background:
            radial-gradient(92% 76% at 50% 43%, rgba(34, 40, 174, 0.34), rgba(24, 33, 112, 0.14) 55%, transparent 78%),
            radial-gradient(90% 62% at 50% 70%, rgba(18, 118, 255, 0.14), transparent 70%);
    }

    .kp-section--ticket::before {
        top: 2px;
        width: min(560px, 116vw);
        height: 490px;
        border-radius: 170px;
        background:
            radial-gradient(60% 54% at 50% 42%, rgba(44, 66, 255, 0.5), rgba(32, 37, 155, 0.2) 56%, transparent 82%),
            radial-gradient(54% 42% at 50% 68%, rgba(41, 153, 255, 0.2), transparent 72%);
        filter: blur(30px);
        opacity: 0.94;
    }

    .kp-slider--learn {
        width: calc(100vw - var(--kp-container-edge));
        max-width: none;
        margin-right: calc(-1 * var(--kp-container-edge));
        overflow: visible;
    }

    .kp-slider--learn .kp-slider__track {
        display: flex;
        grid-template-columns: none;
        gap: 14px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 2px 0 15px;
        padding-right: var(--kp-slider-trailing, 0px);
    }

    .kp-slider--learn .kp-learn-card {
        flex: 0 0 min(284px, calc(100vw - 70px));
        scroll-snap-align: start;
    }

    .kp-slider-controls--learn,
    .kp-slider-controls--emotions {
        display: inline-flex;
        margin-top: 8px;
    }

    .kp-learn-card h3 {
        margin-top: 14px;
        font-size: 16px;
        line-height: 19px;
    }

    .kp-learn-card p {
        font-size: 12px;
        line-height: 17px;
    }

    .kp-learn-card__media {
        border-radius: 20px;
    }

    .kp-ticket-card {
        width: min(360px, 100%);
        min-height: 342px;
        padding: 30px 34px 27px;
        border-radius: 22px;
    }

    .kp-ticket-card h2 {
        margin-bottom: 18px;
        font-size: 19px;
        line-height: 23px;
    }

    .kp-btn--ticket {
        width: min(222px, 100%);
        min-height: 40px;
        justify-content: center;
        padding: 0 18px;
        font-size: 14px;
    }

    .kp-ticket-card__divider {
        width: min(276px, 100%);
        margin: 29px auto 23px;
    }

    .kp-ticket-card__discount {
        margin-bottom: 18px;
        font-size: 19px;
        line-height: 23px;
    }

    .kp-ticket-card__discount span {
        font-size: 12px;
        line-height: 16px;
    }

    .kp-promo-code {
        width: min(252px, 100%);
        padding: 8px 42px 9px 19px;
        border-width: 3px;
        font-size: 19px;
        line-height: 24px;
    }

    .kp-promo-code em {
        top: -9px;
        font-size: 11px;
        line-height: 13px;
    }

    .kp-ticket-card__planet {
        right: -52px;
        bottom: 14px;
        width: 150px;
    }

    .kp-ticket-card__notes {
        width: min(330px, 100%);
        margin-top: 14px;
        color: rgba(177, 188, 198, 0.72);
        font-size: 10px;
        line-height: 15px;
    }

    .kp-ticket-card__promo-left {
        width: min(250px, 100%);
        margin-top: 12px;
        font-size: 10px;
        line-height: 14px;
    }

    .kp-gallery-page {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 136px;
        gap: 10px;
        padding-bottom: 10px;
    }

    .kp-gallery__item--3,
    .kp-gallery__item--4 {
        grid-column: span 1;
    }

    .kp-footer {
        margin-top: 42px;
        padding: 42px 0 104px;
    }

    .kp-footer__top,
    .kp-footer__middle {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .kp-footer__meta {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .kp-footer__middle {
        display: flex;
        flex-direction: column;
        margin-top: 34px;
    }

    .kp-footer__city strong {
        font-size: clamp(38px, 10vw, 52px);
        line-height: 0.98;
    }

    .kp-footer__city strong span {
        display: block;
        margin: 16px 0 0;
        font-size: clamp(22px, 5.8vw, 30px);
        line-height: 1.08;
    }

    .kp-footer__city p {
        margin-top: 18px;
        font-size: 20px;
        line-height: 1.26;
    }

    .kp-footer__schedule {
        gap: 3px;
    }

    .kp-footer__schedule span {
        font-size: 20px;
        line-height: 1.28;
        font-weight: 500;
    }

    .kp-footer__contacts {
        gap: 16px;
    }

    .kp-footer__contact {
        gap: 13px;
        font-size: 20px;
        line-height: 1.3;
    }

    .kp-footer__contact img {
        width: 28px;
        height: 28px;
    }

    .kp-footer__subscribe {
        order: 1;
        justify-self: stretch;
    }

    .kp-footer__docs {
        order: 2;
    }

    .kp-footer__docs strong,
    .kp-footer__subscribe strong {
        margin-bottom: 16px;
        font-size: 21px;
        line-height: 1.22;
    }

    .kp-footer__doc-links {
        display: flex;
        flex-wrap: wrap;
        gap: 12px 24px;
        align-items: flex-start;
    }

    .kp-footer__doc-links a {
        flex: 0 1 auto;
        max-width: 100%;
        overflow-wrap: normal;
        white-space: nowrap;
        font-size: 17px;
        line-height: 1.3;
    }

    .kp-footer__doc-links a:last-child {
        flex: 0 0 min(100%, 320px);
        white-space: normal;
    }

    .kp-footer__socials {
        gap: 14px;
    }

    .kp-footer__socials a {
        width: 54px;
        height: 54px;
        border-radius: 16px;
    }

    .kp-footer__socials img {
        width: 30px;
        height: 30px;
    }

    .kp-footer__legal {
        width: 100%;
        margin-top: 34px;
        padding-top: 24px;
        font-size: 17px;
        line-height: 1.42;
    }
}

@media (max-width: 480px) {
    body.kp-page--promo {
        --kp-promo-height: 24px;
    }

    :root {
        --kp-header-height: 58px;
        --kp-container-edge: 12px;
    }

    .kp-container,
    .kp-header__inner {
        width: min(100% - 24px, var(--kp-max));
    }

    .kp-header__inner {
        min-height: var(--kp-header-height);
    }

    .kp-logo {
        height: 30px;
    }

    .kp-header__mobile-place {
        font-size: 10px;
        line-height: 1.1;
    }

    .kp-header__mobile-place span {
        font-size: 12px;
    }

    .kp-mobile-menu__panel {
        width: 100%;
        padding: 24px 22px 34px;
    }

    .kp-mobile-menu__brand {
        height: 42px;
    }

    .kp-mobile-menu__nav {
        gap: 14px;
        font-size: 17px;
    }

    .kp-mobile-menu__contacts {
        margin-top: 22px;
        font-size: 15px;
    }

    .kp-mobile-menu__schedule {
        font-size: 13px;
    }

    .kp-hero-card {
        min-height: clamp(560px, 132vw, 640px);
        border-radius: 28px;
    }

    .kp-hero-card__copy {
        padding: 0 18px 54px;
    }

    .kp-hero-card__copy h1 {
        max-width: 330px;
        margin-bottom: 16px;
        font-size: clamp(28px, 8.3vw, 34px);
    }

    .kp-hero-card__copy > p,
    .kp-hero-card__copy > span {
        font-size: clamp(18px, 5.2vw, 21px);
    }

    .kp-btn--hero {
        min-height: 54px;
        margin-top: 24px;
        padding: 0 26px;
        font-size: 16px;
        border-radius: 22px;
    }

    .kp-section--learn .kp-section-title {
        max-width: 280px;
        font-size: 24px;
        line-height: 28px;
    }

    .kp-slider--learn .kp-learn-card {
        flex-basis: min(274px, calc(100vw - 54px));
    }

    .kp-adventure-card,
    .kp-included-card {
        flex-basis: 100%;
    }

    .kp-section--adventures .kp-section-title {
        max-width: 300px;
        font-size: 28px;
        line-height: 32px;
    }

    .kp-section--adventures .kp-adventure-card {
        flex-basis: min(304px, calc(100vw - 54px));
        min-height: 176px;
        padding: 25px 22px 22px;
    }

    .kp-section--adventures .kp-adventure-card__planet {
        top: -38px;
        right: -18px;
        width: 66px;
        height: 66px;
    }

    .kp-section--ticket {
        padding: 42px 0 50px;
    }

    .kp-section--ticket::before {
        top: 4px;
        width: 120vw;
        height: 470px;
        filter: blur(26px);
    }

    .kp-ticket-card {
        width: min(366px, 100%);
        min-height: 330px;
        padding: 29px 24px 27px;
    }

    .kp-ticket-card h2 {
        font-size: 19px;
        line-height: 23px;
    }

    .kp-ticket-card__planet {
        right: -43px;
        bottom: 11px;
        width: 134px;
    }

    .kp-partner-popup {
        padding: 12px;
    }

    .kp-partner-popup__dialog {
        max-height: calc(100vh - 24px);
        padding: 26px 18px 22px;
        border-radius: 20px;
    }

    .kp-partner-popup h2 {
        font-size: 23px;
    }

    .kp-partner-popup__form {
        grid-template-columns: 1fr;
    }

    .kp-promo-code {
        width: min(252px, 100%);
        font-size: 19px;
        line-height: 24px;
    }

    .kp-promo-code__icon {
        right: 17px;
        width: 17px;
        height: 17px;
    }

    .kp-audience-card__media {
        min-height: 320px;
    }

    .kp-groups-card {
        padding: 20px;
        border-radius: 24px;
    }

    .kp-groups-card h2 {
        font-size: 26px;
    }

    .kp-groups-card__copy > p:not(.kp-eyebrow) {
        font-size: 15px;
    }

    .kp-section--groups::before {
        top: 54%;
        width: min(680px, calc(100% - 16px));
        height: 400px;
        filter: blur(28px);
        opacity: 0.86;
    }

    .kp-media-card,
    .kp-video-card {
        flex-basis: 158px;
    }

    .kp-section--emotions .kp-media-card {
        flex-basis: min(292px, calc(100vw - 84px));
    }

    .kp-section--emotions .kp-video-card {
        flex-basis: min(292px, calc(100vw - 84px));
    }

    .kp-partners-card {
        padding: 26px 16px 28px;
        border-radius: 24px;
    }

    .kp-partners-list {
        gap: 9px;
    }

    .kp-partner-item {
        flex-basis: calc((100% - 18px) / 3);
        height: 54px;
        padding: 8px 9px;
    }

    .kp-partner-item__img {
        max-height: 36px;
    }

    .kp-footer {
        padding-top: 36px;
    }

    .kp-footer__city strong {
        font-size: 38px;
    }

    .kp-footer__city strong span {
        font-size: 24px;
    }

    .kp-footer__city p,
    .kp-footer__schedule span,
    .kp-footer__contact,
    .kp-footer__doc-links a,
    .kp-footer__legal {
        font-size: 15px;
    }

    .kp-footer__doc-links {
        gap: 11px 16px;
    }

    .kp-footer__doc-links a {
        font-size: clamp(13px, 3.6vw, 14px);
        line-height: 1.35;
    }

    .kp-footer__doc-links a:last-child {
        flex-basis: min(100%, 260px);
    }

    .kp-footer__socials a {
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }
}

/* Payment flow: единая обводка карточек как у корзины */
.pf-page .pf-panel--desktop,
.pf-page .pf-card,
.pf-page .pf-usp__item {
    border: 1px solid transparent;
    background:
            linear-gradient(180deg, rgba(3, 8, 10, 0.96) 0%, rgba(2, 6, 9, 0.98) 100%) padding-box,
            linear-gradient(
                    0deg,
                    rgba(255, 255, 255, 0.24) 0%,
                    rgba(255, 255, 255, 0.16) 42%,
                    rgba(255, 255, 255, 0.08) 100%
            ) border-box;
    box-shadow:
            0 28px 80px rgba(0, 0, 0, 0.34),
            inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

/* Чтобы внутренние декоративные элементы карточек не перекрывали обводку */
.pf-page .pf-card {
    position: relative;
    isolation: isolate;
}

.pf-page .pf-card::before,
.pf-page .pf-card::after {
    pointer-events: none;
}

/* Верхние плашки: оставляем тот же принцип обводки */
.pf-page .pf-usp__item {
    position: relative;
    isolation: isolate;
}

.pf-page .pf-card > * {
    position: relative;
    z-index: 1;
}

.pf-page .pf-card::after {
    z-index: 0;
}
