@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;700;900&family=Manrope:wght@400;500;600;700&display=swap');
/* ── SHARED (bigopt.css inlined) ── */
/* ============================================================
   bigopt.css — Shared styles for BigOpt services & about pages
   ============================================================ */
.telegram {
    background: var(--gray);
    padding: 80px 24px;
}

.telegram-inner {
    max-width: 920px;
    margin: 0 auto;
    background: var(--navy);
    border-radius: 24px;
    padding: 56px 52px;
    display: grid;
    grid-template-columns:auto 1fr;
    gap: 44px;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(10, 22, 40, .25);
}

@media (max-width: 680px) {
    .telegram-inner {
        grid-template-columns:1fr;
        text-align: center;
        padding: 40px 28px;
        gap: 28px;
    }
}

.telegram-inner::before {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(18, 85, 204, .25) 0%, transparent 70%);
}

.tg-logo {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: linear-gradient(135deg, #229ED9, #1a8dc1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 30px rgba(34, 158, 217, .4);
}

.btn-tg {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #229ED9, #1a8dc1);
    color: white;
    padding: 14px 30px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 22px rgba(34, 158, 217, .4);
    transition: transform .15s, box-shadow .15s;
}

.btn-tg:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(34, 158, 217, .5);
}

/* ── SHARED (bigopt.css inlined) ── */
/* ============================================================
   bigopt.css — Shared styles for BigOpt services & about pages
   ============================================================ */

/* ── TOKENS ── */
:root {
    --navy: #0a1628;
    --navy2: #0f2040;
    --blue: #1255cc;
    --blue-light: #1e6ef5;
    --green: #00c98d;
    --green-dark: #00a874;
    --gold: #f5a623;
    --red: #e84040;
    --white: #ffffff;
    --gray: #f0f4fb;
    --gray2: #dde5f4;
    --text: #1a2540;
    --muted: #6b7fa3;
    --border: rgba(18, 85, 204, 0.15);
    --shadow: 0 8px 40px rgba(10, 22, 40, 0.12);
    --shadow-hover: 0 20px 60px rgba(10, 22, 40, 0.22);
    --r: 18px;
}

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

body {
    font-family: 'Manrope', sans-serif;
    background: #f7faff;
    color: var(--text);
    overflow-x: hidden;
}

/* ── TYPOGRAPHY HELPERS ── */
.section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(20px, 3.5vw, 36px);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.25;
}

.section-title.light {
    color: white;
}

.section-sub {
    font-size: 15.5px;
    color: var(--muted);
    line-height: 1.75;
    max-width: 580px;
    margin-top: 12px;
}

.section-sub.light {
    color: rgba(255, 255, 255, .55);
}

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ── SHARED DARK FEATURE-GRID (mkt-features pattern) ── */
.mkt-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 480px) {
    .mkt-features {
        grid-template-columns: 1fr;
    }
}

.mkt-feature {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    transition: background .2s, border-color .2s;
}

.mkt-feature:hover {
    background: rgba(255, 255, 255, .09);
    border-color: rgba(0, 201, 141, .25);
}

.mkt-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 1px;
}

.mkt-feature strong {
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    color: white;
    margin-bottom: 2px;
}

.mkt-feature span {
    font-size: 11.5px;
    color: rgba(255, 255, 255, .4);
    line-height: 1.5;
}

/* ── TAG / BADGE ── */
.tag-trusted {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 201, 141, .1);
    border: 1px solid rgba(0, 201, 141, .3);
    color: var(--green-dark);
    font-size: 11.5px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.card.featured .tag-trusted {
    background: rgba(0, 201, 141, .2);
    border-color: rgba(0, 201, 141, .5);
    color: var(--green);
}

/* ── PAGE-SPECIFIC ── */
html {
    scroll-behavior: smooth;
}

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

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

/* ── NAV ── */

.nav-logo svg {
    height: 32px;
    width: auto;
}

@media (max-width: 860px) {
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    background: var(--navy);
    padding: 0;
    display: grid;
    grid-template-rows:1fr auto;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.hero::before {
    display: none;
}

/* suppress shared gradient — we use .hero-bg div */
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 90% 70% at 50% -15%, rgba(18, 85, 204, .6) 0%, transparent 65%), radial-gradient(ellipse 50% 50% at 95% 85%, rgba(0, 201, 141, .12) 0%, transparent 60%), radial-gradient(ellipse 40% 40% at -5% 60%, rgba(18, 85, 204, .1) 0%, transparent 60%);
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .13;
    animation: drift 18s ease-in-out infinite;
    pointer-events: none;
}

.orb1 {
    width: 540px;
    height: 540px;
    background: var(--blue);
    top: -200px;
    left: -120px;
}

.orb2 {
    width: 380px;
    height: 380px;
    background: var(--green);
    bottom: -80px;
    right: -60px;
    animation-delay: -6s;
}

