@font-face {
    font-family: 'Urbanist';
    src: url('assets/fonts/urbanist-400.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Urbanist';
    src: url('assets/fonts/urbanist-700.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'KyivType Sans';
    src: url('assets/fonts/kyivtype-sans-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --cl-primary: #FBD721;
    --cl-white: #FFFFFF;
    --cl-black: #000000;
    --fn-main: 'KyivType Sans', sans-serif;
    --fn-alt: 'Urbanist', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--cl-black);
    color: var(--cl-white);
    overflow-x: hidden;
}

.lp-x1-wrapper {
    width: 100%;
    min-height: 100vh;
    position: relative;
}

.lp-x2-header {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

@media (min-width: 1024px) {
    .lp-x2-header {
        height: 123px;
        padding: 0 140px;
        background: transparent;
    }
}

.lp-x3-logo-wrap {
    width: 120px;
    height: auto;
}

@media (min-width: 1024px) {
    .lp-x3-logo-wrap {
        width: 242px;
    }
}

.lp-x3-logo-img {
    width: 100%;
    display: block;
}

.lp-x4-contact {
    display: none;
}

@media (min-width: 1024px) {
    .lp-x4-contact {
        display: flex;
        align-items: center;
        gap: 16px;
    }
}

.lp-x4-phone {
    font-family: var(--fn-alt);
    font-size: 24px;
    font-weight: 400;
    color: var(--cl-white);
    text-decoration: none;
}

.lp-x4-icon {
    width: 24px;
    height: 24px;
}

.lp-x5-nav {
    display: none;
}

@media (min-width: 1024px) {
    .lp-x5-nav {
        display: flex;
        align-items: center;
        gap: 24px;
    }
}

.lp-x5-link {
    font-family: var(--fn-alt);
    font-size: 20px;
    color: var(--cl-white);
    text-decoration: none;
    transition: color 0.3s;
}

.lp-x5-link:hover {
    color: var(--cl-primary);
}

.lp-x10-burger {
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
}

@media (min-width: 1024px) {
    .lp-x10-burger {
        display: none;
    }
}

.lp-x10-burger-lines {
    width: 22px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lp-x10-burger-lines span {
    width: 100%;
    height: 2px;
    background: var(--cl-primary);
    border-radius: 999px;
}

.lp-x6-hero {
    padding-top: 80px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .lp-x6-hero {
        padding-top: 0;
        flex-direction: row;
        align-items: center;
    }
}

.lp-x7-bg-right {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 50%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    opacity: 0.6;
}

@media (min-width: 1024px) {
    .lp-x7-bg-right {
        width: 950px;
        height: 1080px;
        opacity: 1;
    }
}

.lp-x8-content {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
}

@media (min-width: 1024px) {
    .lp-x8-content {
        margin-left: 180px;
        padding: 0;
        width: 1274px;
    }
}

.lp-x11-shape-wrap {
    margin-bottom: 24px;
    max-width: 100%;
}

@media (min-width: 1024px) {
    .lp-x11-shape-wrap {
        width: 748px;
        height: 175px;
        margin-bottom: 64px;
    }
}

.lp-x11-shape-img {
    width: 100%;
    border-radius: 40px;
}

@media (min-width: 1024px) {
    .lp-x11-shape-img {
        border-radius: 88px;
    }
}

.lp-e5-title {
    font-family: var(--fn-main);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

@media (min-width: 1024px) {
    .lp-e5-title {
        font-size: 128px;
        line-height: 132px;
        margin-bottom: 64px;
    }
}

.lp-e5-desc {
    font-family: var(--fn-main);
    font-size: 16px;
    font-weight: 350;
    line-height: 1.4;
    max-width: 638px;
    margin-bottom: 40px;
}

@media (min-width: 1024px) {
    .lp-e5-desc {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 90px;
    }
}

.lp-f6-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 64px;
    background-color: var(--cl-primary);
    color: var(--cl-black);
    font-family: var(--fn-main);
    font-size: 24px;
    font-weight: 1000;
    text-decoration: none;
    border-radius: 56px;
    transition: transform 0.3s, box-shadow 0.3s;
}

@media (min-width: 1024px) {
    .lp-f6-btn {
        width: 255px;
    }
}

.lp-f6-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(251, 215, 33, 0.3);
}

.lp-s1-section {
    padding: 60px 20px;
    position: relative;
}

@media (min-width: 1024px) {
    .lp-s1-section {
        padding: 120px 180px;
        display: flex;
        gap: 60px;
        align-items: center;
    }
}

.lp-s1-img-side {
    width: 100%;
    margin-bottom: 40px;
}

@media (min-width: 1024px) {
    .lp-s1-img-side {
        width: 950px;
        margin-bottom: 0;
    }
}

.lp-s1-img {
    width: 100%;
    display: block;
}

.lp-s1-text-side {
    flex: 1;
}

.lp-h2-title {
    font-family: var(--fn-main);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 40px;
}

@media (min-width: 1024px) {
    .lp-h2-title {
        font-size: 104px;
        line-height: 116px;
    }
}

.lp-l1-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (min-width: 1024px) {
    .lp-l1-list {
        gap: 32px;
    }
}

.lp-l1-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

@media (min-width: 1024px) {
    .lp-l1-item {
        gap: 24px;
        align-items: center;
    }
}

.lp-n1-num {
    min-width: 48px;
    height: 48px;
    background-color: var(--cl-primary);
    color: var(--cl-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fn-main);
    font-size: 20px;
    font-weight: 1000;
}

@media (min-width: 1024px) {
    .lp-n1-num {
        min-width: 64px;
        height: 64px;
        font-size: 24px;
    }
}

.lp-t1-text {
    font-family: var(--fn-main);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

@media (min-width: 1024px) {
    .lp-t1-text {
        font-size: 24px;
    }
}

.lp-s2-section {
    padding: 60px 20px;
}

@media (min-width: 1024px) {
    .lp-s2-section {
        padding: 120px 180px;
    }
}

.lp-g1-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
    overflow-x: auto;
    padding-bottom: 20px;
}

@media (min-width: 768px) {
    .lp-g1-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1440px) {
    .lp-g1-grid {
        display: flex;
        gap: 40px;
        margin-top: 64px;
    }
}

.lp-c1-card {
    width: 100%;
}

@media (min-width: 1440px) {
    .lp-c1-card {
        width: 638px;
        flex-shrink: 0;
    }
}

.lp-c1-img {
    width: 100%;
    display: block;
}

.lp-s3-section {
    padding: 60px 20px;
}

@media (min-width: 1024px) {
    .lp-s3-section {
        padding: 120px 180px;
    }
}

.lp-u1-wrap {
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .lp-u1-wrap {
        margin-top: 64px;
        padding: 60px;
        border-radius: 74px;
    }
}

.lp-u1-bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    opacity: 0.1;
    z-index: 1;
}

.lp-u1-content {
    position: relative;
    z-index: 2;
}

.lp-u1-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

@media (min-width: 1024px) {
    .lp-u1-meta {
        margin-left: 265px;
    }
}

.lp-u1-name {
    font-family: var(--fn-main);
    font-size: 20px;
    font-weight: 500;
}

@media (min-width: 1024px) {
    .lp-u1-name {
        font-size: 24px;
    }
}

.lp-u1-role {
    font-family: var(--fn-main);
    font-size: 16px;
    color: #909DA2;
}

@media (min-width: 1024px) {
    .lp-u1-role {
        font-size: 18px;
    }
}

.lp-u1-sep {
    height: 1px;
    background: #E6E9EA;
    margin: 24px 0;
    opacity: 0.2;
}

@media (min-width: 1024px) {
    .lp-u1-sep {
        margin-left: 265px;
    }
}

.lp-u1-text {
    font-family: var(--fn-main);
    font-size: 18px;
    line-height: 1.4;
    font-weight: 500;
}

@media (min-width: 1024px) {
    .lp-u1-text {
        margin-left: 265px;
        font-size: 24px;
    }
}

.lp-s4-section {
    padding: 60px 20px;
}

@media (min-width: 1024px) {
    .lp-s4-section {
        padding: 120px 180px;
    }
}

.lp-v1-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media (min-width: 1024px) {
    .lp-v1-list {
        margin-top: 64px;
    }
}

.lp-v1-item {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (min-width: 1024px) {
    .lp-v1-item {
        flex-direction: row;
        align-items: center;
        gap: 40px;
    }
}

.lp-v1-img-wrap {
    width: 100%;
}

@media (min-width: 1024px) {
    .lp-v1-img-wrap {
        width: 748px;
    }
}

.lp-v1-img {
    width: 100%;
    border-radius: 40px;
    display: block;
}

@media (min-width: 1024px) {
    .lp-v1-img {
        border-radius: 119px;
    }
}

.lp-v1-info {
    flex: 1;
}

.lp-v1-step {
    font-family: var(--fn-main);
    font-size: 24px;
    font-weight: 1000;
    color: var(--cl-primary);
    margin-bottom: 16px;
}

.lp-v1-subtitle {
    font-family: var(--fn-main);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

@media (min-width: 1024px) {
    .lp-v1-subtitle {
        font-size: 24px;
    }
}

.lp-v1-desc {
    font-family: var(--fn-main);
    font-size: 16px;
    font-weight: 200;
    line-height: 1.4;
}

@media (min-width: 1024px) {
    .lp-v1-desc {
        font-size: 20px;
    }
}

.lp-r1-section {
    padding: 60px 20px;
}

@media (min-width: 1024px) {
    .lp-r1-section {
        padding: 120px 180px;
    }
}

.lp-r1-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .lp-r1-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .lp-r1-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.lp-k1-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.lp-k1-badge {
    height: 72px;
    background-color: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fn-main);
    font-size: 32px;
    font-weight: 700;
    color: var(--cl-primary);
}

.lp-k1-inner {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    background-color: #111111;
}

.lp-k1-card.highlight .lp-k1-inner {
    background-color: var(--cl-primary);
    color: var(--cl-black);
}

.lp-k1-title {
    font-family: var(--fn-main);
    font-size: 24px;
    font-weight: 500;
}

.lp-k1-card.highlight .lp-k1-title {
    color: var(--cl-black);
}

.lp-k1-img-wrap {
    width: 100%;
    aspect-ratio: 451 / 356;
    overflow: hidden;
    border-radius: 178px;
}

.lp-k1-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp-k1-details {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lp-k1-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.lp-k1-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--cl-primary);
}

.lp-k1-card.highlight .lp-k1-icon {
    color: var(--cl-black);
}

.lp-k1-info-text {
    font-family: var(--fn-main);
    font-size: 18px;
    font-weight: 350;
    line-height: 1.2;
}

.lp-k1-btn {
    width: 100%;
    height: 64px;
    background-color: var(--cl-primary);
    color: var(--cl-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fn-main);
    font-size: 24px;
    font-weight: 1000;
    text-decoration: none;
    border-radius: 56px;
    border: 1px solid var(--cl-black);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin-top: auto;
}

.lp-k1-card.highlight .lp-k1-btn {
    background-color: transparent;
    border-color: var(--cl-black);
}

.lp-s5-section {
    padding: 60px 20px;
}

@media (min-width: 1024px) {
    .lp-s5-section {
        padding: 120px 180px;
    }
}

.lp-g2-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .lp-g2-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .lp-g2-grid {
        margin-top: 64px;
        grid-template-columns: repeat(3, 1fr);
    }
}

.lp-q1-item {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lp-q1-num {
    width: 64px;
    height: 64px;
    background-color: var(--cl-primary);
    color: var(--cl-black);
    border-radius: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fn-main);
    font-size: 24px;
    font-weight: 1000;
}

.lp-q1-title {
    font-family: var(--fn-main);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.lp-s6-section {
    padding: 60px 20px;
}

@media (min-width: 1024px) {
    .lp-s6-section {
        padding: 120px 180px;
        display: flex;
        gap: 64px;
        align-items: center;
    }
}

.lp-s6-img-side {
    width: 100%;
    margin-bottom: 40px;
}

@media (min-width: 1024px) {
    .lp-s6-img-side {
        width: 941px;
        margin-bottom: 0;
    }
}

.lp-s6-img {
    width: 100%;
    display: block;
}

.lp-s6-text-side {
    flex: 1;
}

.lp-s6-desc {
    font-family: var(--fn-main);
    font-size: 18px;
    font-weight: 350;
    line-height: 1.4;
    margin-top: 40px;
}

@media (min-width: 1024px) {
    .lp-s6-desc {
        font-size: 20px;
        line-height: 24px;
    }
}

.lp-s7-section {
    padding: 60px 20px;
}

@media (min-width: 1024px) {
    .lp-s7-section {
        padding: 120px 180px;
        display: flex;
        gap: 64px;
        align-items: flex-start;
    }
}

.lp-s7-left {
    flex: 1;
}

.lp-s7-sub {
    font-family: var(--fn-main);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    color: #909DA2;
    margin-top: 24px;
}

@media (min-width: 1024px) {
    .lp-s7-sub {
        font-size: 21px;
    }
}

.lp-s7-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 60px;
}

@media (min-width: 1024px) {
    .lp-s7-right {
        margin-top: 0;
    }
}

.lp-i2-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.lp-i2-icon-wrap {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.lp-i2-icon {
    width: 100%;
    display: block;
}

.lp-i2-text-wrap {
    flex: 1;
}

.lp-i2-title {
    font-family: var(--fn-main);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 20px;
}

@media (min-width: 1024px) {
    .lp-i2-title {
        font-size: 24px;
    }
}

.lp-i2-desc {
    font-family: var(--fn-main);
    font-size: 16px;
    font-weight: 200;
    line-height: 1.4;
}

@media (min-width: 1024px) {
    .lp-i2-desc {
        font-size: 18px;
    }
}

.lp-s8-section {
    padding: 60px 20px;
}

@media (min-width: 1024px) {
    .lp-s8-section {
        padding: 120px 180px;
    }
}

.lp-s8-content-wrap {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 1024px) {
    .lp-s8-content-wrap {
        flex-direction: row;
        align-items: center;
        margin-top: 60px;
    }
}

.lp-s8-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.lp-s8-right {
    flex: 1;
}

.lp-s8-img {
    width: 100%;
    border-radius: 40px;
    display: block;
}

@media (min-width: 1024px) {
    .lp-s8-img {
        border-radius: 119px;
    }
}

.lp-s9-section {
    padding: 60px 20px;
}

@media (min-width: 1024px) {
    .lp-s9-section {
        padding: 120px 180px;
    }
}

.lp-g3-grid {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (min-width: 1024px) {
    .lp-g3-grid {
        margin-top: 64px;
    }
}

.lp-g3-row {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 1024px) {
    .lp-g3-row {
        flex-direction: row;
        align-items: flex-start;
    }
}

.lp-g3-sub-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    flex: 1;
}

.lp-g3-img {
    width: 100%;
    border-radius: 40px;
    display: block;
}

@media (min-width: 1024px) {
    .lp-g3-img {
        border-radius: 178px;
    }
}

.lp-g3-large-img {
    width: 100%;
    border-radius: 40px;
    display: block;
}

@media (min-width: 1024px) {
    .lp-g3-large-img {
        width: 599px;
        border-radius: 211px;
    }
}

.lp-s10-section {
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .lp-s10-section {
        padding: 120px 180px;
        min-height: 497px;
        display: flex;
        align-items: center;
    }
}

.lp-s10-bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 1;
}

@media (min-width: 1024px) {
    .lp-s10-bg {
        width: 940px;
        opacity: 1;
    }
}

.lp-s10-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
}

