/* ===== RESET ===== */

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

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

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

button,
input,
select,
textarea {
    font: inherit;
}



:root {
    --font-ui: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    --font-brand: "Comfortaa", "Nunito", "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    --text: #01296c;
    --surface: rgba(255, 255, 255, 0.9);
    --surface-2: rgba(255, 255, 255, 0.88);
    --shadow-card: 0 18px 40px rgba(15, 23, 42, 0.10);
    --shadow-card-sm: 0 10px 22px rgba(15, 23, 42, 0.02);
    --stroke: rgba(15, 23, 42, 0.06);
    --cta-grad: linear-gradient(180deg, rgba(111, 182, 255, 0.98) 0%, rgba(77, 163, 255, 0.98) 100%);
    --cta-shadow: 0 14px 30px rgba(77, 163, 255, 0.22);
    --glass: rgba(255, 255, 255, 0.62);
    --glass-strong: rgba(255, 255, 255, 0.72);
    --glass-stroke: rgba(255, 255, 255, 0.42);
    --glass-dark-stroke: rgba(15, 23, 42, 0.06);
    --glass-shadow: 0 18px 46px rgba(15, 23, 42, 0.10)
}

* {
    box-sizing: border-box
}



a {
    color: var(--text);
    text-decoration: none;
}

body {
    font-family: var(--font-ui);
    color: var(--text);
    font-size: 17px;
    font-weight: 700;
    background: transparent;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* =========================
   FIXED BACKGROUND
========================= */

.bg-fixed {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image:
        url("../assets/varna-pin.jpg");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    pointer-events: none;
    /* FIX */
    width: 100vw;
    height: 100vh;
    top: -10vh;
    left: 0;
    transform: translateZ(0);
    will-change: auto;
    backface-visibility: hidden;
    filter: blur(5px);
}

/* CONTENT */

header,
main,
section {
    position: relative;
    z-index: 1;
}

/* MOBILE */

@media (max-width:768px) {
    .bg-fixed {
        position: fixed;
        height: 120dvh;
        background-position: center center;
        transform: none;
        will-change: auto;
    }
}

.balance,
.bonus-card,
.hero,
.partners-panel {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

h1 {
    font-weight: 800;
    letter-spacing: -.02em
}

.container {
    width: min(775px, 100% - 28px);
    margin-inline: auto
}


.site-header {
    position: sticky;
    top: 0;
    z-index: 4;
    padding: 10px 0
}

.site-header__inner {
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 50px;
    background: radial-gradient(circle at 50% 40%, rgba(255, 255, 255, .16), rgba(255, 255, 255, 0) 60%), linear-gradient(135deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .28);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12), 0 6px 14px rgba(0, 0, 0, .06), inset 0 1px 0 rgba(255, 255, 255, .45)
}



.site-header__right {
    display: flex;
    align-items: center;
    gap: 10px
}

.logo {
    display: grid;
    grid-auto-flow: column;
    align-items: center;
    gap: 8px;
}

.logo-img {
    width: 37px;
    height: 37px;
    object-fit: contain;
    border-radius: 12px;
}



.logo-text {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.03em;
}

.bussines-header__right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 46px;
    padding: 0 18px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 999px;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, .98) 0%,
            rgba(245, 248, 255, .95) 100%);

    border: 1px solid rgba(255, 255, 255, .9);
    backdrop-filter: blur(14px);
    box-shadow:
        0 12px 28px rgba(1, 41, 108, .08),
        0 4px 10px rgba(1, 41, 108, .04),
        inset 0 1px 0 rgba(255, 255, 255, .95);
    cursor: pointer;
    transition:
        transform .2s ease,
        box-shadow .25s ease;
}

.bussines-header__right::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, .75) 0%,
            rgba(255, 255, 255, 0) 45%);
    pointer-events: none;
}


.headerbar__lang {
    position: relative;
    display: flex;
    align-items: center
}

/* =========================
   LANGUAGE
========================= */

.headerbar__lang {

    position: relative;

    display: flex;
    align-items: center;
}

/* =========================
   BUTTON
========================= */

.lang-btn {

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    height: 46px;
    padding: 0 16px;

    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 999px;

    background:
        rgba(255, 255, 255, 0.78);

    backdrop-filter: blur(20px);

    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.08),
        0 2px 10px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* hover */

.lang-btn:hover {

    transform: translateY(-1px);

    background:
        rgba(255, 255, 255, 0.92);

    box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.12),
        0 4px 14px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* active */

.lang-btn:active {

    transform: scale(0.98);
}

/* =========================
   CODE
========================= */

.lang-btn__code {

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;

}

/* =========================
   CHEV
========================= */

.lang-btn__chev {

    font-size: 12px;

    color: #64748b;

    transition:
        transform 0.25s ease;
}

/* rotate */

.lang-pop.active+.lang-btn__chev,
.lang-btn.active .lang-btn__chev {

    transform: rotate(180deg);
}

/* =========================
   FLAGS
========================= */

.flag {
    position: relative;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, .4),
        0 2px 6px rgba(0, 0, 0, .15);
}

/* BG */

.flag--bg {

    background:
        linear-gradient(to bottom,
            #ffffff 0%,
            #ffffff 33.33%,
            #00966E 33.33%,
            #00966E 66.66%,
            #D62612 66.66%,
            #D62612 100%);
}

/* EN */

.flag--en {

    background:
        linear-gradient(135deg,
            #012169 0%,
            #012169 100%);
}

.flag--en::before,
.flag--en::after {

    content: "";

    position: absolute;

    background: white;
}

.flag--en::before {

    top: 7px;
    left: 0;

    width: 100%;
    height: 4px;
}

.flag--en::after {

    left: 7px;
    top: 0;

    width: 4px;
    height: 100%;
}

/* RU */

.flag--ru {

    background:
        linear-gradient(to bottom,
            #ffffff 0%,
            #ffffff 33.33%,
            #0039A6 33.33%,
            #0039A6 66.66%,
            #D52B1E 66.66%,
            #D52B1E 100%);
}

/* =========================
   DROPDOWN
========================= */

.lang-pop {

    position: absolute;

    top: calc(100% + 12px);
    right: 0;

    width: 210px;

    padding: 10px;

    border-radius: 24px;

    background:
        rgba(255, 255, 255, .88);

    backdrop-filter: blur(24px);

    border:
        1px solid rgba(255, 255, 255, .6);

    opacity: 0;
    visibility: hidden;

    transform:
        translateY(-8px) scale(0.96);

    transition:
        opacity 0.22s ease,
        transform 0.22s ease,
        visibility 0.22s ease;

    z-index: 200;

    box-shadow:
        0 30px 60px rgba(0, 0, 0, .16),
        0 8px 24px rgba(0, 0, 0, .08),
        inset 0 1px 0 rgba(255, 255, 255, .6);
}

/* open */

.lang-pop.active {

    opacity: 1;
    visibility: visible;

    transform:
        translateY(0) scale(1);
}

/* =========================
   LIST
========================= */

.lang-pop__list {

    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* =========================
   ITEM
========================= */

.lang-item {

    display: flex;
    align-items: center;
    gap: 12px;

    width: 100%;

    border: none;
    outline: none;

    background: transparent;

    border-radius: 16px;

    padding: 13px 14px;

    cursor: pointer;

    font-size: 14px;
    font-weight: 600;

    color: #111827;

    transition:
        background 0.2s ease,
        transform 0.15s ease;
}

/* hover */

.lang-item:hover {

    background:
        rgba(76, 141, 255, 0.08);

    transform:
        translateX(2px);
}

/* active */

.lang-item:active {

    transform:
        scale(0.98);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 640px) {

    .lang-btn {

        height: 42px;

        padding: 0 14px;

        gap: 8px;
    }

    .lang-pop {

        width: 190px;

        right: -4px;
    }

    .lang-item {

        padding: 12px;
    }

}

.main {
    position: relative;
    z-index: 2
}


/* -----1 блок----- */
.hero-unified {
    position: relative;
    isolation: isolate;
    margin-bottom: 80px;
}

.hero-overlay {
    pointer-events: none
}


.hero {
    position: relative;
    overflow: hidden;
}



.hero-headline,
.main-card {
    animation: fadeUp 0.6s ease;
}

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

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



.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: saturate(.8) brightness(.97);
    transform: none;
    will-change: auto;
    pointer-events: none;
    user-select: none;
    z-index: 0
}


.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* =========================================
   LEAD CARDS
========================================= */



.vlas-block {
    margin-bottom: 100px;
}

.vlas-block {
    position: relative;
    color: rgba(20, 30, 50, .92);
    border-radius: 18px;
    background: radial-gradient(circle at 50% 40%, rgba(255, 255, 255, .16), rgba(255, 255, 255, 0) 60%), linear-gradient(135deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .28);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12), 0 6px 14px rgba(0, 0, 0, .06), inset 0 1px 0 rgba(255, 255, 255, .45);
    backdrop-filter: blur(6px) saturate(110%);
    overflow: hidden;
    z-index: 2;
}

.vlas-block::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 30% 20%, rgb(197 129 82 / 45%), transparent 40%), radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.35), transparent 35%);
    mix-blend-mode: overlay;
    opacity: 0.6;
    pointer-events: none;
}

.vlas-offers {
    display: flex;
    flex-direction: column;
    padding: 40px 5px 40px;
    gap: 20px;
}

.vlas-text {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12), 0 6px 14px rgba(0, 0, 0, .06), inset 0 1px 0 rgba(255, 255, 255, .45);
    opacity: 0;
    animation: headerEnter 0.6s ease forwards 1s;
}

.vlas-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.4px;
    color: #0f172a;
    opacity: 0;
    will-change: opacity, transform, filter;
    animation: textAppear .8s cubic-bezier(.2, .8, .2, 1) forwards;
    animation-delay: .2s;
}

.vlas-title span {
    color: rgb(76, 141, 255);
    font-weight: 800;
    font-size: inherit;
    letter-spacing: 0.2px;
    text-shadow: 0 2px 10px rgba(76, 141, 255, 0.15);
}

.vlas-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(15, 23, 42, 0.72);
    margin-top: 2px;
    letter-spacing: 0.2px;
}

/* =========================================
   CARD
========================================= */
.bonus-lead {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, .9);
    border-radius: 18px;
    cursor: pointer;
    border: 1px solid transparent;
    will-change: transform;
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;

    opacity: 1;
}

/* =========================================
   SHOW
========================================= */

.bonus-lead.show {
    animation: leadCardLead .7s ease;
}

