:root {

    /* =====================================================
       BRAND / PRIMARY
       ===================================================== */

    --color-primary: #2563eb;
    --color-primary-dark: #1d4ed8;
    --color-primary-light: #60a5fa;

    --color-secondary: #0f172a;
    --color-secondary-light: #1e293b;

    --color-accent: #06b6d4;
    --color-accent-light: #22d3ee;


    /* =====================================================
       TEXT
       ===================================================== */

    --color-text: #e2e8f0;
    --color-text-muted: #a8b5c7;
    --color-text-light: #7f8ea3;
    --color-text-inverse: #ffffff;


    /* =====================================================
       PAGE BACKGROUNDS
       ===================================================== */

    --color-background: #172337;
    --color-background-soft: #1c2a3d;
    --color-background-muted: #243449;


    /* =====================================================
       SURFACES / CARDS / PANELS
       ===================================================== */

    --color-surface: #1e2d42;
    --color-surface-soft: #223349;
    --color-surface-hover: #283b53;
    --color-surface-active: #2b4568;


    /* =====================================================
       BORDERS
       ===================================================== */

    --color-border: #31445c;
    --color-border-light: #283a50;
    --color-border-strong: #405672;


    /* =====================================================
       INTERACTION
       ===================================================== */

    --color-hover: #263b57;
    --color-active: #294b78;
    --color-focus: rgba(37, 99, 235, 0.28);


    /* =====================================================
       STATUS COLORS
       ===================================================== */

    --color-success: #22c55e;
    --color-success-light: #16452b;

    --color-warning: #f59e0b;
    --color-warning-light: #533a12;

    --color-danger: #ef4444;
    --color-danger-light: #542027;

    --color-info: #38bdf8;
    --color-info-light: #16455a;


    /* =====================================================
       TYPOGRAPHY
       ===================================================== */

    --font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    --font-size-xs: 12px;
    --font-size-sm: 14px;
    --font-size-md: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 24px;
    --font-size-2xl: 32px;
    --font-size-3xl: 42px;
    --font-size-4xl: 56px;

    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;


    /* =====================================================
       LAYOUT
       ===================================================== */

    --container-width: 1280px;
    --content-width: 1180px;
    --header-height: 72px;


    /* =====================================================
       SPACING
       ===================================================== */

    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;


    /* =====================================================
       RADIUS
       ===================================================== */

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;


    /* =====================================================
       SHADOWS
       ===================================================== */

    --shadow-sm:
        0 1px 3px rgba(2, 8, 23, 0.12);

    --shadow-md:
        0 8px 24px rgba(2, 8, 23, 0.16);

    --shadow-lg:
        0 16px 40px rgba(2, 8, 23, 0.22);

    --shadow-xl:
        0 24px 60px rgba(2, 8, 23, 0.30);


    /* =====================================================
       TRANSITIONS
       ===================================================== */

    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
    --transition-slow: 400ms ease;
}



/* =========================================================
   GLOBAL RESET
   ========================================================= */

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

html,
body {
    overflow-x: hidden;
    width: 100%;
    scroll-behavior: smooth;
}

html {
    -webkit-text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
}

body {
    display: flex;
    flex-direction: column;

    min-height: 100vh;

    font-family: var(--font-family);
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-regular);
    line-height: 1.6;

    background: var(--color-background);
    color: var(--color-text);

    margin: 0;
    padding: 80px 0 0;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

img {
    display: block;
}

a {
    color: inherit;
}

::selection {
    background: var(--color-primary-light);
    color: var(--color-primary-dark);
}


/* =========================================================
   HEADER
   ========================================================= */

header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 10px 20px;

    background:
        linear-gradient(
            135deg,
            var(--color-secondary) 0%,
            var(--color-secondary-light) 100%
        );

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);

    box-shadow:
        0 4px 20px rgba(15, 23, 42, 0.16);

    z-index: 1000;

    animation:
        slideInFromTop 0.45s ease-out;
}

