.glow-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 138, .45) 30%, rgba(255, 159, 69, .45) 70%, transparent);
}

/* ═══ NAV ═══ */
.nav {
    position: sticky;
    top: 0;
    z-index: 200;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(2, 8, 23, .88);
    border-bottom: 1px solid var(--gb);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 62px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: -.01em;
}

.nav-logo-mark {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #ff6b8a, #ff9f45);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo-mark svg {
    width: 16px;
    height: 16px;
    color: #020817;
}

.nav-back {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    font-weight: 700;
    color: var(--text-dim);
    transition: color .2s;
}

.nav-back:hover {
    color: var(--rose);
}

.nav-back svg {
    width: 14px;
    height: 14px;
}

/* ═══ HERO ═══ */
.hero {
    position: relative;
    padding: 60px 0 52px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -200px;
    width: 580px;
    height: 580px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 138, .075), transparent 65%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -120px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 159, 69, .05), transparent 65%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
    background: rgba(255, 107, 138, .1);
    border: 1px solid rgba(255, 107, 138, .26);
    color: var(--rose);
    padding: 5px 15px;
    border-radius: var(--r-full);
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
}

.hero-pill-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--rose);
    animation: blink 1.6s infinite;
}

.hero h1 {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    letter-spacing: -.01em;
    line-height: 1.1;
    margin-bottom: 12px;
}

.hero h1 em {
    font-style: italic;
    background: linear-gradient(135deg, #ff6b8a, #ff9f45);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: .94rem;
    color: var(--text-mid);
    max-width: 500px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-stat-num {
    display: block;
    font-size: 1.55rem;
    font-weight: 900;
    letter-spacing: -.02em;
    line-height: 1;
}

.hero-stat-lbl {
    display: block;
    font-size: .62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: var(--text-dim);
    margin-top: 3px;
}

.hero-badges {
    display: flex;
    flex-direction: column;
    gap: 9px;
    align-items: flex-end;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 16px;
    background: var(--glass-2);
    border: 1px solid var(--gb);
    border-radius: 13px;
    backdrop-filter: blur(12px);
    white-space: nowrap;
}

.hero-badge-ico {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    flex-shrink: 0;
}

.hero-badge-txt {
    font-size: .72rem;
    font-weight: 700;
    color: var(--text-mid);
}

.hero-badge-txt strong {
    display: block;
    font-size: .84rem;
    color: var(--text-bright);
}

/* ═══ FILTER BAR ═══ */
.filter-bar {
    position: sticky;
    top: 62px;
    z-index: 100;
    background: rgba(2, 8, 23, .92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gb);
    padding: 10px 0 0;
}

.filter-row1 {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: nowrap;
    padding-bottom: 10px;
}

.filter-row2 {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-top: 1px solid var(--gb);
    gap: 8px;
}

/* search */
.search-wrap {
    position: relative;
    flex: 1;
    min-width: 200px;
    max-width: 340px;
}

.search-wrap svg {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    color: var(--text-dim);
    pointer-events: none;
}

#searchInput {
    width: 100%;
    background: var(--glass-2);
    border: 1px solid var(--gb);
    border-radius: var(--r-full);
    padding: 9px 14px 9px 38px;
    color: var(--text-bright);
    font-family: var(--font);
    font-size: .84rem;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

#searchInput::placeholder {
    color: var(--text-dimmer);
}

#searchInput:focus {
    border-color: rgba(255, 107, 138, .4);
    box-shadow: 0 0 0 3px rgba(255, 107, 138, .08);
}

/* filter pills — horizontal scroll, never wrap */
.fps-outer {
    position: relative;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    mask-image: linear-gradient(90deg, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, black 85%, transparent 100%);
}

.fps {
    display: flex;
    gap: 7px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 2px;
}

.fps::-webkit-scrollbar {
    display: none;
}

.fp {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 14px;
    border-radius: var(--r-full);
    font-size: .75rem;
    font-weight: 700;
    border: 1px solid var(--gb);
    background: var(--glass);
    color: var(--text-dim);
    cursor: pointer;
    transition: all .2s var(--ease);
    white-space: nowrap;
    font-family: var(--font);
    flex-shrink: 0;
}

.fp:hover {
    border-color: rgba(255, 107, 138, .3);
    color: var(--text-mid);
    background: var(--glass-2);
}

