/* ================================================================
   TERRALEAP UNIFIED CSS
   Shared across all pages. Page-specific styles follow at bottom.
   ================================================================ */

/* ── RESET ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html, body {
    overflow-x: hidden;
    max-width: 100vw
}

body {
    font-family: 'DM Sans',sans-serif;
    background: #f5f6f8;
    color: #1a1a1a
}

a {
    text-decoration: none;
    color: inherit
}

img, svg, canvas {
    max-width: 100%;
    display: block
}

/* ── CSS VARIABLES ── */
:root {
    --blue: #185FA5;
    --blue-dark: #0C447C;
    --blue-light: #E6F1FB;
    --red: #C0392B;
    --red-light: #FDECEA;
    --green: #27AE60;
    --green-light: #E8F8F0;
    --green-dark: #085041;
    --amber: #F39C12;
    --amber-light: #FAEEDA;
    --navy: #0B1A3B;
    --border: #e5e5e5;
    --muted: #888;
    --soft: #f5f6f8;
    --max-w: 1200px;
    --shadow: 0 4px 16px rgba(0,0,0,.08);
}

/* ── ANIMATIONS ── */
@keyframes gf {
    to {
        transform: rotate(360deg)
    }
}

@keyframes gr {
    to {
        transform: rotate(-360deg)
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px)
    }

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

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
.tl-nav {
    background: rgba(255,255,255,.97);
    border-bottom: 1px solid var(--border);
    padding: 0 24px;
    position: sticky;
    top: 0;
    z-index: 200;
    backdrop-filter: blur(10px);
}

.tl-nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 64px;
    gap: 4px;
}

.tl-logo {
    font-family: 'DM Sans',sans-serif;
    /*font-family: 'Fraunces',Georgia,serif;*/
    font-size: 22px;
    font-weight: 700;
    color: var(--blue);
    margin-right: auto;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

    .tl-logo:hover {
        color: var(--blue-dark)
    }

/* Desktop nav links */
.tl-nl {
    display: flex;
    gap: 2px;
    align-items: center
}

    .tl-nl a {
        font-size: 13px;
        font-weight: 500;
        color: #555;
        padding: 6px 11px;
        border-radius: 6px;
        text-decoration: none;
        transition: all .15s;
        white-space: nowrap;
    }

        .tl-nl a:hover, .tl-nl a.active {
            color: var(--blue);
            background: var(--blue-light)
        }

/* Dropdown wrapper */
.tl-dd {
    position: relative;
    display: inline-flex;
    align-items: center
}

.tl-dd-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 500;
    color: #555;
    padding: 6px 11px;
    border-radius: 6px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans',sans-serif;
    transition: all .15s;
    white-space: nowrap;
}

    .tl-dd-btn:hover, .tl-dd-btn.open {
        color: var(--blue);
        background: var(--blue-light)
    }

.tl-dd-arrow {
    font-size: 9px;
    opacity: .6;
    transition: transform .2s;
    margin-left: 2px
}

.tl-dd-btn.open .tl-dd-arrow {
    transform: rotate(180deg)
}

.tl-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
    min-width: 220px;
    padding: 6px;
    z-index: 400;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all .2s cubic-bezier(.25,.46,.45,.94);
    pointer-events: none;
}

    .tl-dropdown.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .tl-dropdown a {
        display: flex;
        align-items: center;
        gap: 9px;
        padding: 9px 12px;
        border-radius: 8px;
        font-size: 13px;
        font-weight: 500;
        color: #444;
        text-decoration: none;
        transition: background .12s;
        white-space: nowrap;
    }

        .tl-dropdown a:hover {
            background: var(--blue-light);
            color: var(--blue)
        }

.tl-dd-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 4px 8px
}

.tl-dd-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #bbb;
    padding: 6px 12px 2px;
}

/* Nav buttons */
.tl-btn-ghost {
    font-size: 13px;
    font-weight: 500;
    padding: 7px 16px;
    border-radius: 999px;
    border: 1px solid #d0d0d0;
    background: #fff;
    cursor: pointer;
    color: #1a1a1a;
    margin-left: 8px;
    font-family: 'DM Sans',sans-serif;
    white-space: nowrap;
    transition: all .15s;
}

    .tl-btn-ghost:hover {
        border-color: var(--blue);
        color: var(--blue)
    }

.tl-btn-primary {
    font-size: 13px;
    font-weight: 500;
    padding: 7px 16px;
    border-radius: 999px;
    border: none;
    color: #fff;
    background: var(--blue);
    cursor: pointer;
    margin-left: 4px;
    font-family: 'DM Sans',sans-serif;
    white-space: nowrap;
    transition: background .15s;
}

    .tl-btn-primary:hover {
        background: var(--blue-dark)
    }