@media (min-width: 1024px) {
    .lp-s10-content {
        max-width: 1269px;
    }
}

.lp-s10-desc {
    font-family: var(--fn-main);
    font-size: 18px;
    font-weight: 350;
    line-height: 1.4;
    margin-top: 40px;
}

@media (min-width: 1024px) {
    .lp-s10-desc {
        font-size: 20px;
        line-height: 24px;
        margin-left: 316px;
        max-width: 638px;
    }
}

.lp-s11-section {
    padding: 60px 20px;
}

@media (min-width: 1024px) {
    .lp-s11-section {
        padding: 120px 180px;
    }
}

.lp-l2-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media (min-width: 1024px) {
    .lp-l2-list {
        margin-top: 64px;
    }
}

.lp-l2-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 1024px) {
    .lp-l2-item {
        flex-direction: row;
        align-items: center;
        gap: 64px;
    }
}

.lp-l2-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}

@media (min-width: 1024px) {
    .lp-l2-info-wrap {
        flex-direction: row;
        align-items: center;
        gap: 120px;
    }
}

.lp-l2-title {
    font-family: var(--fn-main);
    font-size: 24px;
    font-weight: 700;
    width: 100%;
}

@media (min-width: 1024px) {
    .lp-l2-title {
        width: 325px;
    }
}

