/* Header Landing Widget */
.header-landing-widget {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Left Section: Logo + Language Switcher */
.header-landing-left {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
}

.header-landing-logo-link {
    line-height: 0;
}

.header-landing-logo {
    max-height: 40px;
    width: auto;
}

/* Language Switcher */
.header-landing-language-switcher {
    display: flex;
    flex-direction: row;
    border: 1px solid var(--Gray-Gray-300, #363636);
    border-radius: 27px;
    align-items: center;
}

.header-landing-language {
    padding: 4px 14px;
    border-radius: 27px;
    transition: 0.3s;
}

.header-landing-language:not(.selected):hover {
    background-color: var(--Gray-Gray-100, #101010);
    cursor: pointer;
    transition: 0.3s;
}

.header-landing-language.selected {
    background-color: var(--Gray-Gray-300, #363636);
}

.header-landing-language a,
.header-landing-language span {
    color: var(--Gray-Gray-700, #ddd);
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 150%;
    text-decoration: none;
    transition: 0.3s;
}

.header-landing-language .language-title {
    display: none;
}

.header-landing-language .language-code {
    display: inline-block;
}

/* Center Section: Pill + Tagline */
.header-landing-center {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    padding: 0 40px;
}

.header-landing-pill {
    background-color: #363636;
    color: #DDDDDD;
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0px;
    padding: 4px 14px;
    border-radius: 16px;
}

.header-landing-tagline {
    color: #999999;
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0px;
}

/* Right Section: Button */
.header-landing-right {
    display: flex;
    align-items: center;
}

.header-landing-button {
    background: #FFFFFF !important;
    padding: 8px 24px;
    color: #000000 !important;
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
    border-radius: 27px;
    text-decoration: none !important;
    transition: 0.3s;
}

.header-landing-button:hover {
    background: #FFC432;
    transition: 0.3s;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .header-landing-widget {
        flex-wrap: wrap;
        gap: 16px;
    }

    .header-landing-center {
        order: 3;
        width: 100%;
        padding: 16px 0 0 0;
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .header-landing-tagline {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .header-landing-left {
        gap: 16px;
    }

    .header-landing-logo {
        max-height: 32px;
    }

    .header-landing-pill {
        font-size: 12px;
        padding: 6px 16px;
    }

    .header-landing-button {
        padding: 6px 16px;
        font-size: 14px;
    }
}