/* Hamburger */
.tl-ham {
    display: none;
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: none;
    font-size: 20px;
    color: #555;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    flex-shrink: 0;
    transition: all .15s;
}

    .tl-ham:hover {
        background: var(--blue-light);
        border-color: var(--blue);
        color: var(--blue)
    }

/* ═══════════════════════════════════════
   MOBILE OVERLAY + DRAWER
═══════════════════════════════════════ */
/*.tl-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 9998;
    display: none;
    opacity: 0;
    transition: opacity .25s;
}

    .tl-overlay.open {
        opacity: 1
    }

.tl-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: min(300px,82vw);
    background: #fff;
    z-index: 9999;
    box-shadow: -4px 0 24px rgba(0,0,0,.15);
    transition: right .28s cubic-bezier(.25,.46,.45,.94);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

    .tl-drawer.open {
        right: 0
    }

.tl-drawer-hdr {
    padding: 16px 18px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.tl-drawer-logo {
    font-family: 'Fraunces',serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--blue)
}

.tl-drawer-close {
    border: none;
    background: none;
    font-size: 24px;
    cursor: pointer;
    color: #555;
    line-height: 1;
    transition: color .15s
}

    .tl-drawer-close:hover {
        color: var(--red)
    }

.tl-drawer-links {
    padding: 10px 10px 12px;
    flex: 1
}

    .tl-drawer-links a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 14px;
        border-radius: 9px;
        font-size: 14px;
        font-weight: 500;
        color: #444;
        text-decoration: none;
        margin-bottom: 2px;
        transition: background .12s;
    }

        .tl-drawer-links a:hover, .tl-drawer-links a.active {
            background: var(--blue-light);
            color: var(--blue)
        }

.tl-drawer-div {
    height: 1px;
    background: #f0f0f0;
    margin: 4px 14px 8px
}*/

/* Mobile submenu */
/*.tl-mob-item {
    margin-bottom: 2px
}

.tl-mob-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 14px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 500;
    color: #444;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background .12s;
    font-family: 'DM Sans',sans-serif;
}

    .tl-mob-toggle:hover {
        background: #f0f2f5;
        color: var(--blue)
    }

    .tl-mob-toggle.open {
        background: var(--blue-light);
        color: var(--blue)
    }

.tl-mob-arrow {
    margin-left: auto;
    font-size: 10px;
    color: #bbb;
    transition: transform .25s;
    flex-shrink: 0
}

.tl-mob-toggle.open .tl-mob-arrow {
    transform: rotate(180deg)
}

.tl-mob-sub {
    display: none;
    margin: 2px 0 4px 14px;
    border-left: 2px solid var(--blue-light);
    padding-left: 8px;
}

    .tl-mob-sub.open {
        display: block
    }

    .tl-mob-sub a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 9px 12px;
        border-radius: 8px;
        font-size: 13px;
        font-weight: 500;
        color: #555;
        text-decoration: none;
        margin-bottom: 1px;
        transition: background .12s;
    }

        .tl-mob-sub a:hover {
            background: var(--blue-light);
            color: var(--blue)
        }

.tl-drawer-btns {
    padding: 0 14px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

    .tl-drawer-btns a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px 16px;
        border-radius: 999px;
        font-size: 13px;
        font-weight: 500;
        text-decoration: none;
        transition: all .15s;
    }

.tl-db-ghost {
    border: 1px solid #d0d0d0;
    color: #1a1a1a;
    background: #fff
}

    .tl-db-ghost:hover {
        border-color: var(--blue);
        color: var(--blue)
    }

.tl-db-primary {
    background: var(--blue);
    color: #fff
}

    .tl-db-primary:hover {
        background: var(--blue-dark)
    }*/

/* ═══════════════════════════════════════
   HERO (centred — for policy/legal/blog pages)
═══════════════════════════════════════ */
.tl-hero {
    background: var(--navy);
    padding: 64px 24px 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

    .tl-hero canvas {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 0
    }

.tl-hero-globe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 480px;
    height: 480px;
    opacity: .25;
    pointer-events: none;
    z-index: 0;
}

.tl-hero-inner {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeUp .6s ease both;
}

.tl-hero-bc {
    font-size: 12px;
    color: rgba(255,255,255,.6);
    margin-bottom: 12px
}

    .tl-hero-bc a {
        color: rgba(255,255,255,.8)
    }

        .tl-hero-bc a:hover {
            color: #fff
        }

    .tl-hero-bc sep {
        margin: 0 6px;
        opacity: .5
    }

.tl-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255,255,255,.5);
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    padding: 5px 14px;
    margin-bottom: 14px;
}

.tl-hero-h1 {
    font-family: 'DM Sans',sans-serif;
    /*font-family: 'Fraunces',serif;*/
    font-size: 32px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.25
}

    .tl-hero-h1 em {
        /*font-style: italic;*/
        font-style: normal ;
        color: #B5D4F4
    }

