/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Montserrat', sans-serif;
    background: #1b2e1b;
    color: #fff;
}

/* =============================================
   CONTAINER
   ============================================= */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}

/* =============================================
   HEADER
   ============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: #2c4028;  /* deep forest green */
    padding: 0 0;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

/* LOGO */
.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

/* NAV */
.nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav__link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.80);
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.25s ease;
    white-space: nowrap;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.25s ease;
}

.nav__link:hover {
    color: #fff;
}

.nav__link:hover::after {
    width: 100%;
}

/* active state — underline always visible */
.nav__link--active {
    color: #fff;
    font-weight: 700;
}

.nav__link--active::after {
    width: 100%;
}

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding-top: 64px; /* offset for fixed header */
    display: flex;
    align-items: center;
    overflow: hidden;

    /* Background: use a greenish agricultural gradient as fallback,
       swap src for a real photo if available */
    background-image: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=1600&q=80');
    background-size: cover;
    background-position: center;
}

/* dark green overlay */
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(20, 40, 15, 0.82) 0%,
        rgba(20, 40, 15, 0.55) 55%,
        rgba(20, 40, 15, 0.20) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding-top: 80px;
    padding-bottom: 80px;
}

/* "Original & Natural" eyebrow */
.hero__eyebrow {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 6px;
}

.hero__eyebrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #c8a84b; /* golden accent */
}

/* Main headline */
.hero__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    line-height: 1.18;
    color: #f0c040; /* golden yellow */
    margin-bottom: 22px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

/* Description */
.hero__desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 38px;
    max-width: 520px;
}

/* CTA Button */
.hero__btn {
    display: inline-block;
    padding: 18px 38px;
    background: #c8a84b;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-decoration: none;
    border-radius: 50px;
    transition: background 0.25s ease, transform 0.2s ease;
}

.hero__btn:hover {
    background: #b5922f;
    transform: translateY(-2px);
}

/* Decorative leaf (top-right area) */
.hero__leaf {
    position: absolute;
    right: 22%;
    top: 35%;
    z-index: 2;
    opacity: 0.9;
    pointer-events: none;
    transform: rotate(-10deg);
    animation: leafFloat 4s ease-in-out infinite;
}

@keyframes leafFloat {
    0%, 100% { transform: rotate(-10deg) translateY(0); }
    50%       { transform: rotate(-6deg) translateY(-12px); }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
    .nav { gap: 20px; }
    .nav__link { font-size: 0.7rem; }
    .hero__leaf { display: none; }
}

@media (max-width: 640px) {
    .container { padding: 0 20px; }
    .header__inner { height: 56px; }
    .nav { gap: 14px; }
    .nav__link { font-size: 0.65rem; letter-spacing: 0.04em; }
    .hero__content { padding-top: 40px; }
    .hero__title { font-size: 1.7rem; }
}

/* =============================================
   SECTION: НАШ ПЛАН
   ============================================= */
.plan {
    background: #253920;
    padding: 100px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.plan__inner {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 60px;
    align-items: start;
}

/* Title */
.plan__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.15;
}

.plan__title-tag {
    color: #c8a84b;
}

.plan__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 36px;
    line-height: 1.6;
}

/* Grid of cards */
.plan__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* Card */
.plan__card {
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 22px 20px;
    cursor: pointer;
    text-align: left;
    transition: background 0.22s ease, border-color 0.22s ease, transform 0.18s ease;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.plan__card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: #c8a84b;
    opacity: 0;
    transition: opacity 0.22s ease;
    border-radius: 3px 0 0 3px;
}

.plan__card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(200, 168, 75, 0.35);
    transform: translateY(-2px);
}

.plan__card--active {
    background: rgba(200, 168, 75, 0.12);
    border-color: rgba(200, 168, 75, 0.55);
}

.plan__card--active::before {
    opacity: 1;
}

.plan__card--wide {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
}

.plan__card--wide .plan__card-name {
    max-width: 60%;
}

.plan__card-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    color: #c8a84b;
}

.plan__card-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    color: #fff;
    line-height: 1.45;
}

