/* =================================
   СТОП-ГЕПАТИТ | Общие стили
   ================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Цвета флага Узбекистана - основная палитра */
    --primary-color: #0099cc;          /* Голубой флага - доверие, профессионализм */
    --primary-dark: #0077aa;           /* Темно-голубой - стабильность */
    --primary-light: #33aadd;          /* Светло-голубой - открытость */
    
    --secondary-color: #00a651;        /* Зеленый флага - здоровье, надежда */
    --secondary-dark: #008844;         /* Темно-зеленый - рост */
    --accent-color: #e30613;           /* Красный "СТОП" - важность, действие */
    --accent-light: #ff3344;           /* Светло-красный - энергия */
    
    /* Нейтральные цвета */
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --bg-white: #ffffff;
    --bg-gray: #f9fafb;
    --bg-light: #f3f4f6;
    --border-color: #e5e7eb;
    
    /* Акцентные цвета */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #dc2626;
    --info: #3b82f6;
    
    /* Тени */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Переходы */
    --transition: all 0.3s ease;
    
    /* Радиусы */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 150px, rgba(0, 153, 204, 0.008) 150px, rgba(0, 153, 204, 0.008) 300px),
        repeating-linear-gradient(90deg, transparent, transparent 150px, rgba(0, 166, 81, 0.008) 150px, rgba(0, 166, 81, 0.008) 300px),
        url('data:image/svg+xml,%3Csvg width="120" height="120" xmlns="http://www.w3.org/2000/svg"%3E%3Cg opacity="0.015"%3E%3Cpath d="M60 40 L64 50 L75 50 L66 57 L70 67 L60 60 L50 67 L54 57 L45 50 L56 50 Z" fill="%230099cc"/%3E%3Ccircle cx="30" cy="30" r="2" fill="%2300a651"/%3E%3Ccircle cx="90" cy="90" r="2" fill="%230099cc"/%3E%3C/g%3E%3C/svg%3E');
    background-size: auto, auto, 120px 120px;
    overflow-x: hidden;
}

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

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: -1rem;
    margin-bottom: 2rem;
}

.section-intro.white {
    color: rgba(255, 255, 255, 0.9);
}

/* =================================
   Навигация
   ================================= */

.navbar {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo {
    width: 50px;
    height: 50px;
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
}

.nav-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
}

