/* ===== ПЕРЕМЕННЫЕ ===== */
.nmp {
    --nmp-blue: #0557ef;
    --nmp-blue-light: #108CE5;
    --nmp-blue-hover: #58AEED;
    --nmp-blue-bg: #CFE8FA;
    --nmp-blue-pale: #E7F3FC;
    --nmp-blue-medium: #B7DCF7;
    --nmp-pink: #ED1664;
    --nmp-magenta: #EB4BBE;
    --nmp-magenta-bg: #FBDBF2;
    --nmp-yellow: #FFB800;
    --nmp-yellow-bg: #FFF1CC;
    --nmp-green: #29D13A;
    --nmp-black: #000;
    --nmp-black-80: #333;
    --nmp-black-60: #666;
    --nmp-black-40: #999;
    --nmp-black-10: #E5E5E5;
    --nmp-page-bg: #F1F5F8;
    --nmp-radius: 12px;
    --nmp-radius-lg: 24px;
    --nmp-radius-xl: 20px;
    --nmp-max-width: 1400px;
    --nmp-font: 'Roboto', sans-serif;
}

/* ===== GRADIENT MESH BACKGROUND ===== */
.nmp__bg-mesh {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.nmp__bg-mesh::before,
.nmp__bg-mesh::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
}
/* Голубое пятно — вверху слева (зона заголовка, без белых карточек) */
.nmp__bg-mesh::before {
    width: 50vh;
    height: 100vh;
    top: -200px;
    left: -180px;
    background: radial-gradient(circle, rgba(16,140,229,0.13) 0%, transparent 70%);
}
/* Розово-магентовое пятно — внизу слева */
.nmp__bg-mesh::after {
    width: 50vh;
    height: 100vh;
    bottom: -140px;
    left: -150px;
    background: radial-gradient(circle, rgba(237,22,100,0.10) 0%, transparent 70%);
}

/* ===== СБРОС / БАЗА ===== */
.nmp {
    font-family: var(--nmp-font);
    background: var(--nmp-page-bg);
    color: var(--nmp-black-80);
    line-height: 1.4;
    min-height: 100vh;
    position: relative;
}
.nmp *, .nmp *::before, .nmp *::after {
    box-sizing: border-box;
}
.nmp a {
    text-decoration: none;
    /* color: inherit; */
}
.nmp img {
    max-width: 100%;
    display: block;
}

/* ===== HEADER ===== */
.nmp__header {
    display: block !important;
    background: #fff;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.nmp__header-inner {
    max-width: var(--nmp-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nmp__logo {
    flex-shrink: 0;
}
.nmp__logo-img {
    height: 38px;
    width: auto;
}
.nmp__nav {
    display: flex;
    gap: 40px;
    align-items: center;
}
.nmp__nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: var(--nmp-black);
    white-space: nowrap;
}
.nmp__nav-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}
.nmp__nav-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.nmp__header-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* ===== КНОПКИ ===== */
.nmp__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 14px 20px;
    border-radius: var(--nmp-radius);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}
.nmp__btn--outline {
    border: 2px solid var(--nmp-blue-bg);
    background: transparent;
    color: var(--nmp-blue);
}
.nmp__btn--filled {
    background: var(--nmp-blue);
    color: #fff !important;
}
.nmp__btn--submit {
    background: var(--nmp-blue);
    color: #fff;
    width: 100%;
}
.nmp__btn--submit:disabled,
.nmp__btn--submit.nmp__btn--disabled {
    background: var(--nmp-black-10);
    color: #aaa;
    cursor: not-allowed;
    pointer-events: none;
}

