:root {
    --primary: #0abab5;
    --primary-light: #20e2dd;
    --primary-dark: #088a86;
    --primary-soft: #ccfbf1;
    --primary-tint: #f0fdfa;
    --accent: #e11d48;
    --neutral-dark: #1f2937;
    --neutral-light: #f8fafc;
    --neutral-bg: #ffffff;
    --border-color: #e2e8f0;
    --success: #10b981;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--neutral-light);
    color: var(--neutral-dark);
    line-height: 1.6;
    font-size: 16px;
}

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

.nowrap {
    white-space: nowrap;
}

/* БЛОК 1: Шапка сайта и Навигация */
header, .site-header {
    background-color: #ffffff;
    border-bottom: 1px solid rgba(16, 24, 43, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 72px;
}

.site-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.site-header__brand {
    display: inline-flex;
    align-items: center;
    height: 100%;
    z-index: 1001;
    text-decoration: none;
}

.site-header__logo {
    height: 30px;
    width: auto;
    display: block;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--neutral-dark);
    z-index: 1001;
    height: 100%;
}

.logo-circle {
    width: 45px;
    height: 45px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-title {
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--primary);
    line-height: 1.3;
    max-width: 400px;
}

.logo-subtitle {
    font-size: 11px;
    color: #64748b;
    line-height: 1.2;
    margin-top: 2px;
}

/* Кнопка бургер-меню */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1010;
    padding: 0;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Анимация бургера при открытии */
.menu-toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

nav {
    display: flex;
    align-items: center;
    height: 100%;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 24px;
    align-items: center;
    height: 100%;
}

nav a {
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
}

nav a:hover {
    color: var(--primary);
}

.nav-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
    height: 100%;
}

.nav-mobile-only {
    display: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    text-align: center;
    height: 42px;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-light);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary-tint);
}

main {
    margin-top: 72px;
}

/* БЛОК 2: Главный экран (Hero) */
/* Hero (rebuild — гражданский лендинг «Новые люди») */
.hero {
    background: #EEF3F8;
    padding: 78px 0 90px;
    position: relative;
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
    column-gap: 78px;
    align-items: center;
}

.hero__content {
    max-width: 720px;
}

/* Плашка с датами выборов — во всю ширину, под хедером */
.election-bar {
    background: #E4231F;
    color: #ffffff;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    padding: 16px 20px;
    letter-spacing: 0.1px;
}