.header-container {
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* =========================================================
   LOGO
   ========================================================= */

.logo img {
    width: 60px;

    transition:
        transform var(--transition-slow),
        filter var(--transition-normal);
}

.logo img:hover {
    transform: rotate(360deg) scale(1.04);

    filter:
        drop-shadow(
            0 6px 14px
            rgba(37, 99, 235, 0.25)
        );
}


/* =========================================================
   NAVBAR
   ========================================================= */
nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 1 1 auto;
    min-width: 0;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
    width: 100%;
}


nav li a {
    position: relative;

    display: block;

    padding: 10px 15px;

    color:
        rgba(248, 250, 252, 0.92);

    text-decoration: none;

    font-size: 16px !important;
    font-weight: var(--font-weight-medium);

    border-radius:
        var(--radius-md);

    transition:
        color var(--transition-fast),
        background-color var(--transition-fast),
        transform var(--transition-fast);
}

nav li a:hover {
    color: #ffffff;

    background:
        rgba(255, 255, 255, 0.07);
}

nav li a:active {
    transform:
        scale(0.97);
}

nav li a:focus-visible {
    outline:
        2px solid var(--color-primary-light);

    outline-offset:
        2px;
}


/* =========================================================
   NAVBAR HOVER INDICATOR
   ========================================================= */

nav li a::before {
    content: '';

    position: absolute;

    left: 50%;
    bottom: 4px;

    width: calc(100% - 30px);
    height: 2px;

    background:
        var(--color-primary);

    border-radius:
        var(--radius-full);

    transform:
        translateX(-50%)
        scaleX(0);

    transform-origin: center;

    transition:
        transform var(--transition-normal);
}

nav li a:hover::before,
nav li a:focus-visible::before {
    transform:
        translateX(-50%)
        scaleX(1);
}


/* =========================================================
   HOVER MEGA MENU
   ========================================================= */

.hover-trigger {
    position: relative;
}

.hover-content {
    display: none;

    position: fixed;

    top: 70px;
    left: 0;

    width: 100%;

    padding: 20px;

    background:
        linear-gradient(
            180deg,
            var(--color-secondary) 0%,
            var(--color-secondary-light) 100%
        );

    border-top:
        1px solid rgba(255, 255, 255, 0.06);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);

    box-shadow:
        var(--shadow-lg);

    z-index: 1000;

    grid-template-columns:
        repeat(
            auto-fill,
            minmax(300px, 1fr)
        );

    gap: 15px;

    animation:
        megaMenuIn 0.2s ease-out;
}

.hover-trigger:hover .hover-content,
.hover-content:hover {
    display: grid;
}


/* =========================================================
   MEGA MENU BOXES
   ========================================================= */

.hover-box {
    padding: 20px;

    border:
        1px solid rgba(255, 255, 255, 0.10);

    border-radius:
        var(--radius-lg);

    background:
        rgba(255, 255, 255, 0.05);

    color:
        var(--color-text-inverse);

    box-shadow:
        inset 0 1px 0
        rgba(255, 255, 255, 0.04);

    transition:
        background-color var(--transition-normal),
        border-color var(--transition-normal),
        transform var(--transition-normal),
        box-shadow var(--transition-normal);
}

.hover-box:hover {
    background:
        rgba(255, 255, 255, 0.09);

    border-color:
        rgba(37, 99, 235, 0.55);

    transform:
        translateY(-2px);

    box-shadow:
        0 10px 24px
        rgba(0, 0, 0, 0.16);
}

.hover-box h3,
.hover-box h2 {
    font-size: 18px;
    font-weight:
        var(--font-weight-bold);

    margin-bottom: 8px;

    color:
        #ffffff;
}

.hover-box p {
    font-size: 16px;

    color:
        #cbd5e1;

    line-height: 1.6;
}







/* =========================================================
   SEARCH — COLLAPSED ICON / EXPANDING SEARCH
   ========================================================= */

.search-bar {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    width: 44px;
    height: 44px;

    margin: 0;

    z-index: 1001;
}


/* =========================================================
   SEARCH TOGGLE ICON
   ========================================================= */

.search-toggle {
    position: relative;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid transparent;
    border-radius: var(--radius-full);

    background: transparent;
    color: rgba(248, 250, 252, 0.92);

    font-size: 16px;
    line-height: 1;

    cursor: pointer;

    transition:
        color var(--transition-fast),
        background-color var(--transition-fast),
        border-color var(--transition-fast),
        transform var(--transition-fast),
        box-shadow var(--transition-fast);
}