/* ===== HERO ===== */
.nmp__hero {
    position: relative;
    padding: 40px 0;
}
.nmp__hero-bg {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--nmp-max-width);
    height: 750px;
    pointer-events: none;
    overflow: hidden;
}
.nmp__hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
}
.nmp__hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at left center, transparent 60%, var(--nmp-page-bg) 100%),
                radial-gradient(ellipse at right center, transparent 50%, var(--nmp-page-bg) 76%),
                radial-gradient(ellipse at top center, transparent 60%, var(--nmp-page-bg) 100%);
}
.nmp__hero-inner {
    position: relative;
    z-index: 5;
    max-width: var(--nmp-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    min-height: 580px;
}

.nmp__hero-inner-divider {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.nmp__hero-inner-divider-line {
    flex: 1;
    height: 1px;
    background: var(--nmp-black-10);
}

.nmp__hero-inner-divider-text {
    font-size: 14px;
    color: var(--nmp-black-40);
    white-space: nowrap;
}
.nmp__hero-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 550px;
}
.nmp__hero-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.nmp__hero-title {
    font-size: 44px;
    font-weight: 600;
    line-height: 52px;
    margin: 0;
}
.nmp__hero-title-dark {
    display: block;
    color: var(--nmp-black-80);
}
.nmp__hero-title-accent {
    display: block;
    color: var(--nmp-blue);
}
.nmp__hero-subtitle {
    font-size: 20px;
    line-height: 24px;
    color: var(--nmp-black-80);
    margin: 0;
}

/* Онлайн блок */
.nmp__online {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nmp__online-avatars {
    display: flex;
}
.nmp__online-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--nmp-page-bg);
    object-fit: cover;
    margin-right: -16px;
    background: var(--nmp-black-10);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.nmp__online-avatar:last-child {
    margin-right: 0;
}
.nmp__online-avatar--fade-out {
    opacity: 0;
    transform: scale(0.7);
}
.nmp__online-avatar--fade-in {
    animation: nmp-avatar-in 0.6s ease forwards;
}
@keyframes nmp-avatar-in {
    0%   { opacity: 0; transform: scale(0.7); }
    100% { opacity: 1; transform: scale(1); }
}
.nmp__online-info {
    display: flex;
    flex-direction: column;
}
.nmp__online-counter {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nmp__online-dot {
    width: 12px;
    height: 12px;
    border-radius: 8px;
    background: var(--nmp-green);
    animation: nmp-dot-pulse 2s ease-in-out infinite;
}
@keyframes nmp-dot-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}
.nmp__online-number {
    font-size: 24px;
    font-weight: 500;
    color: var(--nmp-green);
    line-height: 28px;
    display: inline-flex;
    overflow: hidden;
}
.nmp__online-number .nmp__digit,
.nmp__stat-number .nmp__digit {
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s;
}
.nmp__online-number .nmp__digit--changing,
.nmp__stat-number .nmp__digit--changing {
    animation: nmp-digit-roll 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes nmp-digit-roll {
    0% { transform: translateY(-100%); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}
.nmp__online-label {
    font-size: 16px;
    color: var(--nmp-black-80);
    line-height: 22px;
}

/* Статистика */
.nmp__stats {
    display: flex;
    gap: 8px;
    /* flex-wrap: wrap; */
}
.nmp__stat {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}
.nmp__stat-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nmp__stat-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.nmp__stat-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.nmp__stat-number {
    font-size: 24px;
    font-weight: 400;
    line-height: 28px;
    display: inline-flex;
    overflow: hidden;
}
.nmp__stat-number--pink { color: var(--nmp-pink); }
.nmp__stat-number--blue { color: var(--nmp-blue); }
.nmp__stat-number--lightblue { color: var(--nmp-blue-light); }
.nmp__stat-label {
    font-size: 14px;
    color: var(--nmp-black-80);
    line-height: 18px;
}

/* ===== ФОРМА АВТОРИЗАЦИИ ===== */
.nmp__auth-form {
    width: 400px;
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: auto;
    margin-bottom: auto;
    background: #fff;
    border-radius: var(--nmp-radius-lg);
    padding: 20px;
    box-shadow: 0 0 12px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    transition: box-shadow 0.3s;
    position: relative;
    z-index: 10;
}
@keyframes nmp-form-highlight {
    0%   { box-shadow: 0 0 12px rgba(0,0,0,0.12); }
    20%  { box-shadow: 0 0 0 4px rgba(5,87,239,0.25), 0 0 32px 8px rgba(5,87,239,0.22), 0 0 12px rgba(0,0,0,0.08); }
    55%  { box-shadow: 0 0 0 4px rgba(5,87,239,0.25), 0 0 32px 8px rgba(5,87,239,0.22), 0 0 12px rgba(0,0,0,0.08); }
    100% { box-shadow: 0 0 12px rgba(0,0,0,0.12); }
}
.nmp__auth-form--highlighted {
    animation: nmp-form-highlight 1.8s ease-out forwards;
}
.nmp__auth-tabs {
    display: flex;
    width: 100%;
    border-bottom: 1px solid var(--nmp-black-10);
    gap: 20px;
    margin-bottom: 12px;
}
.nmp__auth-tab {
    flex: 1;
    background: none;
    border: none;
    padding: 8px 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--nmp-black-40);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    text-align: center;
}
.nmp__auth-tab--active {
    color: var(--nmp-blue);
    border-bottom-color: var(--nmp-blue);
}
.nmp__auth-panel {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.nmp__reg-steps {
    position: relative;
}
.nmp__reg-step {
    display: none;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .25s ease, transform .25s ease;
}
.nmp__reg-step > * {
    margin-bottom: 16px;
}
.nmp__reg-step > *:last-child {
    margin-bottom: 0;
}
.nmp__reg-step--active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}
.nmp__reg-back {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: 14px;
    font-weight: 600;
    color: var(--nmp-blue);
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}
.nmp__reg-back svg {
    display: block;
    width: 10px;
    height: 10px;
    margin-top: 1px;
}
.nmp__checkbox--terms {
    margin-top: 16px;
}
.nmp__reg-privacy-text {
    font-size: 12px;
    color: var(--nmp-black-60);
    line-height: 18px;
    text-align: center;
}
.nmp__auth-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--nmp-black-80);
    line-height: 24px;
    margin: 0;
    text-align: center;
}
.nmp__input-wrap {
    position: relative;
    width: 100%;
}
.nmp__input {
    width: 100%;
    border: 2px solid var(--nmp-black-10);
    border-radius: var(--nmp-radius);
    padding: 12px 20px;
    font-size: 16px;
    line-height: 22px;
    outline: none;
    font-family: var(--nmp-font);
}
.nmp__input:focus {
    border-color: var(--nmp-blue);
}
.nmp__input-hint {
    font-size: 14px;
    color: var(--nmp-black-60);
    line-height: 18px;
    margin-top: 4px;
    display: block;
}
.nmp__checkbox--terms a,
.nmp__reg-privacy-text a {
    color: var(--nmp-blue);
    text-decoration: none;
}
.nmp__input-wrap--password {
    position: relative;
}
.nmp__password-toggle {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    width: 20px;
    height: 20px;
}
.nmp__auth-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.nmp__checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 12px;
}
.nmp__checkbox input { display: none; }
.nmp__checkbox-box {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background: var(--nmp-blue);
    position: relative;
    flex-shrink: 0;
}
.nmp__checkbox-box::after {
    content: '\2713';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
}
.nmp__checkbox input:not(:checked) + .nmp__checkbox-box {
    background: #fff;
    border: 2px solid var(--nmp-black-10);
}
.nmp__checkbox input:not(:checked) + .nmp__checkbox-box::after {
    display: none;
}
.nmp__forgot-link {
    font-size: 14px;
    color: var(--nmp-blue);
}

