/* ============================================
   Базовые стили и переменные
   ============================================ */

:root {
    --bg-color: #E5E5E5;
    --accent-color: #0F4A3A;
    --text-color: #0A2E22;
    --heading-color: #0A1512;
    --white: #FFFFFF;
    --dark-gray: #1A1A1A;
    --medium-gray: #4A4A4A;
    --light-gray: #E5E5E5;
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    
    /* Акцентные цвета - более насыщенные */
    --accent-coral: #FF5252;
    --accent-orange: #FF7043;
    --accent-teal: #26A69A;
    --accent-blue: #29B6F6;
    --accent-purple: #7B1FA2;
    --accent-amber: #FFA726;
    
    /* Градиенты для фонов - более контрастные */
    --gradient-main: linear-gradient(180deg, #FFFFFF 0%, #F0F4F2 25%, #E0E6E3 50%, #D0DAD4 75%, #C0CEC5 100%);
    --gradient-hero: linear-gradient(180deg, #FFFFFF 0%, #E8EDEA 35%, #D8DFDB 70%, #C8CFC6 100%);
    --gradient-section: linear-gradient(180deg, #FFFFFF 0%, #F5F8F6 40%, #E8EDEA 80%, #DBE3DE 100%);
    --gradient-alt: linear-gradient(180deg, #F5F8F6 0%, #E0E6E3 50%, #CBD5CE 100%);
    --gradient-accent: linear-gradient(180deg, #E8EDEA 0%, #D0DAD4 50%, #B8C6BE 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background: var(--gradient-main);
    background-attachment: fixed;
    color: var(--text-color);
    line-height: 1.6;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(26, 95, 74, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(26, 95, 74, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(240, 244, 242, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 2px 20px rgba(26, 95, 74, 0.08);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: 1px;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
}

.nav-menu a:hover {
    opacity: 0.7;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* ============================================
   HERO-БЛОК
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    text-align: center;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(26, 95, 74, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(26, 95, 74, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, transparent 0%, rgba(216, 223, 219, 0.5) 100%);
    pointer-events: none;
    z-index: 0;
}

.hero-liposome {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-liposome-1 {
    top: 15%;
    right: 10%;
    width: 300px;
    height: 300px;
}

.hero-liposome-2 {
    bottom: 20%;
    left: 8%;
    width: 250px;
    height: 250px;
}

.hero-liposome svg {
    width: 100%;
    height: 100%;
    filter: blur(0.5px);
}

.hero:hover .hero-liposome {
    opacity: 0.2;
}

/* Анимированные изображения липосомы */
.hero-liposoma-img {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    opacity: 0.08;
    max-width: 400px;
    max-height: 400px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.hero-liposoma-img-1 {
    top: 10%;
    left: 5%;
    width: 350px;
    height: 350px;
    animation: floatLiposoma1 45s ease-in-out infinite;
}

.hero-liposoma-img-2 {
    top: 50%;
    right: 8%;
    width: 280px;
    height: 280px;
    animation: floatLiposoma2 50s ease-in-out infinite;
}

.hero-liposoma-img-3 {
    bottom: 15%;
    left: 50%;
    width: 320px;
    height: 320px;
    animation: floatLiposoma3 55s ease-in-out infinite;
}

/* Анимации для первого изображения */
@keyframes floatLiposoma1 {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(30px, -40px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(-20px, 50px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translate(40px, 20px) rotate(270deg) scale(1.05);
    }
    100% {
        transform: translate(0, 0) rotate(360deg) scale(1);
    }
}

/* Анимации для второго изображения */
@keyframes floatLiposoma2 {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    20% {
        transform: translate(-50px, 30px) rotate(-120deg) scale(0.85);
    }
    40% {
        transform: translate(35px, -25px) rotate(-240deg) scale(1.15);
    }
    60% {
        transform: translate(-30px, -40px) rotate(-360deg) scale(0.95);
    }
    80% {
        transform: translate(45px, 35px) rotate(-480deg) scale(1.08);
    }
    100% {
        transform: translate(0, 0) rotate(-720deg) scale(1);
    }
}

/* Анимации для третьего изображения */
@keyframes floatLiposoma3 {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    30% {
        transform: translate(-60px, 45px) rotate(150deg) scale(1.12);
    }
    50% {
        transform: translate(50px, -35px) rotate(300deg) scale(0.88);
    }
    70% {
        transform: translate(-35px, -50px) rotate(450deg) scale(1.05);
    }
    100% {
        transform: translate(0, 0) rotate(720deg) scale(1);
    }
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    margin-bottom: 40px;
}

.title-main {
    display: block;
    font-size: 64px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-shadow: 0 4px 25px rgba(10, 21, 18, 0.4);
}

.title-subtitle {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--heading-color);
    opacity: 1;
    letter-spacing: 0.5px;
}

.hero-heading {
    font-size: 36px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 30px;
    line-height: 1.3;
    text-shadow: 0 2px 20px rgba(10, 21, 18, 0.3);
}

.hero-description {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 1;
}

/* ============================================
   Кнопки
   ============================================ */

.btn-primary {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-coral) 100%);
    color: var(--white);
    border: none;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-family);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 142, 83, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 142, 83, 0.5);
    background: linear-gradient(135deg, var(--accent-coral) 0%, var(--accent-orange) 100%);
}

.btn-primary:active {
    transform: translateY(0);
}

/* ============================================
   Секции
   ============================================ */

section {
    padding: 100px 20px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--heading-color);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 1px;
    text-shadow: 0 2px 15px rgba(10, 21, 18, 0.25);
    position: relative;
    z-index: 2;
}

.section-intro {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 50px;
    opacity: 0.9;
}

.subsection-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.values-section .subsection-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-orange) 0%, var(--accent-coral) 50%, transparent 100%);
    border-radius: 2px;
}

/* ============================================
   КОНТЕКСТ РЫНКА
   ============================================ */

.market-context {
    background: var(--gradient-section);
    position: relative;
    z-index: 1;
}

.market-context::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, rgba(216, 223, 219, 0.3) 0%, transparent 100%);
    pointer-events: none;
}

.market-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.market-problems,
.market-solutions {
    padding: 40px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAF9 100%);
    border-radius: 10px;
    box-shadow: 0 6px 25px rgba(15, 74, 58, 0.15);
    border: 2px solid rgba(15, 74, 58, 0.1);
}