.nav-subtitle {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

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

.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px 3px 0 0;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

/* =================================
   Главный баннер (Hero)
   ================================= */

.hero {
    position: relative;
    background: linear-gradient(135deg, #0099cc 0%, #0077aa 50%, #006699 100%);
    color: white;
    padding: 80px 0 100px;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 166, 81, 0.1) 0%, transparent 50%),
        repeating-linear-gradient(45deg, transparent, transparent 15px, rgba(255,255,255,.02) 15px, rgba(255,255,255,.02) 30px),
        url('data:image/svg+xml,%3Csvg width="100" height="100" xmlns="http://www.w3.org/2000/svg"%3E%3Cg opacity="0.1"%3E%3Ccircle cx="50" cy="50" r="3" fill="%23ffffff"/%3E%3Cpath d="M50 30 L54 40 L65 40 L56 47 L60 57 L50 50 L40 57 L44 47 L35 40 L46 40 Z" fill="none" stroke="%23ffffff" stroke-width="1"/%3E%3C/g%3E%3C/svg%3E');
    background-size: auto, auto, auto, 100px 100px;
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out;
    letter-spacing: -0.02em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-description {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.hero-stat-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat-item .stat-icon {
    font-size: 1.8rem;
}

.hero-stat-item .stat-text {
    text-align: left;
    font-size: 0.9rem;
}

.hero-stat-item strong {
    display: block;
    font-weight: 700;
}

/* =================================
   Секция выбора пути
   ================================= */

.path-selection {
    padding: 70px 0;
    background: 
        linear-gradient(to bottom, rgba(255,255,255,0.97), rgba(249,250,251,0.98)),
        repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(0, 153, 204, 0.015) 50px, rgba(0, 153, 204, 0.015) 100px),
        repeating-linear-gradient(-45deg, transparent, transparent 50px, rgba(0, 166, 81, 0.015) 50px, rgba(0, 166, 81, 0.015) 100px),
        url('data:image/svg+xml,%3Csvg width="100" height="100" xmlns="http://www.w3.org/2000/svg"%3E%3Cg opacity="0.02"%3E%3Cpath d="M50 30 L54 40 L65 40 L56 47 L60 57 L50 50 L40 57 L44 47 L35 40 L46 40 Z" fill="none" stroke="%230099cc" stroke-width="1"/%3E%3Ccircle cx="20" cy="20" r="3" fill="%2300a651"/%3E%3Ccircle cx="80" cy="80" r="3" fill="%230099cc"/%3E%3C/g%3E%3C/svg%3E');
    background-size: auto, auto, auto, 100px 100px;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.path-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.path-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.path-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.patient-card::before {
    background: linear-gradient(90deg, #e30613, #ff3344);
}

.specialist-card::before {
    background: linear-gradient(90deg, #0099cc, #33aadd);
}

.path-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.patient-card:hover {
    border-color: var(--accent-color);
}

.specialist-card:hover {
    border-color: var(--primary-color);
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
}

.patient-card .card-icon {
    background: linear-gradient(135deg, #e30613 0%, #cc0511 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(227, 6, 19, 0.3);
}

.specialist-card .card-icon {
    background: linear-gradient(135deg, #0099cc 0%, #0077aa 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(0, 153, 204, 0.3);
}

.card-icon svg {
    width: 35px;
    height: 35px;
}

.card-title {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.card-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-features {
    list-style: none;
    margin-bottom: 2rem;
}

.card-features li {
    padding: 0.8rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.card-features li:last-child {
    border-bottom: none;
}

.card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
    font-size: 1.2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1.05rem;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #e30613 0%, #cc0511 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(227, 6, 19, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(227, 6, 19, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #0099cc 0%, #0077aa 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 153, 204, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 153, 204, 0.4);
}

/* =================================
   Статистика
   ================================= */

.statistics {
    padding: 70px 0;
    background: linear-gradient(135deg, #00a651 0%, #008844 50%, #006633 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 25px, rgba(255,255,255,0.04) 25px, rgba(255,255,255,0.04) 50px),
        repeating-linear-gradient(-45deg, transparent, transparent 25px, rgba(0, 153, 204, 0.05) 25px, rgba(0, 153, 204, 0.05) 50px),
        url('data:image/svg+xml,%3Csvg width="80" height="80" xmlns="http://www.w3.org/2000/svg"%3E%3Cg opacity="0.1"%3E%3Ccircle cx="40" cy="40" r="2" fill="%23ffffff"/%3E%3Cpath d="M40 20 L60 40 L40 60 L20 40 Z" fill="none" stroke="%23ffffff" stroke-width="1"/%3E%3C/g%3E%3C/svg%3E');
    background-size: auto, auto, 80px 80px;
    opacity: 0.5;
}

.statistics .container {
    position: relative;
    z-index: 1;
}

.statistics .section-title {
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    display: block;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.95;
    margin-bottom: 0.5rem;
}

.stat-details {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

/* =================================
   О проекте
   ================================= */

.about-project {
    padding: 70px 0;
    background: var(--bg-white);
}

.about-content {
    margin-top: 3rem;
}

.about-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.about-card.featured {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    border: 2px solid var(--primary-color);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.15);
}

.about-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e30613 0%, #cc0511 100%);
    color: white;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 16px rgba(227, 6, 19, 0.2);
}

.about-icon svg {
    width: 35px;
    height: 35px;
}

.about-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.about-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.about-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin-top: 1.5rem;
}

.feature-list li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* =================================
   Направления деятельности
   ================================= */

.activities {
    padding: 70px 0;
    background: 
        linear-gradient(to bottom, rgba(249,250,251,0.98), rgba(255,255,255,0.95)),
        repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(0, 153, 204, 0.012) 60px, rgba(0, 153, 204, 0.012) 120px),
        repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(0, 166, 81, 0.012) 60px, rgba(0, 166, 81, 0.012) 120px),
        url('data:image/svg+xml,%3Csvg width="120" height="120" xmlns="http://www.w3.org/2000/svg"%3E%3Cg opacity="0.015"%3E%3Cpath d="M60 40 L64 50 L75 50 L66 57 L70 67 L60 60 L50 67 L54 57 L45 50 L56 50 Z" fill="none" stroke="%230099cc" stroke-width="1"/%3E%3Ccircle cx="30" cy="30" r="3" fill="%2300a651"/%3E%3Ccircle cx="90" cy="90" r="3" fill="%230099cc"/%3E%3C/g%3E%3C/svg%3E');
    background-size: auto, auto, auto, 120px 120px;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.activity-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border-top: 5px solid var(--primary-color);
}

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.activity-number {
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 4rem;
    font-weight: 900;
    color: var(--bg-gray);
    opacity: 0.5;
    line-height: 1;
}

.activity-icon {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    display: block;
}

.activity-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.activity-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
}

.activity-achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.activity-achievements span {
    background: var(--bg-gray);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* =================================
   Контакты
   ================================= */

.contacts {
    padding: 70px 0;
    background: var(--bg-white);
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 2px solid var(--border-color);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.2rem;
    background: linear-gradient(135deg, #0099cc 0%, #0077aa 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 6px 16px rgba(0, 153, 204, 0.2);
}

.contact-icon svg {
    width: 30px;
    height: 30px;
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    font-weight: 700;
}

.contact-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.contact-detail {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-light) !important;
    margin-top: 1rem !important;
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-map-placeholder {
    margin-top: 4rem;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border: 2px solid var(--border-color);
}

.map-info h4 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.map-info p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.urgent-help {
    margin-top: 2.5rem;
    background: linear-gradient(135deg, #e30613 0%, #cc0511 100%);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: white;
    box-shadow: 0 12px 28px rgba(227, 6, 19, 0.3);
    position: relative;
    overflow: hidden;
}

.urgent-help::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.05) 20px, rgba(255,255,255,0.05) 40px),
        url('data:image/svg+xml,%3Csvg width="60" height="60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg opacity="0.15"%3E%3Ccircle cx="30" cy="30" r="20" fill="none" stroke="%23ffffff" stroke-width="1"/%3E%3Cpath d="M30 15 L30 35 M20 25 L40 25" stroke="%23ffffff" stroke-width="2"/%3E%3C/g%3E%3C/svg%3E');
    background-size: auto, 60px 60px;
    opacity: 0.5;
}

.urgent-icon {
    font-size: 3rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.urgent-content {
    position: relative;
    z-index: 1;
}

.urgent-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.urgent-content p {
    opacity: 0.95;
    margin-bottom: 0.8rem;
}

.urgent-phone {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    text-decoration: none;
    margin: 0.8rem 0;
    letter-spacing: 0.05em;
}

.urgent-phone:hover {
    opacity: 0.9;
}

.urgent-note {
    font-size: 0.9rem;
    opacity: 0.85;
    font-style: italic;
    margin-top: 0.5rem !important;
}

/* =================================
   Партнеры
   ================================= */

.partners {
    padding: 60px 0;
    background: var(--bg-gray);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.partner-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.partner-logo {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.partner-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.partner-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* =================================
   Футер
   ================================= */

.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 50px 0 25px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-section p {
    opacity: 0.85;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.85;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    opacity: 1;
    padding-left: 8px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.footer-credits {
    font-size: 0.9rem;
    opacity: 0.7;
    font-style: italic;
}

/* =================================
   Страница для пациентов
   ================================= */

.page-header {
    background: linear-gradient(135deg, #0099cc 0%, #0077aa 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,0.04) 35px, rgba(255,255,255,0.04) 70px),
        url('data:image/svg+xml,%3Csvg width="80" height="80" xmlns="http://www.w3.org/2000/svg"%3E%3Cg opacity="0.12"%3E%3Ccircle cx="40" cy="40" r="2" fill="%23ffffff"/%3E%3Cpath d="M40 20 L44 30 L55 30 L46 37 L50 47 L40 40 L30 47 L34 37 L25 30 L36 30 Z" fill="none" stroke="%23ffffff" stroke-width="0.8"/%3E%3C/g%3E%3C/svg%3E');
    background-size: auto, 80px 80px;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    font-weight: 800;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.quick-nav {
    background-color: var(--bg-white);
    padding: 1.5rem 0;
    box-shadow: var(--shadow-md);
}

.quick-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.quick-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    text-decoration: none;
    color: var(--text-primary);
    border-radius: var(--radius-md);
    transition: var(--transition);
    background: var(--bg-gray);
    font-weight: 600;
}

.quick-nav-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.quick-nav-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.content-section {
    padding: 60px 0;
}

.gray-bg {
    background-color: var(--bg-gray);
}

.content-block {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--primary-color);
}

.info-card h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.info-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.info-card ul {
    list-style: none;
}

.info-card ul li {
    padding: 0.7rem 0 0.7rem 1.5rem;
    color: var(--text-secondary);
    position: relative;
}

.info-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1;
}

.symptoms-grid,
.treatment-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.symptom-card,
.treatment-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.symptom-card h4,
.treatment-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.alert {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-top: 2rem;
    border-left: 4px solid;
}

.alert-warning {
    background: #fef3c7;
    border-color: var(--warning);
    color: #92400e;
}

.alert-success {
    background: #d1fae5;
    border-color: var(--success);
    color: #065f46;
}

.alert strong {
    font-weight: 700;
}

.diagnosis-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    position: relative;
    padding-top: 4.5rem;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0099cc 0%, #0077aa 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    box-shadow: 0 4px 16px rgba(0, 153, 204, 0.3);
}

.treatment-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature {
    padding: 0.8rem;
    background: var(--bg-gray);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.prevention-grid,
.help-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.prevention-card,
.help-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.prevention-card:hover,
.help-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.calculator-container {
    max-width: 750px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.question {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

/* =================================
   Анимации
   ================================= */

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =================================
   Адаптивность
   ================================= */

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 73px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 1rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .path-cards {
        grid-template-columns: 1fr;
    }
    
    .content-block,
    .symptoms-grid,
    .treatment-blocks,
    .activities-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-nav-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .urgent-help {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .nav-title {
        font-size: 1.2rem;
    }
    
    .nav-logo {
        width: 60px;
        height: 60px;
    }
    
    .hero {
        padding: 50px 0 70px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .path-card {
        padding: 1.5rem;
    }
    
    .card-title {
        font-size: 1.4rem;
    }
    
    .card-title {
        font-size: 1.5rem;
    }
}

/* =================================
   Дополнительные профессиональные стили
   ================================= */

/* Улучшенные карточки */
.path-card,
.about-card,
.activity-card,
.contact-card {
    position: relative;
    overflow: hidden;
}

.path-card::after,
.about-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 153, 204, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* Улучшенный логотип */
.nav-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
}

.nav-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
}

.nav-subtitle {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Медицинский паттерн для секций */
.about-project,
.contacts {
    position: relative;
}

.about-project::before,
.contacts::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('data:image/svg+xml,%3Csvg width="120" height="120" xmlns="http://www.w3.org/2000/svg"%3E%3Cg opacity="0.02"%3E%3Cpath d="M60 30 L60 90 M30 60 L90 60" stroke="%230099cc" stroke-width="2"/%3E%3Ccircle cx="60" cy="60" r="20" fill="none" stroke="%2300a651" stroke-width="1.5"/%3E%3Cpath d="M60 40 L64 50 L75 50 L66 57 L70 67 L60 60 L50 67 L54 57 L45 50 L56 50 Z" fill="none" stroke="%230099cc" stroke-width="1"/%3E%3C/g%3E%3C/svg%3E');
    background-size: 120px 120px;
    pointer-events: none;
}

/* Улучшенные тени для hover эффектов */
.path-card:hover,
.activity-card:hover,
.contact-card:hover,
.prevention-card:hover,
.help-card:hover {
    box-shadow: 
        0 20px 40px -10px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 153, 204, 0.05);
}

/* Профессиональные иконки */
.activity-icon,
.stat-icon,
.partner-logo {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Улучшенная типографика */
.section-title {
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #0099cc 0%, #00a651 50%, #e30613 100%);
    border-radius: 2px;
}

/* Медицинские акценты для активных элементов */
.quick-nav-item:hover {
    background: linear-gradient(135deg, #0099cc 0%, #33aadd 100%);
}

/* Улучшенный футер с паттерном */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(0, 153, 204, 0.03) 40px, rgba(0, 153, 204, 0.03) 80px);
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 1;
}

/* Профессиональные бейджи */
.hero-badge {
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Улучшенные статистические карточки */
.stat-card {
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-card:hover {
    border-color: rgba(255, 255, 255, 0.4);
}

/* Медицинская визуализация для activity-card */
.activity-card {
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.activity-card:hover {
    border-left-color: #0099cc;
}

.activity-card:nth-child(2n):hover {
    border-left-color: #e30613;
}

/* Профессиональные линии для разделения контента */
.about-card.featured {
    border-left: 6px solid;
    border-image: linear-gradient(to bottom, #0099cc, #e30613) 1;
}

/* Улучшенные формы и input элементы */
input[type="radio"] {
    accent-color: #0099cc;
}

/* Гладкая прокрутка */
html {
    scroll-behavior: smooth;
}

/* Улучшенный контраст для читаемости */
.hero-description,
.section-intro {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Медицинская визуализация для списков */
.card-features li::before,
.feature-list li::before {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Профессиональная анимация для загрузки */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.hero-badge {
    animation: pulse 3s ease-in-out infinite;
}

/* Улучшенные ссылки в футере */
.footer a {
    position: relative;
    display: inline-block;
}

.footer a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0099cc, #33aadd);
    transition: width 0.3s ease;
}

.footer a:hover::after {
    width: 100%;
}

/* Дополнительная глубина для карточек партнеров */
.partner-card:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
}

/* Профессиональный стиль для контактных деталей */
.contact-detail {
    padding: 0.5rem 1rem;
    background: rgba(0, 153, 204, 0.05);
    border-radius: var(--radius-sm);
    display: inline-block;
    margin-top: 0.5rem;
}

/* =================================
   СТИЛИ ДЛЯ СТРАНИЦЫ СПЕЦИАЛИСТОВ
   ================================= */

/* Специальный header для специалистов */
.specialists-header {
    background: linear-gradient(135deg, #0077aa 0%, #006699 100%);
}

.header-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.header-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.header-stat {
    text-align: center;
}

.header-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.3rem;
}

.header-stat .stat-label {
    display: block;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Протоколы */
.protocols-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.protocol-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.protocol-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.protocol-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.protocol-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.protocol-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.protocol-points {
    list-style: none;
    margin: 1rem 0 1.5rem;
    padding: 0;
}

.protocol-points li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.protocol-points li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.btn-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

/* Диагностика */
.diagnostic-blocks {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2.5rem;
}

.diagnostic-block {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.diagnostic-header {
    margin-bottom: 2rem;
}

.diagnostic-header h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.diagnostic-flow {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.flow-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--bg-gray);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    box-shadow: 0 4px 12px rgba(0, 153, 204, 0.3);
}

.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step-content p {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.step-content strong {
    color: var(--primary-color);
}

.step-content ul {
    list-style: none;
    margin: 0.8rem 0;
    padding: 0;
}

.step-content ul li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.step-content ul li::before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: var(--secondary-color);
    font-weight: bold;
}

.diagnostic-note {
    margin-top: 1.5rem;
    padding: 1.2rem;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
}

.diagnostic-note strong {
    color: #856404;
}

/* Лабораторная сеть */
.lab-network {
    margin-top: 3rem;
    padding: 2.5rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.lab-network h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.lab-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.lab-card {
    padding: 1.5rem;
    background: var(--bg-gray);
    border-radius: var(--radius-lg);
    text-align: center;
}

.lab-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.lab-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
}

.lab-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
}

/* Схемы лечения */
.treatment-section {
    margin-bottom: 4rem;
}

.treatment-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 2rem;
    padding-bottom: 0.8rem;
    border-bottom: 3px solid var(--primary-color);
}

.treatment-schemes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.scheme-card {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: var(--transition);
}

.scheme-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.featured-scheme {
    border: 3px solid #ffd700;
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.2);
}

.scheme-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--bg-gray), white);
    border-bottom: 2px solid var(--bg-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.scheme-header h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.scheme-badge {
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.scheme-badge.gold {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #856404;
}

.scheme-badge.blue {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
}

.scheme-badge.red {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: white;
}

.scheme-badge.orange {
    background: linear-gradient(135deg, #ff9800, #ffb74d);
    color: white;
}

.scheme-body {
    padding: 1.5rem;
}

.scheme-info {
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--bg-gray);
}

.scheme-info p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.scheme-info strong {
    color: var(--text-primary);
    font-weight: 600;
}

.scheme-indications h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.scheme-indications ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.scheme-indications ul li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.scheme-efficacy {
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--bg-gray);
}

.efficacy-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 700;
}

/* Особые группы и критерии */
.special-populations,
.treatment-criteria {
    margin-top: 3rem;
    padding: 2.5rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.special-populations h4,
.treatment-criteria h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.population-grid,
.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.population-card,
.criteria-card {
    padding: 1.5rem;
    background: var(--bg-gray);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
}

.population-card h5,
.criteria-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.population-card p,
.criteria-card li {
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.criteria-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.criteria-card li {
    padding: 0.4rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.criteria-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Мониторинг таблица */
.monitoring-section {
    margin-top: 3rem;
    padding: 2.5rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.monitoring-section h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.monitoring-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.monitoring-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.monitoring-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.monitoring-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--bg-gray);
    font-size: 0.9rem;
}

.monitoring-table tbody tr:hover {
    background: var(--bg-gray);
}

/* Программа доступа */
.access-program {
    margin-top: 3rem;
}

.access-program h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
    text-align: center;
}

.access-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.access-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: var(--transition);
}

.access-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.access-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.access-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.access-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.access-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    text-align: left;
}

.access-card ul li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.access-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Эпидемиология */
.epi-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.epi-stat-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: var(--transition);
}

.epi-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.epi-stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.epi-stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.epi-stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.5rem;
}

.epi-stat-detail {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Группы риска */
.risk-groups {
    margin-top: 3rem;
}

.risk-groups h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.risk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.risk-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.risk-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.risk-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.risk-card ul li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--bg-gray);
}

.risk-card ul li:last-child {
    border-bottom: none;
}

.risk-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.high-risk {
    border-left: 5px solid #dc3545;
}

.high-risk h4 {
    color: #dc3545;
}

.high-risk ul li::before {
    color: #dc3545;
}

.medium-risk {
    border-left: 5px solid #ffc107;
}

.medium-risk h4 {
    color: #856404;
}

.medium-risk ul li::before {
    color: #ffc107;
}

.general-risk {
    border-left: 5px solid var(--secondary-color);
}

.general-risk h4 {
    color: var(--secondary-color);
}

.general-risk ul li::before {
    color: var(--secondary-color);
}

/* Пути передачи */
.transmission-section {
    margin-top: 3rem;
}

.transmission-section h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.transmission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.transmission-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.transmission-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
}

.transmission-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.transmission-card ul li {
    padding: 0.6rem 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.transmission-card strong {
    color: var(--primary-color);
}

.transmission-note {
    margin-top: 1rem;
    padding: 0.8rem;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    color: #856404;
}

/* Обучение */
.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.education-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.education-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.education-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.education-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.education-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    line-height: 1.6;
    flex-grow: 1;
}

.education-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    text-align: left;
}