.search-toggle:hover {
    color: var(--color-text-inverse);

    background:
        rgba(255, 255, 255, 0.08);

    border-color:
        rgba(255, 255, 255, 0.08);

    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.12);
}

.search-toggle:active {
    transform:
        scale(0.94);
}

.search-toggle:focus-visible {
    outline:
        2px solid var(--color-primary-light);

    outline-offset:
        2px;
}


/* =========================================================
   EXPANDING SEARCH INPUT
   ========================================================= */

.search-input-wrap {
    position: absolute;

    top: 0;
    right: 0;

    width: 0;
    height: 44px;

    display: flex;
    align-items: center;

    overflow: hidden;

    opacity: 0;
    visibility: hidden;

    background:
        var(--color-surface);

    border:
        1px solid var(--color-border);

    border-radius:
        var(--radius-full);

    box-shadow:
        var(--shadow-md);

    transform:
        scaleX(0.96);

    transform-origin:
        right center;

    transition:
        width var(--transition-normal),
        opacity var(--transition-fast),
        visibility var(--transition-fast),
        transform var(--transition-normal),
        box-shadow var(--transition-normal);
}


/* =========================================================
   OPEN SEARCH
   ========================================================= */

.search-bar.open {
    width: 320px;
}

.search-bar.open .search-input-wrap {
    width: 320px;

    opacity: 1;
    visibility: visible;

    transform:
        scaleX(1);

    box-shadow:
        var(--shadow-lg);
}

.search-bar.open .search-toggle {
    position: absolute;

    top: 50%;
    left: 11px;

    width: 34px;
    height: 34px;

    transform:
        translateY(-50%);

    color:
        var(--color-primary);

    background:
        transparent;

    border:
        none;

    box-shadow:
        none;

    z-index: 2;

    pointer-events: none;
}


/* =========================================================
   SEARCH INPUT
   ========================================================= */

.search-bar input {
    width: 100%;
    height: 100%;

    min-width: 0;

    padding:
        0 48px 0 48px;

    border:
        none;

    outline:
        none;

    background:
        transparent;

    color:
        var(--color-text);

    font-family:
        var(--font-family);

    font-size:
        var(--font-size-sm);

    font-weight:
        var(--font-weight-regular);

    line-height:
        1;

    box-shadow:
        none;
}

.search-bar input::placeholder {
    color:
        var(--color-text-light);

    opacity:
        1;
}

.search-bar input:hover,
.search-bar input:focus {
    border:
        none;

    outline:
        none;

    box-shadow:
        none;
}


/* =========================================================
   SEARCH CLOSE BUTTON
   ========================================================= */

.search-close {
    position: absolute;

    top: 50%;
    right: 7px;

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    transform:
        translateY(-50%);

    border:
        none;

    border-radius:
        var(--radius-full);

    background:
        transparent;

    color:
        var(--color-text-muted);

    font-size:
        14px;

    line-height:
        1;

    cursor:
        pointer;

    transition:
        color var(--transition-fast),
        background-color var(--transition-fast),
        transform var(--transition-fast);
}

.search-close:hover {
    color:
        var(--color-text);

    background:
        var(--color-surface-hover);
}

.search-close:active {
    transform:
        translateY(-50%)
        scale(0.92);
}

.search-close:focus-visible {
    outline:
        2px solid var(--color-primary);

    outline-offset:
        2px;
}


/* =========================================================
   SEARCH RESULTS
   ========================================================= */

.search-results {
    position: absolute;

    top:
        calc(100% + 8px);

    right: 0;

    width: 420px;

    min-width: 0;

    max-height:
        480px;

    overflow-x:
        hidden;

    overflow-y:
        auto;

    background:
        var(--color-surface);

    border:
        1px solid var(--color-border);

    border-radius:
        var(--radius-lg);

    box-shadow:
        var(--shadow-xl);

    opacity:
        0;

    visibility:
        hidden;

    transform:
        translateY(-6px)
        scale(0.99);

    transform-origin:
        top right;

    transition:
        opacity var(--transition-fast),
        transform var(--transition-fast),
        visibility var(--transition-fast);

    z-index:
        9999;

    scrollbar-width:
        thin;

    scrollbar-color:
        var(--color-border-strong)
        transparent;
}