@keyframes leadCardLead {

    0% {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(6px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* =========================================
   DELAYS
========================================= */

.bonus-lead:nth-child(1).show {
    animation-delay: .05s;
}

.bonus-lead:nth-child(2).show {
    animation-delay: .15s;
}

.bonus-lead:nth-child(3).show {
    animation-delay: .25s;
}

/* =========================================
   HOVER
========================================= */

.bonus-lead:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 35px rgba(0, 0, 0, .08);
}

/* =========================================
   ACTIVE
========================================= */

.bonus-lead.lead-active {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    /* основной контур */
    border: 1px solid rgba(76, 141, 255, 0.25);

    /* мягкое свечение */
    box-shadow: 0 10px 40px rgb(76 141 255 / 37%), 0 0 0 6px rgb(76 141 255 / 4%);
    z-index: 1;
}

.bonus-lead__cont {
    padding: 14px;
}



/* =========================================
   NOTE / GRAVITY
========================================= */

.vlas-note {
    position: relative;
    overflow: hidden;
    margin-bottom: 14px;
    padding: 14px 16px 14px 18px;
    border-radius: 18px;
    background:
        linear-gradient(180deg,
            rgba(76, 141, 255, 0.08),
            rgba(76, 141, 255, 0.03));

    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
    color: rgba(15, 23, 42, 0.767);
    text-shadow:
        0 1px 1px rgba(255, 255, 255, .65);
    box-shadow:
        0 10px 28px rgba(76, 141, 255, .10),
        inset 0 1px 0 rgba(255, 255, 255, .7);
}


.lead-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
}

.lead-left {
    flex: 1;
    min-width: 0;
}

.lead-right {
    flex-shrink: 0;
    position: relative;
}

.lead-image {
    width: 100%;
    height: 100px;
    object-fit: cover;
    box-shadow:
        0 10px 24px rgba(0, 0, 0, .12);

}

.lead-image img {
    width: 100%;
    height: 100%;
}

/* =========================================
   BUSINESS
========================================= */

.lead-business {
    font-size: 15px;
    font-weight: 500;
    color: rgba(15, 23, 42, .76);
}

/* =========================================
   SERVICE
========================================= */

.lead-service {
    font-size: 17px;
    line-height: 1.2;
    font-weight: 500;
    color: #111827;
}

/* =========================================
   PRICE
========================================= */

.lead-meta {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-top: 14px;

    flex-wrap: wrap;
}

.lead-price {
    font-size: 15px;
    font-weight: 600;

}


.lead-price-icon {
    flex-shrink: 0;
}

.lead-access {
    color: #006c17;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 20px;
}

.lead-access span {
    font-weight: 600;
    padding: 0px 7px;
    border-radius: 50%;
    border: 1px solid #006c17;
}

.lead-business-row,
.lead-service-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid #eff5fb;
    margin-bottom: 10px;
}



.lead-price {
    flex-shrink: 0;
}


.planet-valid {
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: #ff3e3e8e;
    gap: 10px;
}

.distance-lead {
    font-size: 15px;
    font-weight: 600;
    color: #5b6475;
}

.work-time {
    font-size: 15px;
    font-weight: 500;
}

/* =========================================
   CONDITIONS
========================================= */

.bonus-conditions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: rgba(15, 23, 42, .6);
    font-size: 14px;
    font-weight: 500;
}

.bonus-conditions::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff7b7b;
    box-shadow:
        0 0 10px rgba(255, 123, 123, .45);
}

/* =========================================
   BUTTON
========================================= */

.lead-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 300px;
    gap: 6px;
    text-align: center;
    padding: 10px;
    border-radius: 12px;
    margin-bottom: 10px;
    border: none;
    cursor: pointer;
    background: linear-gradient(180deg, #A9C9FF 0%, #6FA8FF 45%, #4C8DFF 100%);
    color: white;
    letter-spacing: 1.1px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 6px 14px rgba(76, 141, 255, .4), inset 0 1px 0 rgba(255, 255, 255, .7);
    transition: all 0.2s ease;
    margin: 0 auto;
    margin-bottom: 7px;
}

.lead-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

.solar-divider {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 420px;
    line-height: 1.5;
    color: rgba(20, 30, 50, .92);
    font-weight: 500;
    margin: 20px auto 35px;
    padding: 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12), 0 6px 14px rgba(0, 0, 0, .06), inset 0 1px 0 rgba(255, 255, 255, .45);
}

/* =========================================
   TELEGRAM NOTE
========================================= */

.bonus-note {
    display: flex;
    gap: 6px;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(15, 23, 42, .48);
    align-items: center;
    align-content: center;
    justify-content: center;
}

.bonus-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: radial-gradient(circle at 50% 40%, rgba(255, 255, 255, .16), rgba(255, 255, 255, 0) 60%), linear-gradient(135deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .28);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12), 0 6px 14px rgba(0, 0, 0, .06), inset 0 1px 0 rgba(255, 255, 255, .45);
    backdrop-filter: blur(6px) saturate(110%);
    z-index: 2;
}

.bonus-card__cont {
    padding: 7px 5px 7px;
}


.bonus-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 30% 20%, rgb(197 129 82 / 45%), transparent 40%), radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.35), transparent 35%);
    mix-blend-mode: overlay;
    opacity: 0.6;
    pointer-events: none;
}

.work-status {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    margin-top: 4px;
    font-size: 12px;
    font-weight: 600;
}

.work-status span {
    font-size: 11px;
    opacity: .7;
}

.work-status.open {
    color: #00c853;
}

.work-status.closed {
    color: #ff6b6b;
}



.smart-status.outside {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    width: 100%;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, .12),
        0 6px 14px rgba(0, 0, 0, .06),
        inset 0 1px 0 rgba(255, 255, 255, .45);

    opacity: 0;
    animation:
        headerEnter 0.6s ease forwards 1s;

}

/* появление */
@keyframes headerEnter {
    0% {
        opacity: 0;
        transform: translateY(-10px) scale(0.98);
        filter: blur(6px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}



.smart-status.outside {
    will-change: transform;
}


.city-live-card {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

/* =========================
   SLIDER
========================= */

.city-slider {
    overflow: hidden;
    position: relative;
}

.city-slider-track {
    display: flex;
    width: 100%;
    transition: transform .45s ease;
    will-change: transform;
}

.city-slide {
    min-width: 100%;
}

.city-empty {
    font-size: 14px;
    line-height: 1.45;
    font-weight: 600;
    margin-bottom: 10px;
}

/* =========================
   IMAGE
========================= */

.city-live-image {
    position: relative;
    height: 100px;
    background-size: cover;
    background-position: center center;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12), 0 6px 14px rgba(0, 0, 0, .06), inset 0 1px 0 rgba(255, 255, 255, .45);
    opacity: .9;
}



/* =========================
   SLIDE CONTENT
========================= */

.city-slide-content {
    position: relative;
    z-index: 2;
    min-height: 100%;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(20px);
    padding: 14px 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* =========================
   TEXT
========================= */

.city-line {
    font-size: 14px;
    line-height: 1.45;
    font-weight: 600;
    margin-bottom: 10px;
}

.city-date {
    margin-bottom: 14px;
}


.city-week-link {
    margin-top: 6px;
    color: rgb(76 141 255 / 95%);
    font-weight: 700;
}

/* =========================
   DOTS
========================= */

.city-slider-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}

.city-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;

    background: rgba(255, 255, 255, .45);

    transition: all .25s ease;
}

.city-dot.active {
    width: 22px;
    background: linear-gradient(180deg, #A9C9FF 0%, #6FA8FF 45%, #4C8DFF 100%);
    box-shadow: 0 6px 14px rgba(76, 141, 255, .4), inset 0 1px 0 rgba(255, 255, 255, .7);
}




.status-text {
    font-family:
        'Manrope',
        sans-serif;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.4px;
    opacity: 0;
    will-change:
        opacity,
        transform,
        filter;

    animation:
        textAppear .8s cubic-bezier(.2, .8, .2, 1) forwards;

    animation-delay: .2s;
}

/* =========================
   TEXT APPEAR
========================= */

@keyframes textAppear {

    0% {

        opacity: 0;

        transform:
            translateY(10px) scale(.96);

        filter:
            blur(8px);
    }

    60% {

        opacity: 1;

        transform:
            translateY(-1px) scale(1.01);

        filter:
            blur(0);
    }

    100% {

        opacity: 1;

        transform:
            translateY(0) scale(1);

        filter:
            blur(0);
    }
}

.status-sub {
    font-size: 14px;
    letter-spacing: 0.2px;
}

.highlight-text {
    color: rgb(76, 141, 255);
    font-weight: 500;
    font-size: inherit;
    letter-spacing: 0.2px;
    text-shadow: 0 2px 10px rgba(76, 141, 255, 0.15);
}



/* =========================
   INLINE STARTUP
========================= */

.startup-inline-wrapper {
    display: flex;
    justify-content: center;
    margin: 16px 0 24px;

}

.startup-inline {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(16px);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, .06);

}

.startup-inline.hide {
    display: none;
}

.startup-ai-avatar {
    width: 28px;
    height: 28px;
    animation: pulse 2s infinite;

}

.startup-ai-text {
    font-size: 13px;
    font-weight: 600;
    color: #1b2435;

}

@keyframes startupPulse {

    0%,
    100% {
        transform: scale(1);

    }

    50% {
        transform: scale(1.08);

    }

}




/* ===== Nearby block ===== */


/* список */
.nearby-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nearby-item.recommended {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.9);
    /* основной контур */
    border: 1px solid rgba(76, 141, 255, 0.25);

    /* мягкое свечение */
    box-shadow: 0 10px 40px rgb(76 141 255 / 37%), 0 0 0 6px rgb(76 141 255 / 4%);

    transition: all 0.3s ease;
    animation-delay: 0s;
    animation-duration: 0.6s;
}

.nearby-item.recommended .distance {
    font-size: 16px;
    opacity: 1;
}

.nearby-item.recommended::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    pointer-events: none;

    background: radial-gradient(circle at 50% 50%,
            rgba(76, 141, 255, 0.15),
            transparent 70%);

    opacity: 0.6;
}

.nearby-item.recommended:hover {
    transform: translateY(-4px);
    box-shadow:
        0 14px 45px rgba(76, 141, 255, 0.35),
        0 0 0 6px rgba(76, 141, 255, 0.1);
}

/* уменьшаем ВСЕ карточки кроме рекомендованной */
.nearby-item:not(.recommended) {
    opacity: 0.95;
}

.nearby-item:not(.recommended) .name {
    font-size: 15px;
}

.nearby-item:not(.recommended) .offer-line {
    opacity: 0.9;
    font-size: 14px;
}

.nearby-item:not(.recommended) .category {
    font-size: 16px;
}

.nearby-item:not(.recommended) .meta {
    font-size: 13px;
    font-weight: 700;
    color: #ff3e3ec2;
}

.nearby-item:not(.recommended):hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.nearby-item:not(.recommended):active {
    transform: translateY(-1px) scale(0.995);
}

.nearby-item.recommended:active {
    transform: translateY(-2px) scale(0.995);
}

/* карточка */
.nearby-item {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    opacity: 0;
    animation: cardEnter 0.5s ease forwards;
}

@keyframes cardEnter {
    0% {
        opacity: 0;
        top: 20px;
        filter: blur(4px);
    }

    100% {
        opacity: 1;
        top: 0;
        filter: blur(0);
    }
}


.nearby-item:nth-child(1) {
    animation-delay: 0.05s;
}

.nearby-item:nth-child(2) {
    animation-delay: 0.12s;
}