.problem-list,
.solution-list {
    list-style: none;
}

.problem-list li,
.solution-list li {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.problem-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--accent-coral);
    font-weight: 700;
    font-size: 20px;
}

.solution-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-teal);
    font-weight: 700;
    font-size: 18px;
}

/* ============================================
   НАША ФИЛОСОФИЯ
   ============================================ */

.philosophy {
    background: var(--gradient-alt);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.philosophy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(180deg, rgba(248, 250, 249, 0.5) 0%, transparent 100%);
    pointer-events: none;
}

.philosophy::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(0deg, rgba(200, 212, 206, 0.3) 0%, transparent 100%);
    pointer-events: none;
}

.philosophy-bg-decoration {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 95, 74, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.philosophy-bg-decoration::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -150px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(26, 95, 74, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.philosophy-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.values-section {
    margin-bottom: 80px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.value-card:nth-child(1) .value-icon circle {
    fill: var(--accent-color);
}

.value-card:nth-child(2) .value-icon circle {
    fill: var(--accent-orange);
}

.value-card:nth-child(3) .value-icon circle {
    fill: var(--accent-blue);
}

.value-card:nth-child(4) .value-icon circle {
    fill: var(--accent-purple);
}

.value-card {
    text-align: center;
    padding: 40px 25px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAF9 100%);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(15, 74, 58, 0.2);
    border: 2px solid rgba(15, 74, 58, 0.15);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, transparent 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.value-card:nth-child(1)::before {
    background: linear-gradient(90deg, var(--accent-color) 0%, transparent 100%);
}

.value-card:nth-child(2)::before {
    background: linear-gradient(90deg, var(--accent-orange) 0%, transparent 100%);
}

.value-card:nth-child(3)::before {
    background: linear-gradient(90deg, var(--accent-blue) 0%, transparent 100%);
}

.value-card:nth-child(4)::before {
    background: linear-gradient(90deg, var(--accent-purple) 0%, transparent 100%);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 50px rgba(15, 74, 58, 0.3);
    border-color: rgba(15, 74, 58, 0.3);
}

.value-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.value-icon {
    display: block;
    filter: drop-shadow(0 4px 12px rgba(26, 95, 74, 0.2));
    transition: transform 0.4s ease;
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(26, 95, 74, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.value-card:hover .icon-glow {
    opacity: 1;
}

.value-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.value-card:hover h4 {
    color: var(--accent-color);
}

.value-description {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    opacity: 0.85;
    margin: 0;
    line-height: 1.5;
}

.methods-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid rgba(26, 95, 74, 0.1);
    position: relative;
}

.methods-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-orange) 0%, var(--accent-coral) 50%, var(--accent-teal) 100%);
    border-radius: 2px;
}

.methods-header {
    text-align: center;
    margin-bottom: 50px;
}

.methods-decoration {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.method-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAF9 100%);
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(15, 74, 58, 0.15);
    border: 2px solid rgba(15, 74, 58, 0.12);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.method-item:nth-child(1) {
    border-left: 4px solid var(--accent-color);
}

.method-item:nth-child(2) {
    border-left: 4px solid var(--accent-orange);
}

.method-item:nth-child(3) {
    border-left: 4px solid var(--accent-blue);
}

.method-item:nth-child(4) {
    border-left: 4px solid var(--accent-orange);
}

.method-item:nth-child(5) {
    border-left: 4px solid var(--accent-purple);
}

.method-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 35px rgba(15, 74, 58, 0.25);
    border-color: rgba(15, 74, 58, 0.25);
}