.fp.active {
    background: rgba(255, 107, 138, .12);
    border-color: rgba(255, 107, 138, .38);
    color: var(--rose);
}

/* sort */
.sort-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.sort-lbl {
    font-size: .7rem;
    font-weight: 700;
    color: var(--text-dim);
    white-space: nowrap;
}

#sortSelect {
    background: var(--glass-2);
    border: 1px solid var(--gb);
    border-radius: var(--r-full);
    padding: 7px 14px;
    color: var(--text-mid);
    font-family: var(--font);
    font-size: .75rem;
    font-weight: 700;
    outline: none;
    cursor: pointer;
    transition: border-color .2s;
}

#sortSelect:focus {
    border-color: rgba(255, 107, 138, .35);
}

#sortSelect option {
    background: var(--ink-2);
}

/* result count */
#resultCount {
    font-size: .74rem;
    font-weight: 700;
    color: var(--text-dim);
    white-space: nowrap;
}

/* ═══ MAIN LAYOUT ═══ */
.main-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 24px;
    padding: 32px 0 80px;
    align-items: start;
}

/* ═══ SIDEBAR ═══ */
.sidebar {
    position: sticky;
    top: 142px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sb-block {
    background: var(--glass);
    border: 1px solid var(--gb);
    border-radius: 18px;
    padding: 20px;
    backdrop-filter: blur(14px);
}

.sb-title {
    font-size: .68rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--text-dim);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.sb-title svg {
    width: 13px;
    height: 13px;
}

/* availability toggle */
.sb-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--gb);
}

.sb-toggle-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sb-toggle-lbl {
    font-size: .8rem;
    font-weight: 600;
    color: var(--text-mid);
    display: flex;
    align-items: center;
    gap: 7px;
}

.sb-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.toggle {
    position: relative;
    width: 36px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
}

.toggle input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.toggle-track {
    position: absolute;
    inset: 0;
    background: var(--glass-3);
    border: 1px solid var(--gb);
    border-radius: var(--r-full);
    transition: all .2s;
}

.toggle input:checked~.toggle-track {
    background: rgba(255, 107, 138, .3);
    border-color: rgba(255, 107, 138, .5);
}

.toggle-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 12px;
    height: 12px;
    background: var(--text-dim);
    border-radius: 50%;
    transition: all .22s var(--spring);
}

.toggle input:checked~.toggle-track .toggle-thumb {
    transform: translateX(16px);
    background: var(--rose);
}

/* speciality checkboxes */
.sb-check-row {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 7px 0;
    cursor: pointer;
    border-bottom: 1px solid var(--gb);
}

.sb-check-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sb-check-row input {
    accent-color: var(--rose);
    width: 14px;
    height: 14px;
    cursor: pointer;
    flex-shrink: 0;
}

.sb-check-lbl {
    font-size: .8rem;
    font-weight: 600;
    color: var(--text-mid);
    flex: 1;
}

.sb-check-count {
    font-size: .65rem;
    font-weight: 700;
    color: var(--text-dimmer);
    background: var(--glass-2);
    padding: 2px 7px;
    border-radius: var(--r-full);
}

/* experience range */
.sb-range {
    width: 100%;
    accent-color: var(--rose);
    cursor: pointer;
}

.sb-range-labels {
    display: flex;
    justify-content: space-between;
    font-size: .65rem;
    color: var(--text-dimmer);
    font-weight: 700;
    margin-top: 6px;
}

#expVal {
    color: var(--rose);
    font-weight: 800;
}

/* gender */
.sb-gender {
    display: flex;
    gap: 7px;
}

.sg-btn {
    flex: 1;
    padding: 8px 4px;
    border-radius: 10px;
    border: 1px solid var(--gb);
    background: var(--glass);
    font-family: var(--font);
    font-size: .74rem;
    font-weight: 700;
    color: var(--text-dim);
    cursor: pointer;
    transition: all .2s;
    text-align: center;
}

.sg-btn.active {
    background: rgba(255, 107, 138, .12);
    border-color: rgba(255, 107, 138, .38);
    color: var(--rose);
}

.sg-btn:hover:not(.active) {
    border-color: rgba(255, 107, 138, .2);
    color: var(--text-mid);
}