.nearby-item:nth-child(3) {
    animation-delay: 0.18s;
}

.nearby-item:nth-child(4) {
    animation-delay: 0.24s;
}

.nearby-item:nth-child(5) {
    animation-delay: 0.3s;
}

.nearby-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.badge {
    position: absolute;
    display: inline-block;
    font-weight: 600;
    color: #0b0a15;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(245, 248, 255, 0.96) 60%,
            rgba(236, 243, 255, 0.94) 100%);
    padding: 3px 6px;
    border-radius: 6px;
    font-size: 12px;
    z-index: 3;
    backdrop-filter: blur(10px);
    box-shadow:
        0 8px 24px rgba(1, 41, 108, .12),
        0 2px 8px rgba(1, 41, 108, .06);

    border: 1px solid rgba(255, 255, 255, .8);
}

.row-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.name {
    font-size: 16px;
    font-weight: 500;
}

.category {

    line-height: 1.2;
}

.category-business {
    margin-bottom: 100px;
}

.category-row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eff5fb;
    margin-bottom: 10px;
}


.main-price {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding-left: 10px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.2px;
    flex-shrink: 0;
    white-space: nowrap;
}

.bonus-line {
    display: flex;
    color: #006c17;
    font-weight: 600;
    gap: 5px;
    margin-bottom: 10px;
}

.right {
    display: flex;
    justify-content: space-between;
    gap: 6px;
}

.distance {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 15px;
    font-weight: 500;
    z-index: 3;
}

.pin-icon {
    display: flex;
    align-items: center;
    padding-right: 5px;
}

.offer-line {
    margin-top: 10px;
    font-size: 15px;
    color: #2b6bffc5;
    font-weight: 600;
}

.meta {
    display: flex;
    align-items: center;
    color: #ff3e3ec2;
    font-weight: 700;
    margin-top: 6px;
    font-size: 13px;
    gap: 10px;
    margin-bottom: 20px;
}

.pulse-dot {

    width: 8px;
    height: 8px;

    flex-shrink: 0;

    position: relative;

    display: inline-block;

    border-radius: 50%;

    background:
        radial-gradient(circle at 30% 30%,
            #ffd6d6 0%,
            #ff8f8f 35%,
            #ff6b6b 70%,
            #e54848 100%);

    box-shadow:
        0 0 10px rgba(255, 107, 107, .35),
        0 2px 6px rgba(229, 72, 72, .28),
        inset 0 1px 1px rgba(255, 255, 255, .7),
        inset 0 -1px 2px rgba(0, 0, 0, .12);
}

/* =========================
   INNER GLOW
========================= */

.pulse-dot::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    transform:
        translate(-50%, -50%);

    background:
        radial-gradient(circle at 30% 30%,
            #ffa9a9 0%,
            #ff8f8f 35%,
            #ff6b6b 70%,
            #e54848 100%);

    animation:
        pulseGlow 2s ease infinite;
}

/* =========================
   OUTER PULSE
========================= */

.pulse-dot::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    transform:
        translate(-50%, -50%);

    border:
        1px solid rgba(255, 107, 107, .18);

    animation:
        pulseWave 2.4s ease-out infinite;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes pulseGlow {

    0%,
    100% {
        opacity: .55;
        transform:
            translate(-50%, -50%) scale(.9);
    }

    50% {
        opacity: 1;
        transform:
            translate(-50%, -50%) scale(1.15);
    }
}

@keyframes pulseWave {

    0% {
        opacity: .45;

        transform:
            translate(-50%, -50%) scale(.7);
    }

    100% {
        opacity: 0;

        transform:
            translate(-50%, -50%) scale(1.7);
    }
}

/* вторая (дальше) */
.pulse-dot::after {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background: rgba(255, 107, 107, 0.06);
}

.row {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
}

.left {
    flex: 1;
}

.image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
}

.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    opacity: 0.9;
    text-align: center;
    margin-bottom: 20px;
}

/* =========================
   🌐 BASE
========================= */


/* =========================
   🌞 GREEN
========================= */
.node.current {

    /* 🔥 центр БЕЗ градиента */
    background: #00c853;

    border: 2px solid rgba(255, 255, 255, .78);

    /* 🔥 объем только по краям */
    box-shadow:
        0 6px 14px rgba(0, 0, 0, .10),

        inset 0 2px 3px rgba(255, 255, 255, .12),
        inset 0 -2px 4px rgba(0, 0, 0, .06),

        inset 2px 0 3px rgba(255, 255, 255, .04),
        inset -2px 0 3px rgba(0, 0, 0, .04);

}

/* =========================
   🔵 BLUE
========================= */
.node-left {

    background: #005cf2 !important;

    border: 2px solid rgba(255, 255, 255, .78);

    box-shadow:
        0 6px 14px rgba(0, 0, 0, .10),

        inset 0 2px 3px rgba(255, 255, 255, .12),
        inset 0 -2px 4px rgba(0, 0, 0, .06),

        inset 2px 0 3px rgba(255, 255, 255, .04),
        inset -2px 0 3px rgba(0, 0, 0, .04);

}

/* =========================
   🟣 PURPLE
========================= */
.node-right {

    background: #7641ef !important;

    border: 2px solid rgba(255, 255, 255, .78);

    box-shadow:
        0 6px 14px rgba(0, 0, 0, .10),

        inset 0 2px 3px rgba(255, 255, 255, .12),
        inset 0 -2px 4px rgba(0, 0, 0, .06),

        inset 2px 0 3px rgba(255, 255, 255, .04),
        inset -2px 0 3px rgba(0, 0, 0, .04);

}

/* =========================
   🟠 ORANGE
========================= */
.node-bottom {

    background: #ff6a1d !important;

    border: 2px solid rgba(255, 255, 255, .78);

    box-shadow:
        0 6px 14px rgba(0, 0, 0, .10),

        inset 0 2px 3px rgba(255, 255, 255, .12),
        inset 0 -2px 4px rgba(0, 0, 0, .06),

        inset 2px 0 3px rgba(255, 255, 255, .04),
        inset -2px 0 3px rgba(0, 0, 0, .04);

}

/* =========================
   ✨ VERY SOFT EDGE LIGHT
========================= */
.node::before {

    content: "";

    position: absolute;
    inset: 0;

    border-radius: inherit;

    pointer-events: none;

    /* 🔥 только края */
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .08),
        inset 0 -1px 0 rgba(0, 0, 0, .05);

}

/* =========================
   ✨ APPLE GLOSS
========================= */
.node::after {

    content: "";

    position: absolute;

    top: 7%;
    left: 12%;

    width: 76%;
    height: 26%;

    border-radius: 999px;

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, .12),
            rgba(255, 255, 255, .02));

    filter: blur(2px);

    opacity: .45;

    pointer-events: none;
}

/* кнопка */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 300px;
    gap: 6px;
    text-align: center;
    padding: 10px;
    border-radius: 12px;
    margin-bottom: 10px;
    border: none;
    cursor: pointer;
    background: linear-gradient(180deg, #A9C9FF 0%, #6FA8FF 45%, #4C8DFF 100%);
    color: white;
    letter-spacing: 1.1px;
    font-size: 13px;
    font-weight: 500;
    box-shadow:
        0 6px 14px rgba(76, 141, 255, .4),
        inset 0 1px 0 rgba(255, 255, 255, .7);
    transition: all 0.2s ease;
    margin: 0 auto;
    margin-bottom: 7px;
}

.btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

.btn:active {
    transform: scale(0.97);
    filter: brightness(0.95);
}

.nearby-item,
.btn {
    will-change: transform;
}

.gift-icon {
    display: flex;
    align-items: center;
    opacity: 0.95;
    transform: translateY(0.5px);
    /* микро-выравнивание */
}

/* пусто */
.nearby-empty {
    text-align: center;
    font-size: 13px;
    padding: 14px;
    color: rgba(0, 0, 0, .6);
}

.nearby-empty-sub {
    font-size: 11px;
    margin-top: 4px;
    opacity: .7;
}

.partners-varna-map {
    position: relative;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    margin: 10px 12px;
    z-index: 1
}



@keyframes geoPulse {
    0% {
        transform: translate(-50%, -50%) scale(.9);
        opacity: .38
    }

    45% {
        transform: translate(-50%, -50%) scale(1.02);
        opacity: .6
    }

    100% {
        transform: translate(-50%, -50%) scale(.9);
        opacity: .38
    }
}

.select {
    position: relative;
    z-index: 1;
    width: 100%
}

.select.open {
    z-index: 1000
}

.select__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 48px;
    padding: 0 12px 0 16px;
    border-radius: 12px;
    width: 100%;
    outline: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(15, 23, 42, 0.802);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
        0 6px 14px rgba(255, 200, 120, 0.18);
    transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease
}

.select__trigger:hover {
    transform: translateY(-1px);
    border-color: rgba(79, 157, 255, .22);
    box-shadow: inset 0 1px 2px rgba(17, 24, 39, .05), 0 8px 18px rgba(15, 23, 42, .06)
}

.select.open .select__trigger,
.select__trigger:focus {
    border-color: rgba(79, 157, 255, .28);
    box-shadow: inset 0 1px 2px rgba(17, 24, 39, .05), 0 8px 18px rgba(15, 23, 42, .06);
    outline: 0;
    transform: translateY(-1px)
}

.bonus-map {
    font-size: 17px;
    margin: 0;
    font-weight: 700;
    letter-spacing: -.03em;
    width: 100%;
    padding: 20px 18px;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12), 0 6px 14px rgba(0, 0, 0, .06), inset 0 1px 0 rgba(255, 255, 255, .45);
}

.bonus-map::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        url("../assets/location.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: .17;
    pointer-events: none;
}

.bonus-map__cont {
    padding: 40px 5px 40px;
}

.bonus-map__card {
    display: flex;
    align-items: center;
    position: relative;
    gap: 12px;
    margin-bottom: 20px;
    padding: 14px 12px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.map-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(180deg,
            #a9c9ff 0%,
            #6fa8ff 45%,
            #4c8dff 100%);

    box-shadow:
        0 6px 14px rgba(76, 141, 255, .35),
        inset 0 2px 4px rgba(255, 255, 255, .6);

    position: relative;
}

.map-icon::before {
    content: "";

    width: 18px;
    height: 18px;

    background: #fff;

    mask:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5A2.5 2.5 0 1 1 12 6.5a2.5 2.5 0 0 1 0 5z'/%3E%3C/svg%3E") center / contain no-repeat;

    -webkit-mask:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5A2.5 2.5 0 1 1 12 6.5a2.5 2.5 0 0 1 0 5z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.map-bonus-backg {
    position: relative;
    border-radius: 18px;
    background: radial-gradient(circle at 50% 40%, rgba(255, 255, 255, .16), rgba(255, 255, 255, 0) 60%), linear-gradient(135deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .28);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12), 0 6px 14px rgba(0, 0, 0, .06), inset 0 1px 0 rgba(255, 255, 255, .45);
    overflow: hidden;
}

.map-bonus-backg::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 85% 15%, rgba(255, 160, 60, .35), rgba(255, 200, 120, .12) 25%, rgba(255, 220, 150, .05) 45%, transparent 70%);
    opacity: .45;
    pointer-events: none;
    z-index: 0
}