.tl-hero-p {
    font-size: 15px;
    color: rgba(255,255,255,.72);
    line-height: 1.7
}

/* HERO (left-aligned — for exam/product pages) */
.tl-hero-left {
    background: var(--navy);
    padding: 52px 24px 56px;
    position: relative;
    overflow: hidden
}

    .tl-hero-left canvas {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 0
    }

    .tl-hero-left .tl-hero-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 40px;
        align-items: center;
        text-align: left;
    }

.tl-hero-gsvg {
    position: absolute;
    top: 50%;
    right: 3%;
    transform: translateY(-50%);
    width: 420px;
    height: 420px;
    opacity: .18;
    pointer-events: none;
    z-index: 0;
}

/* ═══════════════════════════════════════
   CONTENT SECTIONS
═══════════════════════════════════════ */
.tl-section {
    padding: 56px 24px
}

.tl-section-inner {
    max-width: var(--max-w);
    margin: 0 auto
}

.tl-section-inner-sm {
    max-width: 860px;
    margin: 0 auto
}

.tl-section-label {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--blue);
    margin-bottom: 7px
}

.tl-section-h2 {
    font-family: 'DM Sans',sans-serif;
    /*font-family: 'Fraunces',serif;*/
    font-size: 26px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 6px;
    line-height: 1.2
}

.tl-section-sub {
    font-size: 13px;
    color: #666;
    margin-bottom: 28px
}

/* ═══════════════════════════════════════
   COMMON LAYOUT
═══════════════════════════════════════ */
.tl-main-2col {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 28px 24px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 28px;
    align-items: start
}

.tl-sidebar {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: sticky;
    top: 80px
}

.tl-sbox {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 11px;
    padding: 16px
}

.tl-sbox-title {
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #999;
    margin-bottom: 12px
}

.tl-con {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px
}

/* ═══════════════════════════════════════
   PROSE (policy/legal pages)
═══════════════════════════════════════ */
.tl-prose h3 {
    font-family: 'DM Sans',sans-serif;
    /*font-family: 'Fraunces',serif;*/
    font-size: 17px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 28px 0 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid #ebebeb
}

    .tl-prose h3:first-child {
        margin-top: 0
    }

.tl-prose p {
    font-size: 14px;
    color: #444;
    line-height: 1.85;
    margin-bottom: 12px
}

.tl-prose ul, .tl-prose ol {
    font-size: 14px;
    color: #444;
    line-height: 1.85;
    padding-left: 20px;
    margin-bottom: 12px
}

.tl-prose li {
    margin-bottom: 5px
}

.tl-prose strong {
    font-weight: 500;
    color: #1a1a1a
}

.tl-prose a {
    color: var(--blue);
    text-decoration: underline;
    text-decoration-color: rgba(24,95,165,.3)
}

    .tl-prose a:hover {
        text-decoration-color: var(--blue)
    }

.tl-note {
    background: var(--blue-light);
    border-left: 3px solid var(--blue);
    border-radius: 0 8px 8px 0;
    padding: 12px 16px;
    font-size: 13px;
    color: #1a3a6b;
    margin: 16px 0;
    line-height: 1.7
}

.tl-warn {
    background: var(--amber-light);
    border-left: 3px solid var(--amber);
    border-radius: 0 8px 8px 0;
    padding: 12px 16px;
    font-size: 13px;
    color: #633806;
    margin: 16px 0;
    line-height: 1.7
}

/* Policy layout */
.tl-policy-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 48px;
    align-items: start
}

.tl-policy-toc {
    position: sticky;
    top: 80px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px
}

.tl-policy-toc-title {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--blue);
    margin-bottom: 10px
}

.tl-policy-toc ol {
    padding-left: 16px
}

.tl-policy-toc li {
    margin-bottom: 5px
}

.tl-policy-toc a {
    font-size: 12.5px;
    color: #555;
    transition: color .15s
}

    .tl-policy-toc a:hover {
        color: var(--blue)
    }

.tl-update-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #555;
    background: #f5f5f5;
    border-radius: 999px;
    padding: 4px 12px;
    margin-bottom: 20px
}
/* Mobile TOC pills */
.tl-toc-mobile {
    display: none;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 20px
}

.tl-toc-mobile-title {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--blue);
    margin-bottom: 10px
}

.tl-toc-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px
}

.tl-toc-pill {
    font-size: 12px;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--soft);
    color: #555;
    border: 1px solid var(--border);
    text-decoration: none;
    transition: all .15s
}

    .tl-toc-pill:hover {
        background: var(--blue-light);
        color: var(--blue)
    }

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'DM Sans',sans-serif;
    font-weight: 500;
    cursor: pointer;
    border: none;
    border-radius: 999px;
    transition: all .15s;
    font-size: 13px;
    text-decoration: none
}