/* reset */
.sb-reset {
    width: 100%;
    padding: 9px;
    border-radius: var(--r-full);
    border: 1px solid var(--gb);
    background: var(--glass);
    font-family: var(--font);
    font-size: .75rem;
    font-weight: 700;
    color: var(--text-dim);
    cursor: pointer;
    transition: all .2s;
}

.sb-reset:hover {
    border-color: rgba(255, 107, 138, .28);
    color: var(--rose);
    background: rgba(255, 107, 138, .06);
}

/* ═══ CARDS GRID ═══ */
.cards-area {}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

/* ═══ CAREGIVER CARD ═══ */
.cgc {
    position: relative;
    background: var(--glass);
    border: 1px solid var(--gb);
    border-radius: 22px;
    overflow: hidden;
    backdrop-filter: blur(18px);
    transition: transform .38s var(--spring), border-color .3s, box-shadow .38s;
    cursor: pointer;
    animation: cardIn .45s var(--spring) both;
    display: flex;
    flex-direction: column;
}

.cgc:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, .12);
    box-shadow: 0 22px 55px rgba(0, 0, 0, .52), 0 0 0 1px rgba(255, 107, 138, .1);
}

.cgc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--ca, #ff6b8a), transparent);
    opacity: 0;
    transition: opacity .3s;
    z-index: 3;
}

.cgc:hover::before {
    opacity: 1;
}

/* image */
.cgc-img {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--glass-2);
    flex-shrink: 0;
}

.cgc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform .5s var(--spring);
}

.cgc:hover .cgc-img img {
    transform: scale(1.06);
}

.cgc-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, var(--ink) 0%, rgba(2, 8, 23, .5) 55%, transparent);
    pointer-events: none;
}

/* ribbon */
.cgc-ribbon {
    position: absolute;
    top: 12px;
    left: -1px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 3px 11px 3px 9px;
    background: linear-gradient(135deg, var(--ca, #ff6b8a), var(--cb, #ff9f45));
    border-radius: 0 var(--r-full) var(--r-full) 0;
    font-size: .55rem;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: #fff;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .28);
    z-index: 3;
}

.cgc-ribbon svg {
    width: 8px;
    height: 8px;
}

/* avail */
.cgc-avail {
    position: absolute;
    top: 12px;
    right: 11px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 3px 9px;
    border-radius: var(--r-full);
    font-size: .54rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    z-index: 3;
}

.cgc-avail.yes {
    background: rgba(0, 212, 170, .15);
    border: 1px solid rgba(0, 212, 170, .35);
    color: var(--teal);
}

.cgc-avail.busy {
    background: rgba(245, 197, 24, .12);
    border: 1px solid rgba(245, 197, 24, .3);
    color: var(--yellow);
}

.cgc-avail-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
    animation: blink 1.3s infinite;
}

/* placeholder */
.cgc-ph {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-dimmer);
}

.cgc-ph svg {
    width: 44px;
    height: 44px;
    opacity: .22;
}

.cgc-ph span {
    font-size: .6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    opacity: .35;
}

/* body */
.cgc-body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    flex: 1;
}

.cgc-top-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}

.cgc-name {
    font-size: .95rem;
    font-weight: 900;
    color: var(--text-bright);
    letter-spacing: -.01em;
    line-height: 1.2;
}

.cgc-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: .75rem;
    font-weight: 800;
    color: var(--yellow);
    white-space: nowrap;
}

.cgc-rating svg {
    width: 12px;
    height: 12px;
    fill: var(--yellow);
}

.cgc-role {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .04em;
}

