        :root {
            --p: #7D94FE;
            --p2: #5b75f5;
            --p3: #a8b8ff;
            --px: #eef1ff;
            --bg: #F0F4FF;
            --txt: #45536d;
            --tl: #7a8ba8;
            --tx: #b0bdd0;
            --cv: #FFFFFF;
            --dk: #1e2d4a;
            --dk2: #2c3e5a;

            /* Area accent colors */
            --it: #eff6ff;
            --it-a: #3b82f6;
            --sal: #f0fdf4;
            --sal-a: #16a34a;
            --ing: #fff7ed;
            --ing-a: #ea580c;
            --cie: #fefce8;
            --cie-a: #ca8a04;
            --edu: #f5f3ff;
            --edu-a: #7c3aed;
            --der: #f0f9ff;
            --der-a: #0284c7;
            --neg: #fffbeb;
            --neg-a: #d97706;
            --art: #fdf4ff;
            --art-a: #a21caf;
            --com: #fff1f2;
            --com-a: #e11d48;
            --ofi: #fafaf9;
            --ofi-a: #57534e;
            --log: #f0fdfa;
            --log-a: #0d9488;
            --seg: #fef2f2;
            --seg-a: #dc2626;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background: var(--cv);
            color: var(--txt);
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        .ub {
            font-family: 'Unbounded', sans-serif;
        }

        /* ── HEADER ────────────────────────────── */
        .hdr {
            position: fixed;
            inset: 0 0 auto 0;
            z-index: 200;
            background: rgba(255, 255, 255, 0.94);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(125, 148, 254, 0.1);
            transition: box-shadow .3s;
        }

        .hdr.s {
            box-shadow: 0 2px 28px rgba(125, 148, 254, .12);
        }

        .hdr-in {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            height: 66px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo-box {
            height: 32px;
            padding: 0 14px;
            background: var(--p);
            border-radius: 8px;
            display: flex;
            align-items: center;
            color: #fff;
            font-family: 'Unbounded', sans-serif;
            font-size: 9px;
            font-weight: 700;
        }

        .nav-ul {
            display: flex;
            align-items: center;
            gap: 22px;
            list-style: none;
        }

        .nav-ul a {
            color: var(--txt);
            text-decoration: none;
            font-weight: 600;
            font-size: 13.5px;
            transition: color .2s;
        }

        .nav-ul a:hover,
        .nav-ul a.cur {
            color: var(--p);
        }

        .nav-ul .lsep {
            border-left: 1px solid #e2e8f0;
            padding-left: 16px;
        }

        .nav-ul .lng {
            font-size: 12px;
            color: var(--tl);
            font-weight: 500;
        }

        .btn-p {
            background: var(--p);
            color: #fff;
            padding: 10px 22px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 13px;
            border: none;
            cursor: pointer;
            transition: background .2s, transform .15s, box-shadow .2s;
            box-shadow: 0 4px 14px rgba(125, 148, 254, .35);
            text-decoration: none;
            display: inline-block;
            white-space: nowrap;
        }

        .btn-p:hover {
            background: var(--p2);
            transform: translateY(-1px);
        }

        @media (max-width: 780px) {
            .nav-ul {
                display: none;
            }
        }

        /* ── BREADCRUMB ────────────────────────── */
        .bc {
            background: var(--bg);
            border-bottom: 1px solid rgba(125, 148, 254, .08);
        }

        .bc-in {
            max-width: 1200px;
            margin: 0 auto;
            padding: 10px 24px;
            display: flex;
            align-items: center;
            gap: 7px;
            font-size: 12px;
            color: var(--tx);
        }

        .bc-in a {
            color: var(--tl);
            text-decoration: none;
            font-weight: 500;
        }

        .bc-in a:hover {
            color: var(--p);
        }

        .bc-sep {
            color: var(--tx);
            font-size: 10px;
        }

        /* ── SHARED ────────────────────────────── */
        .w {
            max-width: 1200px;
            margin: 0 auto;
        }

        .lbl {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--p);
            margin-bottom: 10px;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .st {
            font-size: clamp(22px, 3vw, 36px);
            letter-spacing: -.8px;
            color: var(--dk);
            margin-bottom: 14px;
            line-height: 1.18;
        }

        .sd {
            font-size: 15px;
            color: var(--tl);
            line-height: 1.7;
        }

        .sh {
            text-align: center;
            margin-bottom: 52px;
        }

        .sh .sd {
            max-width: 580px;
            margin: 0 auto;
        }

        .fu {
            opacity: 0;
            transform: translateY(18px);
            transition: opacity .45s ease, transform .45s ease;
        }

        .fu.vi {
            opacity: 1;
            transform: translateY(0);
        }

        /* ── GEO ANSWER ────────────────────────── */
        .geo-answer {
            font-size: 14px;
            color: var(--tl);
            line-height: 1.65;
            background: var(--px);
            border-left: 3px solid var(--p);
            padding: 11px 15px;
            border-radius: 0 9px 9px 0;
            max-width: 680px;
            margin-bottom: 22px;
        }

        /* ── HERO ──────────────────────────────── */
        .hero {
            padding: 106px 24px 64px;
            background: linear-gradient(170deg, #e8ecff 0%, #f5f7ff 50%, #fff 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -160px;
            right: -160px;
            width: 560px;
            height: 560px;
            background: radial-gradient(circle, rgba(125, 148, 254, .1) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-in {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .badge-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;
            margin-bottom: 22px;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: white;
            border: 1px solid rgba(125, 148, 254, .25);
            padding: 5px 13px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
            color: var(--p2);
            box-shadow: 0 2px 8px rgba(125, 148, 254, .09);
        }

        .upd {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #ecfdf5;
            border: 1px solid #a7f3d0;
            padding: 5px 12px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
            color: #047857;
        }

        h1.ph {
            font-size: clamp(26px, 4vw, 52px);
            line-height: 1.08;
            letter-spacing: -1.6px;
            color: var(--dk);
            margin-bottom: 18px;
        }

        h1.ph .acc {
            background: linear-gradient(130deg, var(--p) 0%, #a855f7 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-sub {
            font-size: 15.5px;
            color: var(--txt);
            line-height: 1.7;
            max-width: 620px;
            margin-bottom: 28px;
        }

        .cta-row {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            align-items: center;
        }

        .btn-hero {
            background: var(--p);
            color: #fff;
            padding: 15px 28px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 15px;
            font-family: 'Unbounded', sans-serif;
            border: none;
            cursor: pointer;
            transition: all .2s;
            box-shadow: 0 8px 22px rgba(125, 148, 254, .4);
            white-space: nowrap;
        }

        .btn-hero:hover {
            background: var(--p2);
            transform: translateY(-2px);
        }

        .btn-ghost {
            background: transparent;
            color: var(--p);
            border: 2px solid rgba(125, 148, 254, .4);
            padding: 13px 24px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
            transition: all .2s;
            white-space: nowrap;
        }

        .btn-ghost:hover {
            border-color: var(--p);
            background: var(--px);
        }

        /* stats row */
        .stats-row {
            display: flex;
            flex-wrap: wrap;
            gap: 28px;
            margin-top: 32px;
            padding-top: 28px;
            border-top: 1px solid rgba(125, 148, 254, .1);
        }

        .stat {
            display: flex;
            flex-direction: column;
        }

        .stat strong {
            font-family: 'Unbounded', sans-serif;
            font-size: 22px;
            color: var(--dk);
            letter-spacing: -.5px;
        }

        .stat span {
            font-size: 12px;
            color: var(--tl);
        }

        /* ── FILTER NAV ─────────────────────────── */
        .fnav {
            position: sticky;
            top: 66px;
            z-index: 100;
            background: rgba(255, 255, 255, .96);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(125, 148, 254, .1);
            box-shadow: 0 2px 12px rgba(125, 148, 254, .06);
        }

        .fnav-in {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            gap: 4px;
            overflow-x: auto;
            scrollbar-width: none;
            height: 54px;
        }

        .fnav-in::-webkit-scrollbar {
            display: none;
        }

        .fa {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 7px 14px;
            border-radius: 50px;
            font-size: 12.5px;
            font-weight: 600;
            color: var(--tl);
            text-decoration: none;
            transition: all .2s;
            white-space: nowrap;
            border: 1px solid transparent;
        }

        .fa:hover {
            color: var(--p);
            background: var(--px);
            border-color: rgba(125, 148, 254, .2);
        }

        .fa.act {
            color: var(--p2);
            background: var(--px);
            border-color: rgba(125, 148, 254, .35);
        }

        .fa-ico {
            font-size: 14px;
        }

        .fnav-sep {
            width: 1px;
            height: 22px;
            background: rgba(125, 148, 254, .1);
            flex-shrink: 0;
            margin: 0 4px;
        }

        .fa.test-cta {
            background: var(--p);
            color: #fff;
            border-color: var(--p);
            margin-left: auto;
        }

        .fa.test-cta:hover {
            background: var(--p2);
            color: #fff;
        }

        /* ── INTRO GRID ─────────────────────────── */
        .intro-sec {
            padding: 64px 24px;
            background: var(--bg);
        }

        .ig {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 56px;
            align-items: center;
        }

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

        .how-it-works {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .hw {
            display: flex;
            gap: 16px;
            padding: 16px;
            border-radius: 14px;
            transition: background .2s;
            position: relative;
        }

        .hw:not(:last-child)::after {
            content: '';
            position: absolute;
            left: 28px;
            bottom: 0;
            width: 1px;
            height: 100%;
            background: rgba(125, 148, 254, .12);
            transform: translateY(100%);
        }

        .hw:hover {
            background: white;
        }

        .hw-n {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--p);
            color: #fff;
            font-weight: 800;
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-family: 'Unbounded', sans-serif;
            z-index: 1;
        }

        .hw-t {
            font-size: 14.5px;
            font-weight: 700;
            color: var(--dk);
            margin-bottom: 3px;
        }

        .hw-d {
            font-size: 12.5px;
            color: var(--tl);
            line-height: 1.6;
        }

        /* eeat card */
        .eeat {
            background: var(--cv);
            border: 1px solid rgba(125, 148, 254, .18);
            border-radius: 20px;
            padding: 20px;
            display: flex;
            gap: 14px;
            align-items: flex-start;
            box-shadow: 0 4px 18px rgba(125, 148, 254, .07);
        }

        .ea {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: var(--bg);
            border: 2px solid var(--px);
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 19px;
        }

        .en {
            font-size: 14px;
            font-weight: 700;
            color: var(--dk);
            margin-bottom: 2px;
        }

        .en span {
            color: var(--p);
        }

        .ec {
            font-size: 10.5px;
            color: var(--tx);
            margin-bottom: 6px;
        }

        .eq {
            font-size: 13px;
            color: var(--txt);
            line-height: 1.6;
            font-style: italic;
        }

        /* ── AREA SECTION ───────────────────────── */
        .area-sec {
            padding: 72px 24px;
            scroll-margin-top: 120px;
            /* account for sticky header + filter nav */
        }

        .area-sec:nth-child(even) {
            background: var(--bg);
        }

        .area-sec:nth-child(odd) {
            background: var(--cv);
        }

        .area-header {
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
            justify-content: space-between;
            gap: 20px;
            margin-bottom: 36px;
        }

        .area-meta {
            flex: 1;
            min-width: 280px;
        }

        .area-icon-wrap {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
        }

        .area-icon {
            width: 54px;
            height: 54px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            flex-shrink: 0;
        }

        .area-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 7px;
        }

        .ab {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 4px 11px;
            border-radius: 50px;
            font-size: 11px;
            font-weight: 700;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        h2.area-title {
            font-size: clamp(20px, 2.8vw, 32px);
            letter-spacing: -.6px;
            color: var(--dk);
            margin-bottom: 10px;
            line-height: 1.15;
        }

        .area-desc {
            font-size: 14px;
            color: var(--tl);
            line-height: 1.75;
            max-width: 640px;
        }

        .area-cta-box {
            flex-shrink: 0;
            background: var(--px);
            border-radius: 18px;
            padding: 18px 20px;
            text-align: center;
            min-width: 200px;
        }

        .acb-label {
            font-size: 11px;
            color: var(--tl);
            margin-bottom: 8px;
        }

        .acb-score {
            font-family: 'Unbounded', sans-serif;
            font-size: 28px;
            font-weight: 800;
            color: var(--p);
            line-height: 1;
            margin-bottom: 8px;
        }

        .acb-sub {
            font-size: 11px;
            color: var(--tx);
            margin-bottom: 12px;
        }

        .acb-btn {
            display: block;
            background: var(--p);
            color: #fff;
            padding: 9px 16px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 700;
            text-decoration: none;
            transition: background .2s;
        }

        .acb-btn:hover {
            background: var(--p2);
        }

        /* career grid */
        .cg {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
            gap: 14px;
        }

        .cc {
            background: var(--cv);
            border: 1px solid rgba(0, 0, 0, .06);
            border-radius: 16px;
            padding: 18px;
            transition: all .22s;
            position: relative;
            overflow: hidden;
        }

        .cc::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            opacity: 0;
            transition: opacity .2s;
        }

        .cc:hover {
            border-color: rgba(125, 148, 254, .3);
            box-shadow: 0 8px 24px rgba(125, 148, 254, .1);
            transform: translateY(-2px);
        }

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

        .cc-name {
            font-size: 14px;
            font-weight: 700;
            color: var(--dk);
            margin-bottom: 6px;
            line-height: 1.3;
            font-family: 'Unbounded', sans-serif;
        }

        .cc-dur {
            font-size: 11.5px;
            color: var(--tl);
            margin-bottom: 10px;
        }

        .cc-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            flex-wrap: wrap;
        }

        .cc-sal {
            font-size: 12.5px;
            font-weight: 700;
            color: var(--dk);
        }

        .cc-sal small {
            font-size: 10.5px;
            font-weight: 400;
            color: var(--tx);
            display: block;
        }

        .dem-pill {
            font-size: 10.5px;
            font-weight: 700;
            padding: 3px 9px;
            border-radius: 50px;
        }

        .dem-hi {
            background: #dcfce7;
            color: #166534;
        }

        .dem-med {
            background: #fef9c3;
            color: #854d0e;
        }

        .dem-alt {
            background: #fee2e2;
            color: #991b1b;
        }

        .dem-rise {
            background: #dbeafe;
            color: #1e40af;
        }

        /* 2026 trend row */
        .trend-row {
            margin-top: 28px;
            padding: 16px 18px;
            background: rgba(125, 148, 254, .06);
            border-radius: 14px;
            border: 1px solid rgba(125, 148, 254, .12);
        }

        .trend-label {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--p);
            margin-bottom: 8px;
        }

        .trend-text {
            font-size: 13px;
            color: var(--txt);
            line-height: 1.7;
        }

        /* mini CTA within section */
        .area-mini-cta {
            margin-top: 28px;
            padding: 20px 22px;
            background: var(--dk);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 14px;
        }

        .amc-txt {
            font-size: 13.5px;
            color: rgba(255, 255, 255, .7);
            flex: 1;
            min-width: 200px;
        }

        .amc-txt strong {
            color: #fff;
            display: block;
            font-size: 15px;
            margin-bottom: 2px;
        }

        .amc-btn {
            background: var(--p);
            color: #fff;
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 13px;
            text-decoration: none;
            transition: all .2s;
            white-space: nowrap;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .amc-btn:hover {
            background: var(--p2);
            transform: translateY(-1px);
        }

        /* ── COMPARISON TABLE ───────────────────── */
        .comp-sec {
            padding: 72px 24px;
            background: var(--dk);
        }

        .comp-wrap {
            overflow-x: auto;
            margin-top: 36px;
        }

        table.comp {
            width: 100%;
            border-collapse: collapse;
            font-size: 13px;
            color: rgba(255, 255, 255, .75);
        }

        table.comp th {
            text-align: left;
            padding: 11px 16px;
            font-size: 10.5px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .38);
            border-bottom: 1px solid rgba(255, 255, 255, .08);
        }

        table.comp td {
            padding: 13px 16px;
            border-bottom: 1px solid rgba(255, 255, 255, .05);
            vertical-align: middle;
        }

        table.comp tr:last-child td {
            border-bottom: none;
        }

        table.comp tr:nth-child(odd) td {
            background: rgba(255, 255, 255, .02);
        }

        .hl-row td {
            background: rgba(125, 148, 254, .12) !important;
            color: #fff;
        }

        .chk {
            color: #4ade80;
        }

        .x {
            color: #f87171;
        }

        .tag-new {
            background: var(--p);
            color: #fff;
            font-size: 9.5px;
            font-weight: 700;
            padding: 2px 7px;
            border-radius: 50px;
            margin-left: 5px;
        }

        /* ── FAQ ────────────────────────────────── */
        .faq-sec {
            padding: 72px 24px;
            background: var(--bg);
        }

        details.fq {
            background: var(--cv);
            border: 1px solid rgba(125, 148, 254, .1);
            border-radius: 14px;
            overflow: hidden;
            transition: border-color .2s;
        }

        details.fq[open] {
            border-color: rgba(125, 148, 254, .35);
        }

        details.fq summary {
            padding: 18px 22px;
            font-weight: 700;
            font-size: 14.5px;
            color: var(--dk);
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            user-select: none;
        }

        details.fq summary:hover {
            color: var(--p);
        }

        details.fq summary::after {
            content: '▼';
            font-size: 10px;
            color: var(--tx);
            flex-shrink: 0;
            transition: transform .2s;
        }

        details.fq[open] summary::after {
            transform: rotate(180deg);
        }

        details.fq>div {
            padding: 0 22px 18px;
            font-size: 13.5px;
            color: var(--txt);
            line-height: 1.75;
        }

        /* ── FINAL CTA ──────────────────────────── */
        .final-cta {
            padding: 80px 24px;
            background: linear-gradient(160deg, var(--px) 0%, #f3e8ff 100%);
            text-align: center;
        }

        .fc-t {
            font-size: clamp(22px, 3.5vw, 40px);
            color: var(--dk);
            margin-bottom: 12px;
            letter-spacing: -.9px;
        }

        .fc-d {
            font-size: 15px;
            color: var(--tl);
            max-width: 540px;
            margin: 0 auto 32px;
            line-height: 1.7;
        }

        .fc-row {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            justify-content: center;
            align-items: center;
        }

        .sb {
            height: 48px;
            padding: 0 16px;
            background: var(--dk);
            border-radius: 11px;
            display: flex;
            align-items: center;
            gap: 7px;
            text-decoration: none;
            transition: all .2s;
        }

        .sb:hover {
            background: var(--dk2);
            transform: translateY(-1px);
        }

        .sbt span:first-child {
            font-size: 8px;
            color: rgba(255, 255, 255, .5);
            display: block;
        }

        .sbt span:last-child {
            font-size: 12px;
            color: #fff;
            font-weight: 700;
        }

        .sb-ico {
            font-size: 18px;
            color: #fff;
        }

        /* ── FOOTER ─────────────────────────────── */
        footer {
            background: var(--dk);
            color: #fff;
            padding: 52px 24px 24px;
        }

        .ft-in {
            max-width: 1200px;
            margin: 0 auto;
        }

        .ft-g {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        @media (max-width:780px) {
            .ft-g {
                grid-template-columns: 1fr;
                gap: 22px;
            }
        }

        .ft-lb {
            height: 30px;
            padding: 0 14px;
            width: fit-content;
            background: var(--p);
            border-radius: 7px;
            display: flex;
            align-items: center;
            font-family: 'Unbounded', sans-serif;
            font-size: 8.5px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
        }

        .ft-d {
            font-size: 12.5px;
            color: rgba(255, 255, 255, .4);
            line-height: 1.7;
            max-width: 260px;
            margin-bottom: 10px;
        }

        .ft-ee {
            font-size: 11px;
            color: rgba(255, 255, 255, .28);
        }

        .ft-ee strong {
            color: rgba(255, 255, 255, .5);
        }

        .ft-ct {
            font-size: 10.5px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .3);
            margin-bottom: 14px;
        }

        .ft-ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 9px;
        }

        .ft-ul a {
            font-size: 13px;
            color: rgba(255, 255, 255, .45);
            text-decoration: none;
            transition: color .2s;
        }

        .ft-ul a:hover {
            color: #fff;
        }

        .ft-bt {
            border-top: 1px solid rgba(255, 255, 255, .07);
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
        }

        .ft-cp {
            font-size: 11px;
            color: rgba(255, 255, 255, .25);
        }

        .ft-sb {
            display: flex;
            gap: 7px;
        }

        .ft-sbtn {
            height: 32px;
            padding: 0 12px;
            background: rgba(255, 255, 255, .06);
            border-radius: 7px;
            display: flex;
            align-items: center;
            gap: 5px;
            text-decoration: none;
            font-size: 11px;
            color: rgba(255, 255, 255, .4);
            transition: all .2s;
        }

        .ft-sbtn:hover {
            background: rgba(255, 255, 255, .12);
            color: #fff;
        }