.map-text {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 2px;
}

.map-desc {
    font-size: 14px;
    opacity: .7;
}


.select__value {
    font-size: 16px;
    font-weight: 500;
    color: #0f172ab0;
    letter-spacing: 0;
    line-height: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.select.has-value .select__value {
    font-size: 17px;
    font-weight: 500;
    color: rgba(15, 23, 42, .92);
    line-height: 1.5;
}

.select__arrow {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(76, 141, 255, 0.08);
    color: rgb(0 73 201);
    transition:
        transform .28s cubic-bezier(.4, 0, .2, 1),
        background .2s ease,
        box-shadow .2s ease;
}

.select__arrow svg {
    width: 16px;
    height: 16px;
}

/* OPEN STATE */

.select.open .select__arrow {
    transform: rotate(180deg);

    background: rgba(76, 141, 255, 0.16);

    box-shadow:
        0 4px 12px rgba(76, 141, 255, 0.18);
}

.select__dropdown {
    position: relative;
    left: 0;
    top: calc(100% + 30px);
    width: 100%;
    z-index: 1001;
    border-radius: 22px;
    background: radial-gradient(circle at 50% 40%, rgba(255, 255, 255, .16), rgba(255, 255, 255, 0) 60%), linear-gradient(135deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .28);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12), 0 6px 14px rgba(0, 0, 0, .06), inset 0 1px 0 rgba(255, 255, 255, .45);
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    display: none
}


.select.open .select__dropdown {
    opacity: 1;
    pointer-events: auto;
    display: block
}


.select__list {
    max-height: 100%;
    overflow: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
    display: grid;
    gap: 8px;
    overflow: auto
}

.select__option {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 54px;
    padding: 0 16px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(18px);
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition:
        transform .18s ease,
        background .18s ease,
        border-color .18s ease,
        box-shadow .18s ease;
}


.select__option:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(76, 141, 255, 0.22);
    box-shadow: 0 10px 22px rgba(15, 23, 42, .06)
}


.select__option.active {
    color: rgb(76, 141, 255);
    font-weight: 700;
    box-shadow:
        0 8px 20px rgba(76, 141, 255, 0.12);
}



.select__list::-webkit-scrollbar {
    width: 10px
}

.select__list::-webkit-scrollbar-thumb {
    background: rgba(15, 23, 42, .1);
    border-radius: 999px;
    border: 3px solid rgba(255, 255, 255, .7)
}

.select__list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, .4);
    border-radius: 999px
}

.partners-panel {
    position: relative;
    margin-top: 14px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .66), rgba(255, 255, 255, .52));
    border: 1px solid rgba(15, 23, 42, .06);
    box-shadow: var(--shadow-card);
    overflow: visible;
    transition: opacity .16s ease, transform .16s ease;
    z-index: 1;
    display: none
}

.partners-panel.active {
    display: block
}

.partners-panel__head {
    border-radius: 16px;
    padding: 14px 14px 10px;
    border-bottom: 1px solid rgba(15, 23, 42, .06);
    background: rgba(255, 255, 255, .46);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px)
}

.partners-panel__title {
    font-size: 15px;
    color: rgba(15, 23, 42, .92)
}

.partners-panel__meta {
    margin-top: 6px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(15, 23, 42, .55)
}

.partners-panel__meta,
.partners-panel__title {
    transition: opacity .2s ease
}

.partners-scroll {
    max-height: 220px;
    overflow: auto;
    padding: 12px;
    display: grid;
    gap: 10px
}

.partners-scroll::-webkit-scrollbar {
    width: 10px
}

.partners-scroll::-webkit-scrollbar-thumb {
    background: rgba(15, 23, 42, .1);
    border-radius: 999px;
    border: 3px solid rgba(255, 255, 255, .7)
}

.partners-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, .4);
    border-radius: 999px
}

.pin-map {
    width: 30px;
    height: 30px;

    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);

    background: linear-gradient(180deg,
            #A9C9FF 0%,
            #6FA8FF 45%,
            #4C8DFF 100%);

    box-shadow:
        0 8px 18px rgba(76, 141, 255, .6),
        0 0 0 6px rgba(76, 141, 255, .15),
        inset 0 1px 2px rgba(255, 255, 255, .9);

    position: relative;
}

.pin-map::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: white;
    top: 10px;
    left: 10px;
}

.leaflet-popup {
    bottom: 8px !important;
}

.leaflet-popup-content-wrapper {
    border-radius: 16px;
    backdrop-filter: blur(12px);

    background: rgba(255, 255, 255, 0.85);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);

    padding: 10px 12px;
}

.leaflet-popup-tip {
    background: rgba(255, 255, 255, 0.85);
}

.popup-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.popup-desc {
    font-size: 13px;
    color: #555;
    margin-bottom: 8px;
}

.popup-btn {
    display: block;
    text-align: center;

    padding: 8px;
    border-radius: 10px;

    background: linear-gradient(180deg,
            #A9C9FF,
            #4C8DFF);

    color: white;
    font-weight: 600;
    text-decoration: none;
}

body.is-modal-open {
    overflow: hidden
}

/* ------2 блок----- */

#how {
    position: relative;

    z-index: 0;
}

.how-backg {
    position: relative;
    margin: 50px 0 100px;
    border-radius: 18px;
    background: radial-gradient(circle at 50% 40%, rgba(255, 255, 255, .16), rgba(255, 255, 255, 0) 60%), linear-gradient(135deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .28);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12), 0 6px 14px rgba(0, 0, 0, .06), inset 0 1px 0 rgba(255, 255, 255, .45);
    overflow: hidden
}

.how-backg::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 85% 15%, rgba(255, 160, 60, .35), rgba(255, 200, 120, .12) 25%, rgba(255, 220, 150, .05) 45%, transparent 70%);
    opacity: .45;
    pointer-events: none;
    z-index: 0
}

.how-backg::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(120deg, rgba(255, 255, 255, .3) 0, rgba(255, 255, 255, 0) 45%);
    pointer-events: none;
    z-index: 1
}


.how-top {
    font-size: 17px;
    margin: 0;
    letter-spacing: -.03em;
    width: 100%;
    padding: 20px 18px;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12), 0 6px 14px rgba(0, 0, 0, .06), inset 0 1px 0 rgba(255, 255, 255, .45);
}


.how-top::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(../assets/how.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: .17;
    pointer-events: none;
}

.sections__title {
    font-size: 19px;
    margin: 0;
    font-weight: 700;
    letter-spacing: -.03em;
}

.sections__title-text {
    font-size: 14px
}

.how-steps {
    display: flex;
    flex-direction: column;
    padding: 40px 5px 40px;
    gap: 20px
}

.how-step {
    display: flex;
    align-items: center;
    position: relative;
    gap: 12px;
    padding: 14px 12px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.how-icon {
    font-weight: 600;
    width: 36px;
    height: 36px;
    padding: 0px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(180deg, #a9c9ff 0, #6fa8ff 45%, #4c8dff 100%);
    color: #fff;
    font-size: 16px;
    box-shadow: 0 6px 14px rgba(76, 141, 255, .35), inset 0 2px 4px rgba(255, 255, 255, .6)
}

.how-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px
}

.how-desc {
    font-size: 14px;
    opacity: .7
}

.footer-site {
    color: #01296c;
    position: relative;
    padding: 24px 0 34px;
    margin-top: 0;
    border-top:
        1px solid rgba(255, 255, 255, .45);
    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, .80) 0%,
            rgba(248, 250, 255, .80) 100%);
    backdrop-filter:
        blur(24px);
    -webkit-backdrop-filter:
        blur(24px);
    box-shadow:
        0 -12px 35px rgba(0, 0, 0, .05),
        inset 0 1px 0 rgba(255, 255, 255, .65);
    opacity: .83;
    overflow: hidden;
}

/* =========================
   TOP LIGHT
========================= */

.footer-site::before {
    content: "";
    position: absolute;
    top: -60px;
    left: -10%;
    width: 120%;
    height: 120px;
    background:
        radial-gradient(ellipse at center,
            rgba(76, 141, 255, .10) 0%,
            rgba(76, 141, 255, .04) 35%,
            rgba(76, 141, 255, 0) 75%);

    pointer-events: none;
}

/* =========================
   BOTTOM GLOW
========================= */

.footer-site::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform:
        translateX(-50%);

    width: 72%;
    height: 28px;
    border-radius: 999px;
    background:
        rgba(76, 141, 255, .08);

    filter:
        blur(20px);
    pointer-events: none;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 18px;

    margin-bottom: 14px;

    flex-wrap: wrap;
}

.footer-links a {
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.2s ease;
}

.footer-links a:hover {
    color: rgba(15, 23, 42, 1);
}

.footer-bottom {
    text-align: center;
    font-weight: 500;
}

.footer-mini {
    font-size: 13px;
    margin-bottom: 6px;
}

.footer-copy {
    font-size: 12px;
}

/* ----client---- */

/* ===== STATUS ===== */
.status {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 12px;
    font-size: 14px;
    line-height: 1.5;
    backdrop-filter: blur(12px);
}

/* ===== OFFERS ===== */
.offers {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}


/* карточка */
.card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 14px;
    backdrop-filter: blur(12px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.card-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.card-bonus {
    font-size: 14px;
    margin-bottom: 6px;
}

.card-meta {
    font-size: 13px;
    opacity: 0.7;
    margin-top: 4px;
}

.card-distance {
    font-size: 12px;
    opacity: 0.7;
}


/* кнопка */
.card-btn {
    margin-top: 10px;
    padding: 10px;
    background: linear-gradient(180deg, #6FA8FF, #4C8DFF);
    border-radius: 10px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

/* ===== LIVE ===== */
.live {
    padding: 10px;
}

.live-box {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 12px;
    font-size: 13px;
    backdrop-filter: blur(10px);
}

/* ===== NEXT ===== */
.next {
    padding: 10px;
}

.next-title {
    font-size: 14px;
    margin-bottom: 8px;
}

.next-list {
    display: flex;
    gap: 8px;
}

.next-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 13px;
}




/* ===== ROUTE BUTTON ===== */
.route-btn {
    position: fixed;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: #ffffff;
    color: #000;
    text-align: center;
    padding: 14px;
    border-radius: 14px;
    font-weight: 600;
    cursor: pointer;
}

#live {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
    z-index: 9999;
}

.live-box {
    position: fixed;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);

    background: rgba(0, 0, 0, 0.7);
    color: #fff;

    padding: 12px 18px;
    border-radius: 14px;

    font-size: 14px;
    backdrop-filter: blur(10px);

    transition: all 0.3s ease;
    z-index: 9999;

    opacity: 0;
}

/* -----бизнес---- */

.dashboard-inner {
    flex-direction: column;
    display: flex;
    gap: 20px;
}

