/* ═══════════════════════════════════════════════════════════════
   Лендинг главной страницы — стилистика linkyou.ru
   Акцентный синий #007bdf, белый фон, Open Sans
   ═══════════════════════════════════════════════════════════════ */

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body.landing-page {
    font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: #fff;
    color: #3e3f55;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

.landing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
}

/* ───────────────────────────────────────────────
   Шапка
   ─────────────────────────────────────────────── */
.lp-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid #eaedf0;
}

.lp-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.lp-logo {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-shrink: 0;
}

.lp-logo__text {
    font-size: 23px;
    font-weight: 800;
    color: #3e3f55;
    letter-spacing: -0.02em;
}

.lp-logo__text span {
    color: #007bdf;
}

.lp-logo__slogan {
    font-size: 11px;
    font-weight: 700;
    color: #007bdf;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    white-space: nowrap;
}

.lp-nav {
    display: flex;
    gap: 4px;
    flex: 1 1 auto;
    justify-content: center;
}

.lp-nav a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 600;
    color: #86869b;
    padding: 8px 13px;
    border-radius: 8px;
    transition: background 170ms, color 170ms;
    white-space: nowrap;
}

.lp-nav a:hover {
    background: #f1f6fb;
    color: #3e3f55;
}

.lp-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* Кнопка-бургер и раскрывающееся меню (только мобильные/планшеты) */
.lp-burger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border: 1px solid #d5d8e4;
    border-radius: 6px;
    background: transparent;
    color: #3e3f55;
    font-size: 18px;
    cursor: pointer;
    transition: border-color 170ms, color 170ms;
}

.lp-burger:hover {
    border-color: #007bdf;
    color: #007bdf;
}

.lp-burger__close {
    display: none;
}

.lp-header.menu-open .lp-burger__open {
    display: none;
}

.lp-header.menu-open .lp-burger__close {
    display: block;
}

.lp-mobile-nav {
    display: none;
    border-top: 1px solid #eaedf0;
    background: #fff;
    padding: 10px 14px 14px;
}

.lp-mobile-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 10px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #3e3f55;
}

.lp-mobile-nav a:hover {
    background: #f1f6fb;
}

.lp-mobile-nav a i {
    color: #007bdf;
    width: 20px;
    text-align: center;
}

.lp-header.menu-open .lp-mobile-nav {
    display: block;
    animation: lpFadeIn 170ms ease;
}

.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font: 600 14px 'Open Sans', sans-serif;
    padding: 10px 18px;
    transition: background 170ms, transform 170ms, box-shadow 170ms;
}

.lp-btn_primary {
    background: #007bdf;
    color: #fff;
}

.lp-btn_primary:hover {
    background: #0068be;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 123, 223, 0.35);
}

.lp-btn_secondary {
    background: #00a161;
    color: #fff;
}

.lp-btn_secondary:hover {
    background: #00874f;
    color: #fff;
}

.lp-btn_ghost {
    background: transparent;
    color: #3e3f55;
    border: 1px solid #d5d8e4;
}

.lp-btn_ghost:hover {
    border-color: #007bdf;
    color: #007bdf;
}

.lp-btn_lg {
    font-size: 16px;
    padding: 14px 30px;
    border-radius: 6px;
}

/* ───────────────────────────────────────────────
   Hero
   ─────────────────────────────────────────────── */
.lp-hero {
    position: relative;
    background: linear-gradient(180deg, #ecf4ff 0%, #f6f8fb 60%, #fff 100%);
    padding: 64px 0 0;
    overflow: hidden;
}

.lp-hero__inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 56px;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 385px);
    gap: 48px;
    align-items: center;
}

.lp-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #b3d7f5;
    color: #007bdf;
    font-size: 13px;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 30px;
    margin-bottom: 22px;
}

.lp-hero__title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: #3e3f55;
    margin-bottom: 18px;
}

.lp-hero__title span {
    color: #007bdf;
}

.lp-hero__text {
    font-size: 17px;
    color: #5a5c75;
    max-width: 540px;
    margin-bottom: 26px;
}

.lp-hero__bullets {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 18px;
    max-width: 560px;
    margin-bottom: 30px;
}

