/* Нейрожизнь: Мир новых возможностей - Самостоятельная версия */
/* Импорт шрифтов */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Сброс стилей */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
}

/* Main Container */
.neuro-container {
    max-width: 100%;
    margin: 0 auto;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
}

/* Hero Section */
.neuro-hero {
    background-image: url('../images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.neuro-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(26, 26, 46, 0.7) 50%, rgba(22, 33, 62, 0.8) 100%);
    z-index: 1;
}

.neuro-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.neuro-hero-title {
    font-size: 3.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #64b5f6 0%, #42a5f5 25%, #2196f3 50%, #1976d2 75%, #0d47a1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(33, 150, 243, 0.3);
    animation: neuro-glow 2s ease-in-out infinite alternate;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.neuro-hero-subtitle {
    font-size: 2rem;
    color: #b0bec5;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Main Content */
.neuro-main-content {
    padding: 80px 0;
    background: transparent;
}

/* Заголовки */
.neuro-content-card h1,
.neuro-content-card h2,
.neuro-content-card h3,
.neuro-content-card h4,
.neuro-examples-section h1,
.neuro-examples-section h2,
.neuro-examples-section h3,
.neuro-examples-section h4,
.neuro-faq-section h1,
.neuro-faq-section h2,
.neuro-faq-section h3,
.neuro-faq-section h4 {
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.neuro-content-card h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #64b5f6;
    text-align: center;
    margin-bottom: 1.5rem;
}

.neuro-content-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #64b5f6;
    margin-bottom: 1rem;
}

.neuro-content-card h4 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Параграфы */
.neuro-content-card p,
.neuro-examples-section p,
.neuro-faq-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
}

/* Списки */
.neuro-content-card ul,
.neuro-content-card ol,
.neuro-examples-section ul,
.neuro-examples-section ol {
    margin: 0 0 1.5rem 0;
    padding-left: 1.5rem;
}

.neuro-content-card li,
.neuro-examples-section li {
    font-size: 1.1rem;
    margin: 0 0 0.8rem 0;
    list-style-type: disc;
    display: list-item;
    color: #e0e0e0;
    line-height: 1.6;
}

/* Content Cards */
.neuro-content-card {
    max-width: 1000px;
    margin: 0 auto 60px auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.neuro-content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(100, 181, 246, 0.3);
}

/* Examples Section */
.neuro-examples-section {
    max-width: 1000px;
    margin: 0 auto 60px auto;
}

.neuro-examples-title {
    background: rgba(76, 175, 80, 0.1);
    border: 2px solid #4caf50;
    border-radius: 15px;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 600;
    color: #4caf50;
    margin-bottom: 0;
    user-select: none;
}

.neuro-examples-title:hover {
    background: rgba(76, 175, 80, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.neuro-toggle-icon {
    float: right;
    transition: transform 0.3s ease;
    font-size: 1.8rem;
}

/* Блок примеров - простое решение */
.neuro-examples-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 0 0 15px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
    padding: 30px;
    display: none;
}

.neuro-examples-content.neuro-expanded {
    display: block;
}

.neuro-example-item {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border-left: 4px solid #4caf50;
    transition: all 0.3s ease;
}

.neuro-example-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.neuro-example-item:last-child {
    margin-bottom: 0;
}

.neuro-example-item p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e0e0;
}

/* Программа интенсива */
.neuro-program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.neuro-program-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    list-style: none;
}

.neuro-program-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(100, 181, 246, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.neuro-program-item p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #e0e0e0;
}

/* Pricing Options */
.neuro-pricing-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.neuro-pricing-option {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.neuro-pricing-option:hover {
    transform: translateY(-10px);
    border-color: rgba(100, 181, 246, 0.5);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.neuro-pricing-option h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #64b5f6;
    margin-bottom: 15px;
}

.neuro-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4caf50;
    margin: 20px 0;
    text-shadow: 0 0 20px rgba(76, 175, 80, 0.3);
}

.neuro-pricing-option p {
    font-size: 1rem;
    color: #b0bec5;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Order Buttons */
.neuro-order-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    min-width: 200px;
}