.dashboard-cont {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    padding: 7px 5px 7px;
    margin-bottom: 100px;
    border-radius: 18px;
    background: radial-gradient(circle at 50% 40%, rgba(255, 255, 255, .16), rgba(255, 255, 255, 0) 60%), linear-gradient(135deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .28);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12), 0 6px 14px rgba(0, 0, 0, .06), inset 0 1px 0 rgba(255, 255, 255, .45);
    backdrop-filter: blur(6px) saturate(110%);
    z-index: 2;
}

.dashboard-cont::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 30% 20%, rgb(197 129 82 / 45%), transparent 40%), radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.35), transparent 35%);
    mix-blend-mode: overlay;
    opacity: 0.6;
    pointer-events: none;
}


.dashboard-period-head {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;

}

.dashboard-periods {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* =========================
   BUTTON
========================= */

.period-btn {
    position: relative;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 12px 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    letter-spacing: 0.3px;
    transition:
        transform 0.18s ease,
        box-shadow 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
    color: var(--text);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    font-size: 15px;
    font-weight: 900;
    -webkit-tap-highlight-color: transparent;
}

/* hover */

.period-btn:hover {
    transform: translateY(-1px);

    box-shadow:
        0 8px 18px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* click */

.period-btn:active {
    transform: scale(0.96);
}

/* =========================
   ACTIVE
========================= */

.period-btn.active {
    background: linear-gradient(180deg,
            #A9C9FF 0%,
            #6FA8FF 45%,
            #4C8DFF 100%);

    color: white;
    letter-spacing: 1.1px;
    font-size: 13px;
    font-weight: 500;
    box-shadow:
        0 6px 14px rgba(76, 141, 255, .4),
        inset 0 1px 0 rgba(255, 255, 255, .7);

}

/* glow */

.period-btn.active::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.45),
            rgba(255, 255, 255, 0));

    pointer-events: none;
}

/* =========================
   RANGE
========================= */

.period-range {
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    box-shadow:
        0 6px 18px rgba(0, 0, 0, .06),
        inset 0 1px 0 rgba(255, 255, 255, .9);
}

.cabinet {
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
}

input,
select {
    width: 100%;
    margin: 8px 0;
    padding: 10px;
}

#publishBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 300px;
    text-align: center;
    cursor: pointer;
    color: white;
    letter-spacing: 1.1px;
    font-size: 15px;
    font-weight: 500;
    box-shadow: rgba(76, 141, 255, 0.4) 0px 6px 14px, rgba(255, 255, 255, 0.7) 0px 1px 0px inset;
    gap: 6px;
    padding: 10px 30px;
    border-radius: 12px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    background: linear-gradient(rgb(169, 201, 255) 0%, rgb(111, 168, 255) 45%, rgb(76, 141, 255) 100%);
    transition: 0.2s;
    margin: 0px auto 50px;
}



.mini-offers-block {
    margin-bottom: 100px;
}

.dashboard-kpi {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.kpi {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12), 0 6px 14px rgba(0, 0, 0, .06), inset 0 1px 0 rgba(255, 255, 255, .45);
    border-radius: 16px;
    padding: 10px 5px 30px;
}

.kpi-top {
    position: relative;
    overflow: hidden;
    text-align: center;
    font-size: 18px;
    padding: 14px 16px 14px 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(76, 141, 255, 0.08), rgba(76, 141, 255, 0.03));
    line-height: 1.5;
    text-shadow: 0 1px 1px rgba(255, 255, 255, .65);
    box-shadow: 0 10px 28px rgba(76, 141, 255, .10), inset 0 1px 0 rgba(255, 255, 255, .7);
    margin-bottom: 8px;

}

.kpi-info {
    display: flex;
    justify-content: space-around;
}

.kpi-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.kpi-client {
    display: flex;
    flex-direction: column;
}

.kpi-value {
    color: #4c8dff;
    margin-bottom: 8px;
}

.kpi-label {
    color: #4c8dff;
    margin-bottom: 8px;
}

.kpi-summ {
    color: rgb(255 0 0 / 65%);
}

.kpi-money {
    color: rgb(255 0 0 / 65%);
}


/* -----круг------ */
/* =========================
   DASHBOARD
========================= */


.dashboard-blocks {
    position: relative;
    padding: 7px 5px 7px;
    border-radius: 18px;
    background: radial-gradient(circle at 50% 40%, rgba(255, 255, 255, .16), rgba(255, 255, 255, 0) 60%), linear-gradient(135deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .28);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12), 0 6px 14px rgba(0, 0, 0, .06), inset 0 1px 0 rgba(255, 255, 255, .45);
    backdrop-filter: blur(6px) saturate(110%);
    z-index: 2;
}

.dashboard-blocks::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 30% 20%, rgb(197 129 82 / 45%), transparent 40%), radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.35), transparent 35%);
    mix-blend-mode: overlay;
    opacity: 0.6;
    pointer-events: none;
}

.dashboard-block {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12), 0 6px 14px rgba(0, 0, 0, .06), inset 0 1px 0 rgba(255, 255, 255, .45);
    border-radius: 16px;
    padding: 10px 5px 20px;
}


.block-title {
    position: relative;
    overflow: hidden;
    text-align: center;
    font-size: 18px;
    padding: 14px 16px 14px 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(76, 141, 255, 0.08), rgba(76, 141, 255, 0.03));
    line-height: 1.5;
    text-shadow: 0 1px 1px rgba(255, 255, 255, .65);
    box-shadow: 0 10px 28px rgba(76, 141, 255, .10), inset 0 1px 0 rgba(255, 255, 255, .7);
    margin-bottom: 10px;
}


.route-live-status {
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    align-self: flex-start;
    margin: 0 0 24px;
    padding: 9px 13px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(12px);
    font-size: 13px;
    font-weight: 700;

}

#flowOut {
    display: flex;
    color: #4c8dff;
    flex-direction: column;
    align-items: center;
}

#flowIn {
    display: flex;
    color: #4c8dff;
    flex-direction: column;
    align-items: center;
}

#bestPartner {
    display: flex;
    color: #4c8dff;
    flex-direction: column;
    align-items: center;
}

/* =========================
   STATUS
========================= */
.flow-status {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .8);
    backdrop-filter: blur(20px);
    box-shadow:
        0 6px 18px rgba(0, 0, 0, .06),
        inset 0 1px 0 rgba(255, 255, 255, .9);
}



.flow-badge {
    color: #4c8dff;
    font-weight: 500;
}

/* =========================
   CIRCLE
========================= */
.dashboard-circle {
    margin-bottom: 100px;
}

.flow-circle {
    position: relative;
    width: 260px;
    height: 260px;
    margin: 55px auto 50px;
    border-radius: 50%;
}

.flow-dot {
    fill: #00c853;
    opacity: 0;
}

/* =========================
   SVG
========================= */

.flow-lines {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12), 0 6px 14px rgba(0, 0, 0, .06), inset 0 1px 0 rgba(255, 255, 255, .45);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

#flowLines {
    overflow: visible;
}

/* =========================
   CURVED LINES
========================= */

.flow-line {
    marker-end: url(#arrow);
    stroke: #efefef;
    stroke-width: 1.5;
    fill: none;
    opacity: 0.9;
}



/* =========================
   COUNTS
========================= */

.flow-count-bg {
    fill: #00c853;
    opacity: 0.85;
}

.flow-count {
    fill: white;
    font-size: 12px;
    font-weight: bold;
    text-anchor: middle;
}

/* =========================
   NODES
========================= */

.live-dot {

    position: relative;

    display: inline-block;

    width: 8px;
    height: 8px;

    margin: 0 6px;

    border-radius: 50%;

    background:
        radial-gradient(circle at 30% 30%,
            #b9ffd0 0%,
            #4dff8d 35%,
            #00c853 70%,
            #009624 100%);

    box-shadow:
        0 0 10px rgba(0, 200, 83, .45),
        0 2px 6px rgba(0, 150, 36, .35),
        inset 0 1px 1px rgba(255, 255, 255, .8),
        inset 0 -1px 2px rgba(0, 0, 0, .12);

    animation:
        liveDotFloat 2.2s ease-in-out infinite;
}

/* =========================
   INNER GLOW
========================= */

.live-dot::after {

    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 16px;
    height: 16px;

    border-radius: 50%;

    transform:
        translate(-50%, -50%);

    background:
        radial-gradient(circle,
            rgba(0, 200, 83, .25) 0%,
            rgba(0, 200, 83, .12) 45%,
            rgba(0, 200, 83, 0) 75%);

    animation:
        liveGlow 2s ease infinite;
}

/* =========================
   OUTER WAVE
========================= */

.live-dot::before {

    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 22px;
    height: 22px;

    border-radius: 50%;

    transform:
        translate(-50%, -50%);

    border:
        1px solid rgba(0, 200, 83, .18);

    animation:
        liveWave 2.4s ease-out infinite;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes liveDotFloat {

    0%,
    100% {

        transform:
            translateY(0);

        filter:
            brightness(1);
    }

    50% {

        transform:
            translateY(-1px);

        filter:
            brightness(1.08);
    }
}

@keyframes liveGlow {

    0%,
    100% {

        opacity: .55;

        transform:
            translate(-50%, -50%) scale(.9);
    }

    50% {

        opacity: 1;

        transform:
            translate(-50%, -50%) scale(1.15);
    }
}

@keyframes liveWave {

    0% {

        opacity: .45;

        transform:
            translate(-50%, -50%) scale(.7);
    }

    100% {

        opacity: 0;

        transform:
            translate(-50%, -50%) scale(1.8);
    }
}

.node {
    position: absolute;
    overflow: hidden;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    color: white;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6px;
    z-index: 2;
    transition: 0.3s;
}

/* позиции */
.node-top {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.node-right {
    right: 0;
    top: 50%;
    transform: translate(50%, -50%);
}

.node-bottom {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
}

.node-left {
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
}



.preview-block {
    padding: 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(76, 141, 255, 0.25);
    box-shadow: 0 10px 40px rgb(76 141 255 / 37%), 0 0 0 6px rgb(76 141 255 / 4%);
}

#preview {
    margin-bottom: 20px;
}

.offer-badge {
    position: relative;
    overflow: hidden;
    margin-bottom: 14px;
    padding: 14px 16px 14px 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(76, 141, 255, 0.08), rgba(76, 141, 255, 0.03));
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
    color: rgba(15, 23, 42, 0.767);
    text-shadow: 0 1px 1px rgba(255, 255, 255, .65);
    box-shadow: 0 10px 28px rgba(76, 141, 255, .10), inset 0 1px 0 rgba(255, 255, 255, .7);
}

.mini-offer-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    padding: 10px 20px 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mini-source {
    color: #4c8dff;
    position: relative;
    overflow: hidden;
    text-align: center;
    margin-bottom: 20px;
    padding: 14px 16px 14px 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(76, 141, 255, 0.08), rgba(76, 141, 255, 0.03));
    line-height: 1.5;
    text-shadow: 0 1px 1px rgba(255, 255, 255, .65);
    box-shadow: 0 10px 28px rgba(76, 141, 255, .10), inset 0 1px 0 rgba(255, 255, 255, .7);
}

.mini-note {
    color: rgb(0, 108, 23);
    margin-bottom: 20px;
}

#miniOffers {
    display: flex;
    padding: 7px 5px 7px;
    flex-direction: column;
    gap: 16px;
}