.search-results.open {
    opacity:
        1;

    visibility:
        visible;

    transform:
        translateY(0)
        scale(1);
}


/* =========================================================
   SEARCH RESULT
   ========================================================= */

.search-result {
    display:
        flex;

    align-items:
        flex-start;

    gap:
        12px;

    padding:
        14px 16px;

    color:
        var(--color-text);

    text-decoration:
        none;

    border-bottom:
        1px solid var(--color-border-light);

    transition:
        background-color var(--transition-fast),
        padding-left var(--transition-fast);
}

.search-result:last-child {
    border-bottom:
        none;
}

.search-result:hover {
    background:
        var(--color-surface-hover);

    padding-left:
        19px;
}

.search-result:active {
    background:
        var(--color-surface-active);
}


/* =========================================================
   RESULT ICON
   ========================================================= */

.search-result-icon {
    flex:
        0 0 30px;

    width:
        30px;

    height:
        30px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    margin-top:
        1px;

    border-radius:
        var(--radius-sm);

    background:
        var(--color-surface-active);

    color:
        var(--color-primary);

    font-size:
        13px;
}


/* =========================================================
   RESULT CONTENT
   ========================================================= */

.search-result-content {
    min-width:
        0;

    flex:
        1;
}

.search-result-content strong {
    display:
        block;

    overflow:
        hidden;

    color:
        var(--color-text);

    font-size:
        var(--font-size-sm);

    font-weight:
        var(--font-weight-semibold);

    line-height:
        1.4;

    text-overflow:
        ellipsis;

    white-space:
        nowrap;
}

.search-result-content small {
    display:
        block;

    margin-top:
        2px;

    color:
        var(--color-primary);

    font-size:
        11px;

    font-weight:
        var(--font-weight-bold);

    line-height:
        1.4;

    letter-spacing:
        0.04em;

    text-transform:
        uppercase;
}

.search-result-content p {
    margin:
        4px 0 0;

    color:
        var(--color-text-muted);

    font-size:
        12px;

    line-height:
        1.45;
}


/* =========================================================
   NO RESULTS / LOADING
   ========================================================= */

.search-no-results {
    display:
        flex;

    align-items:
        center;

    justify-content:
        flex-start;

    gap:
        10px;

    padding:
        18px;

    color:
        var(--color-text-muted);

    font-size:
        var(--font-size-sm);

    line-height:
        1.4;
}

.search-loading {
    justify-content:
        center;
}

.search-loading i {
    color:
        var(--color-primary);
}


/* =========================================================
   SEARCH HIGHLIGHT
   ========================================================= */

.search-result-content mark {
    padding:
        1px 3px;

    margin:
        0 1px;

    background:
        var(--color-primary-light);

    color:
        var(--color-primary-dark);

    border-radius:
        3px;

    font-weight:
        var(--font-weight-bold);
}

.search-result:hover mark {
    background:
        #bfdbfe;
}


/* =========================================================
   SEARCH RESULTS SCROLLBAR
   ========================================================= */

.search-results::-webkit-scrollbar {
    width:
        7px;
}

.search-results::-webkit-scrollbar-track {
    background:
        transparent;
}

.search-results::-webkit-scrollbar-thumb {
    background:
        var(--color-border-strong);

    border-radius:
        var(--radius-full);
}

.search-results::-webkit-scrollbar-thumb:hover {
    background:
        var(--color-text-light);
}


/* =========================================================
   TABLET / MOBILE
   ========================================================= */