.lp-hero__bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    font-weight: 600;
    color: #3e3f55;
}

.lp-hero__bullets i {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #e3f3ff;
    color: #007bdf;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lp-hero__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.lp-hero__guest {
    font-size: 14.5px;
    font-weight: 600;
    color: #007bdf;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.lp-hero__guest:hover {
    text-decoration: underline;
}

/* Иллюстрация в hero: картинка + смысловая подпись */
.lp-hero__illustration {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.lp-hero__illustration img {
    display: block;
    width: 200px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.lp-hero__illustration figcaption {
    font-size: 14px;
    font-style: italic;
    line-height: 1.5;
    color: #5a5c75;
    max-width: 260px;
    border-left: 3px solid #b3d7f5;
    padding-left: 14px;
}

/* Карточка авторизации + декоративные облака сообщений */
.lp-auth-wrap {
    position: relative;
}

.lp-auth-decor {
    position: absolute;
    display: block;
    height: auto;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.lp-auth-decor_love {
    width: 92px;
    top: -34px;
    right: -38px;
}

.lp-auth-decor_smile {
    width: 56px;
    bottom: -18px;
    left: -26px;
}

.lp-auth-card {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 14px 44px rgba(62, 63, 85, 0.14);
    border: 1px solid #e9eef5;
    overflow: hidden;
}

.lp-auth-card__tabs {
    display: flex;
    border-bottom: 1px solid #e9eef5;
}

.lp-auth-tab {
    flex: 1;
    padding: 16px 10px;
    background: #f6f8fb;
    border: none;
    cursor: pointer;
    font: 700 15px 'Open Sans', sans-serif;
    color: #86869b;
    transition: background 170ms, color 170ms;
    border-radius: 14px 14px 0 0;
}

.lp-auth-tab.active {
    background: #fff;
    color: #007bdf;
    box-shadow: inset 0 -2px 0 #007bdf;
}

.lp-auth-card__body {
    padding: 24px 26px 26px;
}

.lp-auth-pane {
    display: none;
}

.lp-auth-pane.active {
    display: block;
    animation: lpFadeIn 250ms ease;
}

@keyframes lpFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.lp-field {
    margin-bottom: 14px;
}

.lp-field label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #5a5c75;
    margin-bottom: 6px;
}

.lp-field input[type="text"],
.lp-field input[type="email"],
.lp-field input[type="password"] {
    width: 100%;
    max-width: 100%;
    padding: 11px 13px;
    border: 1px solid #d5d8e4;
    border-radius: 6px;
    font: 400 14.5px 'Open Sans', sans-serif;
    color: #3e3f55;
    transition: border-color 170ms, box-shadow 170ms;
    background: #fff;
}

.lp-field input:focus {
    outline: none;
    border-color: #007bdf;
    box-shadow: 0 0 0 3px rgba(0, 123, 223, 0.12);
}

.lp-field .helptext {
    display: block;
    font-size: 11.5px;
    color: #9a9cb0;
    margin-top: 4px;
}

.lp-checkbox-line {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #5a5c75;
    margin-bottom: 14px;
    cursor: pointer;
}

.lp-checkbox-line input[type="checkbox"] {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 3px;
    accent-color: #007bdf;
    cursor: pointer;
}

.lp-checkbox-line__text {
    flex: 1 1 auto;
    min-width: 0;
    line-height: 1.5;
}

.lp-checkbox-line a {
    color: #007bdf;
    font-weight: 600;
}

.lp-checkbox-line a:hover {
    text-decoration: underline;
}

.lp-forgot {
    display: inline-block;
    font-size: 13px;
    color: #007bdf;
    font-weight: 600;
    margin-top: 10px;
}

.lp-forgot:hover {
    text-decoration: underline;
}

.lp-auth-note {
    font-size: 12px;
    color: #9a9cb0;
    text-align: center;
    margin-top: 14px;
}

.lp-social {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid #eef1f7;
}

.lp-social__label {
    font-size: 12px;
    font-weight: 600;
    color: #9a9cb0;
    text-align: center;
    margin-bottom: 10px;
}

.lp-social__buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.lp-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 8px;
    border-radius: 6px;
    border: 1px solid #d5d8e4;
    font: 600 13px 'Open Sans', sans-serif;
    color: #3e3f55;
    background: #fff;
    transition: border-color 170ms, background 170ms;
}

.lp-social-btn:hover {
    border-color: #007bdf;
    background: #f6fbff;
}

.lp-social-btn img,
.lp-social-btn svg {
    width: 18px;
    height: 18px;
    border-radius: 3px;
}

/* ───────────────────────────────────────────────
   Синяя полоса статистики
   ─────────────────────────────────────────────── */
.lp-stats {
    background: #007bdf;
    color: #fff;
    padding: 34px 0;
}

.lp-stats__inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.lp-stat {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1 1 200px;
}

.lp-stat i {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    font-size: 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lp-stat__value {
    font-size: 27px;
    font-weight: 800;
    line-height: 1.1;
}

.lp-stat__label {
    font-size: 13.5px;
    opacity: 0.9;
    font-weight: 600;
}

/* ───────────────────────────────────────────────
   Секции
   ─────────────────────────────────────────────── */
.lp-section {
    padding: 72px 0;
}

.lp-section_alt {
    background: #f6f8fb;
}

.lp-section__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 44px;
}

.lp-section__title {
    font-size: 30px;
    font-weight: 800;
    color: #3e3f55;
    letter-spacing: -0.4px;
    margin-bottom: 12px;
}

.lp-section__subtitle {
    font-size: 16px;
    color: #5a5c75;
}

/* ── Интересные анкеты ── */
.lp-profiles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.lp-profile-card {
    background: #fff;
    border: 1px solid #e9eef5;
    border-radius: 14px;
    overflow: hidden;
    transition: transform 200ms, box-shadow 200ms;
    display: flex;
    flex-direction: column;
}

.lp-profile-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(62, 63, 85, 0.12);
}

