﻿/* ============================================
   СПОРТ-МАРШРУТ - ЕДИНЫЙ ФАЙЛ СТИЛЕЙ
   Версия: 4.0 (Финальная)
   ============================================ */

/* --------------------------------------------
   1. СБРОС И ПЕРЕМЕННЫЕ
   -------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --text-dark: #1e293b;
    --text-light: #f8fafc;
    --primary: #f97316;
    --primary-hover: #ea580c;
    --bg-light: #f8fafc;
    --card-bg: #ffffff;
    --border-light: #e2e8f0;
    --goal-blue: #38bdf8;
    --gray-text: #64748b;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-head: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* --------------------------------------------
   2. ТИПОГРАФИКА
   -------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.2rem, 5vw, 2.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.2rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.5rem); }
h4 { font-size: 1.2rem; }

.section-title {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 2rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary);
}

/* --------------------------------------------
   3. УТИЛИТЫ
   -------------------------------------------- */
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-col { flex-direction: column; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-gray { color: var(--gray-text); }

/* --------------------------------------------
   4. GRID-СИСТЕМА
   -------------------------------------------- */
.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-cols-1 { grid-template-columns: 1fr; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* --------------------------------------------
   5. КНОПКИ
   -------------------------------------------- */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    font-family: var(--font-head);
    line-height: 1.2;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 8px 16px rgba(249, 115, 22, 0.25);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* --------------------------------------------
   6. ХЕДЕР (ШАПКА)
   -------------------------------------------- */
.header {
    background-color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 16px 0;
    width: 100%;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    white-space: nowrap;
}

.logo span {
    color: var(--primary);
}

/* Иконка МЧС */
.mchs-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e6f0fa;
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 0.95rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.mchs-link:hover {
    background: var(--primary);
    color: white;
}

.mchs-link:hover i {
    color: white;
}

.mchs-link i {
    color: var(--primary);
    transition: color 0.2s ease;
}

/* Десктопное меню */
.desktop-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.menu-row {
    display: flex;
    align-items: center;
    gap: 24px;
}

.menu-row.small {
    gap: 16px;
    font-size: 0.95rem;
}

.menu-item {
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.menu-item:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.menu-item.primary {
    font-weight: 700;
    color: var(--primary);
}

.menu-item.btn-item {
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 40px;
    border-bottom: none;
}

.menu-item.btn-item:hover {
    background: var(--primary-hover);
    color: white;
    transform: translateY(-2px);
}

/* Мобильное меню (бургер) */
.burger-menu {
    display: none;
    width: 100%;
}

.burger-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.burger-icon {
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
}

.burger-icon span {
    width: 24px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.2s ease;
}

.burger-links {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid var(--border-light);
    margin-top: 16px;
}

.burger-links.show {
    display: flex;
}

.burger-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
}

.burger-links a.primary {
    color: var(--primary);
    font-weight: 700;
}

.burger-links .btn-item {
    background: var(--primary);
    color: white;
    padding: 12px;
    border-radius: 40px;
    text-align: center;
    margin-top: 8px;
    border: none;
}

.burger-links .btn-item:hover {
    background: var(--primary-hover);
}

@media (max-width: 1024px) {
    .desktop-menu {
        display: none !important;
    }
    .burger-menu {
        display: block;
    }
    .mchs-link {
        margin-left: auto;
        margin-right: 10px;
    }
}

@media (max-width: 480px) {
    .mchs-link span {
        display: none;
    }
    .mchs-link i {
        margin: 0;
    }
}

/* --------------------------------------------
   7. ХЛЕБНЫЕ КРОШКИ
   -------------------------------------------- */
.breadcrumbs {
    padding: 20px 0;
    font-size: 0.95rem;
    color: var(--gray-text);
}

.breadcrumbs a {
    color: var(--gray-text);
}

.breadcrumbs a:hover {
    color: var(--primary);
}

.breadcrumbs i {
    margin: 0 8px;
    font-size: 0.8rem;
    color: #94a3b8;
}

/* --------------------------------------------
   8. БЕГУЩАЯ СТРОКА (TICKER)
   -------------------------------------------- */
.ticker {
    background: var(--text-dark);
    color: white;
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.ticker-content {
    display: inline-block;
    animation: ticker 35s linear infinite;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-content a {
    color: white;
}

.ticker-content a:hover {
    color: var(--primary);
}

.ticker-content a:hover i {
    color: white;
}

.ticker-content span {
    margin-right: 40px;
}

.ticker-content i {
    color: var(--primary);
    margin-right: 8px;
    transition: color 0.2s ease;
}

/* --------------------------------------------
   9. HERO (ГЛАВНАЯ)
   -------------------------------------------- */
.hero {
    padding: 40px 0 60px;
    background: white;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 300px;
}

.hero-content h1 {
    font-family: var(--font-head);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    color: #475569;
    margin: 24px 0 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-card {
    flex: 1;
    min-width: 280px;
    background: linear-gradient(145deg, #1e293b, #334155);
    border-radius: 24px;
    padding: 40px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.hero-card i {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.hero-card .big-number {
    font-size: 2.8rem;
    font-weight: 700;
}

.hero-card ul {
    list-style: none;
    margin-top: 20px;
    text-align: left;
}

.hero-card li {
    margin-bottom: 10px;
}

.hero-card li i {
    font-size: 1rem;
    color: #4ade80;
    margin-right: 8px;
}

/* --------------------------------------------
   10. БЛОК ДЛЯ НОВИЧКОВ
   -------------------------------------------- */
.beginner-block {
    background: #e6f0fa;
    border-radius: 24px;
    padding: 32px 40px;
    margin: 40px 0;
    border-left: 8px solid var(--primary);
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.beginner-block h2 {
    font-family: var(--font-head);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.beginner-block h2:after {
    display: none;
}

.beginner-block > p {
    font-size: 1.2rem;
    margin-bottom: 24px;
    color: var(--text-dark);
    line-height: 1.6;
    max-width: 900px;
}

.beginner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 24px 0;
}

.beginner-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.7);
    padding: 20px;
    border-radius: 16px;
    transition: transform 0.2s ease;
}

.beginner-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.9);
}

.beginner-icon {
    background: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.beginner-item h4 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--text-dark);
    font-weight: 600;
}

.beginner-item p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 1024px) {
    .beginner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .beginner-grid {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------
   11. КАРТОЧКИ РАЗДЕЛОВ (ГЛАВНАЯ)
   -------------------------------------------- */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 30px 0;
}

.feature-card {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 28px 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
    border: 1px solid var(--border-light);
    transition: transform 0.2s ease;
    display: block;
    color: inherit;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    color: inherit;
}

.feature-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-family: var(--font-head);
}

.feature-card p {
    color: #4b5563;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.feature-card a {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------
   12. БАННЕРЫ (РЕКЛАМА)
   -------------------------------------------- */
.banners {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 40px 0;
}

.banner {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    border: 2px solid var(--border-light);
    transition: all 0.2s ease;
}

.banner:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.banner.timetrial {
    background: linear-gradient(145deg, #1e3c5c, #0f2a40);
    color: white;
    border: none;
}

.banner.vertical {
    background: linear-gradient(145deg, #2b5e3b, #1d4229);
    color: white;
    border: none;
}

.banner h4 {
    font-size: 2rem;
    margin-bottom: 8px;
    font-family: var(--font-head);
}

.banner p {
    font-size: 1rem;
    opacity: 0.9;
}

.banner .btn-banner {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 30px;
    background-color: white;
    color: var(--text-dark);
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.banner .btn-banner:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .banners {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------
   13. ЛЕСТНИЦА РАЗРЯДОВ
   -------------------------------------------- */
.rank-ladder {
    background: var(--text-dark);
    border-radius: 40px;
    padding: 40px;
    margin: 40px 0;
    color: white;
}

.rank-ladder h2 {
    color: white;
    font-family: var(--font-head);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.rank-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.rank-step {
    text-align: center;
    flex: 1;
    min-width: 70px;
}

.rank-step .badge {
    width: 60px;
    height: 60px;
    background: #2d3a4f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-weight: 700;
    font-size: 1.2rem;
    border: 2px solid transparent;
    transition: transform 0.2s ease;
}

.rank-step .badge:hover {
    transform: scale(1.1);
}

.rank-step.active .badge {
    background: var(--primary);
    border-color: white;
}

.rank-step.target .badge {
    background: var(--goal-blue);
}

.rank-steps i {
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.info-badge {
    text-align: center;
    margin-top: 30px;
    color: #cbd5e1;
    background: #2d3a4f;
    padding: 16px;
    border-radius: 40px;
}

.info-badge i {
    color: var(--primary);
    margin-right: 8px;
}

/* --------------------------------------------
   14. ЖИВАЯ ЛЕНТА
   -------------------------------------------- */
.feed-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.feed-main, .feed-side {
    background: white;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.feed-main h3, .feed-side h3 {
    font-family: var(--font-head);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.feed-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
    transition: background 0.2s ease;
}

.feed-item:hover {
    background: #f8fafc;
    padding-left: 8px;
    border-radius: 8px;
}

.feed-item:last-child {
    border-bottom: none;
}

.feed-avatar {
    width: 48px;
    height: 48px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    font-size: 1.5rem;
}

.feed-content {
    flex: 1;
}

.feed-content p {
    margin-bottom: 4px;
}

.feed-content a {
    color: var(--primary);
    font-weight: 500;
}

.feed-meta {
    font-size: 0.85rem;
    color: var(--gray-text);
}

.feed-meta i {
    margin-right: 4px;
}

.subscribe-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    transition: background 0.2s ease;
}

.subscribe-item:hover {
    background: #f8fafc;
    padding-left: 8px;
    border-radius: 8px;
}

.subscribe-item:last-child {
    border-bottom: none;
}

.subscribe-item i {
    font-size: 1.3rem;
    color: var(--primary);
    width: 30px;
    text-align: center;
}

.subscribe-item > div {
    flex: 1;
}

.sub-btn {
    background: #f1f5f9;
    border: none;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    color: var(--text-dark);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.sub-btn:hover {
    background: var(--primary);
    color: white;
}

@media (max-width: 768px) {
    .feed-wrapper {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------
   15. БЛОК СОРЕВНОВАНИЙ
   -------------------------------------------- */
.competitions-block {
    background: white;
    border-radius: 32px;
    padding: 40px;
    margin: 40px 0;
    border: 2px solid var(--border-light);
}

.competitions-block h2 {
    font-family: var(--font-head);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.comp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 24px 0;
}

.comp-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 24px;
    border-left: 4px solid var(--primary);
    transition: transform 0.2s ease;
}

.comp-card:hover {
    transform: translateY(-5px);
}

.comp-date {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.comp-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-family: var(--font-head);
}

.comp-card p {
    color: var(--gray-text);
    margin-bottom: 16px;
}

@media (max-width: 1024px) {
    .comp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .comp-grid {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------
   16. БЛОК ПОДГОТОВКИ
   -------------------------------------------- */
.preparation-block {
    background: white;
    border-radius: 32px;
    padding: 40px;
    margin: 40px 0;
    border: 2px solid var(--border-light);
}

.preparation-block h2 {
    font-family: var(--font-head);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.prep-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 24px 0;
}

.prep-item {
    background: #f8fafc;
    border-radius: 20px;
    padding: 24px;
    transition: transform 0.2s ease;
}

.prep-item:hover {
    transform: translateY(-5px);
}

.prep-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.prep-item h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-family: var(--font-head);
}

.prep-item p {
    color: var(--gray-text);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.prep-item a {
    color: var(--primary);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .prep-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .prep-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== РАЗДЕЛ "ПОХОДЫ" ========== */

/* --------------------------------------------
   17. ЗАГОЛОВОК РАЗДЕЛА
   -------------------------------------------- */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.section-header h1 {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.section-header .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* --------------------------------------------
   18. ОПИСАНИЕ РАЗДЕЛА
   -------------------------------------------- */
.section-description {
    background: #f8fafc;
    border-radius: 16px;
    padding: 24px;
    margin: 20px 0 30px;
    border-left: 4px solid var(--primary);
    font-size: 1rem;
    line-height: 1.6;
    color: #334155;
}

.section-description p {
    margin-bottom: 12px;
}

.section-description p:last-child {
    margin-bottom: 0;
}

.section-description i {
    color: var(--primary);
    margin-right: 8px;
}

.section-description a {
    color: var(--primary);
    font-weight: 600;
}

.section-description a:hover {
    text-decoration: underline;
}

.section-description .highlight {
    background: #fff7ed;
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 500;
}

/* --------------------------------------------
   19. СТАТИСТИКА
   -------------------------------------------- */
.stats-bar {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: #fff7ed;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
}

.stat-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.stat-info p {
    color: var(--gray-text);
    font-size: 0.9rem;
}

.stat-note {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 4px;
}

/* --------------------------------------------
   20. ПОПУЛЯРНЫЕ НАПРАВЛЕНИЯ
   -------------------------------------------- */
.popular-destinations {
    background: white;
    border-radius: 24px;
    padding: 24px;
    margin: 30px 0;
    border: 1px solid var(--border-light);
}

.popular-destinations h3 {
    font-family: var(--font-head);
    font-size: 1.2rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
}

.destination-tag {
    background: #f8fafc;
    padding: 10px 16px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.destination-tag:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.destination-tag i {
    color: var(--primary);
}

.destination-tag:hover i {
    color: white;
}

.destination-tag span {
    font-size: 0.9rem;
    font-weight: 500;
}

.destination-tag small {
    margin-left: auto;
    color: var(--gray-text);
    font-size: 0.8rem;
}

.destination-tag:hover small {
    color: white;
}

/* --------------------------------------------
   21. БЫСТРЫЕ ФИЛЬТРЫ
   -------------------------------------------- */
.quick-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.quick-filter {
    background: white;
    border: 1px solid var(--border-light);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quick-filter:hover {
    border-color: var(--primary);
    background: #fff7ed;
}

.quick-filter i {
    color: var(--primary);
}

/* --------------------------------------------
   22. КАЛЕНДАРЬ СЕЗОНОВ
   -------------------------------------------- */
.season-calendar {
    background: white;
    border-radius: 24px;
    padding: 24px;
    margin: 30px 0;
    border: 1px solid var(--border-light);
}

.season-calendar h3 {
    font-family: var(--font-head);
    font-size: 1.2rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.months-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.month-tag {
    flex: 1 0 calc(12.5% - 8px);
    min-width: 80px;
    background: #f8fafc;
    padding: 10px;
    border-radius: 40px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.month-tag:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.month-tag.peak {
    background: #fff7ed;
    border-color: var(--primary);
}

@media (max-width: 768px) {
    .month-tag {
        flex: 0 0 calc(25% - 8px);
    }
}

/* --------------------------------------------
   23. ПОИСК
   -------------------------------------------- */
.search-section {
    margin-bottom: 30px;
}

.search-container {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.search-wrapper {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.search-input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: 2px solid var(--border-light);
    border-radius: 40px;
    font-size: 1rem;
    font-family: var(--font-main);
    transition: all 0.2s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.search-btn {
    padding: 16px 32px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-head);
}

.search-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .search-container {
        flex-direction: column;
    }
    .search-btn {
        width: 100%;
    }
}

/* --------------------------------------------
   24. ФИЛЬТРЫ
   -------------------------------------------- */
.filters-section {
    background: white;
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    border: 1px solid var(--border-light);
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 16px;
}

.filters-header h2 {
    font-family: var(--font-head);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-tags-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-tag {
    background: #f1f5f9;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-weight: 500;
}

.filter-tag:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}

.filter-tag.active {
    background: var(--primary);
    color: white;
}

.filter-more {
    position: relative;
}

.filter-more-btn {
    background: #f1f5f9;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.95rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.filter-more-btn:hover {
    background: #e2e8f0;
}

.filter-more-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 1px solid var(--border-light);
    width: 250px;
    z-index: 100;
    display: none;
    margin-top: 8px;
}

.filter-more-dropdown.show {
    display: block;
}

.filter-more-dropdown:before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    border-top: 1px solid var(--border-light);
    border-left: 1px solid var(--border-light);
}

.filter-more-item {
    display: block;
    width: 100%;
    text-align: left;
    padding: 10px 12px;
    background: none;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-more-item:hover {
    background: #f1f5f9;
    color: var(--primary);
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.filter-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.filter-select {
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    font-family: var(--font-main);
    background: white;
    cursor: pointer;
    transition: border-color 0.2s ease;
    font-size: 0.95rem;
}

.filter-select:hover {
    border-color: var(--primary);
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.filter-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.filter-actions .btn {
    padding: 12px 28px;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .filter-actions {
        flex-direction: column;
    }
    .filter-actions .btn {
        width: 100%;
    }
}

/* --------------------------------------------
   25. КНОПКИ ОТПРАВКИ БОТУ
   -------------------------------------------- */
.bot-share-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-left: auto;
}

.bot-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f1f5f9;
    color: var(--text-dark);
    border: 2px solid transparent;
    padding: 12px 20px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-head);
    text-decoration: none;
}

.bot-share-btn:hover {
    transform: translateY(-2px);
}

.bot-share-btn.telegram {
    background: #e6f0fa;
}

.bot-share-btn.telegram:hover {
    background: #d1e0f0;
}

.bot-share-btn.telegram i {
    color: #0088cc;
}

.bot-share-btn.max {
    background: #f0e6fa;
}

.bot-share-btn.max:hover {
    background: #e1d1f0;
}

.bot-share-btn.max i {
    color: #8B5CF6;
}

.bot-share-btn i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .bot-share-buttons {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .bot-share-btn {
        width: 100%;
        justify-content: center;
    }
}

/* --------------------------------------------
   26. СОРТИРОВКА
   -------------------------------------------- */
.sort-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.sort-options > span:first-child {
    color: var(--gray-text);
    font-weight: 500;
}

.sort-group {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8fafc;
    padding: 4px;
    border-radius: 40px;
    border: 1px solid var(--border-light);
}

.sort-link {
    color: var(--text-dark);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 30px;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.sort-link:hover {
    background: #e2e8f0;
}

.sort-link.active {
    background: var(--primary);
    color: white;
}

.sort-direction {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    color: var(--gray-text);
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid var(--border-light);
}

.sort-direction:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.sort-direction.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.sort-hint {
    font-size: 0.85rem;
    color: var(--gray-text);
    margin-left: 8px;
}

.view-options {
    display: flex;
    gap: 8px;
}

.view-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: white;
    color: var(--gray-text);
    cursor: pointer;
    transition: all 0.2s ease;
}

.view-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.view-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

@media (max-width: 768px) {
    .sort-bar {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* --------------------------------------------
   27. КАРТОЧКИ ПОХОДОВ
   -------------------------------------------- */
.hikes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.hike-card {
    background: white;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    border: 1px solid var(--border-light);
    transition: all 0.2s ease;
}

.hike-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.hike-header {
    margin-bottom: 16px;
}

.hike-category {
    display: inline-block;
    background: #fff7ed;
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.hike-header h3 {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.hike-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
    color: var(--gray-text);
    font-size: 0.95rem;
}

.hike-meta i {
    width: 18px;
    color: var(--primary);
    margin-right: 4px;
}

.hike-description {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.hike-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.hike-leader {
    display: flex;
    align-items: center;
    gap: 10px;
}

.leader-avatar-small {
    width: 36px;
    height: 36px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.leader-info-small {
    font-size: 0.9rem;
}

.leader-info-small strong {
    display: block;
    color: var(--text-dark);
}

.leader-info-small span {
    color: var(--gray-text);
    font-size: 0.8rem;
}

.hike-price-block {
    text-align: right;
    position: relative;
}

.hike-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    cursor: help;
    border-bottom: 1px dashed var(--primary);
}

.hike-price small {
    font-weight: 400;
    color: var(--gray-text);
    font-size: 0.85rem;
}

.price-tooltip {
    position: absolute;
    bottom: 100%;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 10;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    pointer-events: none;
    margin-bottom: 10px;
}

.price-tooltip:after {
    content: '';
    position: absolute;
    top: 100%;
    right: 20px;
    border-width: 8px;
    border-style: solid;
    border-color: var(--text-dark) transparent transparent transparent;
}

.hike-price-block:hover .price-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-5px);
}

.hikes-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hikes-list .hike-card {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    gap: 20px;
}

.hikes-list .hike-header {
    margin-bottom: 0;
    min-width: 250px;
}

.hikes-list .hike-category {
    margin-bottom: 4px;
}

.hikes-list .hike-header h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.hikes-list .hike-meta {
    margin-bottom: 0;
    gap: 12px;
}

.hikes-list .hike-description {
    display: none;
}

.hikes-list .hike-footer {
    flex: 1;
    border: none;
    padding: 0;
}

.hikes-list .hike-leader {
    min-width: 150px;
}

.hikes-list .hike-price-block {
    margin-left: auto;
}

@media (max-width: 1024px) {
    .hikes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hikes-grid {
        grid-template-columns: 1fr;
    }
    .hikes-list .hike-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .hikes-list .hike-header {
        min-width: 100%;
    }
    .hikes-list .hike-footer {
        width: 100%;
    }
}

/* --------------------------------------------
   28. ПАГИНАЦИЯ
   -------------------------------------------- */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    border-radius: 8px;
    background: white;
    border: 1px solid var(--border-light);
    color: var(--text-dark);
    transition: all 0.2s ease;
}

.pagination a:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.pagination a.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.pagination a.next-prev {
    width: auto;
    padding: 0 16px;
}

/* --------------------------------------------
   29. ФУТЕР
   -------------------------------------------- */
.footer {
    background: white;
    padding: 48px 0 24px;
    border-top: 1px solid var(--border-light);
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col .logo {
    margin-bottom: 20px;
}

.footer-col p {
    color: var(--gray-text);
}

.footer-col h4 {
    font-family: var(--font-head);
    margin-bottom: 20px;
    color: var(--text-dark);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 8px;
}

.footer-col a {
    color: var(--gray-text);
    transition: all 0.2s ease;
}

.footer-col a:hover {
    color: var(--primary);
    transform: translateX(5px);
    display: inline-block;
}

.contact-info {
    color: var(--gray-text);
    line-height: 2;
}

.contact-info i {
    color: var(--primary);
    width: 25px;
    margin-right: 10px;
}

.footer-disclaimer {
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-text);
    background-color: rgba(249, 115, 22, 0.05);
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
}

.footer-disclaimer i {
    color: var(--primary);
    margin-right: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #94a3b8;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== РАЗДЕЛ "СПОРТСМЕНЫ" ========== */

/* Карточки спортсменов */
.athletes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 30px 0;
}
.athlete-card {
    background: white;
    border-radius: 24px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    border: 1px solid var(--border-light);
    transition: all 0.2s ease;
}
.athlete-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}
.athlete-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(145deg, #f1f5f9, #e2e8f0);
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary);
}
.athlete-card h3 {
    font-family: var(--font-head);
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}
.athlete-rank {
    display: inline-block;
    background: #fff7ed;
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.athlete-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 16px 0;
    padding: 12px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}
.athlete-stat {
    text-align: center;
}
.athlete-stat .value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}
.athlete-stat .label {
    font-size: 0.75rem;
    color: #64748b;
}
.athlete-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin: 12px 0;
}
.category-badge {
    background: #f1f5f9;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-dark);
}
.athlete-card .btn {
    margin-top: 12px;
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Фильтры для спортсменов */
.athlete-filters {
    background: white;
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 30px;
    border: 1px solid var(--border-light);
}
.athlete-filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

/* Страница спортсмена */
.athlete-profile {
    background: white;
    border-radius: 32px;
    padding: 40px;
    margin: 30px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.profile-header {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-light);
}
.profile-avatar {
    width: 150px;
    height: 150px;
    background: linear-gradient(145deg, #f1f5f9, #e2e8f0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary);
}
.profile-info {
    flex: 1;
}
.profile-info h1 {
    font-family: var(--font-head);
    font-size: 2rem;
    margin-bottom: 8px;
}
.profile-rank {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
}
.profile-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 16px;
}
.profile-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
}
.profile-meta-item i {
    color: var(--primary);
    width: 20px;
}

/* Статистика профиля */
.profile-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.stat-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
}
.stat-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 12px;
}
.stat-card .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
}
.stat-card .stat-label {
    color: #64748b;
    font-size: 0.9rem;
}

/* Динамика по годам */
.years-chart {
    background: #f8fafc;
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 40px;
}
.years-chart h3 {
    font-family: var(--font-head);
    margin-bottom: 20px;
}
.chart-bars {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    justify-content: center;
    flex-wrap: wrap;
}
.chart-bar {
    text-align: center;
    width: 60px;
}
.bar {
    background: var(--primary);
    width: 40px;
    margin: 0 auto 8px;
    border-radius: 8px 8px 0 0;
    transition: height 0.3s ease;
}
.bar-value {
    font-weight: 700;
    color: var(--text-dark);
}
.bar-label {
    font-size: 0.85rem;
    color: #64748b;
}

/* Походы спортсмена */
.athlete-hikes {
    margin-top: 40px;
}
.athlete-hikes h3 {
    font-family: var(--font-head);
    margin-bottom: 20px;
}
.hikes-timeline {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.timeline-item {
    display: flex;
    gap: 20px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 16px;
    transition: all 0.2s ease;
}
.timeline-item:hover {
    transform: translateX(5px);
    background: #fff7ed;
}
.timeline-year {
    min-width: 80px;
    font-weight: 700;
    color: var(--primary);
}
.timeline-content {
    flex: 1;
}
.timeline-content h4 {
    font-family: var(--font-head);
    margin-bottom: 4px;
}
.timeline-meta {
    display: flex;
    gap: 16px;
    font-size: 0.85rem;
    color: #64748b;
}
.timeline-role {
    display: inline-block;
    background: #e6f0fa;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
}

/* Адаптив для спортсменов */
@media (max-width: 1024px) {
    .athletes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .profile-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .athletes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .profile-header {
        flex-direction: column;
        text-align: center;
    }
    .profile-meta {
        justify-content: center;
    }
    .profile-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .athletes-grid {
        grid-template-columns: 1fr;
    }
    .profile-stats {
        grid-template-columns: 1fr;
    }
}