@font-face { font-family: 'HelveticaNeue'; src: url('./HelveticaNeue.woff') format('woff'); font-weight: normal; font-style: normal; font-display: swap; }

/* HEADER */
#site-lp .header {
    padding: 14px 40px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
    box-sizing: border-box;
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

#site-lp .header--scrolled {
    background: rgba(22, 12, 12, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

#site-lp .header-left {
    display: flex;
    align-items: center;
    gap: 36px;
}

#site-lp .header-logo img {
    height: 40px;
    width: auto;
}

#site-lp .header-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

#site-lp .header-nav a {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

#site-lp .header-nav a:hover {
    color: #fff;
}

#site-lp .header-spacer {
    flex: 1;
}

#site-lp .header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

#site-lp .lang-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
    display: none;
}

#site-lp .lang-btn img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
}

#site-lp .lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 140px;
    z-index: 200;
}

#site-lp .lang-dropdown.show {
    display: block;
}

#site-lp .lang-dropdown a {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    color: #1a1a1a;
}

#site-lp .lang-dropdown a:hover {
    background: #f8f8f8;
}

#site-lp .btn-signin {
    background: var(--gradient);
    color: #fff;
    padding: 10px 28px;
    border-radius: 22px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-block;
    transition: opacity 0.2s;
}

#site-lp .btn-signin:hover {
    opacity: 0.88;
}

#site-lp .menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

/* FOOTER */
#site-lp .site-footer {
    background: #000;
    padding: 56px 0 0;
}

#site-lp .footer-cols {
    display: flex;
    justify-content: space-between;
    gap: 0;
    max-width: var(--max);
    margin: 0 auto;
}

#site-lp .footer-col {
}

#site-lp .footer-col:last-child {
    padding-right: 0;
}

#site-lp .footer-col h4 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
}

#site-lp .footer-col-divider {
    width: 38px;
    height: 1px;
    background: rgba(255, 231, 231, 0.5);
    margin-bottom: 20px;
}

#site-lp .footer-col a {
    display: block;
    font-size: 14px;
    color: #FFCFCF;
    margin-bottom: 14px;
    line-height: 1;
}

#site-lp .footer-col a:hover {
    color: #fff;
}

#site-lp .footer-copy {
    max-width: var(--max);
    margin: 0 auto;
    padding: 20px 24px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    line-height: 1.7;
}

/* SIDEBAR (mobile) */
#site-lp .sidebar-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    visibility: hidden;
    pointer-events: none;
}

#site-lp .sidebar-overlay.open {
    visibility: visible;
    pointer-events: auto;
}

#site-lp .sidebar-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    transition: opacity 0.3s;
}

#site-lp .sidebar-overlay.open .sidebar-backdrop {
    opacity: 1;
}

#site-lp .sidebar-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 260px;
    height: 100%;
    background: var(--white);
    padding: 60px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

#site-lp .sidebar-overlay.open .sidebar-panel {
    transform: translateX(0);
}

#site-lp .sidebar-panel a {
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

#site-lp .sidebar-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    line-height: 1;
}

#site-lp .sidebar-panel .logo { padding-bottom: 10px; }
#site-lp .sidebar-panel .logo img { display: block; height: 40px; }
#site-lp .sidebar-panel .btn-login {
    padding: 8px 26px;
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #FF4579, #C8102E);
    color: #fff;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
}

@media (max-width: 767px) {
    #site-lp .header {
        padding: 12px 16px;
    }

    #site-lp .header-left {
        gap: 8px;
    }

    #site-lp .header-nav {
        display: none;
    }

    #site-lp .header-logo img {
        height: 28px;
    }

    #site-lp .lang-btn {
        width: 28px;
        height: 28px;
    }

    #site-lp .lang-btn img {
        width: 28px;
        height: 28px;
    }

    #site-lp .btn-signin {
        padding: 7px 16px;
        font-size: 12px;
    }

    #site-lp .menu-toggle {
        display: flex;
    }


    #site-lp .footer-cols {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 16px 32px;
    }

    #site-lp .footer-col h4{
      font-size: 18px;margin: 0 0 10px;  
    }
    #site-lp .footer-col a{
        margin-bottom:5px;font-size:12px;
    }

    #site-lp .footer-col {
        padding-right: 0;
    }

    #site-lp .footer-copy {
        padding: 15px;
        font-size: 10px;
    }
}