.lp-profile-card__photo {
    display: block;
    height: 190px;
    position: relative;
    overflow: hidden;
}

/* Реальное фото анкеты: показ полностью, без обрезки */
.lp-profile-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.lp-profile-card__online {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.92);
    color: #00a161;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    z-index: 1;
}

.lp-profile-card__online::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #00bf72;
}

.lp-profile-card__info {
    padding: 15px 16px 17px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.lp-profile-card__name {
    font-size: 16.5px;
    font-weight: 700;
    color: #3e3f55;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.lp-profile-card__name a {
    color: inherit;
}

.lp-profile-card__name a:hover {
    color: #007bdf;
}

.lp-profile-card__name i.lp-gm {
    color: #2e7bdb;
    font-size: 13px;
}

.lp-profile-card__name i.lp-gf {
    color: #d65f8a;
    font-size: 13px;
}

.lp-profile-card__meta {
    font-size: 13px;
    color: #86869b;
    margin-top: 5px;
}

.lp-profile-card__btn {
    margin-top: auto;
    padding-top: 13px;
}

.lp-profile-card__btn a {
    display: block;
    background: #ecf4ff;
    color: #007bdf;
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 13px;
    font-weight: 700;
    transition: background 170ms;
}

.lp-profile-card__btn a:hover {
    background: #d9ecff;
}

/* ── Как это работает ── */
.lp-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    counter-reset: lp-step;
}

.lp-step {
    background: #fff;
    border: 1px solid #e9eef5;
    border-radius: 14px;
    padding: 26px 22px;
    position: relative;
    counter-increment: lp-step;
}

.lp-step::before {
    content: counter(lp-step);
    position: absolute;
    top: -16px;
    left: 22px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #007bdf;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 123, 223, 0.35);
}

.lp-step__icon {
    font-size: 30px;
    color: #007bdf;
    margin: 8px 0 12px;
}

/* Иллюстрация вместо иконки Font Awesome */
.lp-step__icon_image {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    background: #ecf4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.lp-step__icon_image img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
}

.lp-step__title {
    font-size: 16px;
    font-weight: 700;
    color: #3e3f55;
    margin-bottom: 7px;
}

.lp-step__text {
    font-size: 13.5px;
    color: #5a5c75;
}