.lp-l2-desc {
    font-family: var(--fn-main);
    font-size: 18px;
    font-weight: 200;
    line-height: 1.4;
    flex: 1;
}

@media (min-width: 1024px) {
    .lp-l2-desc {
        font-size: 20px;
    }
}

.lp-s12-section {
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .lp-s12-section {
        padding: 120px 180px;
        min-height: 493px;
        display: flex;
        align-items: center;
    }
}

.lp-s12-bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

@media (min-width: 1024px) {
    .lp-s12-bg {
        width: 942px;
        opacity: 1;
    }
}

.lp-s12-form-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
}

@media (min-width: 1024px) {
    .lp-s12-form-wrap {
        width: 786px;
    }
}

.lp-f1-group {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lp-f1-input {
    width: 100%;
    height: 56px;
    background: transparent;
    border: 1px solid var(--cl-white);
    padding: 0 24px;
    font-family: var(--fn-main);
    font-size: 20px;
    color: var(--cl-white);
    outline: none;
}

.lp-f1-input::placeholder {
    color: var(--cl-white);
    opacity: 0.6;
}

.lp-f1-btn {
    margin-top: 32px;
    width: 100%;
    height: 64px;
    background-color: var(--cl-primary);
    color: var(--cl-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fn-main);
    font-size: 24px;
    font-weight: 1000;
    border-radius: 56px;
    border: none;
    cursor: pointer;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s;
}

@media (min-width: 1024px) {
    .lp-f1-btn {
        width: 552px;
    }
}

.lp-f1-btn:hover {
    transform: scale(1.02);
}

.lp-s13-section {
    padding: 60px 20px;
}

@media (min-width: 1024px) {
    .lp-s13-section {
        padding: 120px 180px;
    }
}

.lp-g4-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .lp-g4-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .lp-g4-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.lp-p1-item {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lp-p1-img-wrap {
    width: 100%;
    aspect-ratio: 368 / 137;
    overflow: hidden;
    border-radius: 20px;
}

.lp-p1-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp-z9-footer {
    background-color: #111111;
    padding: 60px 20px;
}

@media (min-width: 1024px) {
    .lp-z9-footer {
        padding: 64px 180px;
    }
}

.lp-z9-top {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 64px;
}

@media (min-width: 1024px) {
    .lp-z9-top {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.lp-z9-logo-wrap {
    width: 200px;
}

@media (min-width: 1024px) {
    .lp-z9-logo-wrap {
        width: 426px;
    }
}

.lp-z9-logo {
    width: 100%;
    display: block;
}

.lp-z9-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.lp-z9-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-right: 1px solid var(--cl-primary);
    padding-right: 32px;
}

.lp-z9-col:last-child {
    border-right: none;
    padding-right: 0;
}

.lp-z9-link {
    font-family: var(--fn-main);
    font-size: 16px;
    color: var(--cl-white);
    text-decoration: none;
    line-height: 1.2;
    transition: color 0.3s;
}

@media (min-width: 1024px) {
    .lp-z9-link {
        font-size: 18px;
    }
}

.lp-z9-link:hover {
    color: var(--cl-primary);
}

.lp-z9-bottom {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
}

.lp-z9-info {
    font-family: var(--fn-main);
    font-size: 12px;
    font-weight: 350;
    text-align: center;
    line-height: 1.4;
    max-width: 1062px;
    color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 1024px) {
    .lp-z9-info {
        font-size: 14px;
    }
}

.lp-z9-copy {
    font-family: var(--fn-main);
    font-size: 14px;
    color: var(--cl-white);
    text-align: center;
}

.lp-m1-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cl-black);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.5s ease;
}

.lp-m1-overlay.active {
    transform: translateX(0);
}

.lp-m1-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--cl-white);
    font-size: 40px;
    cursor: pointer;
}

