/* ============================================
   ВОСВОД — Публичная главная страница
   ============================================ */

.public-body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary, #1A2B42);
    background: var(--bg-body, #F5F7FA);
    overflow-x: hidden;
}

.text-accent {
    background: linear-gradient(135deg, #0A4D8C, #00A8CC);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============================================
   NAVBAR
   ============================================ */
.public-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.public-navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
    padding: 10px 0;
}

.public-nav-inner {
    display: flex;
    align-items: center;
    gap: 32px;
}

.public-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    flex-shrink: 0;
}

.public-logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    background: transparent;
}

.public-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* ==========================================
   Стили для хлебных крошек ВОСВОД
   ========================================== */
.vosvod-breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1.5rem;
    font-size: 0.9rem; /* Чуть меньше основного текста для элегантности */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

/* Ссылки внутри крошек */
.vosvod-breadcrumb .breadcrumb-item a {
    color: #0A4D8C; /* Фирменный темно-синий */
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
}

/* Эффект при наведении на ссылку */
.vosvod-breadcrumb .breadcrumb-item a:hover {
    color: #00A8CC; /* Акцентный голубой */
    text-decoration: none;
}

/* Разделитель между элементами (современная стрелка вместо слэша) */
.vosvod-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "›"; 
    float: none;
    padding: 0 0.6rem;
    color: #adb5bd; /* Светло-серый разделитель */
    font-size: 1.4rem;
    line-height: 1;
    vertical-align: -2px;
    font-weight: 300;
}

/* Текущий (активный) элемент */
.vosvod-breadcrumb .breadcrumb-item.active {
    color: #495057; /* Темно-серый, не кликабельный */
    font-weight: 600;
    cursor: default;
}

/* Адаптив для мобильных: перенос и отступы */
@media (max-width: 576px) {
    .vosvod-breadcrumb {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    .vosvod-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
        padding: 0 0.4rem;
    }
}

/* В hero-секции логотип чуть крупнее */
.hero .public-logo-icon {
    width: 48px;
    height: 48px;
}

.public-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.public-logo-title {
    font-weight: 800;
    font-size: 16px;
    letter-spacing: -0.02em;
}

