:root {
    --c-primary: #1243A6;
    --c-blue: #1D64F2;
    --c-dark: #011C40;
    --c-red: #F24822;
    --c-white: #FFFFFF;
    --c-black: #000000;
    --c-gray: #E8E8E8;
    --c-gray-dark: #555555;
    --c-gray-mid: #888888;
    --fw-black: 900;
    --fw-bold: 700;
    --fw-medium: 500;
    --fs-small: 15px;
    --fc-max-width: 1280px;
    --fc-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fc-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--c-gray);
}

.fc-nav-inner {
    max-width: var(--fc-max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fc-nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.fc-nav-logo img {
    width: 142px;
    height: auto;
    display: block;
}

.fc-nav-right {
    display: flex;
    align-items: center;
    gap: 4px;
}

.fc-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.fc-nav-links a {
    padding: 8px 14px;
    font-size: 17px;
    font-weight: 400;
    color: #313131;
    transition: var(--fc-transition);
}

.fc-nav-links a:hover {
    color: var(--c-blue);
}

.fc-nav-divider {
    width: 1px;
    height: 20px;
    background: var(--c-gray);
    margin: 0 4px;
}

.fc-nav-auth {
    display: flex;
    gap: 8px;
    align-items: center;
}

.fc-nav-auth a.fc-btn-login,
.fc-mobile-menu-btns a.fc-m-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    border-radius: 6px;
    transition: var(--fc-transition);
    color: var(--c-red) !important;
    border: 1.5px solid var(--c-red) !important;
    background: transparent !important;
    text-decoration: none !important;
    white-space: nowrap;
}

.fc-nav-auth a.fc-btn-login:hover,
.fc-mobile-menu-btns a.fc-m-login:hover {
    background: var(--c-red) !important;
    color: var(--c-white) !important;
}

.fc-nav-auth a.fc-btn-signup,
.fc-mobile-menu-btns a.fc-m-signup {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    border-radius: 6px;
    background: var(--c-blue) !important;
    color: var(--c-white) !important;
    border: 1.5px solid var(--c-blue) !important;
    transition: var(--fc-transition);
    text-decoration: none !important;
    white-space: nowrap;
}

.fc-nav-auth a.fc-btn-signup:hover,
.fc-mobile-menu-btns a.fc-m-signup:hover {
    background: var(--c-primary) !important;
    border-color: var(--c-primary) !important;
}

.fc-nav-menu-btn {
    display: none;
    background: none;
    padding: 12px;
    color: var(--c-black);
    border: none;
}

.fc-nav-menu-btn svg {
    width: 24px;
    height: 24px;
}

.fc-mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--c-white);
    z-index: 999;
    padding: 24px;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
}

.fc-mobile-menu.open {
    display: flex;
}

.fc-mobile-menu a {
    display: block;
    padding: 16px 0;
    font-size: 17px;
    font-weight: var(--fw-bold);
    color: var(--c-black);
    border-bottom: 1px solid var(--c-gray);
}

.fc-mobile-menu a:last-child {
    border-bottom: none;
}

.fc-mobile-menu a:hover {
    color: var(--c-blue);
}

.fc-mobile-menu-btns {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.fc-mobile-menu-btns a {
    flex: 1;
    text-align: center;
    padding: 14px;
    font-size: 16px;
    font-weight: var(--fw-bold);
    border-radius: 8px;
    border: none;
}

.fc-mobile-menu-btns .fc-m-login {
    color: var(--c-red);
    border: 1.5px solid var(--c-red);
    background: transparent;
}

.fc-mobile-menu-btns .fc-m-signup {
    color: var(--c-white);
    background: var(--c-blue);
}

.fc-footer {
    background: var(--c-dark);
    color: rgba(255, 255, 255, 0.6) !important;
    padding: 60px 0 40px;
}

.fc-container {
    max-width: var(--fc-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.fc-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.fc-footer-brand {
    font-size: 22px;
    font-weight: var(--fw-black);
    color: var(--c-white) !important;
    margin-bottom: 14px;
}

.fc-footer-desc,
.fc-footer p,
.fc-footer li,
.fc-footer span,
.fc-footer-bottom {
    font-size: var(--fs-small);
    line-height: 1.8;
    font-weight: var(--fw-medium);
    color: rgba(255, 255, 255, 0.6) !important;
}

.fc-footer h4 {
    font-size: var(--fs-small);
    font-weight: var(--fw-bold);
    color: var(--c-white) !important;
    margin-bottom: 18px;
}

.fc-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.fc-footer li {
    margin-bottom: 12px;
}

.fc-footer a {
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    color: rgba(255, 255, 255, 0.72) !important;
    transition: var(--fc-transition);
    text-decoration: none !important;
}

.fc-footer a:hover {
    color: var(--c-white) !important;
}

.fc-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 768px) {
    .fc-nav-links,
    .fc-nav-auth {
        display: none;
    }

    .fc-nav-menu-btn {
        display: block;
    }

    .fc-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