.orb3 {
    width: 260px;
    height: 260px;
    background: var(--blue-light);
    top: 35%;
    left: 58%;
    animation-delay: -12s;
}

@keyframes drift {
    0%, 100% {
        transform: translate(0, 0);
    }
    33% {
        transform: translate(32px, -22px);
    }
    66% {
        transform: translate(-20px, 28px);
    }
}

.hero-inner {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1220px;
    margin: 0 auto;
    padding: 110px 40px 72px;
    position: relative;
    z-index: 1;
}

@media (max-width: 900px) {
    .hero {
        min-height: auto;
    }

    .hero-inner {
        grid-template-columns:1fr;
        gap: 40px;
        padding: 80px 20px 56px;
        text-align: center;
    }

    .hero-right {
        display: none;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 201, 141, .12);
    border: 1px solid rgba(0, 201, 141, .35);
    color: var(--green);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
    position: relative;
}

.hero-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 2s ease infinite;
    flex-shrink: 0;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: .4;
        transform: scale(1.5);
    }
}

.hero h1 {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(34px, 5.5vw, 62px);
    font-weight: 900;
    color: white;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin: 0 0 22px;
    max-width: none;
}

.hero h1 .accent {
    background: linear-gradient(90deg, var(--green) 0%, #00e0a8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, .62);
    line-height: 1.78;
    max-width: 520px;
    margin-bottom: 0;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 36px;
    justify-content: flex-start;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: white;
    padding: 17px 36px;
    border-radius: 13px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 8px 28px rgba(0, 201, 141, .4);
    transition: transform .15s, box-shadow .15s;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0, 201, 141, .5);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .08);
    color: white;
    border: 1px solid rgba(255, 255, 255, .2);
    padding: 16px 34px;
    border-radius: 13px;
    font-size: 15px;
    font-weight: 700;
    transition: background .15s, border-color .15s;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .4);
}

/* floating cards */
.hero-right {
    position: relative;
    height: 500px;
}

.hc {
    position: absolute;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 22px;
    backdrop-filter: blur(12px);
    padding: 26px 28px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .2);
    transition: transform .3s ease;
}

.hc:hover {
    transform: translateY(-4px) rotate(0deg) !important;
}

.hc-a {
    top: 0;
    right: 20px;
    width: 310px;
    transform: rotate(1.5deg);
}

.hc-b {
    top: 155px;
    right: 80px;
    width: 290px;
    transform: rotate(-1.8deg);
    background: rgba(0, 201, 141, .08);
    border-color: rgba(0, 201, 141, .2);
}

.hc-c {
    bottom: 0;
    right: 0;
    width: 270px;
    transform: rotate(1deg);
    background: rgba(18, 85, 204, .08);
    border-color: rgba(18, 85, 204, .2);
}

.hc-title {
    font-size: 13px;
    font-weight: 700;
    color: white;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    font-size: 12.5px;
}

.hc-row:last-of-type {
    border: none;
}

.hc-row .l {
    color: rgba(255, 255, 255, .42);
}

.hc-row .v {
    font-weight: 700;
    color: white;
}

.v-g {
    color: var(--green) !important;
}

.v-b {
    color: #7eb8ff !important;
}

.hc-pill {
    margin-top: 12px;
    border-radius: 9px;
    padding: 9px 12px;
    font-size: 11.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hp-g {
    background: rgba(0, 201, 141, .12);
    color: rgba(255, 255, 255, .65);
}

.hp-b {
    background: rgba(18, 85, 204, .12);
    color: rgba(255, 255, 255, .6);
}

.hp-o {
    background: rgba(245, 166, 35, .1);
    color: rgba(255, 255, 255, .6);
}

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

.hd-g {
    background: var(--green);
}

.hd-b {
    background: var(--blue-light);
}

.hd-o {
    background: var(--gold);
}

/* stats bar */
.statsbar {
    display: flex;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, .08);
    flex-wrap: wrap;
}

.hstat {
    flex: 1;
    min-width: 160px;
    padding: 26px 32px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, .07);
    transition: background .2s;
}

.hstat:last-child {
    border-right: none;
}

.hstat:hover {
    background: rgba(255, 255, 255, .04);
}

.hstat strong {
    display: block;
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 900;
    color: white;
    line-height: 1;
}

.hstat span {
    font-size: 12px;
    color: rgba(255, 255, 255, .42);
    margin-top: 6px;
    display: block;
}

/* ── FOR WHOM ── */
.forwhom {
    padding: 96px 24px;
    background: white;
}

.forwhom-inner {
    max-width: 1160px;
    margin: 0 auto;
}

.forwhom-header {
    text-align: center;
    margin-bottom: 56px;
}

.fw-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 24px;
}

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

.fw-col {
    border-radius: 24px;
    padding: 44px 40px;
    border: 2px solid var(--border);
    background: var(--gray);
    position: relative;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}

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