@media (max-width: 1100px) {

    .search-bar {
        width:
            44px;

        height:
            44px;

        margin-left:
            auto;

        margin-right:
            10px;
    }

    .search-bar.open {
        position:
            absolute;

        top:
            50%;

        left:
            16px;

        right:
            16px;

        width:
            auto;

        height:
            44px;

        margin:
            0;

        transform:
            translateY(-50%);
    }

    .search-bar.open .search-input-wrap {
        width:
            100%;
    }

    .search-results {
        position:
            fixed;

        top:
            70px;

        left:
            16px;

        right:
            16px;

        width:
            auto;

        max-height:
            calc(100dvh - 90px);

        border-radius:
            var(--radius-lg);

        -webkit-overflow-scrolling:
            touch;

        overscroll-behavior:
            contain;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .search-bar.open {
        left:
            10px;

        right:
            10px;
    }

    .search-results {
        top:
            66px;

        left:
            10px;

        right:
            10px;

        max-height:
            calc(100dvh - 82px);

        border-radius:
            var(--radius-md);
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .search-input-wrap,
    .search-toggle,
    .search-close,
    .search-results,
    .search-result {
        transition:
            none;
    }
}




/* =========================================================
   HAMBURGER MENU
   ========================================================= */

.hamburger-menu {
    display: none;

    flex-direction: column;

    justify-content: space-between;

    width: 30px;
    height: 25px;

    cursor: pointer;

    padding: 2px;

    border-radius:
        var(--radius-sm);

    transition:
        background-color var(--transition-fast),
        transform var(--transition-fast);
}

.hamburger-menu:hover {
    background:
        rgba(255, 255, 255, 0.08);
}

.hamburger-menu:active {
    transform:
        scale(0.95);
}

.hamburger-icon-bar {
    height: 4px;

    background:
        var(--color-primary);

    border-radius:
        var(--radius-full);

    transition:
        background-color var(--transition-fast);
}

.hamburger-menu:hover .hamburger-icon-bar {
    background:
        #60a5fa;
}


/* =========================================================
   HAMBURGER DROPDOWN
   ========================================================= */

.hamburger-dropdown {
    display: none;

    position: fixed;

    top: 70px;
    left: 0;

    width: 100%;

    height:
        calc(100vh - 70px);

    padding: 10px;

    background:
        var(--color-background);

    border-top:
        1px solid var(--color-border);

    box-shadow:
        var(--shadow-lg);

    z-index: 999;

    overflow-y: auto;

    overscroll-behavior:
        contain;

    scrollbar-width: thin;

    scrollbar-color:
        var(--color-border-strong)
        var(--color-background-soft);
}


/* =========================================================
   HAMBURGER SCROLLBAR
   ========================================================= */

.hamburger-dropdown::-webkit-scrollbar {
    width: 6px;
}

.hamburger-dropdown::-webkit-scrollbar-thumb {
    background-color:
        var(--color-border-strong);

    border-radius:
        var(--radius-full);
}

.hamburger-dropdown::-webkit-scrollbar-track {
    background:
        var(--color-background-soft);
}


/* =========================================================
   OPEN STATE
   ========================================================= */

.hamburger-dropdown.open {
    display: block;
}


/* =========================================================
   HAMBURGER NAVIGATION LIST
   ========================================================= */

.hamburger-dropdown ul {
    list-style: none;

    margin: 0;
    padding: 0;
}

.hamburger-dropdown li {
    border-bottom:
        1px solid var(--color-border);
}

.hamburger-dropdown li a {
    display: block;

    padding: 12px 16px;

    background:
        var(--color-surface);

    color:
        var(--color-text);

    text-decoration: none;

    font-weight:
        var(--font-weight-medium);

    transition:
        background-color var(--transition-fast),
        color var(--transition-fast),
        padding-left var(--transition-fast);
}

.hamburger-dropdown li a:hover {
    background:
        var(--color-hover);

    color:
        var(--color-primary);

    padding-left:
        20px;
}


/* =========================================================
   SUBMENU
   ========================================================= */

.submenu {
    display: none;

    padding: 5px 0 5px 20px;

    margin-left: 30px !important;

    background:
        var(--color-background-soft);

    border-left:
        2px solid var(--color-primary);
}

.has-submenu:hover .submenu,
.has-submenu.open .submenu {
    display: block;
}

.submenu li {
    border-bottom:
        1px solid var(--color-border-light);
}

.submenu li a {
    padding: 10px 16px;

    background:
        var(--color-surface);

    color:
        var(--color-text-muted);

    font-size: 14px;
}

.submenu li a:hover {
    background:
        var(--color-surface-hover);

    color:
        var(--color-text);
}


/* =========================================================
   MAIN SECTION
   ========================================================= */

main {
    flex: 1;
    width: 100%;
    max-width: none;
    padding: 10px 0;
    margin: 0;
    background: var(--color-background);
}


/* =========================================================
   GLOBAL CONTAINER
   SECTION-SPECIFIC WIDTHS ARE CONTROLLED BY EACH SECTION
   ========================================================= */

.container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================================================
   SECTIONS
   ========================================================= */

section {
    max-width: 100vw;

    overflow-x: hidden;
}


/* =========================================================
   RESPONSIVE NAVIGATION
   ============================================================ */

@media (max-width: 1100px) {

    nav {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }
}


/* ============================================================
   CLIENT LOGIN BUTTON
   ============================================================ */
/* ============================================================
   CLIENT LOGIN — NAVIGATION CTA
   ============================================================ */

nav li .client-login-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    min-width: 122px;
    height: 40px;
    padding: 0 15px;

    background: var(--color-primary);
    color: var(--color-text-inverse);

    border: 1px solid var(--color-primary);
    border-radius: var(--radius-md);

    font-family: var(--font-family);
    font-size: var(--font-size-sm) !important;
    font-weight: var(--font-weight-semibold);
    line-height: 1;

    text-decoration: none;
    white-space: nowrap;

    box-shadow:
        0 4px 12px rgba(37, 99, 235, 0.20);

    transition:
        background-color var(--transition-fast),
        border-color var(--transition-fast),
        transform var(--transition-fast),
        box-shadow var(--transition-fast);
}

nav li .client-login-link i {
    flex: 0 0 auto;

    width: 16px;
    height: 16px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;
}

/* Hover */
nav li .client-login-link:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: var(--color-text-inverse);

    transform: translateY(-1px);

    box-shadow:
        0 7px 18px rgba(37, 99, 235, 0.30);
}