.mini-service-price {
    display: flex;
    gap: 10px;
}

.offer-form input {
    width: 100%;
    padding: 16px 18px;
    border-radius: 18px;
    color: var(--text) #01296c;
    border: 1px solid rgba(255, 255, 255, .35);
    background:
        rgba(255, 255, 255, .72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    margin-bottom: 30px;
    outline: none;
    transition:
        border .25s ease,
        box-shadow .25s ease,
        transform .2s ease,
        background .25s ease;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, .05),
        inset 0 1px 0 rgba(255, 255, 255, .65);

}



.offer-form input:hover,
.offer-form select:hover {

    transform: translateY(-1px);

}

.offer-form input:focus,
.offer-form select:focus {

    background:
        rgba(255, 255, 255, .92);

    box-shadow:
        0 0 0 4px rgba(76, 141, 255, .12),
        0 12px 30px rgba(76, 141, 255, .18);

}

.select-wrap {
    position: relative;
}

.offer-form select {

    width: 100%;

    padding:
        16px 54px 16px 18px !important;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    cursor: pointer;
}

.input-error {
    border: 2px solid #ff4d4f !important;
    background: rgba(255, 77, 79, 0.05);
    box-shadow: 0 0 0 4px rgba(255, 77, 79, 0.12);
}

.input-error::placeholder {
    color: #ff4d4f;
}

/* custom arrow */

.select-wrap::after {
    content: "›";
    position: absolute;
    right: 18px;
    top: 50%;
    border-radius: 50%;
    transform:
        translateY(-50%) rotate(90deg);

    font-size: 18px;
    font-weight: 700;
    color: #4c8dff;
    pointer-events: none;
    opacity: 0.9;



}

.cabinet-business-name {

    font-size: 15px;
    font-weight: 700;
    color: #4c8dff;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;

}

.cabinet-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 460px;
    margin: 100px auto;
    padding: 16px 24px;
    border-radius: 999px;
    overflow: hidden;
    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, .92) 0%,
            rgba(248, 250, 255, .82) 100%);

    backdrop-filter:
        blur(26px);

    -webkit-backdrop-filter:
        blur(26px);

    border:
        1px solid rgba(255, 255, 255, .58);

    box-shadow:
        0 22px 50px rgba(0, 0, 0, .10),
        0 8px 18px rgba(0, 0, 0, .05),
        inset 0 1px 0 rgba(255, 255, 255, .92),
        inset 0 -1px 0 rgba(255, 255, 255, .22);

    transition:
        transform .28s ease,
        box-shadow .28s ease,
        background .28s ease;
}

/* =========================
   TOP LIGHT
========================= */

.cabinet-inner::before {

    content: "";

    position: absolute;

    top: -60%;
    left: -10%;

    width: 120%;
    height: 140%;

    background:
        radial-gradient(ellipse at top,
            rgba(76, 141, 255, .16) 0%,
            rgba(76, 141, 255, .05) 35%,
            rgba(76, 141, 255, 0) 72%);

    pointer-events: none;
}

/* =========================
   BOTTOM GLOW
========================= */

.cabinet-inner::after {

    content: "";

    position: absolute;

    bottom: -18px;
    left: 50%;

    transform:
        translateX(-50%);

    width: 70%;
    height: 28px;

    border-radius: 999px;

    background:
        rgba(76, 141, 255, .12);

    filter:
        blur(20px);

    opacity: .9;

    pointer-events: none;
}

/* =========================
   HOVER
========================= */


.current-business {
    font-size: 20px;
    color: #4c8dff;
}

.business-cabinet {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px 24px;
    margin-top: 50px;
    margin-bottom: 100px;
    border-radius: 50px;
    overflow: hidden;
    text-align: center;
    font-size: 23px;
    font-weight: 700;
    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, .96) 0%,
            rgba(250, 252, 255, .88) 100%);

    backdrop-filter:
        blur(24px);

    -webkit-backdrop-filter:
        blur(24px);

    border:
        1px solid rgba(255, 255, 255, .65);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, .10),
        0 8px 18px rgba(0, 0, 0, .05),
        inset 0 1px 0 rgba(255, 255, 255, .95),
        inset 0 -1px 0 rgba(255, 255, 255, .3);

    text-shadow:
        0 1px 0 rgba(255, 255, 255, .85);

    z-index: 5;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}




/* =========================
   WEEKLY FORECAST
========================= */


.forecast-title {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgb(0, 108, 23);
}

.forecast-ai-text {
    font-size: 15px;
}

.forecast-date {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding: 8px 12px;

    border-radius: 12px;

    background: rgba(76, 141, 255, .08);

    color: #4c8dff;

    font-size: 13px;

    font-weight: 600;

    margin-bottom: 16px;

}

.forecast-ai-cont {
    padding: 30px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.forecast-ai-title {
    color: rgb(0, 108, 23);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.forecast-title-cont {
    border-radius: 18px;
    padding: 30px 14px;
    background: rgba(255, 255, 255, 0.9);
}

.forecast-text {
    font-size: 15px;
}








/* =========================
EVENTS
========================= */

.forecast-events-title {
    font-size: 15px;
    font-weight: 700;
    color: #01296c;
    margin-bottom: 12px;

}

.forecast-events {

    display: flex;

    flex-direction: column;

    gap: 10px;

}

.forecast-event {

    background: #f8fbff;

    border-radius: 16px;

    padding: 14px;

    border: 1px solid rgba(76, 141, 255, .12);

    transition: .25s ease;

}

.forecast-event:hover {

    transform: translateY(-2px);

    box-shadow:
        0 10px 20px rgba(76, 141, 255, .10);

}

.forecast-event-name {

    font-size: 14px;

    font-weight: 700;

    color: #01296c;

    margin-bottom: 6px;

}

.forecast-event-meta {

    font-size: 13px;

    color: #64748b;

    line-height: 1.5;

}

.forecast-no-events {

    padding: 14px;

    border-radius: 14px;

    background: #f8fafc;

    color: #64748b;

    text-align: center;

}

/* =========================
   UPDATED
========================= */



.section-head {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px 24px;
    margin-bottom: 24px;
    border-radius: 30px;
    overflow: hidden;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, .96) 0%,
            rgba(250, 252, 255, .88) 100%);

    backdrop-filter:
        blur(24px);

    -webkit-backdrop-filter:
        blur(24px);

    border:
        1px solid rgba(255, 255, 255, .65);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, .10),
        0 8px 18px rgba(0, 0, 0, .05),
        inset 0 1px 0 rgba(255, 255, 255, .95),
        inset 0 -1px 0 rgba(255, 255, 255, .3);

    text-shadow:
        0 1px 0 rgba(255, 255, 255, .85);

    z-index: 5;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

/* =========================
   BLUE LIGHT
========================= */

.section-head::before {

    content: "";

    position: absolute;

    top: -50%;
    left: -15%;

    width: 130%;
    height: 120%;

    background:
        radial-gradient(ellipse at top,
            rgba(76, 141, 255, .18) 0%,
            rgba(76, 141, 255, .06) 35%,
            rgba(76, 141, 255, 0) 72%);

    pointer-events: none;
}

/* =========================
   SOFT GLOW
========================= */

.section-head::after {

    content: "";

    position: absolute;

    bottom: -18px;
    left: 50%;

    transform:
        translateX(-50%);

    width: 72%;
    height: 26px;

    border-radius: 999px;

    background:
        rgba(76, 141, 255, .14);

    filter:
        blur(18px);

    opacity: .9;

    pointer-events: none;
}

/* =========================
   TEXT EFFECT
========================= */

.section-head {

    background-clip:
        padding-box;

    -webkit-font-smoothing:
        antialiased;

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "SF Pro Display",
        sans-serif;
}

/* =========================
   HOVER
========================= */

.section-head:hover {

    transform:
        translateY(-1px);

    box-shadow:
        0 26px 55px rgba(76, 141, 255, .14),
        0 10px 22px rgba(0, 0, 0, .06),
        inset 0 1px 0 rgba(255, 255, 255, .98),
        inset 0 -1px 0 rgba(255, 255, 255, .3);
}



.title-text {
    text-align: center;
}


.preview-head {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px 24px;
    margin-bottom: 24px;
    border-radius: 30px;
    overflow: hidden;
    text-align: center;
    text-align: center;
    font-size: 20px;
    font-weight: 700;

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, .96) 0%,
            rgba(250, 252, 255, .88) 100%);

    backdrop-filter:
        blur(24px);
    -webkit-backdrop-filter:
        blur(24px);
    border:
        1px solid rgba(255, 255, 255, .65);
    box-shadow:
        0 20px 45px rgba(0, 0, 0, .10),
        0 8px 18px rgba(0, 0, 0, .05),
        inset 0 1px 0 rgba(255, 255, 255, .95),
        inset 0 -1px 0 rgba(255, 255, 255, .3);
    text-shadow:
        0 1px 0 rgba(255, 255, 255, .85);
    z-index: 5;
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

/* =========================
   BLUE LIGHT
========================= */

.preview-head::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -15%;
    width: 130%;
    height: 120%;
    background:
        radial-gradient(ellipse at top,
            rgba(76, 141, 255, .18) 0%,
            rgba(76, 141, 255, .06) 35%,
            rgba(76, 141, 255, 0) 72%);
    pointer-events: none;
}

/* =========================
   SOFT GLOW
========================= */

.preview-head::after {
    content: "";
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform:
        translateX(-50%);
    width: 72%;
    height: 26px;
    border-radius: 999px;
    background:
        rgba(76, 141, 255, .14);
    filter:
        blur(18px);
    opacity: .9;
    pointer-events: none;
}



/* =========================
   HOVER
========================= */

.preview-head:hover {

    transform:
        translateY(-1px);

    box-shadow:
        0 26px 55px rgba(76, 141, 255, .14),
        0 10px 22px rgba(0, 0, 0, .06),
        inset 0 1px 0 rgba(255, 255, 255, .98),
        inset 0 -1px 0 rgba(255, 255, 255, .3);
}

.cabinet-section {
    margin-bottom: 100px;
}




.ai-label,
.business-label {
    display: inline-flex;
    align-items: center;
    width: max-content;
    margin: 2px 0 -2px 6px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(10px);

}

.ai-label {
    color: rgb(0, 108, 23);
    background: rgba(255, 255, 255, .95);
    box-shadow:
        0 6px 16px rgba(1, 41, 108, .05),
        inset 0 1px 0 rgba(255, 255, 255, .95);

}

.business-label {
    color: rgb(255 0 0 / 65%);
    background: rgba(255, 255, 255, .95);
    box-shadow:
        0 6px 16px rgba(13, 110, 253, .08),
        inset 0 1px 0 rgba(255, 255, 255, .9);

}