.cgc-exp {
    font-size: .7rem;
    color: var(--text-dim);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cgc-exp svg {
    width: 11px;
    height: 11px;
    opacity: .5;
}

/* skills */
.cgc-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.cgcs {
    font-size: .58rem;
    font-weight: 800;
    letter-spacing: .04em;
    padding: 2px 9px;
    border-radius: var(--r-full);
    border: 1px solid;
}

/* certs */
.cgc-certs {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.cgc-cert {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 3px 9px;
    border-radius: 8px;
    background: var(--glass-2);
    border: 1px solid var(--gb);
    font-size: .58rem;
    font-weight: 700;
    color: var(--text-dim);
}

.cgc-cert svg {
    width: 9px;
    height: 9px;
    color: var(--yellow);
}

/* stats */
.cgc-stats {
    display: flex;
    border: 1px solid var(--gb);
    border-radius: 11px;
    overflow: hidden;
}

.cgc-si {
    flex: 1;
    text-align: center;
    padding: 7px 3px;
    border-right: 1px solid var(--gb);
}

.cgc-si:last-child {
    border-right: none;
}

.cgc-sn {
    display: block;
    font-size: .83rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 2px;
}

.cgc-sl {
    display: block;
    font-size: .52rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--text-dimmer);
}

/* languages */
.cgc-langs {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.cgc-lang {
    font-size: .6rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--r-full);
    background: var(--glass-2);
    border: 1px solid var(--gb);
    color: var(--text-dim);
}

/* gender tag */
.cgc-gender {
    font-size: .6rem;
    font-weight: 800;
    padding: 2px 9px;
    border-radius: var(--r-full);
    background: var(--glass-2);
    border: 1px solid var(--gb);
    color: var(--text-dim);
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* btn */
.cgc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px;
    border-radius: var(--r-full);
    font-family: var(--font);
    font-size: .77rem;
    font-weight: 800;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--ca, #ff6b8a), var(--cb, #ff9f45));
    color: #fff;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .18);
    transition: transform .2s, box-shadow .2s;
    text-decoration: none;
    margin-top: auto;
}

.cgc-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .38);
}

.cgc-btn svg {
    width: 13px;
    height: 13px;
}

/* color themes */
.cgc[data-t="rose"] {
    --ca: #ff6b8a;
    --cb: #ff9f45;
}

.cgc[data-t="teal"] {
    --ca: #00d4aa;
    --cb: #00c2ff;
}

.cgc[data-t="lavender"] {
    --ca: #a78bfa;
    --cb: #60a5fa;
}

.cgc[data-t="amber"] {
    --ca: #f59e0b;
    --cb: #ef4444;
}

.cgc[data-t="cyan"] {
    --ca: #00c2ff;
    --cb: #00d4aa;
}

.cgc[data-t="pink"] {
    --ca: #ec4899;
    --cb: #a78bfa;
}

.cgc[data-t="rose"] .cgc-role,
.cgc[data-t="rose"] .cgc-sn {
    color: #ff8a9e;
}

.cgc[data-t="teal"] .cgc-role,
.cgc[data-t="teal"] .cgc-sn {
    color: var(--teal);
}

.cgc[data-t="lavender"] .cgc-role,
.cgc[data-t="lavender"] .cgc-sn {
    color: #c4b5fd;
}

.cgc[data-t="amber"] .cgc-role,
.cgc[data-t="amber"] .cgc-sn {
    color: #fbbf24;
}

.cgc[data-t="cyan"] .cgc-role,
.cgc[data-t="cyan"] .cgc-sn {
    color: var(--cyan);
}

.cgc[data-t="pink"] .cgc-role,
.cgc[data-t="pink"] .cgc-sn {
    color: #f472b6;
}

.cgc[data-t="rose"] .cgcs {
    background: rgba(255, 107, 138, .1);
    border-color: rgba(255, 107, 138, .28);
    color: #ff8a9e;
}

.cgc[data-t="teal"] .cgcs {
    background: rgba(0, 212, 170, .1);
    border-color: rgba(0, 212, 170, .28);
    color: var(--teal);
}

.cgc[data-t="lavender"] .cgcs {
    background: rgba(167, 139, 250, .1);
    border-color: rgba(167, 139, 250, .28);
    color: #c4b5fd;
}

.cgc[data-t="amber"] .cgcs {
    background: rgba(245, 158, 11, .1);
    border-color: rgba(245, 158, 11, .28);
    color: #fbbf24;
}

.cgc[data-t="cyan"] .cgcs {
    background: rgba(0, 194, 255, .1);
    border-color: rgba(0, 194, 255, .28);
    color: var(--cyan);
}

.cgc[data-t="pink"] .cgcs {
    background: rgba(236, 72, 153, .1);
    border-color: rgba(236, 72, 153, .28);
    color: #f472b6;
}

/* ═══ EMPTY STATE ═══ */
.empty {
    grid-column: 1/-1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 72px 24px;
    text-align: center;
}

.empty svg {
    width: 52px;
    height: 52px;
    color: var(--text-dimmer);
}

