    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0
    }

    html {
        scroll-behavior: smooth
    }

    body {
        font-family: 'Inter', sans-serif;
        background: #f8f9fc;
        color: #1a1a1a;
        overflow-x: hidden;
        background: var(--Theme-Blue-50, #EBEEFD);
    }

    :root {
        --cobalt: #3a58ef;
        --cobalt-dk: #283fb1;
        --cobalt-xdk: #26244a;
        --cobalt-lt: #ebeefd;
        --cobalt-md: #d8defc;
        --orange: #ff6600;
        --orange-lt: #fff4e5;
        --white: #ffffff;
        --ink: #141414;
        --body: #1d2939;
        --muted: #5d667b;
        --border: #e2e2e2;
        --bg: #eff0f3;
        --green: #16a34a;
        --green-lt: #dcfce7;
        --amber: #d97706;
        --amber-lt: #fef3c7;
        --violet: #6d28d9;
        --violet-lt: #ede9fe;
    }

    /* ── NAV ── */
    nav {
        position: sticky;
        top: 0;
        z-index: 200;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 48px;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border);
    }

    .nav-logo {
        display: flex;
        align-items: baseline;
        gap: 3px;
        text-decoration: none
    }

    .nav-logo-main {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.2rem;
        font-weight: 900;
        color: var(--cobalt)
    }

    .nav-logo-one {
        font-family: 'Inter', sans-serif;
        font-size: .72rem;
        color: var(--orange);
        letter-spacing: .08em;
        text-transform: uppercase;
        border: 1.5px solid rgba(255, 102, 0, .3);
        padding: 1px 7px;
        border-radius: 4px;
        margin-left: 4px
    }

    .nav-center {
        font-size: .86rem;
        color: var(--muted)
    }

    .nav-center strong {
        color: var(--ink)
    }

    .nav-right {
        display: flex;
        gap: 12px;
        align-items: center
    }

    .nav-link {
        font-size: .84rem;
        color: var(--muted);
        text-decoration: none;
        transition: color .2s
    }

    .nav-link:hover {
        color: var(--cobalt)
    }

    .nav-cta {
        background: var(--cobalt);
        color: var(--white);
        padding: 9px 20px;
        border-radius: 6px;
        font-size: .84rem;
        font-weight: 600;
        text-decoration: none;
        transition: background .2s
    }

    .nav-cta:hover {
        background: var(--cobalt-dk)
    }

    .nav-cta-orange {
        background: var(--orange);
        color: var(--white);
        padding: 9px 20px;
        border-radius: 6px;
        font-size: .84rem;
        font-weight: 600;
        text-decoration: none;
        transition: background .2s
    }

    .nav-cta-orange:hover {
        background: #e65c00
    }

    /* ── HERO BANNER ── */
    .page-hero {
        background: linear-gradient(135deg, var(--cobalt-xdk) 0%, var(--cobalt-dk) 50%, var(--cobalt) 100%);
        padding: 60px 48px 52px;
        position: relative;
        overflow: hidden;
    }

    .page-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 55% 60% at 88% 25%, rgba(255, 102, 0, .2) 0%, transparent 65%),
            radial-gradient(ellipse 35% 35% at 5% 90%, rgba(255, 255, 255, .04) 0%, transparent 60%);
    }

    .hero-grid {
        position: absolute;
        inset: 0;
        opacity: .03;
        background-image: linear-gradient(rgba(255, 255, 255, .8) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .8) 1px, transparent 1px);
        background-size: 64px 64px
    }

    .hero-inner {
        position: relative;
        max-width: 1200px;
        margin: 0 auto
    }

    .hero-top {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        gap: 32px;
        flex-wrap: wrap
    }

    .hero-text {}

    .hero-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #ffffff;
        border: 1px solid rgba(255, 255, 255, .4);
        color: #2d2d4e;
        font-size: .78rem;
        font-weight: 600;
        letter-spacing: .04em;
        text-transform: none;
        padding: 6px 16px 6px 12px;
        border-radius: 100px;
        margin-bottom: 18px;
        box-shadow: 0 2px 8px rgba(0,0,0,.12)
    }

    .hero-eyebrow svg {
        flex-shrink: 0;
        width: 16px;
        height: 16px;
        color: #6b7280
    }

    .page-hero h1 {
        font-family: 'Montserrat', sans-serif;
        font-size: clamp(1.9rem, 3.5vw, 2.9rem);
        font-weight: 700;
        color: var(--white);
        line-height: 1.1;
        letter-spacing: -.025em;
        margin-bottom: 14px
    }

    .page-hero h1 em {
        font-style: normal;
        font-weight: 700;
        color: #ffb347
    }

    .page-hero p {
        color: rgba(255, 255, 255, .68);
        font-size: 1rem;
        max-width: 580px;
        line-height: 1.7
    }

    .banner-stats-box {
        border-radius: 12px;
        background: rgba(0, 0, 0, 0.30);
        border: 1px solid rgba(255, 255, 255, 0.15);
        padding: 24px 28px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .banner-stat-item {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .banner-stat-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 8px;
        background: #EBEEFD;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .banner-stat-text {
        color: #fff;
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
    }

    .banner-stat-text strong {
        margin-right: 6px;
        color: #fff;
        font-size: 30px;
        font-weight: 700;
        line-height: 1;
    }

    /* ── FILTERS BAR ── */
    .filters-bar {
        background: var(--white);
        border-bottom: 1px solid #eaecf0;
        padding: 16px 48px;
        position: sticky;
        top: 57px;
        z-index: 90;
    }

    .filters-inner {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        gap: 12px;
        align-items: center;
        flex-wrap: wrap
    }

    .search-wrap {
        flex: 1;
        min-width: 220px;
        position: relative
    }

    .search-wrap input {
        width: 100%;
        padding: 9px 12px 9px 36px;
        border: 1px solid #eaecf0;
        border-radius: 4px;
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        background: #fff;
        outline: none;
        transition: border-color .2s;
        color: #101828;
        min-height: 44px;
    }

    .search-wrap input:focus {
        border-color: var(--cobalt)
    }

    .search-wrap svg {
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        pointer-events: none
    }

    /* ── SELECTPICKER DROPDOWNS ── */
    .filter-sp-wrap {
        position: relative;
    }

    /* Toggle button */
    .filter-sp-wrap .bootstrap-select>.dropdown-toggle {
        border-radius: 4px !important;
        border: 1px solid #eaecf0 !important;
        background-color: #fff !important;
        color: #101828 !important;
        font-size: 14px !important;
        font-weight: 400 !important;
        line-height: 20px !important;
        padding: 8px 12px !important;
        height: 44px !important;
        font-family: 'Inter', sans-serif !important;
        box-shadow: none !important;
        transition: border-color .2s;
    }

    /* Placeholder (title) color */
    .filter-sp-wrap .bootstrap-select>.dropdown-toggle.bs-placeholder,
    .filter-sp-wrap .bootstrap-select>.dropdown-toggle.bs-placeholder:hover,
    .filter-sp-wrap .bootstrap-select>.dropdown-toggle.bs-placeholder:focus {
        color: #5d667b !important;
    }

    /* Focus / open state */
    .filter-sp-wrap .bootstrap-select>.dropdown-toggle:focus,
    .filter-sp-wrap .bootstrap-select>.dropdown-toggle:active,
    .filter-sp-wrap .bootstrap-select.show>.dropdown-toggle {
        border-color: var(--cobalt) !important;
        outline: none !important;
        box-shadow: none !important;
    }

    /* Dropdown panel */
    .filter-sp-wrap .bootstrap-select .dropdown-menu {
        border-radius: 4px !important;
        border: 1px solid #eaecf0 !important;
        font-family: 'Inter', sans-serif;
        margin-top: 3px !important;
        padding: 4px 0 !important;
        box-shadow: 0 4px 16px rgba(0, 0, 0, .08) !important;
        min-width: 100%;
    }

    /* Inner ul reset (bootstrap-select wraps in .dropdown-menu.inner) */
    .filter-sp-wrap .bootstrap-select .dropdown-menu.inner {
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
        border-radius: 0 !important;
    }

    /* Each option row */
    .filter-sp-wrap .bootstrap-select .dropdown-menu li a.dropdown-item {
        padding: 9px 14px !important;
        font-size: 14px !important;
        color: #101828 !important;
        font-family: 'Inter', sans-serif !important;
        font-weight: 400 !important;
        line-height: 20px !important;
        background-color: transparent !important;
    }

    /* Hover / keyboard focus */
    .filter-sp-wrap .bootstrap-select .dropdown-menu li a.dropdown-item:hover,
    .filter-sp-wrap .bootstrap-select .dropdown-menu li a.dropdown-item:focus,
    .filter-sp-wrap .bootstrap-select .dropdown-menu li.active>a.dropdown-item:not(.selected) {
        background-color: #eff0f3 !important;
        color: #101828 !important;
        outline: none !important;
    }

    /* Selected option */
    .filter-sp-wrap .bootstrap-select .dropdown-menu li.selected>a.dropdown-item,
    .filter-sp-wrap .bootstrap-select .dropdown-menu li>a.dropdown-item.selected {
        background-color: #ebeefd !important;
        color: var(--cobalt) !important;
        outline: none !important;
    }

    /* Text span inside option */
    .filter-sp-wrap .bootstrap-select .dropdown-menu li a span.text {
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        color: inherit;
    }

    .filter-divider {
        width: 1px;
        height: 28px;
        background: #eaecf0;
        flex-shrink: 0
    }

    .filter-tag {
        padding: 10px 12px;
        border: 1px solid #eaecf0;
        border-radius: 4px;
        font-size: 14px;
        font-weight: 400;
        cursor: pointer;
        background: #fff;
        color: #101828;
        transition: all .15s;
        white-space: nowrap;
        height: 44px;
        display: inline-flex;
        align-items: center;
        line-height: 20px;
    }

    .filter-tag:hover {
        border-color: var(--cobalt);
        color: var(--cobalt)
    }

    .filter-tag.active {
        background: var(--cobalt);
        color: #fff;
        border-color: var(--cobalt)
    }

    .filter-tag.active-orange {
        background: var(--orange);
        color: #fff;
        border-color: var(--orange)
    }

    .results-count {
        font-size: 14px;
        color: #5d667b;
        white-space: nowrap;
        margin-left: auto;
        font-weight: 400;
        line-height: 20px;
    }

    /* ── MAIN LAYOUT ── */
    .main-wrap {
        max-width: 1200px;
        margin: 0 auto;
        padding: 36px 48px 80px;
        background: var(--Theme-Blue-50, #EBEEFD);
    }

    .grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
        gap: 24px;
    }

    /* ── PROFILE CARD ── */
    .profile-card {
        padding: 0;
        overflow: hidden;
        transition: transform .22s, box-shadow .22s, border-color .22s;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        border-radius: 12px;
        border: 1px solid var(--Text-Grey-200, #EAECF0);
        background: var(--White, #FFF);
    }

    .profile-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 12px 40px rgba(58, 88, 239, .1);
        border-color: rgba(58, 88, 239, .25);
        margin-top: 0;
        border-radius: 12px;
        border: 1px solid var(--Text-Grey-500, #5D667B);
        background: var(--White, #FFF);
        box-shadow: 4px 4px 0 0 #000;
    }

    .card-top-bar {
        height: 5px;
        background: linear-gradient(90deg, var(--cobalt), var(--cobalt-dk));
        display: none;
    }

    .card-top-bar.orange {
        background: linear-gradient(90deg, var(--orange), #e65c00)
    }

    .card-top-bar.violet {
        background: linear-gradient(90deg, var(--violet), #5b21b6)
    }

    .card-body {
        padding: 22px 22px 18px
    }

    .card-header {
        display: flex;
        gap: 14px;
        align-items: flex-start;
        margin-bottom: 16px
    }

    .avatar {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Montserrat', sans-serif;
        font-size: 1.15rem;
        font-weight: 700;
        color: var(--white);
    }

    .card-name {
        margin-bottom: 2px;
        color: var(--Theme-Dark-Blue-800, #26244A);
        font-family: Inter;
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: 28px;
    }

    .card-role-type {
        font-size: .76rem;
        font-weight: 700;
        padding: 2px 9px;
        border-radius: 100px;
        display: inline-block;
        margin-bottom: 4px
    }

    .role-lead {
        border-radius: 4px;
        background: var(--Theme-Blue-50, #EBEEFD);
        color: var(--Theme-Dark-Blue-800, #26244A);
        font-family: Inter;
        font-size: 12px;
        font-style: normal;
        font-weight: 600;
        line-height: 24px;
    }

    .role-fractional {
        border-radius: 4px;
        background: var(--Theme-Blue-50, #EBEEFD);
        color: var(--Theme-Dark-Blue-800, #26244A);
        font-family: Inter;
        font-size: 12px;
        font-style: normal;
        font-weight: 600;
        line-height: 24px;
    }

    .role-consultant {
        border-radius: 4px;
        background: var(--Theme-Blue-50, #EBEEFD);
        color: var(--Theme-Dark-Blue-800, #26244A);
        font-family: Inter;
        font-size: 12px;
        font-style: normal;
        font-weight: 600;
        line-height: 24px;
    }

    .card-location {
        color: var(--Text-Grey-600, #475467);
        font-family: Inter;
        font-size: 12px;
        font-style: normal;
        font-weight: 600;
        line-height: 24px;
        display: flex;
    }

    .card-location::before {
        content: '';
        background: url('../../v2/images/marketplace/location_icon.svg');
        background-size: cover;
        background-position: cover;
        width: 20px;
        height: 20px;
        display: inline-block;
        font-size: .7rem;
        margin-right: 3px
    }

    .status-badge {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        padding: 3px 10px;
        border-radius: 100px;
        font-size: .7rem;
        font-weight: 600;
        margin-bottom: 14px;
    }

    .status-badge::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: currentColor
    }

    .status-active {
        border-radius: 50px;
        background: var(--Success-Green-50, #ECFDF3);
        color: var(--Success-Green-800, #05603A);
        text-align: center;
        font-family: Inter;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
    }

    .status-onboarding {
        border-radius: 50px;
        background: var(--Success-Green-50, #ECFDF3);
        color: var(--Success-Green-800, #05603A);
        text-align: center;
        font-family: Inter;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
    }

    .status-limited {
        border-radius: 50px;
        background: var(--Success-Green-50, #ECFDF3);
        color: var(--Success-Green-800, #05603A);
        text-align: center;
        font-family: Inter;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
    }

    .card-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        margin-bottom: 15px
    }

    .tag {
        border: 1px solid var(--border);
        padding: 3px 9px;
        border-radius: 4px;
        background: var(--Theme-Blue-50, #EBEEFD);
        color: var(--Text-Grey-700, #344054);
        text-align: center;
        font-family: Inter;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
    }

    .tag-cobalt {
        border-radius: 4px;
        background: var(--Theme-Blue-50, #EBEEFD);
        color: var(--Text-Grey-700, #344054);
        text-align: center;
        font-family: Inter;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
    }

    .card-divider {
        height: 1px;
        background: var(--border);
        margin: 0 -22px 16px
    }

    /* Annual value section */
    .card-value-section {
        padding: 0 22px 20px
    }

    .value-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
        display: none;
    }

    .value-label {
        font-size: .72rem;
        color: var(--muted);
        text-transform: uppercase;
        letter-spacing: .05em;
        font-weight: 600
    }

    .value-num {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--cobalt)
    }

    .value-sub {
        font-size: .68rem;
        color: var(--muted)
    }

    .card-btn {
        display: block;
        width: 100%;
        text-align: center;
        cursor: pointer;
        transition: background .2s;
        text-decoration: none;
        border-radius: 12px;
        border: 1px solid var(--Text-Grey-200, #EAECF0);
        background: var(--White, #FFF);
        color: var(--Theme-Blue-500, #3A58EF);
        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 24px;
        padding: 10px 18px;
        border-radius: 4px;
        border: 1px solid var(--Theme-Blue-500, #3A58EF);
    }

    .card-btn:hover {
        border-radius: 4px;
        background: var(--Theme-Blue-500, #3A58EF);
        box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
        color: var(--White, #FFF);
        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 24px;
    }

    .card-meta {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 12px
    }

    .rating {
        color: var(--orange);
        font-size: .8rem;
        font-weight: 700;
        min-width: 90px;
    }

    span.Rating_Text {
        color: var(--Text-Grey-400, #98A2B3);
        font-family: Inter;
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 18px;
    }

    span.Rating_Num {
        color: var(--Text-Grey-700, #344054);
        text-align: center;
        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 24px;
        vertical-align: sub;
        margin-left: 8px;
    }

    .meta-sep {
        content: '';
        background: var(--Text-Grey-300, #D0D5DD);
        width: 1px;
        height: 24px;
        display: inline-block;
    }

    .card-exp {
        color: var(--Text-Grey-700, #344054);
        font-family: Inter;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 20px;
        min-width: 90px;
    }

    /* ── DRAWER ── */
    .drawer-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .45);
        z-index: 300;
        opacity: 0;
        pointer-events: none;
        transition: opacity .3s;
        backdrop-filter: blur(4px)
    }

    .drawer-overlay.open {
        opacity: 1;
        pointer-events: all
    }

    .drawer {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(640px, 96vw);
        background: var(--white);
        z-index: 301;
        transform: translateX(100%);
        transition: transform .35s cubic-bezier(.4, 0, .2, 1);
        overflow-y: auto;
        display: flex;
        flex-direction: column
    }

    .drawer.open {
        transform: translateX(0)
    }

    .drawer-header {
        background: linear-gradient(135deg, var(--cobalt-xdk), var(--cobalt));
        padding: 32px;
        position: relative;
        flex-shrink: 0;
    }

    .drawer-header::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, var(--orange), transparent)
    }

    .drawer-close {
        position: absolute;
        top: 18px;
        right: 18px;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .12);
        border: none;
        cursor: pointer;
        color: var(--white);
        font-size: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background .2s
    }

    .drawer-close:hover {
        background: rgba(255, 255, 255, .22)
    }

    .drawer-avatar {
        width: 76px;
        height: 76px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        font-size: 1.8rem;
        color: var(--white);
        margin-bottom: 18px;
        box-shadow: 0 0 0 4px rgba(255, 255, 255, .15)
    }

    .drawer-name {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.55rem;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 4px
    }

    .drawer-subtitle {
        font-size: .88rem;
        color: rgba(255, 255, 255, .65);
        margin-bottom: 16px
    }

    .drawer-badges {
        display: flex;
        gap: 8px;
        flex-wrap: wrap
    }

    .d-badge {
        padding: 4px 12px;
        border-radius: 100px;
        font-size: .72rem;
        font-weight: 600
    }

    .d-badge-orange {
        background: var(--orange);
        color: var(--white)
    }

    .d-badge-white {
        background: rgba(255, 255, 255, .15);
        color: var(--white)
    }

    .d-badge-green {
        background: rgba(22, 163, 74, .3);
        color: #6ee7b7
    }

    .drawer-body {
        padding: 28px 32px;
        flex: 1
    }

    .d-section {
        margin-bottom: 28px
    }

    .d-section-title {
        font-size: .7rem;
        font-weight: 700;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: var(--orange);
        font-family: 'Inter', sans-serif;
        margin-bottom: 14px;
        padding-bottom: 8px;
        border-bottom: 1px solid var(--border)
    }

    .d-bio {
        font-size: .92rem;
        color: var(--body);
        line-height: 1.75
    }

    .spec-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px
    }

    .spec-item {
        background: var(--bg);
        border-radius: 10px;
        padding: 13px 15px
    }

    .spec-label {
        font-size: .68rem;
        color: var(--muted);
        text-transform: uppercase;
        letter-spacing: .06em;
        margin-bottom: 3px
    }

    .spec-val {
        font-weight: 600;
        font-size: .88rem;
        color: var(--ink)
    }

    .exp-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 7px
    }

    .exp-tag {
        background: var(--cobalt-lt);
        border: 1px solid var(--cobalt-md);
        color: var(--cobalt-dk);
        padding: 4px 12px;
        border-radius: 100px;
        font-size: .76rem;
        font-weight: 500
    }

    /* Annual value display in drawer */
    .annual-value-box {
        background: linear-gradient(135deg, var(--cobalt-xdk), var(--cobalt));
        border-radius: 14px;
        padding: 22px 24px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .av-item .av-label {
        font-size: .68rem;
        color: rgba(255, 255, 255, .55);
        text-transform: uppercase;
        letter-spacing: .06em;
        margin-bottom: 4px
    }

    .av-item .av-val {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.5rem;
        font-weight: 700;
        color: #ffb347
    }

    .av-item .av-sub {
        font-size: .7rem;
        color: rgba(255, 255, 255, .45)
    }

    .deliverable-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 9px
    }

    .deliverable-list li {
        font-size: .87rem;
        color: var(--body);
        padding-left: 20px;
        position: relative;
        line-height: 1.5
    }

    .deliverable-list li::before {
        content: '✦';
        position: absolute;
        left: 0;
        color: var(--orange);
        font-size: .65rem;
        top: 4px
    }

    .drawer-footer {
        padding: 20px 32px;
        border-top: 1px solid var(--border);
        background: var(--bg);
        display: flex;
        gap: 10px;
        flex-shrink: 0
    }

    .btn-contact {
        flex: 1;
        background: var(--cobalt);
        color: var(--white);
        padding: 13px;
        border-radius: 10px;
        border: none;
        cursor: pointer;
        font-size: .9rem;
        font-weight: 600;
        font-family: 'Inter', sans-serif;
        transition: background .2s
    }

    .btn-contact:hover {
        background: var(--cobalt-dk)
    }

    .btn-save {
        width: 46px;
        height: 46px;
        border-radius: 10px;
        border: 1.5px solid var(--border);
        background: var(--white);
        cursor: pointer;
        font-size: 1.1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: border-color .2s
    }

    .btn-save:hover {
        border-color: var(--orange)
    }

    /* ── CTA BANNER ── */
    .cta-banner {
        padding: 72px 48px;
        position: relative;
        overflow: hidden;
        background: #031D58;
        filter: blur(0px);
    }

    .cta-banner::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 60% 70% at 85% 40%, rgba(255, 102, 0, .2) 0%, transparent 65%)
    }

    .cta-banner-inner {
        position: relative;
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 48px;
        align-items: center
    }

    .cta-text .cta-eyebrow {
        letter-spacing: 0;
        text-transform: inherit;
        margin-bottom: 14px;
        color: var(--White, #FFF);
        font-family: Inter;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 20px;
        border-radius: 500px;
        background: rgba(0, 0, 0, 0.20);
        padding: 4px 16px;
        display: flex;
        align-items: center;
        max-width: 347px;
        gap: 8px;
    }

    .cta-text h2 {
        margin-bottom: 14px;
        color: var(--White, #FFF);
        font-family: Inter;
        font-size: 36px;
        font-style: normal;
        font-weight: 700;
        line-height: 120%;
        letter-spacing: -0.72px;
    }

    .cta-text p {
        max-width: 560px;
        color: var(--White, #FFF);
        font-family: Inter;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px;
    }

    .cta-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: flex-end;
        flex-shrink: 0
    }

    .cta-btn-primary {
        display: inline-block;
        padding: 15px 28px;
        text-decoration: none;
        transition: all .2s;
        white-space: nowrap;
        text-align: center;
        border-radius: 4px;
        background: var(--White, #FFF);
        box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
        color: var(--Theme-Blue-500, #3A58EF);
        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 24px;
    }

    .cta-btn-primary:hover {
        transform: translateY(-2px);
        background: var(--Theme-Blue-500, #3A58EF);
        color: #fff;
    }

    .cta-btn-ghost {
        display: inline-block;
        padding: 13px 24px;
        font-weight: 600;
        text-decoration: none;
        transition: all .2s;
        white-space: nowrap;
        text-align: center;
        border-radius: 4px;
        border: 1px solid var(--White, #FFF);
        color: var(--White, #FFF);
        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 24px;
    }

    .cta-btn-ghost:hover {
        border-color: rgba(255, 255, 255, .6);
        border-radius: 4px;
        background: var(--White, #FFF);
        box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
        color: var(--Theme-Blue-500, #3A58EF);
        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 24px;
    }

    /* ── FOOTER ── */
    /* footer {
        background: var(--cobalt-xdk);
        padding: 32px 48px;
        text-align: center
    }

    footer strong {
        color: #ffb347
    }

    footer span {
        opacity: .42;
        font-size: .74rem;
        margin-top: 8px;
        display: block;
        color: rgba(255, 255, 255, .6)
    }

    footer a {
        color: rgba(255, 255, 255, .55);
        text-decoration: none
    }

    footer a:hover {
        color: #ffb347
    } */

    /* ── SUCCESS MODAL ── */
    .modal-overlay {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 400;
        background: rgba(0, 0, 0, .5);
        backdrop-filter: blur(6px);
        align-items: center;
        justify-content: center
    }

    .modal-overlay.open {
        display: flex
    }

    .modal {
        background: var(--white);
        border-radius: 20px;
        padding: 48px 40px;
        max-width: 440px;
        width: 90%;
        text-align: center;
        box-shadow: 0 24px 80px rgba(0, 0, 0, .2)
    }

    .modal-icon {
        font-size: 2.8rem;
        margin-bottom: 16px
    }

    .modal h3 {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--cobalt);
        margin-bottom: 10px
    }

    .modal p {
        font-size: .9rem;
        color: var(--muted);
        line-height: 1.7;
        margin-bottom: 24px
    }

    .modal-email-box {
        background: var(--cobalt-lt);
        border: 1px solid var(--cobalt-md);
        border-radius: 10px;
        padding: 14px 18px;
        margin-bottom: 22px
    }

    .modal-email-label {
        font-size: .7rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .06em;
        color: var(--cobalt-dk);
        margin-bottom: 3px
    }

    .modal-email-val {
        font-weight: 600;
        color: var(--cobalt);
        font-size: .9rem
    }

    .modal-close-btn {
        background: var(--cobalt);
        color: var(--white);
        padding: 12px 28px;
        border-radius: 8px;
        border: none;
        cursor: pointer;
        font-family: 'Inter', sans-serif;
        font-size: .9rem;
        font-weight: 600
    }

    @media(max-width:900px) {
        nav {
            padding: 12px 20px
        }

        .nav-center {
            display: none
        }

        .page-hero {
            padding: 44px 20px 36px
        }

        .filters-bar {
            padding: 12px 20px;
            top: 49px
        }

        .main-wrap {
            padding: 24px 20px 60px
        }

        .grid {
            grid-template-columns: 1fr
        }

        .hero-top {
            flex-direction: column;
            gap: 20px
        }

        .cta-banner {
            padding: 52px 20px
        }

        .cta-banner-inner {
            grid-template-columns: 1fr;
            gap: 24px
        }

        .cta-actions {
            align-items: flex-start
        }

        footer {
            padding: 28px 20px
        }
    }