.hero__title {
    font-size: clamp(42px, 4vw, 58px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #10182B;
    max-width: 700px;
}

.hero__lead {
    font-size: 19px;
    line-height: 1.5;
    color: #445064;
    max-width: 600px;
    margin-top: 24px;
}

.hero__stat {
    margin-top: 28px;
    max-width: 560px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px 22px;
    font-size: 16px;
    line-height: 1.5;
    color: #243044;
}

.hero__stat strong {
    color: #10182B;
    font-weight: 700;
}

/* Ряд из 4 карточек-результатов под hero-grid */
.hero-achievements {
    margin-top: 40px;
}

.hero-achievements__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.hero-achievement-card {
    background: #ffffff;
    border: 1px solid #DCE5EC;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(16, 24, 43, 0.06);
    padding: 26px 24px 24px;
    min-height: 168px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.hero-achievement-card__line {
    width: 36px;
    height: 3px;
    background: #13B8B5;
    border-radius: 999px;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.hero-achievement-card__text {
    font-size: 18px;
    line-height: 1.45;
    font-weight: 600;
    color: #10182B;
    margin: 0;
}

.hero-achievement-card--highlight {
    background: #F4FCFB;
    border-color: rgba(19, 184, 181, 0.35);
}

.hero-achievement-card--highlight .hero-achievement-card__text strong {
    font-weight: 800;
}

/* ── Секция инициатив ─────────────────────────────────────────── */
.initiatives-intro {
    background: #ffffff;
    padding: 90px 0 75px;
}

.initiatives-intro__text {
    max-width: 820px;
    margin: 0;
    font-size: clamp(28px, 3.2vw, 38px);
    line-height: 1.18;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #10182B;
}

.initiatives-intro__line {
    display: block;
    width: 64px;
    height: 3px;
    background: #13B8B5;
    border-radius: 999px;
    margin-top: 28px;
}

.initiative {
    background: #ffffff;
    padding: 96px 0;
}

.section-bg-soft {
    background: #F3F7FA;
}

.initiative__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
    gap: 80px;
    align-items: center;
}

.initiative--reverse .initiative__media {
    order: -1;
}

.initiative__content {
    max-width: 660px;
}

.initiative__eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.initiative__num {
    font-size: 13px;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: #13B8B5;
}

.initiative__cat {
    font-size: 12px;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: #8A97A6;
}

.initiative__title {
    margin: 0 0 26px;
    font-size: clamp(30px, 3.4vw, 38px);
    line-height: 1.12;
    font-weight: 750;
    letter-spacing: -0.025em;
    color: #10182B;
}

.initiative__body p {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 1.65;
    color: #475467;
}

.initiative__body p:last-child {
    margin-bottom: 0;
}

.initiative__todo {
    color: #9aa7b4;
    font-style: italic;
}

.initiative__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.fact-chip {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    border-radius: 6px;
    background: #E7F8F5;
    color: #0E8F8C;
    font-weight: 650;
    font-size: 14px;
}

.initiative__media {
    display: flex;
    justify-content: flex-end;
}

.initiative--reverse .initiative__media {
    justify-content: flex-start;
}

.initiative__image {
    width: 100%;
    max-width: 440px;
    aspect-ratio: 4 / 5;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    background: #EDF3F6;
}

@media (max-width: 1024px) {
    .initiative__grid { gap: 48px; }
}

@media (max-width: 880px) {
    .initiative__grid { grid-template-columns: 1fr; gap: 34px; }
    .initiative__content { max-width: 100%; }
    /* На узких экранах всегда text → image */
    .initiative__media,
    .initiative--reverse .initiative__media { order: 0; justify-content: flex-start; }
    .initiative__image { max-width: 520px; }
}

.initiatives-outro {
    padding: 84px 0;
    text-align: center;
}

.initiatives-outro__text {
    max-width: 760px;
    margin: 0 auto;
    font-size: clamp(20px, 2.2vw, 24px);
    line-height: 1.45;
    color: #243044;
}

.initiatives-outro__cta {
    max-width: 760px;
    margin: 18px auto 0;
    font-size: clamp(22px, 2.6vw, 28px);
    line-height: 1.3;
    font-weight: 750;
    letter-spacing: -0.02em;
    color: #10182B;
}

@media (max-width: 768px) {
    .initiatives-intro { padding: 56px 0 46px; }
    .initiative { padding: 60px 0; }
    .initiative__title { font-size: clamp(28px, 7vw, 32px); }
    .initiative__image { max-width: 100%; margin-top: 2px; }
    .initiatives-outro { padding: 56px 0; }
}

.hero__media {
    display: flex;
    justify-content: flex-end;
}

.hero__image {
    width: 100%;
    max-width: 450px;
    height: 520px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(20, 35, 55, 0.10);
    display: block;
    background: linear-gradient(160deg, #dce7ef 0%, #c9dbe6 100%);
}

.badge {
    display: inline-block;
    background-color: var(--primary-soft);
    color: #047857;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

/* Ряд кнопок (используется в секции контактов) */
.hero-cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Стили секций */
section {
    padding: 80px 0;
}

.section-bg-white {
    background-color: var(--neutral-bg);
}

.section-title-wrapper {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-title {
    font-size: 32px;
    color: var(--neutral-dark);
    font-weight: 800;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: #64748b;
}

/* БЛОК 3: О проекте */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    font-size: 16px;
    color: #475569;
    margin-bottom: 20px;
}

.about-highlight {
    background-color: #f1f5f9;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    font-weight: 500;
    margin-bottom: 20px;
}

.about-sidebar-card {
    padding: 30px;
    background-color: #f8fafc;
    border-radius: 16px;
    border: 1px dashed #cbd5e1;
}

.about-sidebar-card h4 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 18px;
}

.about-image-box {
    border-radius: 16px;
    height: 380px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
}

/* БЛОК 4: Позиция Сарданы Авксентьевой */
.quote-section {
    background-color: #f1f5f9;
}

.quote-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: stretch;
}

.quote-container {
    background-color: var(--neutral-bg);
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.team-image-box {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    min-height: 360px;
}

.quote-block {
    margin-bottom: 30px;
}

.quote-text-item {
    font-size: 18px;
    font-style: italic;
    color: var(--neutral-dark);
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.quote-text-item::before {
    content: "«";
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 40px;
    color: var(--primary);
    font-family: Georgia, serif;
    line-height: 1;
}

.quote-text-item::after {
    content: "»";
    font-size: 40px;
    color: var(--primary);
    font-family: Georgia, serif;
    line-height: 1;
    vertical-align: sub;
    margin-left: 5px;
}

.quote-author {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-info h5 {
    font-size: 16px;
    color: var(--neutral-dark);
    font-weight: 700;
}

.author-info p {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 4px;
}

.author-source {
    font-size: 12px;
    color: #94a3b8;
    font-style: italic;
    display: block;
}

.quote-footer-note {
    margin-top: 24px;
    font-size: 15px;
    color: #475569;
    background-color: var(--primary-tint);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

/* БЛОК 5: Партнеры проекта */
.partners-section {
    padding: 50px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background-color: #fafafa;
}

.partners-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partner-link {
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-flex;
}

.partner-link:hover {
    transform: translateY(-4px);
}

.partner-fallback-box {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    min-height: 80px;
}

.partner-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.partner-logo-text {
    font-size: 14px;
    font-weight: 700;
    color: #475569;
    line-height: 1.4;
}

/* БЛОК 6: Почему мы запускаем центр */
.why-launch-box {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    border-radius: 20px;
    padding: 50px;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
    align-items: center;
}

.why-launch-text h2 {
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 800;
}

.why-launch-text p {
    color: #cbd5e1;
    margin-bottom: 16px;
    font-size: 16px;
}

/* БЛОК 7: С чем помогает проект */
.help-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.help-card {
    background: var(--neutral-bg);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.help-icon {
    width: 44px;
    height: 44px;
    background-color: var(--primary-tint);
    color: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.help-card h3 {
    font-size: 16px;
    color: var(--neutral-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.help-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

/* БЛОК 8: Как работает центр */
.steps-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.step-number {
    font-size: 36px;
    font-weight: 900;
    color: #cbd5e1;
    margin-bottom: 10px;
    line-height: 1;
}

.step-title {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--neutral-dark);
}

.step-desc {
    font-size: 13px;
    color: #64748b;
}

.steps-info-note {
    background-color: #fffbeb;
    border: 1px solid #fef3c7;
    padding: 16px;
    border-radius: 8px;
    margin-top: 40px;
    text-align: center;
    font-size: 14px;
    color: #b45309;
    font-weight: 500;
}

/* БЛОК 9: Что важно знать о формате помощи */
.format-section {
    background-color: #f1f5f9;
    border-radius: 16px;
    padding: 40px;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.format-content h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 12px;
}

/* БЛОК 10 и 11: Кто может обратиться и документы */
.eligibility-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.eligibility-box {
    background-color: var(--neutral-bg);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 16px;
}

.eligibility-box h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 24px;
    font-weight: 700;
}

.check-list {
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 15px;
    color: #475569;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--success);
    font-weight: bold;
    font-size: 16px;
}

.doc-list li::before {
    content: "📎";
    font-size: 14px;
}

.note-text {
    margin-top: 20px;
    font-size: 13px;
    color: #64748b;
    font-style: italic;
}

/* БЛОК 12: Форма обращения */
.form-wizard-card {
    background-color: var(--neutral-bg);
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.form-header {
    background-color: var(--primary);
    color: white;
    padding: 30px 40px;
}

.form-header h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
}

.form-header p {
    color: #e0f7f5;
    font-size: 14px;
}

.form-progress {
    display: flex;
    background-color: #f1f5f9;
    border-bottom: 1px solid var(--border-color);
    overflow-x: auto;
}

.progress-step {
    flex: 1;
    text-align: center;
    padding: 12px 6px;
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}

.progress-step.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background-color: #fff;
}

.progress-step.completed {
    color: var(--success);
    border-bottom-color: var(--success);
}

.form-body {
    padding: 40px;
}

.form-step-content {
    display: none;
}

.form-step-content.active {
    display: block;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--neutral-dark);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 15px;
    color: var(--neutral-dark);
    transition: border-color 0.2s;
    background-color: #fafafa;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(10, 186, 181, 0.12);
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.radio-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.radio-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #475569;
    cursor: pointer;
}

.radio-checkbox-label input {
    margin-top: 4px;
}

.form-footer {
    padding: 24px 40px;
    background-color: #f8fafc;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
}

/* БЛОК 12.1: Форма для юристов и организаций */
.legal-support-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: start;
}

.legal-support-intro {
    max-width: 480px;
    position: sticky;
    top: 110px;
}

.legal-support-intro .section-title {
    text-align: left;
    margin-top: 16px;
}

.legal-support-intro p {
    color: #475569;
    font-size: 16px;
    margin-bottom: 20px;
}

.legal-support-note {
    background-color: #f1f5f9;
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    color: #475569;
    font-size: 14px;
    padding: 18px 20px;
}

.legal-support-note strong {
    color: var(--neutral-dark);
}

.legal-support-card {
    max-width: none;
    margin: 0;
}

.legal-support-card .form-footer {
    justify-content: flex-end;
}

.legal-support-textarea {
    min-height: 120px;
    resize: vertical;
}

.consent-box {
    background-color: #f1f5f9;
    border-radius: 8px;
    margin-top: 30px;
    padding: 15px;
}

/* БЛОК 13: Сообщение после отправки */
.success-screen {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 64px;
    height: 64px;
    background-color: #d1fae5;
    color: var(--success);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 20px;
}

.success-title {
    font-size: 24px;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 12px;
}

.success-text {
    color: #475569;
    font-size: 16px;
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.status-tags {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.status-tag {
    background-color: #f1f5f9;
    color: #475569;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid var(--border-color);
}

/* БЛОК 14: Контакты и графа «Как нас найти» */
.contacts-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: start;
}

.contact-info-card {
    background-color: var(--neutral-bg);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 16px;
}

.contact-info-card h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 800;
}

.contact-detail-item {
    margin-bottom: 20px;
}

.contact-detail-label {
    font-size: 12px;
    text-transform: uppercase;
    color: #94a3b8;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-detail-value {
    font-size: 16px;
    color: var(--neutral-dark);
    font-weight: 500;
}

.find-us-box {
    background-color: #f1f5f9;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    border-left: 4px solid var(--accent);
}

.find-us-box h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--neutral-dark);
    margin-bottom: 6px;
}

.find-us-box p {
    font-size: 13.5px;
    color: #475569;
    line-height: 1.5;
}

.map-container {
    border-radius: 16px;
    height: 100%;
    min-height: 440px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    background-color: #f1f5f9;
}

#yandexMap {
    width: 100%;
    height: 100%;
    min-height: 440px;
}

/* БЛОК 15: FAQ Аккордеон */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--neutral-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-trigger {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 700;
    color: var(--neutral-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.faq-trigger:hover {
    color: var(--primary);
}

.faq-content {
    padding: 0 24px 20px 24px;
    color: #475569;
    font-size: 15px;
    display: none;
}

.faq-item.open .faq-content {
    display: block;
}

.faq-icon::after { content: "+"; font-size: 20px; color: var(--primary); }
.faq-item.open .faq-icon::after { content: "−"; }

/* БЛОК 16: Финальный призыв к действию */
.cta-section {
    background: linear-gradient(135deg, var(--primary-tint) 0%, var(--primary-soft) 100%);
    text-align: center;
    padding: 80px 0;
    border-top: 1px solid #99f6e4;
}

.cta-box {
    max-width: 750px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 34px;
    color: var(--neutral-dark);
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 18px;
    color: #334155;
    margin-bottom: 30px;
}

/* БЛОК 17: Подвал сайта (Футер) */
/* ── Подвал «Новые люди» ──────────────────────────────────────── */
.site-footer {
    position: relative;
    overflow: hidden;
    background: #0B1529;
    color: #C7D2DE;
    padding: 64px 0 26px;
    font-size: 14px;
}

.site-footer__glow {
    position: absolute;
    top: -140px;
    left: 50%;
    transform: translateX(-50%);
    width: 680px;
    height: 320px;
    background: radial-gradient(ellipse at center, rgba(19, 184, 181, 0.20), transparent 70%);
    pointer-events: none;
}

.np-container {
    position: relative;
    max-width: 1180px;
    width: calc(100% - 64px);
    margin: 0 auto;
}

.site-footer__main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__logo { display: inline-block; }
.np-footer-logo { height: 34px; width: auto; display: block; }

.site-footer__slogan {
    margin-top: 20px;
    max-width: 320px;
    font-size: 15px;
    line-height: 1.5;
    color: #8FA0B2;
}

.site-footer__heading {
    margin-bottom: 16px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: #6E7E90;
}

/* Сброс наследования от глобальных header-правил nav / nav ul / nav a */
.site-footer__nav {
    display: block;
    height: auto;
    align-items: initial;
}

.site-footer__nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
    height: auto;
}

.site-footer__nav a {
    display: inline-block;
    height: auto;
    align-items: initial;
}

.site-footer__nav a,
.site-footer__legal,
.site-footer__top-link {
    color: #C7D2DE;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.site-footer__nav a:hover,
.site-footer__legal:hover,
.site-footer__top-link:hover { color: #13B8B5; }

.site-footer__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.site-footer__legal { font-size: 14px; line-height: 1.4; }

.site-footer__copy {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    padding: 9px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.site-footer__copy:hover {
    background: rgba(19, 184, 181, 0.14);
    border-color: rgba(19, 184, 181, 0.40);
}

.site-footer__copy-status {
    margin: 0;
    min-height: 16px;
    font-size: 13px;
    color: #13B8B5;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 22px;
}

.site-footer__legal-note { margin: 0; font-size: 13px; color: #6E7E90; }
.site-footer__top-link { font-size: 14px; }

@media (max-width: 768px) {
    .site-footer { padding: 48px 0 24px; }
    .np-container { width: calc(100% - 36px); }
    .site-footer__main { grid-template-columns: 1fr; gap: 30px; }
}


/* ==========================================================================
   ГЛОБАЛЬНАЯ АДАПТИВНОСТЬ И МОБИЛЬНАЯ ВЕРСИЯ
   ========================================================================== */

@media (max-width: 1024px) {
    section { padding: 60px 0; }
    .hero__grid { grid-template-columns: 1.05fr 0.95fr; column-gap: 44px; }
    .hero__image { height: 460px; }
    .hero-achievements__grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .help-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .steps-timeline { grid-template-columns: 1fr; gap: 30px; }
    .eligibility-grid { grid-template-columns: 1fr; gap: 20px; }
    .contacts-grid { grid-template-columns: 1fr; gap: 30px; }
    .map-container { min-height: 350px; }
    #yandexMap { min-height: 350px; }
    .quote-grid { grid-template-columns: 1fr; gap: 30px; }
    .team-image-box { min-height: 300px; max-height: 380px; }
    .about-image-box { height: 360px; }
}

@media (max-width: 880px) {
    .hero__grid { grid-template-columns: 1fr; row-gap: 34px; }
    .hero__media { justify-content: flex-start; }
    .hero__image { max-width: 520px; height: auto; aspect-ratio: 4 / 5; }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--neutral-bg);
        padding: 40px 20px;
        transition: left 0.3s ease;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        align-items: flex-start;
        flex-direction: column;
        overflow-y: auto;
        z-index: 1005;
    }

    nav.open {
        left: 0 !important;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        gap: 20px;
        margin-bottom: 40px;
        height: auto;
    }

    nav a {
        font-size: 18px;
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
    }

    .nav-mobile-only {
        display: block !important;
        width: 100%;
        margin-top: 20px;
    }

    .nav-container > .nav-buttons {
        display: none;
    }

    .election-bar { font-size: 13px; padding: 10px 16px; }
    .hero-achievements { margin-top: 32px; }
    .hero-achievements__grid { grid-template-columns: 1fr; gap: 14px; }
    .hero-achievement-card { min-height: auto; padding: 22px; }
    .hero-achievement-card__text { font-size: 16px; }
    .hero { padding: 46px 0 58px; }
    .hero__grid { grid-template-columns: 1fr; row-gap: 30px; }
    .hero__content { max-width: 100%; }
    .hero__title { font-size: clamp(32px, 8vw, 36px); line-height: 1.08; }
    .hero__lead { font-size: 16px; margin-top: 18px; }
    .hero__media { justify-content: stretch; margin-top: 4px; }
    .hero__image { max-width: 100%; height: auto; aspect-ratio: 4 / 5; }
    .hero-cta-buttons { width: 100%; }
    .hero-cta-buttons .btn { width: 100%; }

    .about-grid { grid-template-columns: 1fr; gap: 30px; }
    .about-image-box { height: 280px; }
    .section-title { font-size: 24px; }
    .section-title-wrapper { margin-bottom: 35px; }

    .quote-container { padding: 30px 20px; }
    .quote-text-item { font-size: 16px; }

    .why-launch-box { grid-template-columns: 1fr; padding: 30px 20px; text-align: center; }
    .why-launch-box h2 { font-size: 22px; }
    .why-launch-box div:last-child { display: none; }

    .format-section { flex-direction: column; padding: 25px 20px; text-align: center; }
    .format-section div:last-child { display: none; }
    .eligibility-box { padding: 25px 20px; }

    .form-header { padding: 25px 20px; text-align: center; }
    .form-header h2 { font-size: 20px; }
    .form-body { padding: 25px 20px; }
    .form-grid-2 { grid-template-columns: 1fr; gap: 0; }
    .form-footer { padding: 20px; flex-direction: column-reverse; gap: 12px; }
    .form-footer .btn { width: 100%; }
    .legal-support-layout { grid-template-columns: 1fr; gap: 30px; }
    .legal-support-intro { max-width: none; position: static; text-align: center; }
    .legal-support-intro .section-title { text-align: center; }
    .legal-support-note { text-align: left; }

    .contact-info-card { padding: 25px 20px; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .footer-links { justify-content: center; flex-direction: column; gap: 15px; }
    .cta-box h2 { font-size: 24px; }
}

@media (max-width: 480px) {
    .help-grid { grid-template-columns: 1fr; }
    .logo-title { font-size: 14px; }
    .logo-subtitle { display: none; }
}