.btn-primary {
    background: var(--blue);
    color: #fff;
    padding: 9px 22px
}

    .btn-primary:hover {
        background: var(--blue-dark)
    }

.btn-ghost {
    background: #fff;
    color: #555;
    padding: 8px 18px;
    border: 1px solid var(--border)
}

    .btn-ghost:hover {
        border-color: var(--blue);
        color: var(--blue)
    }

.btn-danger {
    background: var(--red);
    color: #fff;
    padding: 9px 22px
}

.btn-sm {
    font-size: 12px !important;
    padding: 6px 14px !important
}

/* ═══════════════════════════════════════
   CARDS
═══════════════════════════════════════ */
.tl-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px
}

/* ═══════════════════════════════════════
   CROSS-PAGE LINKS (legal pages)
═══════════════════════════════════════ */
.tl-pg-links {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(180px,1fr));
    gap: 10px;
    margin-top: 32px
}

.tl-pg-link {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all .15s;
    text-decoration: none
}

    .tl-pg-link:hover {
        border-color: var(--blue);
        background: var(--blue-light)
    }

.tl-pg-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0
}

.tl-pg-label {
    font-size: 12.5px;
    font-weight: 500;
    color: #1a1a1a
}

/* ═══════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════ */
/*.tl-cta {
    background: var(--navy);
    padding: 52px 24px;
    text-align: center
}

    .tl-cta h2 {
        font-family: 'Fraunces',serif;
        font-size: 26px;
        font-weight: 500;
        color: #fff;
        margin-bottom: 8px
    }

    .tl-cta p {
        font-size: 14px;
        color: rgba(255,255,255,.7);
        margin-bottom: 22px
    }

    .tl-cta a {
        display: inline-block;
        padding: 11px 28px;
        border-radius: 999px;
        font-size: 13px;
        font-weight: 500;
        margin: 0 5px;
        text-decoration: none
    }

.tl-cta-primary {
    background: #fff;
    color: var(--blue)
}

    .tl-cta-primary:hover {
        background: var(--blue-light)
    }

.tl-cta-secondary {
    background: none;
    color: #fff;
    border: 1px solid rgba(255,255,255,.35)
}

    .tl-cta-secondary:hover {
        background: rgba(255,255,255,.08)
    }*/

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.tl-footer {
    background: #2C2C2A;
    color: #aaa;
    padding: 32px 24px
}

.tl-footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px
}

.tl-flogo {
    font-family: 'DM Sans',sans-serif;
    /*font-family: 'Fraunces',serif;*/
    font-size: 18px;
    color: #fff
}

.tl-flinks {
    display: flex;
    gap: 14px
}

    .tl-flinks a {
        font-size: 12px;
        color: #888;
        text-decoration: none
    }

        .tl-flinks a:hover {
            color: #fff
        }

.tl-fcopy {
    font-size: 12px;
    color: #555;
    width: 100%;
    margin-top: 6px
}

/* ═══════════════════════════════════════
   FORM ELEMENTS
═══════════════════════════════════════ */
.tl-fi {
    width: 100%;
    padding: 10px 13px;
    border: 1.5px solid var(--border);
    border-radius: 9px;
    font-size: 13px;
    font-family: 'DM Sans',sans-serif;
    color: #1a1a1a;
    outline: none;
    transition: border-color .15s;
    background: #fff
}

    .tl-fi:focus {
        border-color: var(--blue);
        background: #fafcff
    }

    .tl-fi::placeholder {
        color: #ccc
    }

select.tl-fi {
    appearance: none;
    cursor: pointer
}

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.tl-faq-item {
    background: #f8f8f6;
    border-radius: 7px;
    padding: 10px 12px;
    cursor: pointer;
    transition: background .15s;
    margin-bottom: 6px
}

    .tl-faq-item:last-child {
        margin-bottom: 0
    }

    .tl-faq-item:hover {
        background: var(--blue-light)
    }

.tl-faq-q {
    font-size: 12px;
    font-weight: 500;
    color: #1a1a1a
}

.tl-faq-a {
    font-size: 11px;
    color: #666;
    margin-top: 5px;
    line-height: 1.5;
    display: none
}

.tl-faq-item.open .tl-faq-a {
    display: block
}
/* Policy page FAQ accordion */
.tl-acc-item {
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px
}

    .tl-acc-item:hover {
        border-color: var(--blue)
    }

.tl-acc-q {
    padding: 14px 16px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #1a1a1a;
    background: #fff
}

    .tl-acc-q::after {
        content: '+';
        font-size: 20px;
        color: var(--blue);
        flex-shrink: 0
    }

details[open] .tl-acc-q::after {
    content: '-'
}

.tl-acc-a {
    padding: 0 16px 14px;
    font-size: 13.5px;
    color: #555;
    line-height: 1.8;
    background: #fff;
    border-top: 1px solid var(--border)
}