/* Consent banner for lite123 theme */
.ghli-consent-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3000;
    background: #fbd721;
    color: #000000;
    padding: 16px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.ghli-consent-banner[data-visible="true"] {
    transform: translateY(0);
}

.ghli-consent-banner__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 768px) {
    .ghli-consent-banner__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.ghli-consent-banner__text {
    color: #000000;
    font-family: var(--fn-main);
    font-size: 14px;
    line-height: 1.35;
}

.ghli-consent-banner__text a {
    color: #000000;
    text-decoration: underline;
}

.ghli-consent-banner__actions {
    display: flex;
    gap: 10px;
}

.ghli-consent-accept,
.ghli-consent-reject {
    height: 40px;
    padding: 0 16px;
    border-radius: 10px;
    font-family: var(--fn-main);
    font-size: 14px;
    font-weight: 700;
    border: 1px solid transparent;
}

.ghli-consent-accept {
    background: #000000;
    color: #fbd721;
}

.ghli-consent-reject {
    background: transparent;
    color: #000000;
    border-color: rgba(0, 0, 0, 0.4);
}

/* Local auth buttons, modal, and dashboard */
.ghli-auth-slot {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ghli-auth-slot--header {
    margin-left: auto;
    margin-right: 12px;
}

@media (min-width: 1024px) {
    .ghli-auth-slot--header {
        margin-left: 0;
        margin-right: 0;
    }
}

.ghli-auth-slot--footer {
    margin-bottom: 18px;
}

.ghli-auth-icon-btn {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.ghli-auth-icon-btn img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
}

.ghli-auth-icon-btn:hover {
    transform: translateY(-2px) scale(1.04);
    filter: brightness(1.08);
}

.ghli-auth-text-btn {
    height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid var(--cl-primary);
    background: rgba(251, 215, 33, 0.12);
    color: var(--cl-primary);
    font-family: var(--fn-alt);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.ghli-auth-text-btn:hover {
    background: var(--cl-primary);
    color: var(--cl-black);
    text-decoration: none;
}

.ghli-auth-text-btn--logout {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--cl-white);
    background: transparent;
}

.ghli-menu-auth {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: min(320px, 90%);
}

.ghli-overlay-auth,
.ghli-overlay-logout {
    background: transparent;
    border: none;
    width: 100%;
    text-align: center;
    cursor: pointer;
}

.ghli-auth-modal {
    position: fixed;
    inset: 0;
    z-index: 4000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.32s ease;
}

.ghli-auth-modal[data-open="true"] {
    opacity: 1;
    pointer-events: auto;
}

.ghli-auth-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.84);
}