.fw-col.s::before {
    background: linear-gradient(90deg, var(--blue-light), var(--blue));
}

.fw-col.b::before {
    background: linear-gradient(90deg, var(--green), var(--green-dark));
}

.fw-col:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.fw-col.s:hover {
    border-color: var(--blue);
}

.fw-col.b:hover {
    border-color: var(--green);
}

.fw-col.s:hover::before, .fw-col.b:hover::before {
    opacity: 1;
}

.fw-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 13px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.fw-badge.s {
    background: #e8f0fe;
    color: var(--blue);
}

.fw-badge.b {
    background: #e6faf4;
    color: var(--green-dark);
}

.fw-icon {
    font-size: 44px;
    margin-bottom: 16px;
}

.fw-col h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 12px;
}

.fw-col p {
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 24px;
}

.fw-list {
    list-style: none;
    margin-bottom: 28px;
}

.fw-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
    padding: 7px 0;
    border-bottom: 1px solid var(--border);
}

.fw-list li:last-child {
    border: none;
}

.fw-list li::before {
    content: '✓';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 900;
    margin-top: 1px;
}

.fw-col.s .fw-list li::before {
    background: var(--blue);
    color: white;
}

.fw-col.b .fw-list li::before {
    background: var(--green);
    color: white;
}

.fw-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    transition: transform .15s, opacity .15s;
}

.fw-cta:hover {
    transform: translateY(-2px);
    opacity: .88;
}

.fw-cta.s {
    background: linear-gradient(135deg, var(--blue-light), var(--blue));
    color: white;
    box-shadow: 0 6px 22px rgba(18, 85, 204, .28);
}

.fw-cta.b {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: white;
    box-shadow: 0 6px 22px rgba(0, 201, 141, .28);
}

/* ── STATS BELT ── */
.stats-belt {
    background: var(--navy2);
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}

.stats-belt::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 85% 50%, rgba(0, 201, 141, .1) 0%, transparent 60%);
}

.stats-belt-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 72px;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .stats-belt-inner {
        grid-template-columns:1fr;
        gap: 44px;
    }
}

.stats-belt-left .section-label {
    text-align: left;
}

.stats-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 14px;
}

.scard {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 18px;
    padding: 24px 20px;
    transition: background .2s, border-color .2s, transform .2s;
}

.scard:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(0, 201, 141, .3);
    transform: translateY(-3px);
}

.snum {
    font-family: 'Unbounded', sans-serif;
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
}

.snum.g {
    color: var(--green);
}

.snum.b {
    color: #7eb8ff;
}

.snum.w {
    color: white;
}

.scard h4 {
    font-size: 13px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.scard p {
    font-size: 11.5px;
    color: rgba(255, 255, 255, .4);
    line-height: 1.5;
}

/* ── CATEGORIES ── */
.cats {
    padding: 96px 24px;
    background: white;
}

.cats-inner {
    max-width: 1220px;
    margin: 0 auto;
}

.cats-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 52px;
}

.cats-link-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--blue);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 10px 22px;
    transition: border-color .15s, box-shadow .15s;
    white-space: nowrap;
}

.cats-link-all:hover {
    border-color: var(--blue);
    box-shadow: 0 4px 16px rgba(18, 85, 204, .15);
}

.cats-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(110px, 1fr));
    gap: 14px;
    margin-bottom: 40px;
}

.ccard {
    background: var(--gray);
    border-radius: 18px;
    border: 2px solid var(--border);
    padding: 18px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: border-color .2s, box-shadow .2s, transform .2s, background .2s;
}

.ccard:hover {
    border-color: var(--blue);
    background: #e8f0fe;
    box-shadow: 0 8px 28px rgba(18, 85, 204, .13);
    transform: translateY(-4px);
}

.cthumb {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .07);
    transition: box-shadow .2s;
}

.ccard:hover .cthumb {
    box-shadow: 0 6px 20px rgba(18, 85, 204, .2);
}

.cname {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.35;
}

.acc-wrap {
    border: 2px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
}

.acc-hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    cursor: pointer;
    background: var(--gray);
    transition: background .15s;
    user-select: none;
}

.acc-hdr:hover {
    background: var(--gray2);
}

.acc-hdr h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 10px;
}

.acc-ch {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: transform .3s;
    flex-shrink: 0;
}

.acc-ch.open {
    transform: rotate(180deg);
}

.acc-body {
    display: none;
    padding: 8px 28px 28px;
    background: white;
}

.acc-body.open {
    display: block;
}

.cats-full {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(200px, 1fr));
    gap: 2px;
}

.clink {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 10px;
    border-radius: 8px;
    font-size: 13.5px;
    color: var(--text);
    transition: background .15s, color .15s;
}

.clink:hover {
    background: var(--gray);
    color: var(--blue);
}

.cdot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
}

/* ── HOW IT WORKS ── */
.how-home {
    padding: 96px 24px;
    background: var(--gray);
}