.neuro-order-btn-live {
    background: linear-gradient(135deg, #4caf50, #45a049);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.neuro-order-btn-live:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
    background: linear-gradient(135deg, #45a049, #4caf50);
}

.neuro-order-btn-record {
    background: linear-gradient(135deg, #2196f3, #1976d2);
    color: white;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.neuro-order-btn-record:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.4);
    background: linear-gradient(135deg, #1976d2, #2196f3);
}

/* FAQ Section */
.neuro-faq-section {
    max-width: 1000px;
    margin: 0 auto 60px auto;
}

.neuro-faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.neuro-faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(100, 181, 246, 0.3);
}

.neuro-faq-item h4 {
    color: #64b5f6;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.neuro-faq-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin: 0;
}

/* Footer Styles */
.neuro-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 60px 0 40px 0;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.neuro-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.neuro-footer-section h4 {
    color: #64b5f6;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.neuro-footer-section p {
    color: #b0bec5;
    font-size: 1.3rem;
    margin-bottom: 8px;
    line-height: 1.5;
}

.neuro-footer-section a {
    color: #64b5f6;
    text-decoration: none;
    font-size: 1.3rem;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.neuro-footer-section a:hover {
    color: #42a5f5;
    text-decoration: underline;
}

/* Animations */
@keyframes neuro-glow {
    from {
        text-shadow: 0 0 20px rgba(33, 150, 243, 0.3);
    }
    to {
        text-shadow: 0 0 30px rgba(33, 150, 243, 0.6);
    }
}

/* Мобильная версия */
@media (max-width: 768px) {
    .neuro-hero-title {
        font-size: 2.2rem;
    }
    
    .neuro-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .neuro-content-card h2 {
        font-size: 2rem;
    }
    
    .neuro-content-card h3 {
        font-size: 1.6rem;
    }
    
    .neuro-content-card h4 {
        font-size: 1.3rem;
    }
    
    .neuro-content-card p,
    .neuro-examples-section p,
    .neuro-faq-section p {
        font-size: 1.1rem;
    }
    
    .neuro-content-card li,
    .neuro-examples-section li {
        font-size: 1rem;
    }
    
    .neuro-examples-title {
        font-size: 1.5rem;
    }
    
    .neuro-toggle-icon {
        font-size: 1.2rem;
    }
    
    .neuro-example-item p {
        font-size: 1rem;
    }
    
    .neuro-program-item p {
        font-size: 0.95rem;
    }
    
    .neuro-pricing-option h4 {
        font-size: 1.4rem;
    }
    
    .neuro-price {
        font-size: 2.5rem;
    }
    
    .neuro-pricing-option p {
        font-size: 1rem;
    }
    
    .neuro-order-btn {
        font-size: 1.1rem;
    }
    
    .neuro-faq-item h4 {
        font-size: 1.2rem;
    }
    
    .neuro-faq-item p {
        font-size: 1rem;
    }
    
    .neuro-footer-section h4 {
        font-size: 1.1rem;
    }
    
    .neuro-footer-section p,
    .neuro-footer-section a {
        font-size: 0.9rem;
    }
    
    .neuro-content-card {
        margin: 0 20px 40px 20px;
        padding: 25px;
    }
    
    .neuro-examples-section {
        margin: 0 20px 40px 20px;
    }
    
    .neuro-faq-section {
        margin: 0 20px 40px 20px;
    }
    
    .neuro-program-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .neuro-pricing-options {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 0 20px;
    }
    
    .neuro-footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .neuro-footer {
        padding: 40px 0 30px 0;
    }
}


/* Footer */
.neuro-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 40px 0;
    margin-top: 60px;
    border-top: 1px solid #333;
}

.neuro-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.neuro-footer-info {
    margin-bottom: 30px;
}

.neuro-footer-info p {
    font-size: 0.9rem;
    color: #b0bec5;
    margin: 5px 0;
}

.neuro-footer-info a {
    color: #64b5f6;
    text-decoration: none;
}

.neuro-footer-info a:hover {
    text-decoration: underline;
}

.neuro-footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.neuro-footer-links a {
    color: #64b5f6;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.neuro-footer-links a:hover {
    color: #90caf9;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .neuro-footer {
        padding: 30px 0;
    }
    
    .neuro-footer-info p,
    .neuro-footer-links a {
        font-size: 0.8rem;
    }
}


/* Медиа-запрос для десктопной версии */
@media (min-width: 1200px) {
    .neuro-hero-title {
        font-size: 3.5rem;
        line-height: 1.2;
        max-width: 80%;
    }
}

/* Медиа-запрос для больших экранов */
@media (min-width: 1600px) {
    .neuro-hero-title {
        font-size: 4rem;
        max-width: 70%;
    }
}


/* Стрелка для скролла вниз */
.neuro-scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(33, 150, 243, 0.7);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 0 20px rgba(33, 150, 243, 0.4);
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.neuro-scroll-down:hover {
    background-color: rgba(33, 150, 243, 0.9);
    transform: translateX(-50%) scale(1.1);
}

.neuro-scroll-down svg {
    width: 20px;
    height: 20px;
    fill: white;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Позиционирование стрелки для мобильных устройств */
@media (max-width: 768px) {
    .neuro-scroll-down {
        bottom: 20px;
        width: 60px;
        height: 60px;
        z-index: 100;
    }
    
    .neuro-scroll-down svg {
        width: 30px;
        height: 30px;
    }
    
    .neuro-hero {
        min-height: 90vh;
    }
}