/* ═══════════════════════════════════════
   BADGES / PILLS
═══════════════════════════════════════ */
.tl-badge {
    display: inline-flex;
    align-items: center;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 999px
}

.tl-badge-blue {
    background: var(--blue-light);
    color: var(--blue)
}

.tl-badge-green {
    background: var(--green-light);
    color: var(--green)
}

.tl-badge-red {
    background: var(--red-light);
    color: var(--red)
}

.tl-badge-amber {
    background: var(--amber-light);
    color: #633806
}

.tl-badge-gray {
    background: #f0f0f0;
    color: #666
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media(max-width:1024px) {
    .tl-nl, .tl-btn-ghost, .tl-btn-primary {
        display: none !important
    }

    .tl-ham {
        display: flex !important
    }
}

@media(max-width:900px) {
    .tl-main-2col {
        grid-template-columns: 1fr !important
    }

    .tl-sidebar {
        position: static !important
    }

    .tl-hero-left .tl-hero-inner {
        grid-template-columns: 1fr !important
    }

    .tl-policy-layout {
        grid-template-columns: 1fr !important;
        gap: 0 !important
    }

    .tl-policy-toc {
        display: none !important
    }

    .tl-toc-mobile {
        display: block !important
    }
}

@media(max-width:767px) {
    .tl-hero {
        padding: 40px 18px 36px !important
    }

    .tl-hero-globe {
        width: 220px !important;
        height: 220px !important;
        opacity: .1 !important
    }

    .tl-hero-h1 {
        font-size: 24px !important
    }

    .tl-hero-p {
        font-size: 13px !important
    }

    .tl-hero-left {
        padding: 32px 18px !important
    }

    .tl-section {
        padding: 36px 18px !important
    }

    .tl-section-h2 {
        font-size: 22px !important
    }

    .tl-pg-links {
        grid-template-columns: repeat(2,1fr) !important;
        gap: 8px !important
    }

   /* .tl-cta {
        padding: 36px 20px !important
    }

        .tl-cta h2 {
            font-size: 21px !important
        }

        .tl-cta a {
            display: block;
            max-width: 260px;
            margin: 6px auto !important;
            text-align: center
        }*/

    .tl-footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px
    }

    .tl-main-2col {
        padding: 18px 16px !important
    }
}

@media(max-width:480px) {
    .tl-nav {
        padding: 0 14px !important
    }

    .tl-nav-inner {
        height: 56px !important
    }

    .tl-logo {
        font-size: 18px !important
    }

    .tl-hero {
        padding: 28px 14px 24px !important
    }

    .tl-hero-h1 {
        font-size: 20px !important
    }

    .tl-hero-tag {
        font-size: 10px !important
    }

    .tl-section {
        padding: 24px 14px !important
    }

    .tl-prose h3 {
        font-size: 15px !important
    }

    .tl-prose p {
        font-size: 13px !important
    }

    .tl-pg-links {
        grid-template-columns: 1fr 1fr !important
    }

    .tl-fi, select {
        font-size: 16px !important
    }
}

/* ================================================================
   BLOG DETAIL PAGE — bd- prefix, no conflicts
================================================================ */

/* ── Hero ── */
.bd-hero {
    background: var(--navy);
    padding: 56px 24px 52px;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

    .bd-hero canvas {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 0
    }

.bd-hero-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.bd-hero-bc {
    font-size: 11px;
    color: rgba(255,255,255,.6);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

    .bd-hero-bc a {
        color: rgba(255,255,255,.8);
        text-decoration: none
    }

        .bd-hero-bc a:hover {
            color: #fff;
            text-decoration: underline
        }

    .bd-hero-bc span {
        color: rgba(255,255,255,.8)
        /*color: rgba(255,255,255,.35)*/
    }

.bd-hero-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px
}

.bd-hero-cat {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .09em;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,.25);
}

.bd-hero-read {
    font-size: 11px;
    color: rgba(255,255,255,.5)
}

.bd-hero-dot {
    color: rgba(255,255,255,.3)
}

.bd-hero-date {
    font-size: 11px;
    color: rgba(255,255,255,.5)
}

.bd-hero-h1 {
    font-family: 'DM Sans',sans-serif;
    /*font-family: 'Fraunces',Georgia,serif;*/
    font-size: 36px;
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
    max-width: 820px;
}

    .bd-hero-h1 em {
        /*font-style: italic;*/
        color: #B5D4F4
    }

.bd-hero-sub {
    font-size: 15px;
    color: rgba(255,255,255,.7);
    max-width: 680px;
    line-height: 1.65;
    margin-bottom: 24px;
}

.bd-hero-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.12);
}

.bd-author-av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg,#185FA5,#B5D4F4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    flex-shrink: 0;
}

.bd-author-name {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 2px
}