.ghli-auth-modal__panel {
    position: relative;
    width: min(560px, calc(100vw - 30px));
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    margin: 20px auto;
    background: #0e0e0e;
    border: 1px solid rgba(251, 215, 33, 0.35);
    border-radius: 18px;
    padding: 28px;
    transform: translateY(36px) scale(0.96);
    transition: transform 0.32s ease;
}

.ghli-auth-modal[data-open="true"] .ghli-auth-modal__panel {
    transform: translateY(0) scale(1);
}

.ghli-auth-modal__close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: none;
    background: transparent;
    color: var(--cl-white);
    font-size: 34px;
    cursor: pointer;
}

.ghli-auth-view {
    display: none;
}

.ghli-auth-view.is-active {
    display: block;
}

.ghli-auth-view h2 {
    font-family: var(--fn-alt);
    font-size: 34px;
    color: var(--cl-primary);
    margin-bottom: 18px;
}

.ghli-auth-form {
    display: grid;
    gap: 12px;
}

.ghli-auth-form input,
.ghli-auth-form textarea,
.ghli-profile-form input,
.ghli-profile-form textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
    color: var(--cl-white);
    font-family: var(--fn-alt);
    font-size: 15px;
    padding: 12px 14px;
}

.ghli-auth-form textarea,
.ghli-profile-form textarea {
    resize: vertical;
    min-height: 100px;
}