.method-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(26, 95, 74, 0.1) 0%, rgba(26, 95, 74, 0.05) 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.method-item:nth-child(1) .method-icon {
    background: linear-gradient(135deg, rgba(26, 95, 74, 0.15) 0%, rgba(26, 95, 74, 0.08) 100%);
}

.method-item:nth-child(1) .method-icon svg {
    stroke: var(--accent-color);
}

.method-item:nth-child(2) .method-icon {
    background: linear-gradient(135deg, rgba(255, 142, 83, 0.15) 0%, rgba(255, 142, 83, 0.08) 100%);
}

.method-item:nth-child(2) .method-icon svg {
    stroke: var(--accent-orange);
}

.method-item:nth-child(3) .method-icon {
    background: linear-gradient(135deg, rgba(69, 183, 209, 0.15) 0%, rgba(69, 183, 209, 0.08) 100%);
}

.method-item:nth-child(3) .method-icon svg {
    stroke: var(--accent-blue);
}

.method-item:nth-child(4) .method-icon {
    background: linear-gradient(135deg, rgba(255, 142, 83, 0.15) 0%, rgba(255, 142, 83, 0.08) 100%);
}

.method-item:nth-child(4) .method-icon svg {
    stroke: var(--accent-orange);
}

.method-item:nth-child(5) .method-icon {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.15) 0%, rgba(155, 89, 182, 0.08) 100%);
}

.method-item:nth-child(5) .method-icon svg {
    stroke: var(--accent-purple);
}

.method-item:hover .method-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.method-item svg {
    transition: transform 0.3s ease;
}

.method-item:hover svg {
    transform: scale(1.1);
}

.method-item p {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
    flex: 1;
}

/* ============================================
   ЧТО МЫ СТРОИМ
   ============================================ */

.system {
    background: var(--gradient-section);
    position: relative;
    z-index: 1;
}

.system::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(180deg, rgba(232, 237, 234, 0.4) 0%, transparent 100%);
    pointer-events: none;
}

.system-schema {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.system-schema-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--heading-color);
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.schema-container {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
}

.schema-connections {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 900px;
    height: 70%;
    max-height: 400px;
    z-index: 1;
    pointer-events: none;
}

.connection-line {
    transition: opacity 0.3s ease, stroke-width 0.3s ease;
}

.schema-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.center-hub {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 249, 0.95) 100%);
    border-radius: 50%;
    box-shadow: 0 8px 30px rgba(15, 74, 58, 0.2);
    border: 3px solid rgba(26, 95, 74, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.center-hub svg {
    width: 100%;
    height: 100%;
}

.schema-item {
    position: absolute;
    z-index: 3;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0s, top 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0s;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.schema-item:hover {
    z-index: 100;
}

.schema-item-content {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAF9 100%);
    border-radius: 16px;
    padding: 25px 30px;
    box-shadow: 0 6px 25px rgba(15, 74, 58, 0.15);
    border: 2px solid rgba(15, 74, 58, 0.1);
    transition: box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0s, border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0s;
    min-width: 200px;
    max-width: 280px;
    position: relative;
    transform-origin: center center;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.schema-item-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
    text-align: center;
    transition: color 0.3s ease;
}

.schema-item-details {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0s, opacity 0.4s ease 0s, margin-top 0.4s ease 0s;
    margin-top: 0;
}

.schema-item:hover .schema-item-details {
    max-height: 600px;
    opacity: 1;
    margin-top: 20px;
}

/* Компенсация изменения высоты для элементов слева и справа через отрицательный margin-top на content */
.schema-item-left .schema-item-content,
.schema-item-right .schema-item-content {
    transition: box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0s, border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0s, margin-top 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0s;
    margin-top: 0;
}

.schema-item-left:hover .schema-item-content,
.schema-item-right:hover .schema-item-content {
    margin-top: -150px;
}

.schema-item-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px;
}