.ai-form-hint {
    display: flex;
    font-weight: 500;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    padding: 12px 14px;
    border-radius: 16px 16px 0px 0px;
    background:
        rgba(255, 255, 255, .82);
    color: rgba(15, 23, 42, .76);
    border:
        1px solid rgba(1, 41, 108, .08);
    backdrop-filter:
        blur(12px);
    box-shadow:
        0 8px 24px rgba(1, 41, 108, .06);
}


.site-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, .96),
            rgba(248, 250, 255, .98));

    backdrop-filter: blur(8px);
    transition:
        opacity .4s ease,
        visibility .4s ease;

}

.site-loader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

}

.site-loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.site-loader-avatar {
    width: 88px;
    height: 88px;
    object-fit: contain;
    margin-bottom: 18px;
    animation:
        pulse 2s ease-in-out infinite;

}

.site-loader-title {
    color: #01296c;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -.02em;

}

.site-loader-text {
    max-width: 280px;
    color: #6b7a99;
    font-size: 14px;
    line-height: 1.6;

}

@keyframes pulse {

    0%,
    100% {

        transform: scale(1);
    }

    50% {

        transform: scale(1.08);
    }

}

.routes-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 7px 5px 7px;
    border-radius: 18px;
    background: radial-gradient(circle at 50% 40%, rgba(255, 255, 255, .16), rgba(255, 255, 255, 0) 60%), linear-gradient(135deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .28);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12), 0 6px 14px rgba(0, 0, 0, .06), inset 0 1px 0 rgba(255, 255, 255, .45);
    backdrop-filter: blur(6px) saturate(110%);
    z-index: 2;
}

.routes-inner::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 30% 20%, rgb(197 129 82 / 45%), transparent 40%), radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.35), transparent 35%);
    mix-blend-mode: overlay;
    opacity: 0.6;
    pointer-events: none;
}

.route-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    padding: 20px 20px 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.route-title {
    margin-bottom: 10px;
}

.planet-price {
    margin-bottom: 15px;
}

.offer-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* =========================
   BUSINESS
========================= */

.offer-business {
    color: #4c8dff;
    padding-left: 2px;
}

/* =========================
   PLANET
========================= */



.planet-block {
    position: relative;
    overflow: hidden;
    margin-bottom: 14px;
    padding: 14px 16px 14px 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(76, 141, 255, 0.08), rgba(76, 141, 255, 0.03));
    text-shadow: 0 1px 1px rgba(255, 255, 255, .65);
    box-shadow: 0 10px 28px rgba(76, 141, 255, .10), inset 0 1px 0 rgba(255, 255, 255, .7);
    margin-bottom: 8px;
}

.planet-title {
    margin-bottom: 10px;
}



/* =========================
   SUN
========================= */

.sun-block {
    display: flex;
    flex-direction: column;
    padding: 14px 16px 14px 18px;
    gap: 10px;
}

.block-label {
    font-size: 18px;
    font-weight: 800;
}

.offer-title {
    margin-right: 10px;
}

.offer-bonus__inner {
    display: flex;
    margin-bottom: 20px;
    gap: 10px;
}


.offer-bonus {
    color: rgb(0, 108, 23);
    display: flex;
    align-items: center;
    gap: 10px;
}


.offer-conditions {
    display: flex;
    align-items: center;
    border-top: 1px solid #dee8ff;
    padding-top: 6px;
    font-size: 15px;
    gap: 10px;
    color: rgb(255 0 0 / 65%);
    font-weight: 600;
}

/* =========================
   DATE
========================= */

.offer-date {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 2px;
    margin-left: 18px;
    font-size: 12px;
    font-weight: 500;
}

/* =========================
   DOT
========================= */

.update-dot {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* =========================
   GREEN
========================= */

.update-dot.green {

    background:
        linear-gradient(180deg,
            #6CFF9B 0%,
            #00C853 100%);

    box-shadow:
        0 0 10px rgba(0, 200, 83, .55),
        0 0 18px rgba(0, 200, 83, .25);
}

/* =========================
   ORANGE
========================= */

.update-dot.orange {

    background:
        linear-gradient(180deg,
            #FFD66B 0%,
            #FF9800 100%);

    box-shadow:
        0 0 10px rgba(255, 152, 0, .45),
        0 0 18px rgba(255, 152, 0, .18);
}

/* =========================
   GRAY
========================= */

.update-dot.gray {

    background:
        linear-gradient(180deg,
            #D6DCE5 0%,
            #98A2B3 100%);

    box-shadow:
        0 0 8px rgba(152, 162, 179, .18);
}


.block-label__dop {
    font-weight: 800;
    margin-bottom: 10px;
    padding-bottom: 3px;
}

/* =========================
   STATUS WRAPPER
========================= */

/* =========================
   STATUS
========================= */

#status {
    margin-top: 5px;
    opacity: 0;
    transform:
        translateY(10px) scale(.98);
    transition:
        all .45s cubic-bezier(.2, .8, .2, 1);
}

#status.show-status {
    opacity: 1;
    transform:
        translateY(0) scale(1);
}

/* =========================
   TOAST
========================= */

.success-toast {

    display: flex;
    align-items: center;
    gap: 14px;

    padding: 16px;

    border-radius: 24px;

    background:
        rgba(255, 255, 255, .82);

    backdrop-filter:
        blur(24px);

    border:
        1px solid rgba(255, 255, 255, .65);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, .10),
        0 8px 20px rgba(0, 0, 0, .05),
        inset 0 1px 0 rgba(255, 255, 255, .92);

    animation:
        successEnter .5s cubic-bezier(.2, .8, .2, 1);
}

/* =========================
   ICON
========================= */

.success-icon {

    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border-radius: 50%;

    background:
        linear-gradient(180deg,
            #6CFF9B 0%,
            #00C853 100%);

    color: white;

    font-size: 20px;
    font-weight: 700;

    box-shadow:
        0 10px 22px rgba(0, 200, 83, .28),
        inset 0 1px 0 rgba(255, 255, 255, .45);
}

/* =========================
   CONTENT
========================= */

.success-content {
    flex: 1;

    display: flex;
    flex-direction: column;
}

.success-title {

    font-size: 15px;
    font-weight: 700;

    color: #111827;
}

.success-subtitle {

    margin-top: 2px;

    font-size: 13px;

    color:
        rgba(15, 23, 42, .48);
}

/* =========================
   PROGRESS
========================= */

.success-progress {

    position: relative;

    overflow: hidden;

    width: 100%;
    height: 6px;

    margin-top: 12px;

    border-radius: 999px;

    background:
        rgba(76, 141, 255, .10);
}

.success-progress-bar {

    position: absolute;
    left: 0;
    top: 0;

    height: 100%;
    width: 0%;

    border-radius: 999px;

    background:
        linear-gradient(90deg,
            #A9C9FF 0%,
            #6FA8FF 50%,
            #4C8DFF 100%);

    box-shadow:
        0 0 12px rgba(76, 141, 255, .35);

    animation:
        progressFill 1.7s linear forwards;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes successEnter {

    0% {
        opacity: 0;

        transform:
            translateY(12px) scale(.96);
    }

    100% {
        opacity: 1;

        transform:
            translateY(0) scale(1);
    }

}

@keyframes progressFill {

    from {
        width: 0%;
    }

    to {
        width: 100%;
    }

}







/* =========================
   PUSH CONTENT
========================= */

.push-content {

    display: flex;
    flex-direction: column;

    gap: 6px;

    cursor: pointer;

}

/* =========================
   TITLE
========================= */

.push-title {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 500;
    color: #0b1835;
    letter-spacing: 1.1px;
}

/* =========================
   SUB
========================= */

.push-business {
    color: #5b6475;
    font-size: 17px;
    padding-right: 20px;

}

.push-sub__bon {
    display: flex;
    align-items: center;
}

.push-sub {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
}

.push-bus-local {
    display: flex;
    align-items: center;
}

.push-bonus {
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
    color: #444;
}

.push-sub__plus {
    padding: 0px 5px;
    font-size: 16px;
    font-weight: 900;
    color: #ff3e3ec2;
}

/* =========================
   DISTANCE
========================= */

.push-distance {
    display: inline-flex;
    color: #5b6475;
    align-items: center;
    font-size: 15px;
    font-weight: 500;

}

/* =========================
   LIVE ANIMATION
========================= */

@keyframes livePulse {

    0% {

        box-shadow:
            0 0 0 0 rgba(34, 197, 94, .45);

    }

    70% {

        box-shadow:
            0 0 0 8px rgba(34, 197, 94, 0);

    }

    100% {

        box-shadow:
            0 0 0 0 rgba(34, 197, 94, 0);

    }

}

/* =========================
   OFFER ANALYTICS
========================= */

.offer-analytics__inner {
    position: relative;
    padding: 7px 5px 7px;
    border-radius: 18px;
    background: radial-gradient(circle at 50% 40%, rgba(255, 255, 255, .16), rgba(255, 255, 255, 0) 60%), linear-gradient(135deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .28);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12), 0 6px 14px rgba(0, 0, 0, .06), inset 0 1px 0 rgba(255, 255, 255, .45);
    backdrop-filter: blur(6px) saturate(110%);
    margin-bottom: 100px;
    z-index: 2;
}

.offer-analytics__inner::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 30% 20%, rgb(197 129 82 / 45%), transparent 40%), radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.35), transparent 35%);
    mix-blend-mode: overlay;
    opacity: 0.6;
    pointer-events: none;
}


.offer-analytics-card {
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12), 0 6px 14px rgba(0, 0, 0, .06), inset 0 1px 0 rgba(255, 255, 255, .45);
    border-radius: 16px;
    padding: 10px 20px 25px;

}

.offer-analytics-title {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 14px 16px 14px 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(76, 141, 255, 0.08), rgba(76, 141, 255, 0.03));
    line-height: 1.5;
    text-shadow: 0 1px 1px rgba(255, 255, 255, .65);
    box-shadow: 0 10px 28px rgba(76, 141, 255, .10), inset 0 1px 0 rgba(255, 255, 255, .7);
    margin-bottom: 20px;
    font-size: 18px;
}

.offer-analytics-bonus {

    padding: 14px 18px;

    border-radius: 18px;

    background:
        linear-gradient(180deg,
            rgba(76, 141, 255, .08) 0%,
            rgba(76, 141, 255, .04) 100%);

    color: #4c8dff;

    font-size: 15px;
    font-weight: 700;

    margin-bottom: 18px;

}

.offer-analytics-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);
}

.analytics-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    border-bottom: 1px solid #eceef5;

}

#offerAnalyticsDate {
    color: rgb(0, 108, 23);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .offer-analytics-grid {

        grid-template-columns: 1fr;

    }

}

.offer-title-price {
    display: flex;

}

.analytics-days {
    display: block;
    font-size: 15px;
    font-weight: 500;

}

.best-offer-card {
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12), 0 6px 14px rgba(0, 0, 0, .06), inset 0 1px 0 rgba(255, 255, 255, .45);
    border-radius: 16px;
    padding: 10px 20px 25px;
}