.how-home-inner {
    max-width: 1160px;
    margin: 0 auto;
}

.how-hdr {
    text-align: center;
    margin-bottom: 48px;
}

.how-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 52px;
    flex-wrap: wrap;
}

.how-tab {
    padding: 11px 30px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: 2px solid var(--border);
    color: var(--muted);
    background: white;
    transition: all .2s;
}

.how-tab.active {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
}

.how-panel {
    display: none;
}

.how-panel.active {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
    gap: 0;
}

.how-step {
    padding: 32px 28px;
    position: relative;
    text-align: center;
    border-right: 1px solid var(--border);
}

.how-step:last-child {
    border-right: none;
}

@media (max-width: 640px) {
    .how-step {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .how-step::after {
        display: none;
    }
}

.how-step::after {
    content: '→';
    position: absolute;
    right: -13px;
    top: 46px;
    font-size: 20px;
    color: var(--gray2);
    z-index: 1;
}

.how-step:last-child::after {
    display: none;
}

.scircle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--green));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Unbounded', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: white;
    margin: 0 auto 18px;
    box-shadow: 0 8px 24px rgba(18, 85, 204, .22);
}

.how-step h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.how-step p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
}

/* ── FEATURES ── */
.features {
    padding: 96px 24px;
    background: white;
}

.features-inner {
    max-width: 1160px;
    margin: 0 auto;
}

.feats-hdr {
    margin-bottom: 52px;
}

.feats-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.fc {
    border: 2px solid var(--border);
    border-radius: 22px;
    padding: 30px 28px;
    position: relative;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}

.fc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-light), var(--green));
    opacity: 0;
    transition: opacity .2s;
}

.fc:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

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

.fi {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
    transition: background .2s;
}

.fc:hover .fi {
    background: #e8f0fe;
}

.fc h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.fc p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.65;
}

.ftag {
    display: inline-block;
    margin-top: 14px;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    background: #e6faf4;
    color: var(--green-dark);
}

.ftag.b {
    background: #e8f0fe;
    color: var(--blue);
}

/* ── BUYERS DB ── */
.buyers {
    background: linear-gradient(135deg, var(--navy) 0%, #0c1d3a 100%);
    padding: 96px 24px;
    position: relative;
    overflow: hidden;
}

.buyers::before {
    content: '';
    position: absolute;
    right: -150px;
    top: -150px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(18, 85, 204, .18) 0%, transparent 70%);
}

.buyers::after {
    content: '';
    position: absolute;
    left: -100px;
    bottom: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 201, 141, .1) 0%, transparent 70%);
}

.buyers-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 72px;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .buyers-inner {
        grid-template-columns:1fr;
        gap: 48px;
    }
}

.buyers-left .section-label {
    text-align: left;
}

.btotal {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(48px, 7vw, 72px);
    font-weight: 900;
    color: white;
    line-height: 1;
    margin: 20px 0 4px;
}

.btotal em {
    color: var(--green);
    font-style: normal;
}

.btotal-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, .38);
    margin-bottom: 20px;
}

.bdesc {
    font-size: 15px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.78;
    margin-bottom: 32px;
}

.btn-buyers {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    color: white;
    padding: 14px 28px;
    border-radius: 13px;
    font-size: 14px;
    font-weight: 700;
    transition: background .15s, border-color .15s;
}

.btn-buyers:hover {
    background: rgba(255, 255, 255, .15);
    border-color: rgba(255, 255, 255, .4);
}

.db-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 14px;
}

.db-update {
    grid-column: 1/-1;
    background: rgba(0, 201, 141, .1) !important;
    border-color: rgba(0, 201, 141, .25) !important;
    display: flex;
    align-items: center;
    gap: 16px;
}

.db-update .db-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 16px;
    padding: 22px 20px;
    transition: background .2s, border-color .2s;
}

.db-card:hover {
    background: rgba(255, 255, 255, .10);
    border-color: rgba(0, 201, 141, .4);
}

.db-card h4 {
    font-size: 13px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.db-card p {
    font-size: 12px;
    color: rgba(255, 255, 255, .4);
    line-height: 1.5;
}

.db-num {
    font-size: 22px;
}

.db-update p {
    color: rgba(255, 255, 255, .6) !important;
    font-size: 13px !important;
}

/* ── PRICING TEASER ── */
.pricing-teaser {
    padding: 96px 24px;
    background: var(--gray);
}

.pt-inner {
    max-width: 1060px;
    margin: 0 auto;
}

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

.pt-hdr .section-sub {
    margin: 12px auto 0;
    text-align: center;
}

.pc-grid {
    display: grid;
    grid-template-columns:1fr 1fr 1fr;
    gap: 22px;
}

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

@media (min-width: 600px) and (max-width: 900px) {
    .pc-grid {
        grid-template-columns:1fr 1fr;
        max-width: none;
    }
}

.pc {
    background: white;
    border-radius: 24px;
    padding: 32px 28px;
    border: 2px solid var(--border);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: transform .25s, box-shadow .25s;
    position: relative;
    overflow: hidden;
}

.pc:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.pc.ft {
    background: var(--navy);
    border-color: var(--blue);
}

.pc-ribbon {
    position: absolute;
    top: 16px;
    right: -26px;
    background: var(--green);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 5px 38px;
    transform: rotate(40deg);
    letter-spacing: 1px;
}

.free-pill {
    display: inline-block;
    background: #e6faf4;
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.pc-lbl {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--muted);
    margin-bottom: 6px;
}

.pc-name {
    font-family: 'Unbounded', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 10px;
}

.pc-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 22px;
    flex: 1;
}