.schema-item-image img {
    max-width: 200px;
    max-height: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(15, 74, 58, 0.2));
}

.schema-item:hover .schema-item-image img {
    transform: scale(1.05);
}

.schema-item:hover .schema-item-content {
    box-shadow: 0 12px 40px rgba(15, 74, 58, 0.3);
    border-color: rgba(15, 74, 58, 0.3);
    position: relative;
    z-index: 101;
}

.schema-item:hover .schema-item-title {
    color: var(--accent-color);
}

.schema-container:hover .connection-line {
    opacity: 0.5;
    transition: opacity 0.3s ease, stroke-width 0.3s ease;
}

.schema-item[data-item="1"]:hover ~ .schema-connections .connection-1 {
    opacity: 0.7;
    stroke-width: 3;
    stroke: var(--accent-color);
}

.schema-item[data-item="2"]:hover ~ .schema-connections .connection-2 {
    opacity: 0.7;
    stroke-width: 3;
    stroke: var(--accent-orange);
}

.schema-item[data-item="3"]:hover ~ .schema-connections .connection-3 {
    opacity: 0.7;
    stroke-width: 3;
    stroke: var(--accent-blue);
}

.schema-item[data-item="4"]:hover ~ .schema-connections .connection-4 {
    opacity: 0.7;
    stroke-width: 3;
    stroke: var(--accent-purple);
}

/* Позиционирование элементов схемы (горизонтальная ориентация) */
.schema-item-left {
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    transform-origin: center center;
    transform-box: fill-box;
}

.schema-item-left:hover {
    transform: translateY(-50%) translateX(-10px) scale(1.1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0s;
    top: 50%;
}

.schema-item-top {
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    transform-origin: center center;
    transform-box: fill-box;
}

.schema-item-top:hover {
    transform: translateX(-50%) translateY(-10px) scale(1.1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}

.schema-item-bottom {
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    transform-origin: center center;
    transform-box: fill-box;
}

.schema-item-bottom:hover {
    transform: translateX(-50%) translateY(10px) scale(1.1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}

.schema-item-right {
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    transform-origin: center center;
    transform-box: fill-box;
}

.schema-item-right:hover {
    transform: translateY(-50%) translateX(10px) scale(1.1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0s;
    top: 50%;
}

/* Цвета для разных элементов */
.schema-item[data-item="1"] .schema-item-content {
    border-left: 4px solid var(--accent-color);
}

.schema-item[data-item="1"]:hover .schema-item-content {
    border-left-color: var(--accent-color);
    box-shadow: 0 12px 40px rgba(26, 95, 74, 0.3);
}

.schema-item[data-item="1"]:hover .schema-item-title {
    color: var(--accent-color);
}

.schema-item[data-item="2"] .schema-item-content {
    border-left: 4px solid var(--accent-orange);
}

.schema-item[data-item="2"]:hover .schema-item-content {
    border-left-color: var(--accent-orange);
    box-shadow: 0 12px 40px rgba(255, 142, 83, 0.3);
}

.schema-item[data-item="2"]:hover .schema-item-title {
    color: var(--accent-orange);
}

.schema-item[data-item="3"] .schema-item-content {
    border-left: 4px solid var(--accent-blue);
}

.schema-item[data-item="3"]:hover .schema-item-content {
    border-left-color: var(--accent-blue);
    box-shadow: 0 12px 40px rgba(69, 183, 209, 0.3);
}

.schema-item[data-item="3"]:hover .schema-item-title {
    color: var(--accent-blue);
}

.schema-item[data-item="4"] .schema-item-content {
    border-left: 4px solid var(--accent-purple);
}

.schema-item[data-item="4"]:hover .schema-item-content {
    border-left-color: var(--accent-purple);
    box-shadow: 0 12px 40px rgba(155, 89, 182, 0.3);
}

.schema-item[data-item="4"]:hover .schema-item-title {
    color: var(--accent-purple);
}

.liposome-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px 0;
    padding: 10px;
}

.liposome-illustration svg {
    transition: transform 0.3s ease;
}

.schema-item:hover .liposome-illustration svg {
    transform: scale(1.1) rotate(5deg);
}

.component-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.component-list li {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 12px;
    padding-left: 22px;
    position: relative;
    opacity: 0.9;
    line-height: 1.5;
}

.component-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-size: 20px;
    line-height: 1;
}

.schema-item[data-item="1"] .component-list li::before {
    color: var(--accent-color);
}

.schema-item[data-item="2"] .component-list li::before {
    color: var(--accent-orange);
}

.schema-item[data-item="3"] .component-list li::before {
    color: var(--accent-blue);
}

.schema-item[data-item="4"] .component-list li::before {
    color: var(--accent-purple);
}


/* ============================================
   СОТВОРЧЕСТВО
   ============================================ */

.co-creation {
    background: var(--gradient-alt);
    position: relative;
    z-index: 1;
}

.co-creation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, rgba(248, 250, 249, 0.6) 0%, transparent 100%);
    pointer-events: none;
}