.bd-author-role {
    font-size: 11px;
    color: rgba(255,255,255,.5)
}

/* ── Main layout ── */
.bd-wrap {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 40px 24px 64px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 36px;
    align-items: start;
    box-sizing: border-box;
}

/* ── Featured image ── */
.bd-featured-img {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 36px;
    background: linear-gradient(135deg,#0B1A3B 0%,#185FA5 100%);
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

    .bd-featured-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block
    }

.bd-featured-img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.6);
    font-size: 14px;
    gap: 12px;
}

.bd-featured-icon {
    font-size: 64px;
    opacity: .4
}

/* ── Article body ── */
.bd-article {
    min-width: 0
}

.bd-share-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 10px;
}

.bd-share-label {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #aaa
}

.bd-share-btns {
    display: flex;
    gap: 6px
}

.bd-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 500;
    padding: 6px 13px;
    border-radius: 7px;
    border: 1.5px solid var(--border);
    background: #fff;
    color: #555;
    cursor: pointer;
    text-decoration: none;
    transition: all .15s;
    font-family: 'DM Sans',sans-serif;
}

    .bd-share-btn:hover {
        border-color: var(--blue);
        color: var(--blue)
    }

/* ── Prose content ── */
.bd-prose {
    font-size: 15px;
    color: #333;
    line-height: 1.85
}

    .bd-prose h2 {
        font-family: 'DM Sans',sans-serif;
        /*font-family: 'Fraunces',Georgia,serif;*/
        font-size: 22px;
        font-weight: 500;
        color: #1a1a1a;
        margin: 40px 0 12px;
        padding-bottom: 8px;
        border-bottom: 2px solid #f0f0f0;
    }

    .bd-prose h3 {
        font-family: 'DM Sans',sans-serif;
        /*font-family: 'Fraunces',Georgia,serif;*/
        font-size: 17px;
        font-weight: 500;
        color: #1a1a1a;
        margin: 28px 0 8px;
    }

    .bd-prose p {
        margin-bottom: 18px;
        line-height: 1.85
    }

    .bd-prose ul, .bd-prose ol {
        padding-left: 22px;
        margin-bottom: 18px
    }

    .bd-prose li {
        margin-bottom: 7px;
        line-height: 1.7
    }

    .bd-prose strong {
        font-weight: 600;
        color: #1a1a1a
    }

    .bd-prose em {
        /*font-style: italic;*/
        color: #555
    }

    .bd-prose a {
        color: var(--blue);
        text-decoration: underline
    }

        .bd-prose a:hover {
            color: var(--blue-dark)
        }

    .bd-prose blockquote {
        border-left: 4px solid var(--blue);
        padding: 16px 20px;
        margin: 28px 0;
        background: var(--blue-light);
        border-radius: 0 10px 10px 0;
        /*font-style: italic;*/
        color: #444;
        font-size: 15px;
        line-height: 1.7;
    }

        .bd-prose blockquote cite {
            display: block;
            margin-top: 8px;
            font-size: 12px;
            font-style: normal;
            font-weight: 500;
            color: #888;
        }

    .bd-prose .bd-highlight {
        background: linear-gradient(135deg,#EAF3FD,#f0f8ff);
        border: 1px solid #C5D8EE;
        border-radius: 10px;
        padding: 20px 22px;
        margin: 28px 0;
    }

    .bd-prose .bd-highlight-title {
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .08em;
        color: var(--blue);
        margin-bottom: 8px;
    }

    .bd-prose .bd-highlight p {
        margin-bottom: 0;
        font-size: 14px
    }

    .bd-prose hr {
        border: none;
        border-top: 2px dashed #e8e8e8;
        margin: 36px 0
    }

/* Tags at bottom of article */
.bd-tags {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--border)
}

.bd-tags-label {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #aaa
}

.bd-tag {
    font-size: 11px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 999px;
    border: 1.5px solid var(--border);
    background: #fff;
    color: #555;
    text-decoration: none;
    transition: all .15s;
    cursor: pointer;
}

    .bd-tag:hover {
        border-color: var(--blue);
        color: var(--blue)
    }

/* ── Sidebar ── */
.bd-sidebar {
    position: sticky;
    top: 80px;
    display: flex;
    flex-direction: column;
    gap: 20px
}

/* Table of contents */
.bd-toc {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px;
}

.bd-toc-title {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: #aaa;
    margin-bottom: 12px;
}

.bd-toc-links {
    display: flex;
    flex-direction: column;
    gap: 1px
}

.bd-toc-link {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #666;
    padding: 6px 10px;
    border-radius: 7px;
    text-decoration: none;
    border-left: 2px solid transparent;
    transition: all .15s;
    line-height: 1.4;
}

    .bd-toc-link:hover {
        color: var(--blue);
        background: var(--blue-light);
        border-left-color: var(--blue)
    }

    .bd-toc-link.active {
        color: var(--blue);
        background: var(--blue-light);
        border-left-color: var(--blue)
    }

    .bd-toc-link.bd-toc-h3 {
        padding-left: 20px;
        font-weight: 400;
        color: #888
    }

