/* ============================================
   Банк еды «Русь» — Свердловское отделение
   Основные стили сайта
   ============================================ */

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

/* --- Переменные --- */
:root {
    --color-orange: #ec641d;
    --color-orange-dark: #d4581a;
    --color-blue: #34668b;
    --color-blue-dark: #054678;
    --color-yellow: #f7ca18;
    --color-bg-light: #f5f5f5;
    --color-text: #000000;
    --color-text-secondary: #999999;
    --font-family: 'Museo Sans Cyrl', Helvetica, Arial, sans-serif;
    --header-height: 70px;
    --header-height-shrunk: 56px;
}

/* --- Базовые стили --- */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 10px;
    color: var(--color-text);
    margin: 0;
    padding: 0;
}

/* --- Wrapper --- */
.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.wrapper .main {
    flex: 1;
}

/* --- Container --- */
.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

/* --- Fade-in анимация --- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Кнопки --- */
.button-orange {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--color-orange);
    color: #ffffff;
    border-radius: 5px;
    text-decoration: none;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.button-orange:hover {
    background: var(--color-orange-dark);
    box-shadow: 0 4px 12px rgba(236, 100, 29, 0.3);
}

.button-icon {
    flex-shrink: 0;
}

.button-text {
    display: inline;
}

.button-help-link {
    font-family: var(--font-family);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-blue-dark);
    text-decoration: none;
    border: 1.5px solid var(--color-blue-dark);
    border-radius: 5px;
    padding: 8px 16px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.button-help-link:hover {
    background: var(--color-blue-dark);
    color: #ffffff;
}

/* --- Burger-кнопка --- */
.burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-blue-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger.is-active span:nth-child(2) {
    opacity: 0;
}

.burger.is-active span:nth-child(3) {
    opacity: 0;
}

.burger.is-active span:nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --- Общие заголовки секций --- */
.section-title {
    font-family: var(--font-family);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-blue-dark);
    text-align: center;
    margin-bottom: 40px;
}

.subsection-title {
    font-family: var(--font-family);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-blue-dark);
    text-align: center;
    margin-top: 60px;
    margin-bottom: 30px;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    height: auto;
    padding: 0;
    transition: box-shadow 0.3s ease;
}

.header .header-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: 0;
    transition: height 0.3s ease;
}

.header.is-shrunk .header-content {
    height: var(--header-height-shrunk);
}

.header.is-shrunk {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.header .header-content__top {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
    justify-content: flex-start;
    width: auto;
    flex: 0 0 auto;
}

.header .header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-right: 0;
}

.header-logo-text {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 900;
    color: var(--color-blue-dark);
    line-height: 1.2;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.header-logo-city {
    font-weight: 300;
    font-size: 12px;
    display: block;
    color: var(--color-text-secondary);
    letter-spacing: 0;
    text-transform: none;
}

.header .header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    margin-left: 20px;
}

.header .menu-area {
    display: flex;
    align-items: center;
    flex: 1 1 auto;
    justify-content: center;
    background: transparent;
}

.header .menu {
    display: flex;
    justify-content: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    width: auto;
}

.header .menu-item {
    list-style: none;
}

.header .menu-item__anchor {
    font-family: var(--font-family);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-blue-dark);
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.header .menu-item__anchor.is-active,
.header .menu-item__anchor:hover {
    color: var(--color-orange);
    border-bottom-color: var(--color-orange);
}

/* Скрыть бургер и мобильное меню на десктопе */
@media (min-width: 768px) {
    .header__burger-area {
        display: none;
    }
    .mob-menu {
        display: none;
    }
}