.co-creation-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.co-creation-list {
    list-style: none;
    margin: 40px 0;
}

.co-creation-list li {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAF9 100%);
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(15, 74, 58, 0.12);
    border: 2px solid rgba(15, 74, 58, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.co-creation-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 25px rgba(15, 74, 58, 0.2);
    border-color: rgba(15, 74, 58, 0.2);
}

.co-creation-footer {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    margin-top: 40px;
    font-style: italic;
}

/* ============================================
   КТО В СООБЩЕСТВЕ
   ============================================ */

.community-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.community-card {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAF9 100%);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 20px rgba(15, 74, 58, 0.12);
    border: 2px solid rgba(15, 74, 58, 0.1);
    position: relative;
    overflow: hidden;
}

.community-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.community-card:nth-child(1)::before {
    background: var(--accent-color);
}

.community-card:nth-child(2)::before {
    background: var(--accent-orange);
}

.community-card:nth-child(3)::before {
    background: var(--accent-blue);
}

.community-card:nth-child(4)::before {
    background: var(--accent-orange);
}

.community-card:nth-child(5)::before {
    background: var(--accent-purple);
}

.community-card:nth-child(6)::before {
    background: var(--accent-teal);
}

.community-card:nth-child(7)::before {
    background: var(--accent-color);
}

.community-card:nth-child(8)::before {
    background: var(--accent-blue);
}

.community-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(15, 74, 58, 0.25);
    border-color: rgba(15, 74, 58, 0.2);
}

.community-card:hover::before {
    transform: scaleX(1);
}

.community-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.community-icon svg {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.community-card:hover .community-icon svg {
    transform: scale(1.1);
}

.community-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--heading-color);
}

/* ============================================
   ПРОЗРАЧНОСТЬ
   ============================================ */

.transparency {
    background: var(--gradient-section);
    position: relative;
    z-index: 1;
}

.transparency::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, rgba(240, 244, 242, 0.5) 0%, transparent 100%);
    pointer-events: none;
}

.transparency-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.transparency-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAF9 100%);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 6px 25px rgba(15, 74, 58, 0.15);
    border: 2px solid rgba(15, 74, 58, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.transparency-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--accent-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.transparency-card:nth-child(1)::before {
    background: var(--accent-color);
}

.transparency-card:nth-child(2)::before {
    background: var(--accent-orange);
}

.transparency-card:nth-child(3)::before {
    background: var(--accent-blue);
}

.transparency-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(15, 74, 58, 0.25);
    border-color: rgba(15, 74, 58, 0.2);
}

.transparency-card:hover::before {
    transform: scaleY(1);
}

.transparency-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 20px;
}

.transparency-intro {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
    opacity: 0.9;
}

.transparency-list {
    list-style: none;
}

.transparency-list li {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    opacity: 0.9;
}

.transparency-list li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.transparency-card:nth-child(1) .transparency-list li::before {
    color: var(--accent-color);
}

.transparency-card:nth-child(2) .transparency-list li::before {
    color: var(--accent-orange);
}

.transparency-card:nth-child(3) .transparency-list li::before {
    color: var(--accent-blue);
}

/* ============================================
   КОМАНДА
   ============================================ */

.team {
    background: var(--gradient-alt);
    position: relative;
    z-index: 1;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, rgba(248, 250, 249, 0.6) 0%, transparent 100%);
    pointer-events: none;
}

.team-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.team-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.8;
    opacity: 1;
}

/* ============================================
   КАК ВОЙТИ В ПРОЕКТ
   ============================================ */