/* Active */
nav li .client-login-link:active {
    transform: translateY(0);
    box-shadow:
        0 3px 8px rgba(37, 99, 235, 0.20);
}

/* Keyboard focus */
nav li .client-login-link:focus-visible {
    outline: 2px solid var(--color-primary-light);
    outline-offset: 3px;
}

/* Remove the normal nav underline animation */
nav li .client-login-link::before {
    display: none;
}

/* ============================================================
   SPA SCROLL
   ============================================================ */

.fade-in {
    animation:
        fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {

    from {
        opacity: 0;
        transform:
            translateY(10px);
    }

    to {
        opacity: 1;
        transform:
            translateY(0);
    }
}

.highlight-section {
    animation:
        pulseHighlight 1.5s ease-in-out;

    box-shadow:
        0 0 15px
        rgba(37, 99, 235, 0.35);

    border-radius:
        var(--radius-lg);
}

@keyframes pulseHighlight {

    0% {
        box-shadow:
            0 0 0
            rgba(37, 99, 235, 0.25);
    }

    50% {
        box-shadow:
            0 0 15px
            rgba(37, 99, 235, 0.45);
    }

    100% {
        box-shadow:
            0 0 0
            rgba(37, 99, 235, 0.25);
    }
}


/* ============================================================
   HEADER ANIMATION
   ============================================================ */

@keyframes slideInFromTop {

    from {
        opacity: 0;

        transform:
            translateY(-100%);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }
}


/* ============================================================
   MEGA MENU ANIMATION
   ============================================================ */

@keyframes megaMenuIn {

    from {
        opacity: 0;

        transform:
            translateY(-6px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }
}


/* ============================================================
   ACCESSIBILITY
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}















































/* WhatsApp Floating Button */
.whatsapp-float {
position: fixed;
width: 55px;
height: 55px;
bottom: 20px;
right: 20px;
background-color: #25d366;
color: #fff;
border-radius: 50%;
text-align: center;
font-size: 28px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
z-index: 999;
display: flex;
align-items: center;
justify-content: center;
transition: background 0.3s ease;
}

.whatsapp-float:hover {
background-color: #20ba5a;
text-decoration: none;
}

@media (max-width: 768px) {
.whatsapp-float {
	width: 45px;
	height: 45px;
	bottom: 15px;
	right: 15px;
	font-size: 22px;
}
}











/* =========================================================
   WSPACE AI — COMPANY FOOTER
   ========================================================= */

.site-footer {
    width: 100%;
    background: var(--color-secondary);
    color: var(--color-text-inverse);
    border-top: 1px solid var(--color-border);
    margin-top: 60px;
    font-family: var(--font-family);
}


/* =========================================================
   MAIN FOOTER
   ========================================================= */

.footer-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 64px 32px 56px;
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr 1.4fr;
    gap: 44px;
    box-sizing: border-box;
}


/* =========================================================
   BRAND
   ========================================================= */

.footer-brand {
    max-width: 360px;
}

.footer-logo {
    font-size: 1.6rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.5px;
    color: var(--color-text-inverse);
    margin: 0 0 16px;
}

.footer-brand > p {
    margin: 0;
    max-width: 340px;
    font-size: var(--font-size-sm);
    line-height: 1.7;
    color: var(--color-text-muted);
}


/* =========================================================
   CONTACT
   ========================================================= */

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-top: 24px;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer-contact a i {
    width: 18px;
    text-align: center;
    color: var(--color-primary-light);
}

.footer-contact a:hover {
    color: var(--color-text-inverse);
    transform: translateX(3px);
}


/* =========================================================
   FOOTER COLUMNS
   ========================================================= */

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column h4,
.footer-social h4 {
    margin: 0 0 18px;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-inverse);
}