.pc-price {
    font-family: 'Unbounded', sans-serif;
    font-size: 34px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 4px;
}

.pc-period {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 22px;
}

.pc.ft .pc-lbl {
    color: rgba(255, 255, 255, .45);
}

.pc.ft .pc-name {
    color: white;
}

.pc.ft .pc-desc {
    color: rgba(255, 255, 255, .45);
}

.pc.ft .pc-price {
    color: white;
}

.pc.ft .pc-period {
    color: rgba(255, 255, 255, .38);
}

.pc-list {
    list-style: none;
    margin-bottom: 26px;
}

.pc-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
    line-height: 1.5;
}

.pc.ft .pc-item {
    border-color: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .8);
}

.pc-item:last-child {
    border-bottom: none;
}

.pc-ck {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--green);
    color: white;
    font-size: 8px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.pc-ck.g {
    background: var(--gold);
}

.pc-btn {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    transition: transform .15s, opacity .15s;
    margin-top: auto;
}

.pc-btn:hover {
    transform: translateY(-2px);
    opacity: .9;
}

.pc-btn.ol {
    border: 2px solid var(--border);
    color: var(--navy);
}

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

.pc-btn.pr {
    background: linear-gradient(135deg, var(--blue-light), var(--blue));
    color: white;
    box-shadow: 0 6px 22px rgba(18, 85, 204, .28);
}

.pc-btn.gr {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: white;
    box-shadow: 0 6px 22px rgba(0, 201, 141, .28);
}

/* ── TELEGRAM content ── */
.tg-content {
    position: relative;
    z-index: 1;
}

.tg-content .section-label {
    text-align: left;
}

.tg-content h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(17px, 2.5vw, 24px);
    font-weight: 900;
    color: white;
    line-height: 1.3;
    margin-bottom: 12px;
}

.tg-content p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.7;
    margin-bottom: 24px;
}

.tg-stats {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.tg-stat strong {
    display: block;
    font-family: 'Unbounded', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: white;
}

.tg-stat span {
    font-size: 11.5px;
    color: rgba(255, 255, 255, .4);
}

@media (max-width: 680px) {
    .tg-content .section-label {
        text-align: center;
    }
}

/* ── RATING ── */
.rating {
    padding: 96px 24px;
    background: var(--gray);
}

.rating-inner {
    max-width: 1060px;
    margin: 0 auto;
}

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

.rating-hdr .section-sub {
    margin: 10px auto 0;
    text-align: center;
}

.sup-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
    margin-bottom: 36px;
}

.sup-card {
    background: white;
    border-radius: 18px;
    padding: 22px 20px;
    border: 2px solid var(--border);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}

.sup-card:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.sup-rank {
    font-family: 'Unbounded', sans-serif;
    font-size: 18px;
    font-weight: 900;
    color: var(--gray2);
    min-width: 28px;
}

.sup-rank.top {
    color: var(--gold);
}

.sup-logo {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #e8f0fe, var(--gray2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.sup-info h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
}

.sup-info p {
    font-size: 11.5px;
    color: var(--muted);
    margin-top: 2px;
}

.sup-stars {
    color: var(--gold);
    font-size: 11px;
    margin-top: 3px;
}

.btn-rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 2px solid var(--border);
    color: var(--navy);
    padding: 13px 28px;
    border-radius: 13px;
    font-size: 14px;
    font-weight: 700;
    transition: border-color .15s, box-shadow .15s;
}

.btn-rating:hover {
    border-color: var(--blue);
    box-shadow: 0 6px 22px rgba(18, 85, 204, .15);
}

/* ── TESTIMONIALS ── */
.testimonials {
    padding: 96px 24px;
    background: white;
}

.tst-inner {
    max-width: 1060px;
    margin: 0 auto;
}

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

.rv-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
}

.rv-card {
    background: var(--gray);
    border-radius: 20px;
    padding: 30px 28px;
    border: 2px solid var(--border);
    transition: border-color .2s, box-shadow .2s;
}

.rv-card:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow);
}

.rv-stars {
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.rv-text {
    font-size: 14px;
    color: var(--text);
    line-height: 1.78;
    margin-bottom: 18px;
    font-style: italic;
}

.rv-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rv-av {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: 700;
}

.rv-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
}