.join {
    background: var(--gradient-section);
    position: relative;
    z-index: 1;
}

.join::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, rgba(240, 244, 242, 0.5) 0%, transparent 100%);
    pointer-events: none;
}

.join-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.join-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--heading-color);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.join-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    align-items: stretch;
}

.join-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 40px 30px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAF9 100%);
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(15, 74, 58, 0.15);
    border: 2px solid rgba(15, 74, 58, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.join-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 35px rgba(15, 74, 58, 0.25);
    border-color: rgba(15, 74, 58, 0.2);
}

.join-option-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 3px solid var(--white);
    flex-shrink: 0;
}

.join-option:nth-child(1) .join-option-number {
    background: linear-gradient(135deg, var(--accent-color) 0%, #2A7A5F 100%);
    box-shadow: 0 4px 20px rgba(26, 95, 74, 0.4);
}

.join-option:nth-child(2) .join-option-number {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-coral) 100%);
    box-shadow: 0 4px 20px rgba(255, 142, 83, 0.4);
}

.join-option:nth-child(3) .join-option-number {
    background: linear-gradient(135deg, var(--accent-blue) 0%, #5FC5E0 100%);
    box-shadow: 0 4px 20px rgba(69, 183, 209, 0.4);
}

.join-option-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
}

@media (max-width: 968px) {
    .join-options {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .join-option {
        padding: 35px 25px;
    }
}

@media (max-width: 768px) {
    .join-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .join-option-text {
        font-size: 16px;
    }
}

/* ============================================
   ФИЛОСОФИЯ В ОДНОМ ПРЕДЛОЖЕНИИ
   ============================================ */

.philosophy-summary {
    background: var(--gradient-accent);
    padding: 100px 20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.philosophy-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(180deg, rgba(232, 237, 234, 0.6) 0%, transparent 100%);
    pointer-events: none;
}

.philosophy-quote {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    text-align: center;
    line-height: 1.8;
    font-style: italic;
    padding: 60px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAF9 100%);
    border-radius: 10px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 50px rgba(15, 74, 58, 0.2);
    border: 2px solid rgba(15, 74, 58, 0.15);
}

.philosophy-quote::before {
    content: '"';
    font-size: 80px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-coral) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: absolute;
    top: 20px;
    left: 30px;
    opacity: 0.4;
    font-family: serif;
}

.philosophy-quote::after {
    content: '"';
    font-size: 80px;
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: absolute;
    bottom: 20px;
    right: 30px;
    opacity: 0.4;
    font-family: serif;
}

/* Анимированные капсулы на фоне блока с цитатой */
.philosophy-capsule {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    width: 120px;
    height: auto;
    object-fit: contain;
    opacity: 0.12;
    filter: blur(0.5px);
}

.philosophy-capsule-1 {
    top: 10%;
    left: 5%;
    opacity: 0.10;
    transform: rotate(25deg);
    animation: floatCapsule1 60s ease-in-out infinite;
}

.philosophy-capsule-2 {
    top: 20%;
    right: 8%;
    opacity: 0.14;
    transform: rotate(-45deg);
    animation: floatCapsule2 70s ease-in-out infinite;
}

.philosophy-capsule-3 {
    bottom: 15%;
    left: 12%;
    opacity: 0.11;
    transform: rotate(70deg);
    animation: floatCapsule3 65s ease-in-out infinite;
}

.philosophy-capsule-4 {
    bottom: 25%;
    right: 15%;
    opacity: 0.13;
    transform: rotate(-120deg);
    animation: floatCapsule4 75s ease-in-out infinite;
}

.philosophy-capsule-5 {
    top: 50%;
    left: 3%;
    opacity: 0.09;
    transform: rotate(150deg);
    animation: floatCapsule5 68s ease-in-out infinite;
}

.philosophy-capsule-6 {
    top: 45%;
    right: 5%;
    opacity: 0.12;
    transform: rotate(-30deg);
    animation: floatCapsule6 72s ease-in-out infinite;
}

/* Анимации для капсул - медленное хаотичное движение с изменением размера */
@keyframes floatCapsule1 {
    0% {
        transform: translate(0, 0) rotate(25deg) scale(0.8);
    }
    20% {
        transform: translate(40px, -60px) rotate(70deg) scale(1.1);
    }
    40% {
        transform: translate(-50px, 70px) rotate(115deg) scale(0.7);
    }
    60% {
        transform: translate(60px, 30px) rotate(160deg) scale(1.0);
    }
    80% {
        transform: translate(-30px, -40px) rotate(205deg) scale(0.9);
    }
    100% {
        transform: translate(0, 0) rotate(385deg) scale(0.8);
    }
}