.education-card ul li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.education-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Мероприятия */
.events-section {
    margin-top: 3rem;
    padding: 2.5rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.events-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-gray);
    border-radius: var(--radius-lg);
    align-items: center;
    transition: var(--transition);
}

.event-card:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.event-date {
    flex-shrink: 0;
    width: 70px;
    text-align: center;
    padding: 0.8rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: var(--radius-md);
}

.event-date .date-day {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.event-date .date-month {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-top: 0.2rem;
}

.event-info {
    flex-grow: 1;
}

.event-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.event-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0.3rem 0;
}

.btn-outline-small {
    padding: 0.5rem 1.2rem;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

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

/* Ресурсы */
.resources-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2.5rem;
}

.resource-category {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.resource-category h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.resource-link {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: var(--bg-gray);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: var(--transition);
}

.resource-link:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.link-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.link-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.link-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Калькуляторы */
.calculator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.calculator-card {
    padding: 1.5rem;
    background: var(--bg-gray);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.calculator-card:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.calculator-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.calculator-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Приложения */
.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.app-card {
    padding: 1.5rem;
    background: var(--bg-gray);
    border-radius: var(--radius-lg);
    text-align: center;
}

.app-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.app-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.app-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.app-badges {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.badge-ios,
.badge-android {
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-ios {
    background: #000;
    color: white;
}

.badge-android {
    background: #3ddc84;
    color: #000;
}

/* Контакты для специалистов */
.specialist-contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Telegram канал */
.telegram-channel {
    background: linear-gradient(135deg, #0099cc, #0077aa);
    padding: 3rem;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    gap: 2rem;
    color: white;
    box-shadow: var(--shadow-xl);
}

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

.telegram-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.telegram-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

/* Адаптивность для специалистов */
@media (max-width: 768px) {
    .header-stats {
        gap: 1.5rem;
    }
    
    .header-stat .stat-number {
        font-size: 2rem;
    }
    
    .protocols-grid,
    .treatment-schemes,
    .epi-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .flow-step {
        flex-direction: column;
    }
    
    .event-card {
        flex-direction: column;
        text-align: center;
    }
    
    .telegram-channel {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .monitoring-table {
        font-size: 0.8rem;
    }
    
    .monitoring-table th,
    .monitoring-table td {
        padding: 0.6rem;
    }
}