/* Соц. сети в форме */
.nmp__auth-social {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.nmp__auth-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    /* gap: 8px; */
}
/* .nmp__auth-divider-line {
    flex: 1;
    height: 1px;
    background: var(--nmp-black-10);
} */
.nmp__auth-divider-text {
    /* text-align: center; */
    font-size: 16px;
    font-weight: 600;
    color: var(--nmp-black);
    white-space: nowrap;
}
.nmp__social-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.nmp__social-btn {
    width: 44px;
    height: 44px;
    flex: 1;
    max-width: 80px;
    border: 2px solid var(--nmp-blue-bg);
    border-radius: var(--nmp-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #fff;
    transition: border-color .15s, background .15s;
}
.nmp__social-btn:hover { border-color: #b0c8e8; background: #f0f6ff; }
.nmp__social-btn--vk_id  { border-color: #3d7cf5; }
.nmp__social-btn--ok      { border-color: #f7931e; }
.nmp__social-btn--mailru  { border-color: #005ff9; }
.nmp__social-btn--yandex  { border-color: #fc3f1d; }
.nmp__social-btn--google  { border-color: #4285f4; }
.nmp__social-btn--sber_id { border-color: #21a038; }
.nmp__social-btn--facebook { border-color: #1877f2; }
.nmp__social-btn-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}
/* Dropdown */
.nmp__social-dropdown { text-align: center; position: relative; }
.nmp__social-dropdown-list {
    list-style: none; margin: 4px 0 0; padding: 0;
    background: #fff; border: 1px solid var(--nmp-blue-bg);
    border-radius: var(--nmp-radius); overflow: hidden;
    position: absolute; left: 0; right: 0; z-index: 100;
}
.nmp__social-dropdown-item {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 14px; cursor: pointer; font-size: 14px;
    color: var(--nmp-black-80);
}
.nmp__social-dropdown-item:hover { background: #f0f6ff; }
.nmp__auth-alt { text-align: center; margin-top: 12px; }
.nmp__auth-alt-link { font-size: 14px; color: var(--nmp-blue); }
/* .nmp__auth-support { font-size: 14px; text-align: center; } */
/* .nmp__auth-support-link { color: var(--nmp-blue); } */
/* .nmp__auth-support-text { color: var(--nmp-black-40); } */

/* ===== КАРТОЧКИ ФИЧ ===== */
.nmp__features {
    position: relative;
    z-index: 3;
    max-width: var(--nmp-max-width);
    margin: 0 auto;
    padding: 0 20px;
}
.nmp__features-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 8px;
}
.nmp__features-scroll::-webkit-scrollbar { height: 0; }.nmp__feature-card {
    flex: 1 0 220px;
    max-width: 300px;
    border-radius: var(--nmp-radius-xl);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    gap: 40px;
    height: 166px;
}
.nmp__feature-card--pink { background: var(--nmp-magenta-bg); }
.nmp__feature-card--lightblue { background: var(--nmp-blue-bg); }
.nmp__feature-card--magenta { background: var(--nmp-magenta-bg); }
.nmp__feature-card--yellow { background: var(--nmp-yellow-bg); }
.nmp__feature-card--blue { background: var(--nmp-blue-medium); }
.nmp__feature-card-bg {
    position: absolute;
    /* top: 0; */
    width: auto;
    height: auto;
    pointer-events: none;
    /* opacity: 0.6; */
}
.nmp__feature-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.nmp__feature-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 1;
    padding: 16px;
}
.nmp__feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nmp__feature-icon--pink { background: var(--nmp-pink); }
.nmp__feature-icon--lightblue { background: var(--nmp-blue-hover); }
.nmp__feature-icon--magenta { background: var(--nmp-magenta); }
.nmp__feature-icon--yellow { background: var(--nmp-yellow); }
.nmp__feature-icon--blue { background: var(--nmp-blue-light); }
.nmp__feature-name {
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    margin: 0;
}
.nmp__feature-name--pink { color: var(--nmp-pink); }
.nmp__feature-name--lightblue { color: var(--nmp-blue-hover); }
.nmp__feature-name--magenta { color: var(--nmp-magenta); }
.nmp__feature-name--yellow { color: var(--nmp-yellow); }
.nmp__feature-name--blue { color: var(--nmp-blue-light); }
.nmp__feature-desc {
    font-size: 14px;
    line-height: 18px;
    color: var(--nmp-black-80);
    margin: 0;
    width: 152px;
}
.nmp__feature-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    color: var(--nmp-black-80);
    position: absolute;
    z-index: 1;
    right: 18px;
    bottom: 12px;
    margin: 0;
}

/* ===== ЛЕНТА СОБЫТИЙ ===== */
.nmp__feed {
    max-width: var(--nmp-max-width);
    margin: 0 auto;
    padding: 0 20px;
    margin-top: 40px;
}
.nmp__feed-inner {
    background: #fff;
    border-radius: var(--nmp-radius-lg);
    padding: 20px;
    position: relative;
    overflow: hidden;
}
.nmp__feed-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}
.nmp__feed-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nmp__feed-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--nmp-black-80);
}
.nmp__feed-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background: var(--nmp-green);
    animation: nmpLivePulse 1.4s ease-in-out infinite;
}
@keyframes nmpLivePulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.2; }
}
.nmp__feed-hint {
    font-size: 14px;
    color: var(--nmp-black-40);
    animation: nmpLivePulse 1.4s ease-in-out infinite;
}
.nmp__feed-scroll {
    display: flex;
    overflow: hidden;
    padding-bottom: 4px;
}
.nmp__feed-track {
    display: flex;
    gap: 8px;
    will-change: transform;
}
.nmp__feed-card {
    flex-shrink: 0;
    border: 1px solid var(--nmp-black-10);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    min-width: 300px;
}
.nmp__feed-card-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--nmp-black-10);
}
.nmp__feed-card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 240px;
}
.nmp__feed-card-text {
    font-size: 14px;
    line-height: 18px;
    color: var(--nmp-black-80);
    margin: 0;
}
.nmp__feed-card-text a {
    font-weight: 700;
    color: var(--nmp-blue-light);
}
.nmp__feed-card-time {
    font-size: 12px;
    color: var(--nmp-black-40);
    line-height: 16px;
}
.nmp__feed-card-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--nmp-black-10);
}
.nmp__feed-card-video {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    background: var(--nmp-black-10);
}
.nmp__feed-card-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.nmp__feed-card-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.4);
    color: #fff;
    font-size: 12px;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    inset: auto;
}
.nmp__feed-fade {
    position: absolute;
    top: 58px;
    bottom: 20px;
    width: 28px;
    pointer-events: none;
}
.nmp__feed-fade--left {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}
.nmp__feed-fade--right {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

/* ===== БЛОК ДОВЕРИЯ ===== */
.nmp__trust {
    max-width: var(--nmp-max-width);
    margin: 40px auto 0;
    padding: 0 20px;
}
.nmp__trust-inner {
    background: #fff;
    border-radius: var(--nmp-radius-lg);
    padding: 20px;
    display: flex;
    gap: 40px;
}
.nmp__trust-card {
    flex: 1;
    display: flex;
    gap: 16px;
    align-items: center;
    min-width: 0;
}
.nmp__trust-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--nmp-blue-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.nmp__trust-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.nmp__trust-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--nmp-blue-light);
    margin: 0;
    line-height: 22px;
}
.nmp__trust-desc {
    font-size: 14px;
    color: var(--nmp-black-60);
    margin: 0;
    line-height: 18px;
}