@keyframes floatCapsule2 {
    0% {
        transform: translate(0, 0) rotate(-45deg) scale(1.0);
    }
    25% {
        transform: translate(-70px, 50px) rotate(-105deg) scale(0.75);
    }
    50% {
        transform: translate(55px, -45px) rotate(-165deg) scale(1.2);
    }
    75% {
        transform: translate(-40px, -60px) rotate(-225deg) scale(0.85);
    }
    100% {
        transform: translate(0, 0) rotate(-405deg) scale(1.0);
    }
}

@keyframes floatCapsule3 {
    0% {
        transform: translate(0, 0) rotate(70deg) scale(0.9);
    }
    30% {
        transform: translate(50px, 80px) rotate(160deg) scale(1.15);
    }
    50% {
        transform: translate(-65px, -55px) rotate(250deg) scale(0.7);
    }
    70% {
        transform: translate(45px, -35px) rotate(340deg) scale(1.05);
    }
    100% {
        transform: translate(0, 0) rotate(430deg) scale(0.9);
    }
}

@keyframes floatCapsule4 {
    0% {
        transform: translate(0, 0) rotate(-120deg) scale(1.1);
    }
    15% {
        transform: translate(-55px, 40px) rotate(-165deg) scale(0.8);
    }
    35% {
        transform: translate(70px, -50px) rotate(-210deg) scale(1.25);
    }
    55% {
        transform: translate(-35px, 65px) rotate(-255deg) scale(0.9);
    }
    75% {
        transform: translate(50px, 30px) rotate(-345deg) scale(1.1);
    }
    100% {
        transform: translate(0, 0) rotate(-480deg) scale(1.1);
    }
}

@keyframes floatCapsule5 {
    0% {
        transform: translate(0, 0) rotate(150deg) scale(0.85);
    }
    22% {
        transform: translate(35px, -70px) rotate(222deg) scale(1.2);
    }
    44% {
        transform: translate(-60px, 45px) rotate(294deg) scale(0.75);
    }
    66% {
        transform: translate(55px, 50px) rotate(366deg) scale(1.0);
    }
    88% {
        transform: translate(-40px, -35px) rotate(438deg) scale(0.95);
    }
    100% {
        transform: translate(0, 0) rotate(510deg) scale(0.85);
    }
}

@keyframes floatCapsule6 {
    0% {
        transform: translate(0, 0) rotate(-30deg) scale(1.05);
    }
    18% {
        transform: translate(-45px, 55px) rotate(-84deg) scale(0.8);
    }
    36% {
        transform: translate(65px, -40px) rotate(-138deg) scale(1.3);
    }
    54% {
        transform: translate(-50px, -65px) rotate(-192deg) scale(0.85);
    }
    72% {
        transform: translate(40px, 35px) rotate(-246deg) scale(1.1);
    }
    90% {
        transform: translate(-30px, 25px) rotate(-300deg) scale(0.9);
    }
    100% {
        transform: translate(0, 0) rotate(-390deg) scale(1.05);
    }
}

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