/* Enroll CTA */
.bd-cta {
    background: linear-gradient(135deg,#0C3D70,#185FA5);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.bd-cta-icon {
    font-size: 32px;
    margin-bottom: 10px
}

.bd-cta-title {
    font-family: 'DM Sans',sans-serif;
    /*font-family: 'Fraunces',Georgia,serif;*/
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.3
}

.bd-cta-sub {
    font-size: 11px;
    color: rgba(255,255,255,.7);
    margin-bottom: 14px;
    line-height: 1.5
}

.bd-cta-btn {
    display: block;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    padding: 10px;
    border-radius: 8px;
    background: #fff;
    color: #185FA5;
    text-decoration: none;
    margin-bottom: 8px;
    transition: all .15s;
    font-family: 'DM Sans',sans-serif;
}

    .bd-cta-btn:hover {
        background: #E6F1FB
    }

.bd-cta-trial {
    display: block;
    text-align: center;
    font-size: 11px;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,.3);
    color: rgba(255,255,255,.9);
    text-decoration: none;
    transition: all .15s;
    font-family: 'DM Sans',sans-serif;
}

    .bd-cta-trial:hover {
        background: rgba(255,255,255,.1)
    }

/* Related posts */
.bd-related {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px
}

.bd-related-title {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: #aaa;
    margin-bottom: 14px
}

.bd-rel-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    text-decoration: none;
    transition: opacity .15s;
}

    .bd-rel-item:last-child {
        border-bottom: none;
        padding-bottom: 0
    }

    .bd-rel-item:hover {
        opacity: .75
    }

.bd-rel-img {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    flex-shrink: 0;
    background: linear-gradient(135deg,var(--blue-light),#ddeeff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.bd-rel-title {
    font-size: 12px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 3px
}

.bd-rel-cat {
    font-size: 10px;
    color: #aaa
}

/* ── Next / Prev navigation ── */
.bd-nav-bar {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    box-sizing: border-box;
}

.bd-nav-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: all .2s;
    cursor: pointer;
}

    .bd-nav-item:hover {
        border-color: var(--blue);
        box-shadow: 0 4px 16px rgba(24,95,165,.08)
    }

.bd-nav-arrow {
    font-size: 20px;
    color: #aaa;
    flex-shrink: 0;
    transition: color .15s
}

.bd-nav-item:hover .bd-nav-arrow {
    color: var(--blue)
}

.bd-nav-dir {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #aaa;
    margin-bottom: 4px
}

.bd-nav-title {
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.4
}

.bd-nav-item.bd-nav-next {
    flex-direction: row-reverse;
    text-align: right
}

/* ── Responsive ── */
@media(max-width:960px) {
    .bd-wrap {
        grid-template-columns: 1fr
    }

    .bd-sidebar {
        position: static
    }

    .bd-toc {
        display: none
    }
}

@media(max-width:768px) {
    .bd-hero-h1 {
        font-size: 26px
    }

    .bd-hero {
        padding: 40px 16px 36px
    }

    .bd-wrap {
        padding: 24px 16px 40px;
        gap: 24px
    }

    .bd-nav-bar {
        padding: 0 16px 40px;
        grid-template-columns: 1fr
    }

    .bd-featured-img {
        height: 220px
    }

    .bd-prose h2 {
        font-size: 19px
    }
}

@media(max-width:480px) {
    .bd-hero-h1 {
        font-size: 22px
    }

    .bd-share-bar {
        flex-direction: column;
        align-items: flex-start
    }

    .bd-nav-item.bd-nav-next {
        flex-direction: row;
        text-align: left
    }
}

/* ═══════════════════════════════════════
   About us
═══════════════════════════════════════ */
.vgrid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 14px
}

.vcard {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px;
    transition: border-color .15s
}

    .vcard:hover {
        border-color: var(--blue)
    }

.vicon {
    width: 42px;
    height: 42px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    margin-bottom: 12px
}

.vtitle {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 7px
}

.vdesc {
    font-size: 12px;
    color: #666;
    line-height: 1.7
}

.tl-timeline {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column
}

.tl-tli {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 20px;
    padding-bottom: 24px;
    position: relative
}

    .tl-tli::before {
        content: '';
        position: absolute;
        left: 89px;
        top: 8px;
        bottom: 0;
        width: 1px;
        background: var(--border)
    }

    .tl-tli:last-child::before {
        display: none
    }