.footer-column a {
    margin-bottom: 11px;
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
    text-decoration: none;
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer-column a:hover {
    color: var(--color-primary-light);
    transform: translateX(3px);
}


/* =========================================================
   SOCIAL MEDIA
   ========================================================= */

.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}


/* =========================================================
   SOCIAL BUTTONS
   ========================================================= */

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    color: var(--color-text-muted);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    text-decoration: none;
    font-size: 1rem;
    transition: transform var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.social-link:hover {
    transform: translateY(-3px);
    color: var(--color-text-inverse);
    background: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.social-link:focus-visible {
    outline: 2px solid var(--color-primary-light);
    outline-offset: 3px;
}


/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.footer-bottom {
    width: 100%;
    border-top: 1px solid var(--color-border);
}

.footer-bottom-inner {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 20px 32px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--color-text-light);
    font-size: var(--font-size-xs);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-bottom-links a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--color-primary-light);
}


/* =========================================================
   LAPTOP — 1200px
   ========================================================= */

/* =========================================================
   LAPTOP — 1200px
   ========================================================= */

@media (max-width: 1200px) {

    .footer-container {
        padding: 60px 28px 52px;

        /*
         * Natural responsive grid.
         * No forced number of columns.
         */
        grid-template-columns:
            repeat(
                auto-fit,
                minmax(220px, 1fr)
            );

        gap: 36px;
    }

    .footer-brand {
        max-width: 420px;
    }

    .footer-social {
        grid-column: auto;
    }

    .footer-bottom-inner {
        padding-left: 28px;
        padding-right: 28px;

        flex-wrap: wrap;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
    }
}


/* =========================================================
   TABLET — 900px
   ========================================================= */

@media (max-width: 900px) {

    .footer-container {
        padding: 52px 24px 46px;

        /*
         * Let available width determine the number
         * of footer columns automatically.
         */
        grid-template-columns:
            repeat(
                auto-fit,
                minmax(200px, 1fr)
            );

        gap: 32px 24px;
    }

    .footer-brand {
        max-width: 100%;
        grid-column: auto;
    }

    .footer-social {
        grid-column: auto;
    }

    .footer-bottom-inner {
        padding: 20px 24px;

        /*
         * Allow natural wrapping instead of
         * forcing the bottom section into a column.
         */
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
    }
}


/* =========================================================
   MOBILE — 768px
   ========================================================= */