.ghli-auth-form button,
.ghli-profile-form button,
.ghli-avatar-upload {
    height: 46px;
    border: none;
    border-radius: 999px;
    background: var(--cl-primary);
    color: var(--cl-black);
    font-family: var(--fn-alt);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.ghli-auth-switch {
    margin-top: 14px;
    font-family: var(--fn-alt);
    color: rgba(255, 255, 255, 0.8);
}

.ghli-auth-switch button {
    border: none;
    background: transparent;
    color: var(--cl-primary);
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
}

.ghli-auth-feedback,
.ghli-profile-feedback {
    min-height: 20px;
    font-family: var(--fn-alt);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.78);
}

.ghli-auth-feedback.is-error,
.ghli-profile-feedback.is-error {
    color: #ff8383;
}

.ghli-auth-feedback.is-success,
.ghli-profile-feedback.is-success {
    color: #73f5b6;
}

.ghli-modal-open {
    overflow: hidden;
}

.ghli-dashboard-main {
    padding-top: 110px;
    padding-bottom: 56px;
}

@media (min-width: 1024px) {
    .ghli-dashboard-main {
        padding-top: 150px;
        padding-bottom: 86px;
    }
}

.ghli-dashboard-wrap {
    width: min(920px, calc(100vw - 32px));
    margin: 0 auto;
    border: 1px solid rgba(251, 215, 33, 0.3);
    border-radius: 28px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(251, 215, 33, 0.06));
    padding: 22px;
}

@media (min-width: 1024px) {
    .ghli-dashboard-wrap {
        padding: 34px;
    }
}

.ghli-dashboard-head {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 26px;
}

.ghli-avatar-preview {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    border: 2px solid rgba(251, 215, 33, 0.45);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
}

.ghli-avatar-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.45s ease;
}

.ghli-avatar-preview img.is-visible {
    opacity: 1;
}

.ghli-dashboard-title {
    font-family: var(--fn-alt);
    font-size: 30px;
    color: var(--cl-primary);
    margin-bottom: 4px;
}

.ghli-dashboard-sub {
    font-family: var(--fn-alt);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
}

.ghli-profile-form {
    display: grid;
    gap: 12px;
}

.ghli-profile-form-grid {
    display: grid;
    gap: 12px;
}

@media (min-width: 720px) {
    .ghli-profile-form-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.ghli-avatar-upload {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 0 18px;
}

.ghli-avatar-upload input {
    display: none;
}