/* ===== FOOTER ===== */
.nmp__footer {
    max-width: var(--nmp-max-width);
    margin: 40px auto 0;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}
.nmp__footer-inner {
    background: #fff;
    border-radius: var(--nmp-radius-lg) var(--nmp-radius-lg) 0 0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.nmp__footer-main {
    display: flex;
    gap: 40px;
}
.nmp__footer-brand {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
    flex-shrink: 0;
}
.nmp__footer-logo img {
    height: 20px;
    width: auto;
}
.nmp__footer-copy {
    font-size: 12px;
    color: var(--nmp-black-80);
    line-height: 16px;
    max-width: 350px;
    margin: 0;
}
.nmp__footer-socials {
    display: flex;
    gap: 8px;
}
.nmp__footer-social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--nmp-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}
.nmp__footer-divider {
    width: 1px;
    background: var(--nmp-black-10);
    align-self: stretch;
}
.nmp__footer-links {
    flex: 1;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-right: 40px;
}
.nmp__footer-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.nmp__footer-col a {
    font-size: 12px;
    font-weight: 500;
    color: var(--nmp-blue);
    line-height: 18px;
    text-decoration: underline;
}

/* Ошибка входа */
.nmp__auth-error {
    background: #fff0f0;
    border: 1px solid #f5c2c2;
    border-radius: var(--nmp-radius);
    padding: 10px 14px;
    font-size: 14px;
    color: #c0392b;
    line-height: 1.4;
    width: 100%;
}