.rv-role {
    font-size: 11.5px;
    color: var(--muted);
    margin-top: 1px;
}

/* ── CTA FINAL ── */
.cta-final {
    background: linear-gradient(135deg, var(--blue) 0%, #0c40a0 100%);
    padding: 96px 24px;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(0, 201, 141, .13) 0%, transparent 60%);
}

.ctaf-inner {
    max-width: 1060px;
    margin: 0 auto;
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 72px;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 720px) {
    .ctaf-inner {
        grid-template-columns:1fr;
        gap: 44px;
    }
}

.cta-left h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(22px, 3.5vw, 38px);
    font-weight: 900;
    color: white;
    line-height: 1.2;
    margin-bottom: 16px;
}

.cta-left p {
    font-size: 15.5px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.78;
    margin-bottom: 28px;
}

.cta-phone {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 14px;
    padding: 14px 22px;
    color: white;
    font-size: 17px;
    font-weight: 700;
    transition: background .15s;
}

.cta-phone:hover {
    background: rgba(255, 255, 255, .18);
}

.cta-phone small {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, .48);
    margin-top: 2px;
}

/* ── FORM ELEMENTS ── */
.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
    margin-bottom: 6px;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: var(--text);
    background: #fafbff;
    outline: none;
    transition: border-color .2s;
    -webkit-appearance: none;
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--blue);
}

.form-group input::placeholder {
    color: #aab5cc;
}

.form-note {
    font-size: 11.5px;
    color: var(--muted);
    text-align: center;
    margin-top: 10px;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--blue-light), var(--blue));
    color: white;
    border: none;
    border-radius: 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 6px;
    box-shadow: 0 6px 22px rgba(18, 85, 204, .35);
    transition: transform .15s, box-shadow .15s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(18, 85, 204, .45);
}

.cta-form {
    background: white;
    border-radius: 24px;
    padding: 38px 34px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .22);
}

.cta-form h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 24px;
}

.cta-form label {
    display: block;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
    margin-bottom: 6px;
}

.form-ok {
    display: none;
    text-align: center;
    padding: 24px 0;
}

.form-ok .fsi {
    font-size: 52px;
    margin-bottom: 14px;
}

.form-ok h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.form-ok p {
    font-size: 14px;
    color: var(--muted);
}

/* ── FOOTER ── */
footer {
    background: var(--navy);
    padding: 64px 40px 32px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    text-align: left;
}

.footer-inner {
    max-width: 1160px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 52px;
}

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

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

.footer-brand p {
    font-size: 13px;
    color: rgba(255, 255, 255, .38);
    line-height: 1.7;
    max-width: 260px;
    margin-top: 16px;
}

.footer-col h4 {
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, .35);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 13.5px;
    color: rgba(255, 255, 255, .58);
    padding: 5px 0;
    transition: color .15s;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, .28);
}

.footer-bottom a {
    color: var(--green);
}

.f-social {
    display: flex;
    gap: 8px;
}

.fsoc {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(255, 255, 255, .07);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background .15s;
}

.fsoc:hover {
    background: rgba(255, 255, 255, .15);
}

/* ── TOPBAR ── */
.nav-topbar {
    background: rgba(10, 22, 40, .98);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    padding: 0 40px;
    height: 34px;
    display: flex;
    align-items: center;
}

.nav-topbar-inner {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255, 255, 255, .4);
}

.ntb-right {
    display: flex;
    gap: 20px;
}

.ntb-right a {
    color: rgba(255, 255, 255, .45);
    transition: color .15s;
    font-size: 12px;
}

.ntb-right a:hover {
    color: rgba(255, 255, 255, .8);
}

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

/* ── NAV (updated) ── */
.nav {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(10, 22, 40, .97);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    height: 64px;
}

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

.nav-logo svg {
    height: 30px;
    width: auto;
}


/* Nav search */
.nav-search {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    padding: 0 0 0 10px;
    width: 280px;
    flex-shrink: 0;
    transition: border-color .2s, background .2s;
}

.nav-search:focus-within {
    border-color: rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .12);
}

.ns-icon {
    color: rgba(255, 255, 255, .35);
    flex-shrink: 0;
}

.nav-search input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: white;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    padding: 9px 8px;
    min-width: 0;
}

.nav-search input::placeholder {
    color: rgba(255, 255, 255, .32);
}

.nav-search button {
    background: var(--green);
    color: white;
    border: none;
    padding: 0 13px;
    height: 38px;
    border-radius: 0 9px 9px 0;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: opacity .15s;
}

.nav-search button:hover {
    opacity: .85;
}

@media (max-width: 1100px) {
    .nav-search {
        width: 200px;
    }
}

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

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

.nav-item {
    position: relative;
}