/* Map area */
.plan__map-wrap {
    position: sticky;
    top: 80px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plan__map {
    width: 100%;
    aspect-ratio: 695 / 564;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(0,0,0,0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    transition: opacity 0.3s ease;
}

.plan__map svg,
.plan__map img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 20px;
}

/* fade transition when switching map */
.plan__map.is-fading {
    opacity: 0;
}

.plan__map-hint {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: 'Inter', sans-serif;
    font-size: 0.76rem;
    color: rgba(255,255,255,0.38);
}

/* Responsive */
@media (max-width: 1024px) {
    .plan__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .plan__map-wrap {
        position: static;
        order: -1;
    }
    .plan__map {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .plan { padding: 60px 0; }
    .plan__inner { padding: 0 20px; }
    .plan__grid { grid-template-columns: 1fr; }
    .plan__card--wide { flex-direction: column; }
    .plan__card--wide .plan__card-name { max-width: 100%; }
}





/* =============================================
   СЕКЦИЯ: ПРОДУКЦИЯ (НОВЫЙ ДИЗАЙН)
   ============================================= */
.products-section {
    background: #1b2e1b; /* темный лесной фон */
    padding: 120px 0;
}

.products-section__header {
    text-align: center;
    margin-bottom: 60px;
}

.products-section__subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: #c8a84b;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.products-section__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: #fff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

/* Карточка товара */
.product-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 35px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.product-card__icon-wrap {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.product-card__icon {
    width: 42px;
    height: 42px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s ease;
}

/* Состояние при наведении */
.product-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(200, 168, 75, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.product-card:hover .product-card__icon-wrap {
    transform: scale(1.05);
}

/* Выделенная карточка (Люцерна) */
.product-card--active {
    background: linear-gradient(145deg, rgba(200, 168, 75, 0.15) 0%, rgba(200, 168, 75, 0.03) 100%);
    border-color: rgba(200, 168, 75, 0.6);
    box-shadow: 0 15px 35px rgba(200, 168, 75, 0.1);
}

.product-card--active .product-card__title {
    color: #f0c040;
    font-weight: 700;
}

.product-card--active .product-card__icon-wrap {
    background: rgba(200, 168, 75, 0.2);
    border: 1px solid rgba(200, 168, 75, 0.4);
}

/* =============================================
   СЕКЦИЯ: СТРАТЕГИЯ / ПРОЕКТ (НОВЫЙ ДИЗАЙН)
   ============================================= */
.strategy-section {
    background: #253920; /* чуть более светлый зеленый для контраста */
    padding: 120px 0;
    overflow: hidden;
}

.strategy-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

/* Левая медиа-часть */
.strategy-media {
    position: relative;
}

.strategy-image-container {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}

.strategy-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.strategy-image-container:hover .strategy-img {
    transform: scale(1.04);
}

/* Стеклянный плавающий шильдик */
.strategy-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: rgba(27, 46, 27, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.strategy-badge span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: #fff;
}

/* Правая контентная часть */
.strategy-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: #c8a84b;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.strategy-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    line-height: 1.25;
    color: #fff;
    margin-bottom: 25px;
}

.strategy-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

/* Списки */
.strategy-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.strategy-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.strategy-icon {
    width: 36px;
    height: 36px;
    background: rgba(200, 168, 75, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    transition: background 0.3s ease;
}

.strategy-item:hover .strategy-icon {
    background: rgba(200, 168, 75, 0.25);
}

.strategy-item-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
    display: block;
    margin-bottom: 4px;
}

.strategy-item-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* =============================================
   АДАПТИВНОСТЬ ДЛЯ НОВЫХ БЛОКОВ
   ============================================= */
@media (max-width: 1024px) {
    .strategy-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .strategy-media {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .products-section { padding: 80px 0; }
    .strategy-section { padding: 80px 0; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .product-card { padding: 25px 15px; }
}

/* Базовые стили для анимации появления */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}




/* =============================================
   СЕКЦИЯ: ГАЛЕРЕЯ СЕКТОРОВ ПРОЕКТА
   ============================================= */
.sectors-gallery {
    background: #1b2e1b;
    padding: 100px 0 120px;
}

.sectors-gallery__header {
    text-align: center;
    margin-bottom: 55px;
}

.sectors-gallery__subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    color: #a3b899;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.sectors-gallery__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: #ffffff;
}

/* Сетка карточек */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

/* Стилизация интерактивной карточки */
.sector-card {
    background: #253920;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    /* Плавное смещение вверх при наведении */
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.sector-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Анимация при наведении */
.sector-card:hover {
    transform: translateY(-12px); /* Карточка всплывает вверх */
    border-color: rgba(200, 168, 75, 0.5); /* Фирменный золотой контур */
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(200, 168, 75, 0.25);
}

.sector-card:hover .sector-card__img {
    transform: scale(1.05); /* Картинка внутри слегка увеличивается */
}

/* Градиентный оверлей для читаемости русского текста */
.sector-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(16, 32, 19, 0.95) 0%, rgba(16, 32, 19, 0.4) 65%, transparent 100%);
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.sector-card__tag {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: #c8a84b; /* Золотистый цвет для категории */
    margin-bottom: 6px;
}

.sector-card__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff;
    line-height: 1.4;
}

/* =============================================
   МОДАЛЬНОЕ ОКНО ПРОСМОТРА КАРТИНКИ
   ============================================= */
.sector-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 22, 13, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 1000;
}

/* Класс активации модалки */
.sector-modal.is-active {
    opacity: 1;
    pointer-events: auto;
}

.sector-modal__content {
    max-width: 90%;
    max-height: 82%;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transform: scale(0.92);
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    object-fit: contain;
}

.sector-modal.is-active .sector-modal__content {
    transform: scale(1); /* Эффект приближения картинки при открытии */
}

.sector-modal__close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 46px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s ease;
    user-select: none;
}

