﻿/* Базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, sans-serif;
} 

body {
    background: #f8f9ff;
    color: #2d3436;
    line-height: 1.6;
}

/* Адаптивность */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Кастомные стили дополняющие Bootstrap */
.hero-section {
    background: #f8f9ff;
    padding: 6rem 0;
}

.ai-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid;
}

    .ai-card.prompt {
        border-color: #6c5ce7;
    }

    .ai-card.response {
        border-color: #00b894;
    }

.connector {
    height: 2px;
    background: #6c5ce7;
    opacity: 0.5;
    margin: 2rem 0;
}

.features-section {
    padding: 1rem 0;
    background: white;
}

.purpose-section {
    padding: 0rem 0;
    background: white;
} 

.add1-section {
    padding: 1rem 0;
    background: white;
}

.feature-icon {
    font-size: 2.5rem;
    color: #6c5ce7;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
    }

    .hero-demo {
        margin-top: 2rem; 
    }
}

.ai-networks-section {
    padding: 6rem 5%;
    background: #f8f9ff;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2d3436;
}
 
.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #636e72;
    margin-bottom: 1.5rem;
}

.networks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.network-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 4px solid #6c5ce7;
}

    .network-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(108,92,231,0.15);
    }

.network-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .network-icon svg {
        width: 100%;
        height: 100%;
        filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
    }

.network-card h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2d3436;
}

.network-features {
    list-style: none;
    padding: 0;
}

    .network-features li {
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        position: relative;
        padding-left: 1.5rem;
        color: #636e72;
    }

        .network-features li:before {
            content: "";
            position: absolute;
            left: 0;
            top: 1.2rem;
            width: 6px;
            height: 6px;
            background: #6c5ce7;
            border-radius: 50%;
        }

        .network-features li:last-child {
            border-bottom: none;
        }

@media (max-width: 768px) {
    .networks-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }
}
 

.psychologists-section {
    background: #f8f9fa;
}
 
.feature-card {
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

    .feature-card:hover {
        transform: scale(1.01);
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        border-color: #dee2e6;
        z-index: 10;
    }

.icon-wrapper {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon {
    transition: transform 0.3s ease;
}


.text-purple {
    color: #6f42c1;
}

.text-info {
    color: #0dcaf0;
}



.coaches-section {
    background: #f8f9fa;
}

.feature-card {
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

    .feature-card:hover {
        transform: scale(1.03);
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        border-color: #dee2e6;
        z-index: 10;
    }

.icon-wrapper {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon {
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.text-success {
    color: #198754;
}

.text-title {
    color: #6f42c1;
}
  
.text-primary {
    color: #0d6efd;
}

.text-warning {
    color: #ffc107;
}

.text-info {
    color: #0dcaf0;
}

.text-purple {
    color: #6f42c1; 
}