.tl-tly {
    font-family: 'DM Sans',sans-serif;
    /*font-family: 'Fraunces',serif;*/
    font-size: 17px;
    font-weight: 500;
    color: var(--blue);
    text-align: right;
    padding-top: 2px;
    padding-right: 10px;
}

.tl-tld {
    position: absolute;
    left: 82px;
    top: 8px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--blue);
    border: 3px solid #f5f6f8
}

.tl-tlc {
    padding-left: 14px
}

.tl-tlt {
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 3px
}

.tl-tlp {
    font-size: 12px;
    color: #666;
    line-height: 1.5
}

.tl-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center
}

.tl-mstats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px
}

.tl-mstat {
    background: #f5f6f8;
    border-radius: 9px;
    padding: 14px
}

.tl-mstat-n {
    font-family: 'DM Sans',sans-serif;
    /*font-family: 'Fraunces',serif;*/
    font-size: 24px;
    font-weight: 500;
    color: var(--blue);
    margin-bottom: 2px
}

.tl-mstat-l {
    font-size: 11px;
    color: #777
}

.tl-mvis {
    background: linear-gradient(135deg,#0B1A3B,#185FA5);
    border-radius: 14px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px
}

@media(max-width:900px) {
    .vgrid, .tl-mission {
        grid-template-columns: 1fr
    }
}

@media(max-width:767px) {
    .tl-mission {
        gap: 28px
    }
}

/************Alert message*********/

.popup {
    position: fixed;
    top: 120px; /*80px;*/
    right: 20px;
    padding: 15px;
    color: white;
    border-radius: 5px;
    display: none;
    z-index: 9999;
}

.success {
    background-color: green;
}

.error {
    background-color: red;
}

/************Contact Us*********/
.tl-contact-grid {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 24px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 24px;
    align-items: start
}

@media(max-width:820px) {
    .tl-contact-grid {
        grid-template-columns: 1fr
    }
}

.tl-contact-grid .tl-sidebar {
    position: sticky;
    top: 80px
}

@media(max-width:820px) {
    .tl-contact-grid .tl-sidebar {
        position: static
    }
}

/* ── NAVBAR ── */
.header {
    position: relative;
    z-index: 1000;
}

.navbar {
    background: #ffffff;
    border-bottom: 1px solid #eaeaea;
    position: sticky;
    top: 0;
    width: 100%;
}

.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo img {
    height: 42px;
    width: auto;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-item {
    position: relative;
}

.nav-link {
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all .2s ease;
}

    /*.nav-link:hover {
        background: #f5f7fa;
    }*/
    .nav-link:hover, .nav-item:hover > .nav-link {
        color: var(--blue);
        background: var(--blue-light);
    }

    .nav-link svg {
        width: 11px;
        height: 11px;
        transition: transform .2s;
        flex-shrink: 0;
    }

.nav-item:hover > .nav-link svg {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: 110%;
    left: 0;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
    border-radius: 12px;
    padding: 18px;
    display: none;
    gap: 24px;
}

.nav-item:hover .dropdown {
    display: flex;
}

.dropdown-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dropdown-col-title {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #777;
}

.dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px;
    border-radius: 8px;
    text-decoration: none;
    transition: background .2s ease;
}

    .dropdown-item:hover {
        background: #f5f7fa;
    }

.di-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.ic-blue {
    background: #E6F1FB;
    color: #185FA5;
}

.ic-teal {
    background: #E8F7F5;
    color: #0F8C82;
}

.ic-purple {
    background: #F3E8FF;
    color: #6B46C1;
}

.ic-coral {
    background: #FFEAEA;
    color: #D64545;
}

.ic-amber {
    background: #FFF4E5;
    color: #C47A00;
}

.ic-green {
    background: #E6F8EC;
    color: #2E9D55;
}

.ic-gray {
    background: #F1F1F1;
    color: #666;
}

.di-text {
    display: flex;
    flex-direction: column;
}

.di-name {
    font-size: 14px;
    font-weight: 500;
    color: #222;
}

.di-sub {
    font-size: 12px;
    color: #777;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-ghost {
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid #dcdcdc;
    background: #fff;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    color: #333;
}

.btn-primary {
    padding: 8px 16px;
    border-radius: 999px;
    background: #185FA5;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
}

.hm-ham {
    display: none;
    font-size: 22px;
    background: none;
    border: none;
    cursor: pointer;
}

.hm-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    display: none;
    z-index: 9998;
}

.hm-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 300px;
    background: #fff;
    z-index: 9999;
    transition: right .3s ease;
    display: flex;
    flex-direction: column;
}

    .hm-drawer.active {
        right: 0;
    }

.hm-drawer-links a {
    display: block;
    padding: 12px 18px;
    font-size: 14px;
    text-decoration: none;
    color: #444;
}

@media (max-width: 992px) {

    .navbar-nav,
    .navbar-actions {
        display: none;
    }

    .hm-ham {
        display: block;
    }
}