@media (max-width: 768px) {

    .site-footer {
        margin-top: 40px;
    }

    .footer-container {
        padding: 48px 20px 40px;

        /*
         * No 1-column forcing.
         * Items wrap only when the available width
         * requires them to.
         */
        grid-template-columns:
            repeat(
                auto-fit,
                minmax(180px, 1fr)
            );

        gap: 30px 20px;
    }

    .footer-brand {
        max-width: 100%;
        grid-column: auto;
    }

    .footer-brand > p {
        max-width: 100%;
    }

    .footer-column {
        align-items: flex-start;
    }

    .footer-social {
        grid-column: auto;
        align-items: flex-start;
    }

    .social-icons {
        gap: 9px;
        flex-wrap: wrap;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .footer-bottom-inner {
        padding: 18px 20px;

        /*
         * Never force column layout.
         */
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 10px 20px;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        gap: 10px 16px;
    }
}


/* =========================================================
   SMALL MOBILE — 480px
   ========================================================= */

@media (max-width: 480px) {

    .footer-container {
        padding: 42px 16px 36px;

        /*
         * Still automatic.
         * The browser decides whether this becomes
         * one or more columns based on available width.
         */
        grid-template-columns:
            repeat(
                auto-fit,
                minmax(160px, 1fr)
            );

        gap: 26px 16px;
    }

    .footer-bottom-inner {
        padding: 18px 16px;

        /*
         * Keep natural wrapping.
         */
        flex-wrap: wrap;
        align-items: center;
        gap: 10px 16px;
    }

    .footer-logo {
        font-size: 1.45rem;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        gap: 8px 14px;
    }

    .social-icons {
        flex-wrap: wrap;
    }
}


/* =========================================================
   ACCESSIBILITY / REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .footer-contact a,
    .footer-column a,
    .social-link,
    .footer-bottom-links a {

        transition: none !important;
    }
}












/* =========================================================
   ANIMATIONS
   ========================================================= */

/* Loader */
@keyframes fadeInLoader {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


/* Logo Bounce */
@keyframes bounceLogo {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-15px);
    }
}


/* Text Fade In */
@keyframes fadeInText {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


/* Rotation / Spinner */
@keyframes spin {
    0% {
        transform: rotate(0);
    }

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


/* Basic Fade In */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/* Fade In Up */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Fade In Down */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Fade In Left */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* Fade In Right */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* Slide In From Left */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* Slide In From Top */
@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Zoom In */
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* Bounce In */
@keyframes bounceIn {

    0%,
    20%,
    50%,
    80%,
    100% {
        transition-timing-function: cubic-bezier(
            0.215,
            0.61,
            0.355,
            1
        );
    }

    0% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }

    20% {
        transform: scale3d(1.1, 1.1, 1.1);
    }

    50% {
        transform: scale3d(0.9, 0.9, 0.9);
    }

    80% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03);
    }

    100% {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}


/* Text Zoom */
@keyframes textZoom {

    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}


/* Rotate In */
@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-200deg);
    }

    to {
        opacity: 1;
        transform: rotate(0deg);
    }
}




























/* =========================================================
   LOADER
   ========================================================= */

#loader,
#loading-spinner {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(23, 35, 55, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    opacity: 1;
    transition: opacity var(--transition-slow);
}


/* =========================================================
   LOADER LOGO
   ========================================================= */

.loader-logo {
    width: 100px;
    animation: bounceLogo 1.5s infinite alternate;
}


/* =========================================================
   MEMBER AVATAR
   ========================================================= */

.member-avatar {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: var(--color-surface);
    color: var(--color-text-inverse);
    border: 1px solid var(--color-border);
    margin-bottom: 10px;
}


/* =========================================================
   LOADER TEXT
   ========================================================= */

.loader-text {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    margin-top: 10px;
}


/* =========================================================
   SPINNER
   ========================================================= */

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(226, 232, 240, 0.18);
    border-top: 5px solid var(--color-primary);
    border-right-color: var(--color-accent);
    border-radius: var(--radius-full);
    animation: spin 1s linear infinite;
}


/* =========================================================
   HIDE LOADER
   ========================================================= */

.hidden {
    display: none;
}


/* =========================================================
   LOADER ANIMATIONS
   ========================================================= */

@keyframes bounceLogo {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-20px);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}