.nav-link {
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, .55);
    transition: color .15s, background .15s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link:hover, .nav-link.active {
    color: white;
    background: rgba(255, 255, 255, .08);
}

.nav-item.has-dropdown:hover .nav-link, .nav-item.has-dropdown:focus-within .nav-link {
    color: white;
    background: rgba(255, 255, 255, .08);
}

/* Dropdown */
.nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    padding-top: 12px !important;
    background: var(--navy2);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
    min-width: 280px;
    z-index: 300;
    gap: 24px;
    display: none;
}

.nav-item.has-dropdown.open .nav-dropdown {
    display: flex;
}

/* Dropdown hover bridge — prevents gap between link and menu */
.nav-item.has-dropdown {
    padding-bottom: 0;
}

.nav-item.has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    height: 14px;
    display: block;
}

.nav-dropdown {
    margin-top: 0 !important;
}

.nd-wide {
    min-width: 560px;
}

.nd-col {
    flex: 1;
}

.nd-title {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, .3);
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.nav-dropdown a {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, .6);
    padding: 6px 8px;
    border-radius: 7px;
    transition: background .15s, color .15s;
}

.nav-dropdown a:hover {
    color: white;
    background: rgba(255, 255, 255, .07);
}

/* Actions */
.nav-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-left: auto;
    flex-shrink: 0;
}

.nav-btn-ghost {
    padding: 7px 16px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, .7);
    border: 1px solid rgba(255, 255, 255, .18);
    transition: border-color .15s, color .15s;
    white-space: nowrap;
}

.nav-btn-ghost:hover {
    border-color: rgba(255, 255, 255, .5);
    color: white;
}

.nav-btn-green {
    padding: 8px 18px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 700;
    background: var(--green);
    color: white;
    box-shadow: 0 4px 16px rgba(0, 201, 141, .35);
    transition: opacity .15s, transform .15s;
    white-space: nowrap;
}

.nav-btn-green:hover {
    opacity: .88;
    transform: translateY(-1px);
}

@media (max-width: 1000px) {
    .nav-btn-ghost {
        display: none;
    }
}

/* Burger */
.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: 8px;
}

.nav-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(255, 255, 255, .7);
    border-radius: 2px;
    transition: all .25s;
}

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

    .nav-actions .nav-btn-green {
        font-size: 12px;
        padding: 8px 14px;
    }

    .nav-burger {
        display: flex;
    }
}

/* Mobile menu */
.nav-mobile {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--navy2);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    z-index: 190;
    padding: 16px 20px 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
}

.nav-mobile.open {
    display: block;
}

.nav-mobile a {
    display: block;
    color: rgba(255, 255, 255, .7);
    font-size: 15px;
    font-weight: 600;
    padding: 12px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    transition: color .15s;
}

.nav-mobile a:hover {
    color: white;
}

.nm-sep {
    height: 1px;
    background: rgba(255, 255, 255, .1);
    margin: 12px 0;
}

.nm-login {
    border: 1px solid rgba(255, 255, 255, .2) !important;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 8px;
}

.nm-reg {
    background: var(--green) !important;
    border-radius: 10px;
    text-align: center;
    color: white !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 16px rgba(0, 201, 141, .3);
}

/* Burger animation */
.nav-burger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-burger.open span:nth-child(2) {
    opacity: 0;
}

.nav-burger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ── BUYERS WALL ── */
.buyers-wall {
    padding: 80px 24px;
    background: var(--gray);
}

.bw-inner {
    max-width: 1220px;
    margin: 0 auto;
}

.bw-header {
    text-align: center;
    margin-bottom: 40px;
}

.bw-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.bw-stat strong {
    display: block;
    font-family: 'Unbounded', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--navy);
}

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

.bw-avatars {
    display: grid;
    grid-template-columns:repeat(12, 1fr);
    gap: 10px;
    margin-bottom: 32px;
}

@media (max-width: 900px) {
    .bw-avatars {
        grid-template-columns:repeat(8, 1fr);
    }
}

@media (max-width: 540px) {
    .bw-avatars {
        grid-template-columns:repeat(6, 1fr);
        gap: 7px;
    }
}

.bav {
    display: block;
    border-radius: 50%;
    overflow: hidden;
    aspect-ratio: 1;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
    transition: transform .2s, box-shadow .2s;
    background: var(--gray2);
}

.bav:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(18, 85, 204, .25);
    border-color: var(--blue);
    z-index: 2;
}

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