.public-logo-sub {
    font-size: 10px;
    color: var(--text-muted, #94A3B8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.public-nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.public-nav-link {
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-secondary, #6B7A90);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
}

.public-nav-link:hover {
    color: var(--text-primary, #1A2B42);
    background: rgba(10, 77, 140, 0.06);
}

.public-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn-public-outline {
    padding: 9px 20px;
    border-radius: 10px;
    border: 1.5px solid var(--border-color, #E5E9F0);
    background: transparent;
    color: var(--text-secondary, #6B7A90);
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-public-outline:hover {
    border-color: #0A4D8C;
    color: #0A4D8C;
    background: rgba(10, 77, 140, 0.04);
}

.btn-public-primary {
    padding: 9px 20px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #0A4D8C, #00A8CC);
    color: white;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(10, 77, 140, 0.25);
    transition: all 0.25s ease;
}

.btn-public-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 77, 140, 0.35);
    color: white;
}

/* ============================================
   OVERLAY (затемнение при открытом меню)
   ============================================ */
.public-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11, 18, 32, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.public-nav-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   МОБИЛЬНЫЕ КНОПКИ ВНУТРИ МЕНЮ
   ============================================ */
.public-nav-mobile-actions {
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 16px 20px;
    margin-top: 16px;
    border-top: 1px solid var(--border-color, #E5E9F0);
}

.public-nav-mobile-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* ============================================
   БУРГЕР-МЕНЮ
   ============================================ */
.public-nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    transition: all 0.2s ease;
    z-index: 1001;
    position: relative;
    margin-left: auto; /* 🔥 Прижимаем бургер вправо */
}

.public-nav-burger:hover {
    background: rgba(255, 255, 255, 0.1);
}

.public-nav-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: white; /* 🔥 Белый по умолчанию (для hero) */
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin: 0 auto;
    transform-origin: center;
}

/* Когда navbar стал стеклянным при скролле — бургер становится тёмным */
.public-navbar.scrolled .public-nav-burger {
    background: transparent;
}

.public-navbar.scrolled .public-nav-burger:hover {
    background: rgba(10, 77, 140, 0.06);
}

.public-navbar.scrolled .public-nav-burger span {
    background: var(--text-primary, #1A2B42);
}

/* Анимация превращения в крестик */
.public-nav-burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.public-nav-burger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.public-nav-burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   public-navbar LOGO (светлый на тёмном фоне)
   ============================================ */
.public-navbar .public-logo-title {
    color: white;
}


/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #0A4D8C 0%, #083A6B 40%, #00A8CC 100%);
    padding: 120px 0 160px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: -5%;
    width: 110%;
    height: 200px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50% 50% 0 0;
}

.hero-wave-1 { animation: heroWave 8s ease-in-out infinite; bottom: -40px; }
.hero-wave-2 { animation: heroWave 10s ease-in-out infinite reverse; bottom: -80px; opacity: 0.5; }
.hero-wave-3 { animation: heroWave 12s ease-in-out infinite; bottom: -120px; opacity: 0.3; }

@keyframes heroWave {
    0%, 100% { transform: translateX(0) scaleY(1); }
    50% { transform: translateX(-30px) scaleY(1.1); }
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Базовый стиль пузырька */
.bubble {
    position: absolute;
    bottom: 0px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2));
    box-shadow: 
        inset 0 0 10px rgba(255, 255, 255, 0.3),
        0 0 20px rgba(255, 255, 255, 0.1);
    animation: bubbleRise linear infinite;
    opacity: 0;
}

/* Большие пузырьки (редкие, медленные) */
.bubble-large {
    width: 60px;
    height: 60px;
    animation-duration: 18s;
}

.bubble-large:nth-child(1) { left: 15%; animation-delay: 0s; }
.bubble-large:nth-child(2) { left: 55%; animation-delay: 6s; }
.bubble-large:nth-child(3) { left: 85%; animation-delay: 12s; }

/* Средние пузырьки */
.bubble-medium {
    width: 35px;
    height: 35px;
    animation-duration: 14s;
}

.bubble-medium:nth-child(4) { left: 8%; animation-delay: 2s; }
.bubble-medium:nth-child(5) { left: 28%; animation-delay: 5s; }
.bubble-medium:nth-child(6) { left: 48%; animation-delay: 8s; }
.bubble-medium:nth-child(7) { left: 68%; animation-delay: 11s; }
.bubble-medium:nth-child(8) { left: 88%; animation-delay: 14s; }

/* Маленькие пузырьки (частые) */
.bubble-small {
    width: 18px;
    height: 18px;
    animation-duration: 11s;
}

.bubble-small:nth-child(9) { left: 5%; animation-delay: 1s; }
.bubble-small:nth-child(10) { left: 18%; animation-delay: 3s; }
.bubble-small:nth-child(11) { left: 32%; animation-delay: 4.5s; }
.bubble-small:nth-child(12) { left: 45%; animation-delay: 6s; }
.bubble-small:nth-child(13) { left: 58%; animation-delay: 7.5s; }
.bubble-small:nth-child(14) { left: 72%; animation-delay: 9s; }
.bubble-small:nth-child(15) { left: 85%; animation-delay: 10.5s; }
.bubble-small:nth-child(16) { left: 95%; animation-delay: 12s; }

/* Крошечные пузырьки (фон, очень частые) */
.bubble-tiny {
    width: 8px;
    height: 8px;
    animation-duration: 9s;
    opacity: 0.5;
}

.bubble-tiny:nth-child(17) { left: 3%; animation-delay: 0.5s; }
.bubble-tiny:nth-child(18) { left: 12%; animation-delay: 1.5s; }
.bubble-tiny:nth-child(19) { left: 22%; animation-delay: 2.5s; }
.bubble-tiny:nth-child(20) { left: 35%; animation-delay: 3.5s; }
.bubble-tiny:nth-child(21) { left: 42%; animation-delay: 4s; }
.bubble-tiny:nth-child(22) { left: 52%; animation-delay: 5s; }
.bubble-tiny:nth-child(23) { left: 62%; animation-delay: 6s; }
.bubble-tiny:nth-child(24) { left: 75%; animation-delay: 7s; }
.bubble-tiny:nth-child(25) { left: 82%; animation-delay: 8s; }
.bubble-tiny:nth-child(26) { left: 92%; animation-delay: 8.5s; }

/* Анимация подъёма пузырька */
@keyframes bubbleRise {
    0% {
        transform: translateY(0) translateX(0) scale(0.3);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
        transform: translateY(-10vh) translateX(10px) scale(0.6);
    }
    50% {
        opacity: 0.6;
        transform: translateY(-50vh) translateX(-15px) scale(0.9);
    }
    90% {
        opacity: 0.4;
        transform: translateY(-90vh) translateX(20px) scale(1);
    }
    100% {
        transform: translateY(-110vh) translateX(0) scale(1.1);
        opacity: 0;
    }
}

/* Убираем старые стили .particle */
.particle {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 28px;
    letter-spacing: 0.02em;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #4DD4E8;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.hero-title-accent {
    background: linear-gradient(135deg, #4DD4E8, #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 400;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    padding: 14px 32px;
    border-radius: 12px;
    border: none;
    background: white;
    color: #0A4D8C;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    color: #0A4D8C;
}

.btn-hero-outline {
    padding: 14px 32px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: white;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
}

.hero-scroll-hint {
    position: absolute;
    bottom: -80px; /* За пределами hero-content */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.05em;
    animation: fadeInUp 1s ease 1.5s backwards;
    white-space: nowrap;
}

.hero-scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.hero-scroll-wheel {
    width: 3px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

.hero-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 3;
}

.hero-divider svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ============================================
   SECTIONS (общие)
   ============================================ */
.section {
    padding: 100px 0;
    position: relative;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #00A8CC;
    margin-bottom: 12px;
    padding: 6px 14px;
    background: rgba(0, 168, 204, 0.08);
    border-radius: 6px;
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text-primary, #1A2B42);
}

.section-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary, #6B7A90);
    margin-bottom: 16px;
}

/* ============================================
   MISSION
   ============================================ */
.mission-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.mission-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: white;
    border: 1px solid var(--border-color, #E5E9F0);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.mission-feature:hover {
    transform: translateX(6px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border-color: #00A8CC;
}

.mission-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(10, 77, 140, 0.08), rgba(0, 168, 204, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.mission-feature strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary, #1A2B42);
}

.mission-feature span {
    font-size: 12px;
    color: var(--text-muted, #94A3B8);
}

.mission-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: relative;
}

.mission-card {
    background: white;
    border: 1px solid var(--border-color, #E5E9F0);
    border-radius: 20px;
    padding: 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.mission-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.mission-card-1 { grid-column: 1 / -1; }

.mission-card-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.mission-card-value {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #0A4D8C, #00A8CC);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 6px;
}

.mission-card-label {
    font-size: 13px;
    color: var(--text-muted, #94A3B8);
    font-weight: 500;
}

/* ============================================
   STATS
   ============================================ */
.section-stats {
    background: linear-gradient(160deg, #0A4D8C, #083A6B);
    color: white;
}

.section-stats .section-label {
    background: rgba(255, 255, 255, 0.1);
    color: #4DD4E8;
}

.section-stats .section-title {
    color: white;
}

.section-stats .text-accent {
    background: linear-gradient(135deg, #4DD4E8, #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-block {
    text-align: center;
    padding: 32px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-block:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.stat-block-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.stat-block-number {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-block-label {
    font-size: 13px;
    opacity: 0.7;
    font-weight: 500;
}

/* ============================================
   DIRECTIONS
   ============================================ */
.direction-card {
    background: white;
    border: 1px solid var(--border-color, #E5E9F0);
    border-radius: 20px;
    padding: 32px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.direction-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.direction-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(10, 77, 140, 0.08), rgba(0, 168, 204, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.direction-card:hover .direction-card-icon {
    transform: scale(1.1) rotate(-5deg);
}

.direction-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.direction-card-text {
    font-size: 14px;
    color: var(--text-secondary, #6B7A90);
    line-height: 1.6;
    margin: 0;
}

.direction-card-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0A4D8C, #00A8CC);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.direction-card:hover .direction-card-line {
    transform: scaleX(1);
}

/* ============================================
   CTA
   ============================================ */
.section-cta {
    padding: 60px 0;
}

.cta-card {
    background: linear-gradient(135deg, #0A4D8C 0%, #00A8CC 100%);
    border-radius: 28px;
    padding: 64px 48px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(10, 77, 140, 0.25);
}

.cta-bg-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.cta-bg-shape-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
}

.cta-bg-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -50px;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.cta-text {
    font-size: 16px;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================
   NEWS
   ============================================ */
.news-card {
    background: white;
    border: 1px solid var(--border-color, #E5E9F0);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.news-card-date {
    background: linear-gradient(135deg, #0A4D8C, #00A8CC);
    color: white;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 70px;
}

.news-day {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.news-month {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.news-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-card-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #00A8CC;
    background: rgba(0, 168, 204, 0.08);
    padding: 4px 10px;
    border-radius: 5px;
    margin-bottom: 12px;
    align-self: flex-start;
}

/* Делаем тег категории кликабельным и красивым при наведении */
.news-category-link {
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.news-category-link:hover {
    background: rgba(0, 168, 204, 0.15) !important; /* Чуть темнее фон */
    color: var(--vosvod-primary, #0A4D8C) !important; /* Темно-синий текст */
    transform: translateY(-2px); /* Легкий подъем */
    box-shadow: 0 4px 8px rgba(0, 168, 204, 0.15);
}

.news-card-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
    line-height: 1.3;
}

.news-card-text {
    font-size: 13px;
    color: var(--text-secondary, #6B7A90);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(10, 77, 140, 0.08), rgba(0, 168, 204, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
}

.contact-item span {
    font-size: 14px;
    color: var(--text-secondary, #6B7A90);
}

.contact-form-card {
    background: white;
    border: 1px solid var(--border-color, #E5E9F0);
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

/* ============================================
   FOOTER
   ============================================ */
.public-footer {
    background: #0B1220;
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 0;
}

.public-footer .public-logo-title {
    color: white;
}

.public-footer-desc {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.7;
}

.public-footer-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: white;
    margin-bottom: 16px;
}

.public-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.public-footer-links a,
.public-footer-links li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.public-footer-links a:hover {
    color: #4DD4E8;
}

.public-emergency {
    background: rgba(214, 64, 69, 0.1);
    border: 1px solid rgba(214, 64, 69, 0.2);
    border-radius: 14px;
    padding: 20px;
    text-align: center;
}

.public-emergency-number {
    font-size: 36px;
    font-weight: 900;
    color: #D64045;
    line-height: 1;
    margin-bottom: 6px;
}

.public-emergency-text {
    font-size: 12px;
    opacity: 0.7;
}

.public-footer-bottom {
    margin-top: 48px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    opacity: 0.5;
    flex-wrap: wrap;
    gap: 8px;
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    /* Скрываем десктопные кнопки */
    .public-nav-actions {
        display: none;
    }
    
    /* Показываем бургер */
    .public-nav-burger {
        display: flex;
    }
    
    /* Мобильные кнопки внутри меню */
    .public-nav-mobile-actions {
        display: flex;
    }
    
    /* Выпадающее меню */
    .public-nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        max-width: 85vw;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: stretch;
        padding: 90px 20px 20px;
        gap: 4px;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
        overflow-y: auto;
        margin-left: 0;
    }
    
    .public-nav-links.show {
        right: 0;
    }
    
    .public-nav-link {
        padding: 14px 18px;
        font-size: 15px;
        border-radius: 10px;
    }
    
    .public-nav-link:hover {
        background: rgba(10, 77, 140, 0.06);
    }
    
    /* Hero адаптация */
    .hero {
        padding: 100px 0 120px;
    }
    .hero-scroll-hint {
        display: none;
    }
    .section {
        padding: 64px 0;
    }
    .cta-card {
        padding: 40px 24px;
    }
    .mission-visual {
        margin-top: 32px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 32px;
    }
    .stat-block-number {
        font-size: 32px;
    }
    .public-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .section-title {
        font-size: 26px;
    }
}