/* ===== ФОРМА РЕГИСТРАЦИИ ===== */
.nmp__reg-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
/* Пол */
.nmp__reg-sex {
    display: flex;
    gap: 8px;
    width: 100%;
}
.nmp__reg-sex-btn {
    flex: 1;
    height: 44px;
    border: 2px solid var(--nmp-black-10);
    border-radius: var(--nmp-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 15px;
    color: var(--nmp-black-60);
    cursor: pointer;
    background: #fff;
    transition: border-color .15s, background .15s, color .15s;
    user-select: none;
}
.nmp__reg-sex-btn svg {
    flex-shrink: 0;
}
.nmp__reg-sex-btn:hover {
    border-color: var(--nmp-blue-bg);
    color: var(--nmp-blue);
}
.nmp__reg-sex-btn--active {
    border-color: var(--nmp-blue);
    background: var(--nmp-blue-pale);
    color: var(--nmp-blue);
    font-weight: 600;
}
/* Дата рождения */
.nmp__reg-birthday {
    display: flex;
    gap: 8px;
    width: 100%;
}
.nmp__csel {
    flex: 1;
    min-width: 0;
    position: relative;
    user-select: none;
}
.nmp__csel-trigger {
    height: 48px;
    border: 2px solid var(--nmp-black-10);
    border-radius: var(--nmp-radius);
    padding: 0 10px;
    font-size: 15px;
    color: var(--nmp-black-80);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    cursor: pointer;
    transition: border-color 0.15s;
}
.nmp__csel-trigger:hover {
    border-color: var(--nmp-blue);
}
.nmp__csel--open .nmp__csel-trigger {
    border-color: var(--nmp-blue);
    border-bottom-color: var(--nmp-blue);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: none;
}
.nmp__csel-val {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.nmp__csel-arrow {
    flex-shrink: 0;
    transition: transform 0.2s;
}
.nmp__csel--open .nmp__csel-arrow {
    transform: rotate(180deg);
}
.nmp__csel-drop {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 2px solid var(--nmp-blue);
    border-top: none;
    border-radius: 0 0 var(--nmp-radius) var(--nmp-radius);
    overflow: hidden;
    z-index: 1000;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.nmp__csel-drop-inner {
    max-height: 342px;
    overflow-y: auto;
}
.nmp__csel--open .nmp__csel-drop {
    display: block;
}
.nmp__csel--error .nmp__csel-trigger {
    border-color: #c0392b !important;
}
.nmp__csel--error.nmp__csel--open .nmp__csel-trigger {
    border-color: #c0392b !important;
}
.nmp__csel--error .nmp__csel-drop {
    border-color: #c0392b;
}
.nmp__csel-opt {
    padding: 9px 12px;
    font-size: 15px;
    cursor: pointer;
    color: var(--nmp-black-80);
    line-height: 1.3;
}
.nmp__csel-opt:hover {
    background: rgba(5,87,239,0.07);
    color: var(--nmp-blue);
}
.nmp__csel-opt--sel {
    background: rgba(5,87,239,0.07);
    color: var(--nmp-blue);
    font-weight: 600;
}
/* Капча */
.nmp__reg-captcha {
    width: 100%;
}
.nmp__reg-captcha:empty,
.nmp__reg-captcha .inline-captcha:empty {
    display: none;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 1280px) {
    .nmp__header {
        padding: 10px 0;
    }
    .nmp__header-inner {
        padding: 0 16px;
        gap: 16px;
    }
    .nmp__logo-img {
        height: 34px;
    }
    .nmp__nav {
        gap: 24px;
    }
    .nmp__nav-item {
        gap: 6px;
        font-size: 14px;
    }
    .nmp__nav-icon {
        width: 24px;
        height: 24px;
    }
    .nmp__header-buttons {
        gap: 6px;
    }
    .nmp__header-buttons .nmp__btn {
        height: 46px;
        padding: 12px 14px;
        font-size: 14px;
    }
}

@media (max-width: 1280px) {
    .nmp__features-scroll {
        flex-wrap: wrap;
        overflow-x: visible;
        justify-content: center;
    }
    .nmp__feature-card {
        flex: 0 0 280px;
        max-width: 280px;
    }
}

@media (max-width: 1200px) {
    .nmp__hero-inner {
        flex-direction: column;
        align-items: stretch;
    }
    .nmp__hero-left {
        max-width: 100%;
        padding: 24px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.72);
        border: 1px solid rgba(255, 255, 255, 0.45);
        box-shadow: 0 18px 40px rgba(5, 87, 239, 0.08);
        -webkit-backdrop-filter: blur(18px);
    }
    .nmp__auth-form {
        width: 100%;
        max-width: 400px;
        align-self: center;
        align-self: center;
    }
    .nmp__trust-inner {
        flex-wrap: wrap;
    }
    .nmp__trust-card {
        flex: 1 1 45%;
    }
}
@media (max-width: 768px) {
    .nmp__header-inner {
        flex-wrap: wrap;
        gap: 12px;
    }
    .nmp__nav {
        gap: 16px;
        overflow-x: auto;
        flex: 1 1 100%;
        order: 3;
    }
    .nmp__hero-title {
        font-size: 32px;
        line-height: 40px;
    }
    .nmp__stats {
        flex-direction: column;
    }
    .nmp__trust-inner {
        flex-direction: column;
    }
    .nmp__footer-inner {
        flex-direction: column;
    }
    .nmp__footer-links {
        flex-wrap: wrap;
        padding-right: 0;
    }
}

/* ===== ЮРИДИЧЕСКИЙ БЛОК ===== */
.nmp__legal {
    max-width: var(--nmp-max-width);
    margin: 0 auto;
    padding: 16px 20px 32px;
}
.nmp__legal-inner {
}
.nmp__legal-text {
    font-size: 11px;
    line-height: 18px;
    color: var(--nmp-black-40);
    margin: 0;
}
.nmp__legal-text a {
    color: var(--nmp-black-40);
    text-decoration: underline;
}
.nmp__legal-text a:hover {
    color: var(--nmp-blue);
}

/* ===== СКРЫВАЕМ СТАНДАРТНУЮ ШАПКУ И ПОДВАЛ ПРОЕКТА ===== */
/* #header-wrap, - скрывается и не стандартная */
#footer,
.footer,
#bottom-wrap,
.signup-top, 
.fs2-footer { display: none !important; }
.hiddenOurIp { display: block !important; }
#btn-helper-dev { display: block !important; top: 78px !important; }
#panel-helper-dev {top: 120px !important; }