.footer {
    background: linear-gradient(135deg, #2A3F38 0%, #1A5F4A 50%, #2A3F38 100%);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.footer-logo .logo-text {
    color: var(--white);
}

.footer-logo .pill-icon rect {
    fill: var(--white);
    stroke: var(--white);
}

.footer-text {
    font-size: 16px;
    font-weight: 700;
    opacity: 0.8;
}

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

@media (max-width: 1024px) {
    .title-main {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .market-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .method-item {
        padding: 20px;
    }
    
    .system-components {
        grid-template-columns: 1fr;
    }
    
    .system-schema-title {
        font-size: 32px;
        margin-bottom: 60px;
    }
    
    .schema-container {
        min-height: 500px;
    }
    
    .schema-item-content {
        min-width: 180px;
        max-width: 240px;
        padding: 20px 25px;
    }
    
    .schema-item-title {
        font-size: 20px;
    }
    
    .center-hub {
        width: 80px;
        height: 80px;
    }
    
    .schema-item-right-top,
    .schema-item-right-bottom {
        right: -20px;
    }
    
    .community-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .transparency-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(240, 244, 242, 0.98) 0%, rgba(232, 237, 234, 0.98) 100%);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 40px rgba(26, 95, 74, 0.15);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .title-main {
        font-size: 36px;
    }
    
    .title-subtitle {
        font-size: 16px;
    }
    
    .hero-heading {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-liposome-1 {
        width: 200px;
        height: 200px;
        top: 10%;
        right: 5%;
        opacity: 0.1;
    }
    
    .hero-liposome-2 {
        width: 150px;
        height: 150px;
        bottom: 15%;
        left: 5%;
        opacity: 0.1;
    }
    
    .hero-liposoma-img-1,
    .hero-liposoma-img-2,
    .hero-liposoma-img-3 {
        width: 200px !important;
        height: 200px !important;
        opacity: 0.05;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-card {
        padding: 30px 20px;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
    }
    
    .method-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .method-icon {
        margin: 0 auto;
    }
    
    .community-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .system-schema-title {
        font-size: 28px;
        margin-bottom: 50px;
    }
    
    .schema-container {
        min-height: auto;
        position: relative;
        display: flex;
        flex-direction: column;
        padding: 20px 0;
    }
    
    .schema-item {
        position: relative;
        margin-bottom: 30px;
        width: 100%;
        cursor: default;
    }
    
    .schema-item-left,
    .schema-item-top,
    .schema-item-bottom,
    .schema-item-right {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        transform: none;
        margin: 0 0 30px 0;
        width: 100%;
    }
    
    .schema-item:hover {
        transform: none !important;
    }
    
    .schema-item-content {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
    }
    
    /* Всегда показываем детали на мобильных */
    .schema-item-details {
        max-height: none !important;
        opacity: 1 !important;
        margin-top: 20px !important;
        overflow: visible;
    }
    
    /* Отключаем hover эффекты на мобильных */
    .schema-item:hover .schema-item-details {
        max-height: none !important;
        opacity: 1 !important;
        margin-top: 20px !important;
    }
    
    .schema-item-left:hover .schema-item-content,
    .schema-item-right:hover .schema-item-content {
        margin-top: 0 !important;
    }
    
    .schema-item:hover .schema-item-content {
        box-shadow: 0 6px 25px rgba(15, 74, 58, 0.15) !important;
        border-color: rgba(15, 74, 58, 0.1) !important;
    }
    
    .schema-item:hover .schema-item-image img {
        transform: none !important;
    }
    
    .schema-item:hover .schema-item-title {
        color: var(--heading-color) !important;
    }
    
    .schema-connections {
        display: none;
    }
    
    .center-hub {
        display: none;
    }
    
    .schema-center {
        display: none;
    }
    
    .philosophy-quote {
        font-size: 18px;
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .title-main {
        font-size: 28px;
    }
    
    .hero-heading {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .hero-liposome-1 {
        width: 150px;
        height: 150px;
        opacity: 0.08;
    }
    
    .hero-liposome-2 {
        width: 120px;
        height: 120px;
        opacity: 0.08;
    }
    
    .hero-liposoma-img-1,
    .hero-liposoma-img-2,
    .hero-liposoma-img-3 {
        width: 150px !important;
        height: 150px !important;
        opacity: 0.04;
    }
    
    .community-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-primary {
        padding: 15px 30px;
        font-size: 14px;
    }
}

/* ============================================
   Модальное окно для запроса приглашения
   ============================================ */

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--accent-color);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
}

.modal-close:hover {
    background: var(--light-gray);
    transform: rotate(90deg);
}

.modal-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 30px;
    text-align: center;
}

.invite-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-color);
}

.required {
    color: var(--accent-coral);
}

.form-input {
    padding: 12px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--font-family);
    font-weight: 400;
    color: var(--text-color);
    background: var(--white);
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(26, 95, 74, 0.1);
}

.form-input.error {
    border-color: var(--accent-coral);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}

.form-checkbox {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--accent-color);
}

.checkbox-text {
    color: var(--text-color);
    font-weight: 400;
    flex: 1;
}

.form-link {
    color: var(--accent-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.form-link:hover {
    color: var(--accent-teal);
}

.error-message {
    color: var(--accent-coral);
    font-size: 12px;
    font-weight: 400;
    min-height: 18px;
    display: block;
}

.btn-submit {
    margin-top: 10px;
    width: 100%;
}

/* Адаптивность для модального окна */
@media (max-width: 768px) {
    .modal-content {
        padding: 30px 20px;
        max-width: 100%;
    }
    
    .modal-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .invite-form {
        gap: 20px;
    }
}