/* Мобильное меню */
@media (max-width: 767px) {
    .header .header-content {
        height: 60px;
        flex-wrap: wrap;
    }
    .header .header-content__top {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .header .menu-area {
        display: none;
        width: 100%;
        order: 4;
    }
    .header .menu-area.is-active {
        display: block;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #ffffff;
        z-index: 999;
        overflow-y: auto;
        padding: 20px;
    }
    .header .menu {
        display: none;
    }
    .header .header__actions {
        display: none;
    }
    .header__burger-area {
        display: block;
    }
    .mob-menu {
        display: none;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .menu-area.is-active .mob-menu {
        display: block;
    }
    .mob-menu-item {
        margin-bottom: 12px;
    }
    .mob-menu-item__anchor {
        font-family: var(--font-family);
        font-size: 18px;
        font-weight: 500;
        color: var(--color-blue-dark);
        text-decoration: none;
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }
    .mob-menu-item__anchor--cta {
        color: var(--color-orange);
        font-weight: 700;
        border-bottom: none;
    }
    .mob-menu-item__anchor--help {
        color: var(--color-blue-dark);
        font-weight: 700;
        border: 1.5px solid var(--color-blue-dark);
        border-radius: 5px;
        text-align: center;
        padding: 10px;
        margin-top: 8px;
    }
}

/* ============================================
   HERO
   ============================================ */
.hero-section {
    position: relative;
    min-height: 500px;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-blue-dark) 0%, var(--color-blue) 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

/* Декоративные SVG-иконки еды */
.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-deco {
    position: absolute;
    opacity: 0.6;
}

.hero-deco--1 {
    top: 10%;
    left: 8%;
    animation: floatSlow 8s ease-in-out infinite;
}

.hero-deco--2 {
    top: 60%;
    left: 5%;
    animation: floatSlow 10s ease-in-out infinite 1s;
}

.hero-deco--3 {
    top: 15%;
    right: 10%;
    animation: floatSlow 9s ease-in-out infinite 2s;
}

.hero-deco--4 {
    bottom: 15%;
    right: 8%;
    animation: floatSlow 7s ease-in-out infinite 0.5s;
}

.hero-deco--5 {
    bottom: 25%;
    left: 15%;
    animation: floatSlow 11s ease-in-out infinite 3s;
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-org-type {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 12px;
    opacity: 0.75;
}

.hero-title {
    font-family: var(--font-family);
    font-size: 36px;
    font-weight: 900;
    margin: 0 0 14px;
    line-height: 1.25;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0 0 16px;
    opacity: 0.85;
}

.hero-badge {
    display: inline-block;
    background: var(--color-orange);
    color: #ffffff;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 20px;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero-description {
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0 0 36px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .button {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.hero-buttons .button--orange {
    background: var(--color-orange);
    color: #ffffff;
}

.hero-buttons .button--orange:hover {
    background: var(--color-orange-dark);
    box-shadow: 0 4px 12px rgba(236, 100, 29, 0.3);
}

.hero-buttons .button--bordered {
    background: transparent;
    border-color: #ffffff;
    color: #ffffff;
}

.hero-buttons .button--bordered:hover {
    background: #ffffff;
    color: var(--color-blue-dark);
}

/* ============================================
   БЕГУЩАЯ СТРОКА ИКОНОК (marquee)
   ============================================ */
.food-marquee {
    overflow: hidden;
    background: #ffffff;
    padding: 20px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.food-marquee__track {
    display: flex;
    align-items: center;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}

.food-marquee__icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    margin: 0 40px;
}

.food-marquee:hover .food-marquee__track {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   ЦИФРЫ
   ============================================ */
.stats-section {
    background: #ffffff;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-icon {
    margin-bottom: 12px;
}

.stat-number {
    display: block;
    font-family: var(--font-family);
    font-size: 48px;
    font-weight: 900;
    color: var(--color-orange);
    line-height: 1.2;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 300;
    color: var(--color-text-secondary);
    line-height: 1.4;
}

/* ============================================
   О ФОНДЕ
   ============================================ */
.about-section {
    background: var(--color-bg-light);
    padding: 80px 0;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
}

.about-text {
    max-width: 100%;
}

.about-text p {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--color-text);
}

.about-photo {
    border-radius: 8px;
    overflow: hidden;
}

.about-photo__placeholder {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #e8eef3 0%, #d4dde6 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 8px;
    color: var(--color-blue-dark);
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 300;
    opacity: 0.8;
}

/* Ссылка на отчёт */
.about-report {
    text-align: center;
    margin-bottom: 50px;
}

.report-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-family);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-orange);
    text-decoration: none;
    padding: 10px 20px;
    border: 1.5px solid var(--color-orange);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.report-link:hover {
    background: var(--color-orange);
    color: #ffffff;
}

.report-link:hover svg path {
    stroke: #ffffff;
}

/* ============================================
   КАРТОЧКИ (универсальные)
   ============================================ */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

.card {
    background: #ffffff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.card--accent {
    border-top: 3px solid var(--color-orange);
}

.card:hover {
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.card-icon {
    margin-bottom: 20px;
}

.card-title {
    font-family: var(--font-family);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-blue-dark);
    margin: 0 0 12px;
}

.card-text {
    font-family: var(--font-family);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-text);
    margin: 0;
}

.card-note {
    font-family: var(--font-family);
    font-size: 13px;
    font-weight: 300;
    color: var(--color-text-secondary);
    margin: 8px 0 0;
    font-style: italic;
}

/* Карточки «Как помочь» — с кнопками */
.card--help {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card--help .button {
    margin-top: auto;
    padding-top: 20px;
}

.card--help .button--orange {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: var(--color-orange);
    color: #ffffff;
    border-radius: 5px;
    text-decoration: none;
    font-family: var(--font-family);
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-top: 20px;
    border: none;
}

.card--help .button--orange:hover {
    background: var(--color-orange-dark);
    box-shadow: 0 4px 12px rgba(236, 100, 29, 0.3);
}

/* Мотивационный блок */
.help-motivation {
    text-align: center;
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 300;
    color: var(--color-text);
    margin-bottom: 40px;
}

.help-motivation__accent {
    font-weight: 700;
    color: var(--color-orange);
    font-size: 20px;
}

/* ============================================
   БЛАГОПОЛУЧАТЕЛИ
   ============================================ */
.beneficiaries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.beneficiary-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.beneficiary-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.beneficiary-label {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.4;
}

.beneficiary-count {
    font-family: var(--font-family);
    font-size: 13px;
    font-weight: 700;
    color: var(--color-orange);
}

/* ============================================
   ВОДЯНЫЕ ЗНАКИ В КАРТОЧКАХ
   ============================================ */
.card--has-watermark {
    position: relative;
    overflow: hidden;
}

.card-watermark {
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 80px;
    height: 80px;
    opacity: 0.12;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.card--has-watermark:hover .card-watermark {
    opacity: 0.25;
}

/* ============================================
   ТАБЫ «ДВОЙНАЯ ПОЛЬЗА»
   ============================================ */
.tabs-section {
    background: #f8f4ef;
    padding: 80px 0;
}

.tabs__nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.tabs__btn {
    font-family: var(--font-family);
    font-size: 15px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 30px;
    border: 2px solid var(--color-orange);
    background: transparent;
    color: var(--color-orange);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tabs__btn:hover {
    background: rgba(236, 100, 29, 0.1);
}

.tabs__btn.is-active {
    background: var(--color-orange);
    color: #ffffff;
}

.tabs__panels {
    position: relative;
}

.tabs__panel {
    display: none;
    animation: tabFadeIn 0.4s ease;
}

.tabs__panel.is-active {
    display: block;
}

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

.tabs__panel-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.tabs__panel-placeholder {
    width: 100%;
    height: 240px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tabs__panel-placeholder--orange {
    background: linear-gradient(135deg, #ec641d 0%, #f09050 100%);
}

.tabs__panel-placeholder--blue {
    background: linear-gradient(135deg, #054678 0%, #34668b 100%);
}

.tabs__panel-placeholder--green {
    background: linear-gradient(135deg, #2d8f5e 0%, #4db87e 100%);
}

.tabs__panel-text {
    font-family: var(--font-family);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-text);
    margin: 0 0 16px;
}

.tabs__panel-stat {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-orange);
    margin: 0 0 24px;
}

.tabs__panel-stat strong {
    font-size: 20px;
    font-weight: 900;
}

.tabs__panel-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.tabs__panel-buttons .button--orange {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: var(--color-orange);
    color: #ffffff;
    border-radius: 5px;
    text-decoration: none;
    font-family: var(--font-family);
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
}

.tabs__panel-buttons .button--orange:hover {
    background: var(--color-orange-dark);
    box-shadow: 0 4px 12px rgba(236, 100, 29, 0.3);
}

.tabs__panel-buttons .button--orange-outline {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid var(--color-orange);
    color: var(--color-orange);
    border-radius: 5px;
    text-decoration: none;
    font-family: var(--font-family);
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.tabs__panel-buttons .button--orange-outline:hover {
    background: var(--color-orange);
    color: #ffffff;
}

/* ============================================
   КАК ЭТО РАБОТАЕТ
   ============================================ */
.how-it-works-section {
    background: #ffffff;
    padding: 80px 0;
}

.steps-nowrap {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
}

.block-step {
    flex: 1;
    max-width: 220px;
    text-align: center;
}

.block-step__inner {
    padding: 20px 10px;
}

.step-number {
    font-family: var(--font-family);
    font-size: 36px;
    font-weight: 900;
    color: var(--color-orange);
    opacity: 0.25;
    margin-bottom: 8px;
    line-height: 1;
}

.step-icon {
    margin-bottom: 16px;
}

.block-step__title {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-blue-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.block-step__text {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 300;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* Коннектор между шагами */
.step-connector {
    display: flex;
    align-items: center;
    padding-top: 60px;
    flex-shrink: 0;
    width: 50px;
}

.step-connector span {
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-orange) 0%, var(--color-orange) 60%, transparent 100%);
    position: relative;
}

.step-connector span::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid var(--color-orange);
}

.how-it-works-note {
    text-align: center;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 300;
    color: var(--color-text-secondary);
    margin-top: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   КАК ПОМОЧЬ
   ============================================ */
.help-section {
    background: var(--color-bg-light);
    padding: 80px 0;
}

/* ============================================
   CTA «Нуждаетесь в помощи?»
   ============================================ */
.cta-section {
    background: var(--color-orange);
    padding: 60px 0;
    text-align: center;
    color: #ffffff;
}

.cta-title {
    font-family: var(--font-family);
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 20px;
    color: #ffffff;
}

.cta-text {
    font-family: var(--font-family);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0 0 12px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.cta-categories {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 500;
    margin: 20px auto 30px;
    max-width: 650px;
    opacity: 0.9;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .button--bordered {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    border-radius: 5px;
    text-decoration: none;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-section .button--bordered:hover {
    background: #ffffff;
    color: var(--color-orange);
}

.cta-section .button--bordered:hover svg {
    fill: var(--color-orange);
}

/* ============================================
   НОВОСТИ
   ============================================ */
.news-section {
    background: #ffffff;
    padding: 80px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.news-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.news-card:hover {
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.news-card__image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.news-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-card__placeholder--orange {
    background: linear-gradient(135deg, #ec641d 0%, #f09050 100%);
}

.news-card__placeholder--blue {
    background: linear-gradient(135deg, #054678 0%, #34668b 100%);
}

.news-card__placeholder--green {
    background: linear-gradient(135deg, #2d8f5e 0%, #4db87e 100%);
}

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

.news-card__body {
    padding: 20px;
}

.news-card__date {
    font-family: var(--font-family);
    font-size: 13px;
    font-weight: 300;
    color: var(--color-text-secondary);
    display: block;
    margin-bottom: 8px;
}

.news-card__title {
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-blue-dark);
    margin: 0 0 10px;
    line-height: 1.3;
}

.news-card__text {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 300;
    color: var(--color-text);
    line-height: 1.6;
    margin: 0 0 12px;
}

.news-card__link {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-card__link:hover {
    color: var(--color-orange-dark);
}

/* СМИ о нас */
.media-section {
    margin-bottom: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.media-section__title {
    font-family: var(--font-family);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-blue-dark);
    margin: 0 0 20px;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.media-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px;
    border-radius: 8px;
    background: var(--color-bg-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.media-item:hover {
    background: #e8e8e8;
}

.media-item__source {
    font-family: var(--font-family);
    font-size: 11px;
    font-weight: 700;
    color: var(--color-orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.media-item__title {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 300;
    color: var(--color-text);
    line-height: 1.4;
}

.news-more {
    text-align: center;
}

.button--orange-border {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid var(--color-orange);
    color: var(--color-orange);
    border-radius: 5px;
    text-decoration: none;
    font-family: var(--font-family);
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.button--orange-border:hover {
    background: var(--color-orange);
    color: #ffffff;
}

.button--orange-border:hover svg {
    fill: #ffffff;
}

/* ============================================
   КОНТАКТЫ
   ============================================ */
.contacts-section {
    background: var(--color-bg-light);
    padding: 80px 0;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contacts-subtitle {
    font-family: var(--font-family);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-blue-dark);
    margin: 0 0 20px;
}

.contacts-subtitle + .contacts-subtitle,
.requisites {
    margin-top: 30px;
}

.contacts-list {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
}

.contacts-list__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-family: var(--font-family);
    font-size: 15px;
    font-weight: 300;
}

.contacts-list__item a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contacts-list__item a:hover {
    color: var(--color-orange);
}

.contacts-list__icon {
    flex-shrink: 0;
}

.contacts-schedule,
.contacts-address {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-family: var(--font-family);
    font-size: 15px;
    font-weight: 300;
    color: var(--color-text);
}

.requisites {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-text);
}

.requisites p {
    margin: 4px 0;
}

.contacts-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.contacts-map iframe {
    display: block;
}

/* Форма обратной связи */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.contact-form__input,
.contact-form__textarea {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 300;
    padding: 12px 16px;
    border: 1.5px solid #ddd;
    border-radius: 5px;
    background: #ffffff;
    color: var(--color-text);
    transition: border-color 0.3s ease;
    width: 100%;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
    outline: none;
    border-color: var(--color-orange);
}

.contact-form__textarea {
    resize: vertical;
    min-height: 80px;
}

.contact-form__submit {
    align-self: flex-start;
}

.contact-form__note {
    font-family: var(--font-family);
    font-size: 13px;
    font-weight: 300;
    color: var(--color-text-secondary);
    margin: 0;
}

.contact-form__note a {
    color: var(--color-orange);
    text-decoration: none;
}

.contact-form__success {
    font-family: var(--font-family);
    font-size: 15px;
    font-weight: 500;
    color: #2d8f5e;
    display: none;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-blue);
    color: #ffffff;
    padding: 50px 0 0;
}

.footer-content__main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-logo__img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-logo__text {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

.footer-description {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer .footer-menu-block__anchor {
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
}

.footer .footer-menu-block__item-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer .footer-menu-block__item-link:hover {
    color: #ffffff;
}

.footer .footer-menu-block__items {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
}

.footer .footer-menu-block__items li {
    margin-bottom: 6px;
}

.footer-col--right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer .link-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transition: background 0.3s ease;
}

.footer .link-social:hover {
    background: rgba(255, 255, 255, 0.3);
}

.footer .link-social__icon {
    width: 24px;
    height: 24px;
}

/* Рассылка */
.footer-newsletter__title {
    font-family: var(--font-family);
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 8px;
}

.footer-newsletter__form {
    display: flex;
    gap: 0;
}

.footer-newsletter__input {
    font-family: var(--font-family);
    font-size: 13px;
    padding: 8px 12px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-right: none;
    border-radius: 5px 0 0 5px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    outline: none;
    width: 180px;
    transition: border-color 0.3s ease;
}

.footer-newsletter__input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter__input:focus {
    border-color: var(--color-orange);
}

.footer-newsletter__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    background: var(--color-orange);
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.footer-newsletter__btn:hover {
    background: var(--color-orange-dark);
}

.button--footer {
    padding: 10px 20px;
    border-radius: 5px;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 700;
    background: var(--color-orange);
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
}

.button--footer:hover {
    background: var(--color-orange-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom__links {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer .copyright {
    font-family: var(--font-family);
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer .footer-bottom-element {
    font-family: var(--font-family);
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer .footer-bottom-element a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer .footer-bottom-element a:hover {
    color: #ffffff;
}

.footer-privacy {
    font-family: var(--font-family);
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-privacy:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   SCROLL-TO-TOP
   ============================================ */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-blue-dark);
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 900;
}

.scroll-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--color-orange);
}

/* ============================================
   АДАПТИВ
   ============================================ */

/* Планшет */
@media (max-width: 1199px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-nowrap {
        flex-wrap: wrap;
        gap: 10px;
    }

    .step-connector {
        display: none;
    }

    .block-step {
        flex: 0 0 calc(50% - 10px);
        max-width: none;
    }

    .about-intro {
        grid-template-columns: 1fr;
    }

    .about-photo__placeholder {
        height: 200px;
    }
}

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

    .footer-col--right {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 16px;
    }

    .button-help-link {
        display: none;
    }
}

/* Мобильные */
@media (max-width: 767px) {
    .tabs-section {
        padding: 50px 0;
    }

    .tabs__panel-inner {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 24px;
    }

    .tabs__panel-placeholder {
        height: 180px;
    }

    .tabs__btn {
        font-size: 13px;
        padding: 10px 18px;
    }

    .food-marquee__icon {
        width: 40px;
        height: 40px;
        margin: 0 24px;
    }

    .food-marquee {
        padding: 14px 0;
    }

    .hero-org-type {
        font-size: 13px;
        letter-spacing: 1.5px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-section {
        height: auto;
        min-height: 0;
        padding: 120px 0 60px;
    }

    .hero-deco {
        display: none;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-number {
        font-size: 36px;
    }

    .cards-grid,
    .cards-grid--4 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .beneficiaries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .steps-nowrap {
        flex-direction: column;
        align-items: center;
    }

    .block-step {
        flex: none;
        width: 100%;
        max-width: 300px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .media-grid {
        grid-template-columns: 1fr;
    }

    .contacts-grid {
        grid-template-columns: 1fr;
    }

    .contacts-map iframe {
        height: 300px;
    }

    .footer-content__main {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-col--right {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom__links {
        flex-direction: column;
        gap: 8px;
    }

    .cta-title {
        font-size: 26px;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-section,
    .how-it-works-section,
    .help-section,
    .news-section,
    .contacts-section {
        padding: 50px 0;
    }

    .stats-section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .stat-number {
        font-size: 30px;
    }

    .beneficiaries-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .button {
        width: 100%;
        justify-content: center;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
    }
}