.empty h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-mid);
}

.empty p {
    font-size: .84rem;
    color: var(--text-dim);
}

.empty button {
    margin-top: 6px;
    padding: 9px 22px;
    border-radius: var(--r-full);
    border: 1px solid rgba(255, 107, 138, .3);
    background: rgba(255, 107, 138, .08);
    color: var(--rose);
    font-family: var(--font);
    font-size: .78rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
}

.empty button:hover {
    background: rgba(255, 107, 138, .14);
}

/* ═══ CTA BAND ═══ */
.cta-band {
    padding: 68px 0 80px;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 138, .08), rgba(255, 159, 69, .04));
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-inner h2 {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 400;
    letter-spacing: -.01em;
    margin-bottom: 10px;
}

.cta-inner h2 em {
    font-style: italic;
    background: linear-gradient(135deg, #ff6b8a, #ff9f45);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-inner p {
    color: var(--text-mid);
    max-width: 460px;
    margin: 0 auto 28px;
    font-size: .93rem;
    line-height: 1.7;
}

.cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-rose {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font);
    font-size: .86rem;
    font-weight: 800;
    padding: 12px 26px;
    border-radius: var(--r-full);
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #ff6b8a, #ff9f45);
    color: #fff;
    box-shadow: 0 0 26px rgba(255, 107, 138, .32), inset 0 1px 0 rgba(255, 255, 255, .18);
    transition: all .22s var(--ease);
    text-decoration: none;
}

.btn-rose:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 44px rgba(255, 107, 138, .5);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font);
    font-size: .84rem;
    font-weight: 700;
    padding: 11px 22px;
    border-radius: var(--r-full);
    cursor: pointer;
    background: var(--glass-2);
    color: var(--text-mid);
    border: 1px solid var(--gb);
    backdrop-filter: blur(10px);
    transition: all .22s var(--ease);
    text-decoration: none;
}

.btn-ghost:hover {
    background: var(--glass-3);
    border-color: rgba(255, 107, 138, .28);
    color: var(--text-bright);
}

.btn-rose svg,
.btn-ghost svg {
    width: 14px;
    height: 14px;
}

/* ═══ FOOTER STRIP ═══ */
.footer {
    border-top: 1px solid var(--gb);
    padding: 20px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-logo {
    font-size: .9rem;
    font-weight: 800;
    color: var(--text-mid);
}

.footer-copy {
    font-size: .72rem;
    color: var(--text-dimmer);
}

/* ═══ MOBILE SIDEBAR TOGGLE ═══ */
.sidebar-toggle {
    display: none;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border-radius: var(--r-full);
    border: 1px solid var(--gb);
    background: var(--glass-2);
    color: var(--text-mid);
    font-family: var(--font);
    font-size: .78rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
}

.sidebar-toggle:hover {
    border-color: rgba(255, 107, 138, .3);
    color: var(--rose);
}

.sidebar-toggle svg {
    width: 14px;
    height: 14px;
}

.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(2, 8, 23, .7);
    z-index: 300;
    backdrop-filter: blur(4px);
}

.sidebar-overlay.open {
    display: block;
}

.sidebar.mobile-open {
    transform: translateX(0) !important;
}

/* ═══ RESPONSIVE ═══ */
@media(max-width:1100px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:900px) {
    .main-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 280px;
        z-index: 400;
        transform: translateX(-100%);
        transition: transform .35s var(--spring);
        overflow-y: auto;
        background: rgba(5, 15, 30, .97);
        border-right: 1px solid var(--gb);
        border-radius: 0;
        padding: 24px 20px;
        gap: 16px;
    }

    .sidebar-toggle {
        display: flex;
    }

    .filter-inner {
        gap: 8px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-badges {
        flex-direction: row;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .hero-badge {
        flex: 1;
        min-width: 160px;
    }
}

@media(max-width:640px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .cgc-img {
        height: 160px;
    }

    .fps {
        gap: 5px;
    }

    .fp {
        padding: 6px 11px;
        font-size: .7rem;
    }

    .sort-wrap {
        display: none;
    }

    #resultCount {
        font-size: .68rem;
    }
}

@media(max-width:420px) {
    .cards-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
        margin: 0 auto;
    }

    .cgc-img {
        height: 200px;
    }
}