.sector-modal__close:hover {
    color: #c8a84b;
}

@media (max-width: 480px) {
    .sectors-grid {
        grid-template-columns: 1fr;
    }
}






/* =============================================
   СЕКЦИЯ: ГЛУБОКАЯ ИНФОРМАЦИЯ О ПРОЕКТЕ
   ============================================= */
.about-deep {
    background: #152415; /* Более глубокий оттенок темно-зеленого */
    padding: 120px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.about-deep__inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-deep__subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    color: #c8a84b; /* Золотой акцент */
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.about-deep__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 3.8vw, 2.8rem);
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 25px;
}

.about-deep__text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Фичи внутри контента */
.about-deep__features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-deep__feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.about-deep__feature-icon {
    width: 46px;
    height: 46px;
    background: rgba(200, 168, 75, 0.08); /* Мягкий золотистый полупрозрачный фон */
    border: 1px solid rgba(200, 168, 75, 0.15); /* Тонкий контур в тон */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; /* Чтобы кружок не сжимался при длинном тексте */
}

.about-deep__feature-icon svg {
    width: 20px;
    height: 20px;
    display: block;
    transition: transform 0.3s ease;
}

/* Небольшой интерактивный эффект при наведении на всю строчку */
.about-deep__feature-item:hover .about-deep__feature-icon svg {
    transform: scale(1.1);
}

.about-deep__feature-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    color: #ffffff;
    margin-bottom: 5px;
}

.about-deep__feature-item p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
}

/* Сетка цифр и показателей (Правая колонка) */
.about-deep__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-box {
    background: #203520;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: rgba(200, 168, 75, 0.3);
}

.stat-box__num {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #c8a84b; /* Премиальный золотой цвет цифр */
    display: block;
    margin-bottom: 10px;
}

.stat-box__label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: #ffffff;
    line-height: 1.4;
}

/* =============================================
   АККУРАТНЫЙ ФУТЕР
   ============================================= */
.footer {
    background: #0f1a0f; /* Практически черный хвойный цвет */
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.footer__logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: #ffffff;
    display: block;
    margin-bottom: 5px;
}

.footer__copy {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer__links {
    display: flex;
    gap: 30px;
}

.footer__link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.footer__link:hover {
    color: #c8a84b;
}

/* =============================================
   АДАПТИВНОСТЬ
   ============================================= */
@media (max-width: 1024px) {
    .about-deep__inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 580px) {
    .about-deep__stats {
        grid-template-columns: 1fr; /* По одному плакату на мобилке */
    }
    .footer__inner {
        flex-direction: column;
        text-align: center;
    }
    .footer__links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}



/* =============================================
   АДАПТИВНОЕ БУРГЕР-МЕНЮ
   ============================================= */

/* По умолчанию на ПК кнопка бургера скрыта */
.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    padding: 0;
    z-index: 110; /* Кнопка всегда поверх шторки */
}

.burger-menu__line {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

/* Стили для экранов смартфонов и планшетов */
@media (max-width: 768px) {
    /* Включаем отображение иконки бургера */
    .burger-menu {
        display: flex;
    }

    /* Превращаем навигацию в полноэкранную выезжающую шторку */
    .nav {
        position: fixed;
        top: 0;
        right: -100%; /* Изначально меню спрятано справа за экраном */
        width: 100%;
        height: 100vh;
        background: #1b2e1b; /* Наш фирменный темно-зеленый */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        z-index: 105;
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
    }

    /* Класс, который JS добавит при клике (меню выезжает) */
    .nav.is-open {
        right: 0;
    }

    /* Увеличиваем ссылки в мобильном меню, чтобы по ним было удобно тапать пальцем */
    .nav__link {
        font-size: 1.2rem !important;
        letter-spacing: 0.1em;
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    /* Фирменная золотая подсветка активной ссылки в мобилке */
    .nav__link--active {
        color: #c8a84b !important;
    }

    /* АНИМАЦИЯ БУРГЕРА В КРЕСТИК ПРИ ОТКРЫТИИ */
    .burger-menu.is-active .burger-menu__line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: #c8a84b;
    }
    .burger-menu.is-active .burger-menu__line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.is-active .burger-menu__line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: #c8a84b;
    }
    
    /* Отключаем прокрутку сайта, когда открыто меню */
    body.menu-open {
        overflow: hidden;
    }
}