/* ── Преимущества ── */
.lp-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Иллюстрация с подписью внутри карточки преимущества */
.lp-benefit__media {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.lp-benefit__media img {
    display: block;
    width: 118px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.lp-benefit__media figcaption {
    font-size: 12.5px;
    font-style: italic;
    line-height: 1.45;
    color: #86869b;
}

.lp-benefit {
    background: #fff;
    border: 1px solid #e9eef5;
    border-radius: 14px;
    padding: 28px 26px;
    transition: transform 200ms, box-shadow 200ms;
}

.lp-benefit:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(62, 63, 85, 0.1);
}

.lp-benefit__icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: #ecf4ff;
    color: #007bdf;
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.lp-benefit_green .lp-benefit__icon {
    background: #e5f7ef;
    color: #00a161;
}

.lp-benefit_rose .lp-benefit__icon {
    background: #ffeef4;
    color: #d65f8a;
}

.lp-benefit_gold .lp-benefit__icon {
    background: #fdf5e4;
    color: #daa520;
}

.lp-benefit__title {
    font-size: 17px;
    font-weight: 700;
    color: #3e3f55;
    margin-bottom: 8px;
}

.lp-benefit__text {
    font-size: 14px;
    color: #5a5c75;
}

/* ── От знакомства до создания семьи ── */
.lp-family {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.lp-family__content {
    max-width: 640px;
}

.lp-family__title {
    font-size: 30px;
    font-weight: 800;
    color: #3e3f55;
    letter-spacing: -0.4px;
    margin-bottom: 14px;
}

.lp-family__text {
    font-size: 16px;
    color: #5a5c75;
    margin-bottom: 28px;
}

.lp-family__figure {
    flex-shrink: 0;
    text-align: center;
}

.lp-family__figure img {
    display: block;
    width: 280px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
}

.lp-family__figure figcaption {
    font-size: 13.5px;
    font-style: italic;
    color: #86869b;
    margin-top: 10px;
}

.lp-masonry-note {
    text-align: center;
    font-size: 14px;
    color: #86869b;
    margin-top: 26px;
}

.lp-masonry-note a {
    color: #007bdf;
    font-weight: 700;
}

.lp-masonry-note a:hover {
    text-decoration: underline;
}

/* ── CTA ── */
.lp-cta {
    background: linear-gradient(120deg, #007bdf 0%, #005bb6 100%);
    color: #fff;
    padding: 68px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lp-cta::before {
    content: '';
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    top: -240px;
    right: -140px;
}

.lp-cta::after {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    bottom: -220px;
    left: -120px;
}

.lp-cta__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.lp-cta__content {
    max-width: 640px;
}

.lp-cta__title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.4px;
    text-align: left;
}

.lp-cta__text {
    font-size: 16.5px;
    opacity: 0.92;
    max-width: 620px;
    margin: 0 0 28px;
    text-align: left;
}

.lp-cta .lp-btn_primary {
    background: #fff;
    color: #007bdf;
}

.lp-cta .lp-btn_primary:hover {
    background: #e9f4ff;
    color: #0068be;
}

.lp-cta__hint {
    margin-top: 14px;
    font-size: 12.5px;
    opacity: 0.75;
    text-align: left;
}

.lp-cta__illustration {
    flex-shrink: 0;
    text-align: center;
}

.lp-cta__illustration img {
    display: block;
    width: 210px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
}

.lp-cta__illustration figcaption {
    font-size: 13px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 10px;
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
}

/* ───────────────────────────────────────────────
   Подвал
   ─────────────────────────────────────────────── */
.lp-footer {
    background: #2c2e45;
    color: #b9bbd2;
    padding: 46px 0 26px;
    font-size: 13.5px;
}

.lp-footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.lp-footer__brand {
    max-width: 380px;
}

.lp-footer__logo {
    font-size: 21px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.lp-footer__logo span {
    color: #5cb2f5;
}

.lp-footer__age {
    display: inline-block;
    border: 1px solid #565873;
    border-radius: 4px;
    padding: 2px 7px;
    font-size: 12px;
    font-weight: 700;
    margin-top: 12px;
}

.lp-footer__col h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lp-footer__col a {
    display: block;
    color: #b9bbd2;
    padding: 4px 0;
    transition: color 170ms;
}

.lp-footer__col a:hover {
    color: #fff;
}

.lp-footer__bottom {
    border-top: 1px solid #3c3e5c;
    margin-top: 32px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 12.5px;
    color: #8a8ca6;
}

/* Поддержка проекта */
.lp-donate {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.lp-donate__card {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    max-width: 100%;
}

.lp-donate__label {
    font-size: 12.5px;
    color: #8a8ca6;
}

.lp-donate__label i {
    color: #ff6b9d;
    margin-right: 4px;
}

.donate-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #2d7bdc 0%, #1c68c6 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 13.5px;
    padding: 10px 22px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(45, 123, 220, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.donate-btn:hover {
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 16px rgba(45, 123, 220, 0.5);
}

/* ───────────────────────────────────────────────
   Адаптивность
   ─────────────────────────────────────────────── */
@media (max-width: 1023px) {
    .lp-nav {
        display: none;
    }

    .lp-burger {
        display: inline-flex;
    }

    .lp-hero__inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 36px;
        padding-bottom: 44px;
    }

    .lp-hero__title {
        font-size: 32px;
    }

    .lp-profiles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-steps {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 34px;
    }

    .lp-benefits {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-auth-decor_love {
        width: 76px;
        top: -26px;
        right: -18px;
    }

    .lp-auth-decor_smile {
        width: 46px;
        bottom: -14px;
        left: -14px;
    }

    .lp-family {
        flex-direction: column;
        gap: 36px;
        text-align: center;
    }

    .lp-cta__inner {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .lp-cta__content {
        max-width: none;
    }

    .lp-cta__title,
    .lp-cta__text,
    .lp-cta__hint {
        text-align: center;
    }

    .lp-cta__text {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767px) {
    /* Декоративные облака сообщений мешают форме на узких экранах */
    .lp-auth-decor {
        display: none;
    }

    /* 16px — iOS не приближает страницу при фокусе на поле */
    .lp-field input[type="text"],
    .lp-field input[type="email"],
    .lp-field input[type="password"] {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .lp-header__inner {
        gap: 10px;
        padding: 0 14px;
    }

    /* Слоган не даёт шапке уложиться в узкий экран */
    .lp-logo__slogan {
        display: none;
    }

    .lp-hero__title {
        font-size: 27px;
    }

    .lp-hero__bullets {
        grid-template-columns: 1fr;
    }

    /* Картинка + подпись в столбец, чтобы не вылезать за экран */
    .lp-hero__illustration {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: 24px;
        text-align: center;
    }

    .lp-hero__illustration img {
        width: 150px;
    }

    .lp-hero__illustration figcaption {
        max-width: 260px;
        border-left: none;
        border-top: 3px solid #b3d7f5;
        padding-left: 0;
        padding-top: 10px;
    }

    .lp-section {
        padding: 54px 0;
    }

    .lp-section__title {
        font-size: 24px;
    }

    .lp-profiles-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .lp-profile-card__photo {
        height: 150px;
    }

    .lp-steps {
        grid-template-columns: 1fr;
    }

    .lp-step__icon_image {
        width: 84px;
        height: 84px;
        padding: 8px;
    }

    .lp-benefits {
        grid-template-columns: 1fr;
    }

    .lp-family__figure img {
        width: 210px;
    }

    .lp-cta__illustration img {
        width: 170px;
    }

    /* Статистика: компактная сетка 2×2 вместо столбца */
    .lp-stats {
        padding: 22px 0;
    }

    .lp-stats__inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px 10px;
    }

    .lp-stat {
        gap: 10px;
    }

    .lp-stat i {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .lp-stat__value {
        font-size: 19px;
    }

    .lp-stat__label {
        font-size: 11.5px;
    }

    .lp-auth-card__body {
        padding: 20px 18px 22px;
    }

    .lp-header__actions .lp-btn span {
        display: none;
    }

    .lp-header__actions .lp-btn {
        padding: 10px 12px;
    }

    .lp-social__buttons {
        grid-template-columns: 1fr;
    }
}