.bw-footer {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.bw-btn {
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    border: 2px solid var(--border);
    transition: border-color .15s, box-shadow .15s;
}

.bw-btn:hover {
    border-color: var(--blue);
    box-shadow: 0 4px 14px rgba(18, 85, 204, .15);
}

.bw-btn-reg {
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: white;
    box-shadow: 0 6px 22px rgba(0, 201, 141, .28);
    transition: opacity .15s, transform .15s;
}

.bw-btn-reg:hover {
    opacity: .88;
    transform: translateY(-2px);
}

/* ── SEARCH BAR ── */
.search-bar {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 12px 24px;
}

.search-bar-inner {
    max-width: 1220px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sb-form {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--gray);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 0 0 0 16px;
    transition: border-color .2s, box-shadow .2s;
}

.sb-form:focus-within {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(18, 85, 204, .1);
}

.sb-icon {
    color: var(--muted);
    flex-shrink: 0;
}

.sb-form input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    color: var(--text);
    padding: 12px 12px;
    min-width: 0;
}

.sb-form input::placeholder {
    color: var(--muted);
}

.sb-form button {
    display: flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(135deg, var(--blue-light), var(--blue));
    color: white;
    border: none;
    padding: 0 22px;
    height: 48px;
    border-radius: 0 10px 10px 0;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity .15s;
    flex-shrink: 0;
    white-space: nowrap;
}

.sb-form button:hover {
    opacity: .88;
}

.sb-popular {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.sb-popular span {
    font-size: 12px;
    color: var(--muted);
    font-weight: 600;
}

.sb-popular a {
    font-size: 12px;
    color: var(--blue);
    background: var(--gray);
    border: 1px solid var(--border);
    padding: 3px 10px;
    border-radius: 100px;
    transition: background .15s, border-color .15s;
}

.sb-popular a:hover {
    background: var(--blue-pale);
    border-color: var(--blue);
}

@media (max-width: 640px) {
    .sb-form button span {
        display: none;
    }

    .sb-popular {
        display: none;
    }
}

/* ── BANNER SLIDER ── */
.bslider-section {
    background: var(--navy);
    padding: 0 0 16px;
}

.bslider {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.bslider-track {
    display: flex;
    transition: transform .5s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
}

.bslide {
    flex: 0 0 100%;
    width: 100%;
}

.bslide-link {
    display: block;
    width: 100%;
}

.bslide-placeholder {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

@media (max-width: 640px) {
    .bslide-placeholder {
        height: 180px;
    }
}

.bph-content {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
    /*padding: 0 40px;*/
    position: relative;
    z-index: 1;
    text-align: center;
}

.bph-content img {
    width: 100%;
    object-fit: cover;
}

@media (min-width: 900px) {
    .bph-content {
        flex-wrap: nowrap;
        text-align: left;
        justify-content: flex-start;
        /*max-width: 1220px;*/
        width: 100%;
    }
}

.bph-logo {
    flex-shrink: 0;
}

.bph-text strong {
    display: block;
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(18px, 3vw, 32px);
    font-weight: 900;
    color: white;
    line-height: 1.2;
    margin-bottom: 8px;
}

.bph-text span {
    font-size: clamp(12px, 1.5vw, 16px);
    color: rgba(255, 255, 255, .65);
}

.bph-cta {
    flex-shrink: 0;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .3);
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    margin-left: auto;
    transition: background .2s;
}

.bph-cta:hover {
    background: rgba(255, 255, 255, .25);
}

.bph-tag {
    position: absolute;
    bottom: 8px;
    right: 12px;
    font-size: 10px;
    color: rgba(255, 255, 255, .25);
}

/* Controls */
.bsl-prev, .bsl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .35);
    border: 1px solid rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background .2s;
    backdrop-filter: blur(4px);
}

.bsl-prev:hover, .bsl-next:hover {
    background: rgba(0, 0, 0, .6);
}

.bsl-prev {
    left: 16px;
}

.bsl-next {
    right: 16px;
}

/* Dots */
.bsl-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.bsl-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .2s, width .2s;
}

.bsl-dot.active {
    background: white;
    width: 22px;
    border-radius: 4px;
}

/* Badge */
.bsl-badge {
    position: absolute;
    top: 12px;
    right: 60px;
    z-index: 10;
}

.bsl-badge a {
    background: rgba(0, 0, 0, .45);
    border: 1px solid rgba(255, 255, 255, .18);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 100px;
    backdrop-filter: blur(6px);
    transition: background .2s;
}

.bsl-badge a:hover {
    background: rgba(0, 0, 0, .7);
}

@media (max-width: 540px) {
    .bsl-prev, .bsl-next {
        width: 36px;
        height: 36px;
    }

    .bsl-badge {
        display: none;
    }

}

/* Sub-banners */
.bsub-row {
    display: grid;
    grid-template-columns:1fr 1fr 1fr;
    gap: 10px;
    padding: 10px 16px 0;
    max-width: 1220px;
    margin: 0 auto;
}

@media (max-width: 760px) {
    .bsub-row {
        grid-template-columns:1fr;
    }
}

.bsub {
    display: block;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    transition: transform .15s, box-shadow .15s;
}

.bsub:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
}

.left-logo-text-img {
    margin-left: 10px;
}

.footer-logo-img {
    display: inline;
}

.footer-logo-text-img {
    display: inline;
    margin-left: 8px;
}