.best-offer-title {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 14px 16px 14px 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(76, 141, 255, 0.08), rgba(76, 141, 255, 0.03));
    line-height: 1.5;
    text-shadow: 0 1px 1px rgba(255, 255, 255, .65);
    box-shadow: 0 10px 28px rgba(76, 141, 255, .10), inset 0 1px 0 rgba(255, 255, 255, .7);
    margin-bottom: 20px;
    font-size: 18px;
}

.best-offer-service {
    margin-bottom: 10px;
}

.best-offer__data {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 600px) {
    .best-offer__data {
        grid-template-columns: 1fr;
    }
}

.best-offer-bonus {
    display: flex;
    margin-bottom: 12px;
    color: rgb(0, 108, 23);
    font-weight: 600;
    gap: 5px;
}

.best-offer__inner {
    display: flex;
    gap: 10px;
}

.best-offer-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    border-bottom: 1px solid #eceef5;
}

/* ---agent cabinet--- */
.agent-header {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 50px;
    margin-bottom: 100px;
    text-align: center;
    font-size: 23px;
    font-weight: 700;
    backdrop-filter: blur(24px);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 45px, rgba(0, 0, 0, 0.05) 0px 8px 18px, rgba(255, 255, 255, 0.95) 0px 1px 0px inset, rgba(255, 255, 255, 0.3) 0px -1px 0px inset;
    text-shadow: rgba(255, 255, 255, 0.85) 0px 1px 0px;
    z-index: 5;
    padding: 18px 24px;
    border-radius: 50px;
    overflow: hidden;
    background: linear-gradient(rgba(255, 255, 255, 0.96) 0%, rgba(250, 252, 255, 0.88) 100%);
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.65);
    border-image: initial;
    transition: transform 0.25s, box-shadow 0.25s;
}



.agent-name {
    font-size: 20px;
    color: rgb(76, 141, 255);
}

/* =========================
   DASHBOARD
========================= */

.agent-dashboard {
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
    margin-bottom: 100px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 18px 40px, rgba(0, 0, 0, 0.06) 0px 6px 14px, rgba(255, 255, 255, 0.45) 0px 1px 0px inset;
    backdrop-filter: blur(6px) saturate(110%);
    z-index: 2;
    border-radius: 18px;
    background: radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 60%), linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.28);
    border-image: initial;
    overflow: hidden;

}

.agent-dashboard::after {
    content: "";
    position: absolute;
    mix-blend-mode: overlay;
    opacity: 0.6;
    pointer-events: none;
    inset: 0px;
    border-radius: inherit;
    background: radial-gradient(circle at 30% 20%, rgba(197, 129, 82, 0.45), transparent 40%), radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.35), transparent 35%);
}


.agent-dashboard__inner {
    padding: 7px 5px;
}

.agent-income-card {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, .98) 0%,
            rgba(250, 248, 245, .96) 100%);
    border-radius: 22px;
    padding: 22px;
    margin-bottom: 20px;
    border:
        1px solid rgba(255, 255, 255, .75);
    box-shadow:
        0 18px 40px rgba(15, 23, 42, .08),
        0 4px 14px rgba(15, 23, 42, .04),
        inset 0 1px 0 rgba(255, 255, 255, .95);
}


.agent-card-label {
    font-size: 13px;
    color: #7d8aa5;
    margin-bottom: 8px;
}

.agent-income-value {
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.04em;
    color: #01296c;

}

.agent-income-growth {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #4f9dff;

}

.agent-mini-grid {
    display: grid;
    grid-template-columns:
        repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;

}

.agent-mini-card {
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    box-shadow:
        0 12px 30px rgba(0, 0, 0, .08);

}

.agent-mini-value {
    font-size: 25px;
    font-weight: 700;
    color: #01296c;
    line-height: 1;

}

.agent-alert-card {
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    box-shadow:
        0 12px 30px rgba(0, 0, 0, .08);

}

.agent-alert-value {
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    color: #ff8868;
}

.agent-alert-subtitle {
    margin-top: 8px;
    font-size: 13px;
    color: #7d8aa5;
}

.agent-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(180deg, #a9c9ff 0%, #6fa8ff 45%, #4c8dff 100%);
    box-shadow: 0 6px 14px rgba(76, 141, 255, .35), inset 0 2px 4px rgba(255, 255, 255, .6);
    position: relative;
    margin: 0 auto;
    margin-bottom: 10px;
}

/* =========================
   SECTION
========================= */

.agent-section {
    margin-top: 20px;
}

.agent-section-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 40px;
    backdrop-filter: blur(24px);
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 45px, rgba(0, 0, 0, 0.05) 0px 8px 18px, rgba(255, 255, 255, 0.95) 0px 1px 0px inset, rgba(255, 255, 255, 0.3) 0px -1px 0px inset;
    text-shadow: rgba(255, 255, 255, 0.85) 0px 1px 0px;
    padding: 18px 24px;
    border-radius: 50px;
    overflow: hidden;
    background: linear-gradient(rgba(255, 255, 255, 0.96) 0%, rgba(250, 252, 255, 0.88) 100%);
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.65);
    border-image: initial;
    transition: transform 0.25s, box-shadow 0.25s;
}

#chainsList {
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
    padding: 5px 7px;
    gap: 20px;
    margin-bottom: 100px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 18px 40px, rgba(0, 0, 0, 0.06) 0px 6px 14px, rgba(255, 255, 255, 0.45) 0px 1px 0px inset;
    backdrop-filter: blur(6px) saturate(110%);
    z-index: 2;
    border-radius: 18px;
    background: radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 60%), linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.28);
    border-image: initial;
    overflow: hidden;
}

#chainsList::after {
    content: "";
    position: absolute;
    mix-blend-mode: overlay;
    opacity: 0.6;
    pointer-events: none;
    inset: 0px;
    border-radius: inherit;
    background: radial-gradient(circle at 30% 20%, rgba(197, 129, 82, 0.45), transparent 40%), radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.35), transparent 35%);
}

.chain-card {
    background: rgba(255, 255, 255, .96);
    border-radius: 18px;
    padding: 22px;
    border: 1px solid rgba(111, 168, 255, .12);
    box-shadow:
        0 14px 35px rgba(15, 23, 42, .08),
        0 4px 12px rgba(15, 23, 42, .04);

}

.chain-title {
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    color: #01296c;
    margin-bottom: 18px;
    letter-spacing: -.03em;
}

.chain-business {
    position: relative;
    padding: 10px;
    color: #44536d;
    font-size: 17px;
    font-weight: 500;
}



.chain-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
}


.chain-status.active {
    background: rgba(0, 166, 81, .08);
    color: #00a651;
    border: none;
}

.chain-status.paused {
    background: rgba(255, 193, 7, .12);
    color: #d8a400;
    border: none;
}



.chain-link {
    color: #35548f;
    text-decoration: none;
    font-weight: 600;
    display: block;
    padding: 6px 0;
    transition: .25s;
}

.chain-link:hover {
    color: #01296c;
}

.agent-empty {
    background: rgba(255, 255, 255, .96);
    border-radius: 18px;
    padding: 28px;
    text-align: center;
    color: #7d8aa5;
    box-shadow:
        0 12px 30px rgba(0, 0, 0, .08);
}

.agent-error {
    text-align: center;
    max-width: 340px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.agent-error-title {
    font-size: 28px;
    font-weight: 800;
    color: #01296c;
    margin-bottom: 12px;
}

.agent-error-text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(1, 41, 108, .7);
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: relative;
}

.status-dot.green {
    background: #00c853;
    animation:
        pulseGreen 2s infinite;
}

.status-dot.yellow {
    background: #ffc107;
    animation:
        pulseYellow 2s infinite;

}

@keyframes pulseGreen {
    0% {
        box-shadow:
            0 0 0 0 rgba(0, 200, 83, .55);
    }

    70% {
        box-shadow:
            0 0 0 10px rgba(0, 200, 83, 0);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(0, 200, 83, 0);
    }

}

@keyframes pulseYellow {
    0% {

        box-shadow:
            0 0 0 0 rgba(255, 193, 7, .55);
    }

    70% {
        box-shadow:
            0 0 0 10px rgba(255, 193, 7, 0);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(255, 193, 7, 0);
    }

}

#selectedChain {
    display: none;
}

.selected-business {
    font-weight: 700;
    font-size: 18px;
    color: #0a5cff;
    background:
        rgba(10, 92, 255, .08);
    border:
        1px solid rgba(10, 92, 255, .15);
    border-radius: 12px;
    padding: 10px 14px;

}

.chain-business {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #3f5f9f;
}

.business-icon {
    width: 20px;
    height: 20px;
    color: currentColor;
    stroke-width: 2.2;
    flex-shrink: 0;

}

.chain-link {
    color: inherit;
    text-decoration: none;
}

#selectedChain {

    width: 100%;

    margin-top: 20px;

    border-radius: 22px;

    background:
        radial-gradient(circle at 50% 40%,
            rgba(255, 255, 255, .16),
            rgba(255, 255, 255, 0) 60%),
        linear-gradient(135deg,
            rgba(255, 255, 255, .12),
            rgba(255, 255, 255, .04));

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    border:
        1px solid rgba(255, 255, 255, .28);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, .12),
        0 6px 14px rgba(0, 0, 0, .06),
        inset 0 1px 0 rgba(255, 255, 255, .45);

    overflow: hidden;

    display: none;

    opacity: 0;

    transition:
        opacity .25s ease;

}

.agent-top {

    position: relative;

    width: 100%;

    padding: 20px 18px;

    margin: 0;

    font-size: 17px;

    letter-spacing: -.03em;

    overflow: hidden;

    background:
        rgba(255, 255, 255, .90);

    backdrop-filter: blur(20px);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, .12),
        0 6px 14px rgba(0, 0, 0, .06),
        inset 0 1px 0 rgba(255, 255, 255, .45);

}

.agent-backg {

    position: relative;

    margin: 50px 0 30px;

    border-radius: 18px;

    background:
        radial-gradient(circle at 50% 40%,
            rgba(255, 255, 255, .16),
            rgba(255, 255, 255, 0) 60%),
        linear-gradient(135deg,
            rgba(255, 255, 255, .12),
            rgba(255, 255, 255, .04));

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    border:
        1px solid rgba(255, 255, 255, .28);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, .12),
        0 6px 14px rgba(0, 0, 0, .06),
        inset 0 1px 0 rgba(255, 255, 255, .45);

    overflow: hidden;

}

.agent-backg::before {

    content: "";

    position: absolute;

    inset: 0;

    border-radius: inherit;

    background:
        radial-gradient(circle at 85% 15%,
            rgba(255, 160, 60, .35),
            rgba(255, 200, 120, .12) 25%,
            rgba(255, 220, 150, .05) 45%,
            transparent 70%);

    opacity: .45;

    pointer-events: none;

    z-index: 0;

}


/* ---end agent cabinet--- */

.business-mode .solar-divider,
.business-mode .bonus-card,
.business-mode .category-business,
.business-mode #how {
    display: none !important;
}