/* Стили для лендинга нейрокомментинга */

/* Основные стили */
.neuro-landing {
    font-family: 'Inter', sans-serif;
    background-color: #121212;
    color: #ffffff;
    line-height: 1.6;
}

.neuro-header {
    background-color: #121212;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    padding: 15px 0;
    margin-bottom: 0;
}

.neuro-header h1 {
    color: #ffffff;
}

.neuro-header nav ul li a {
    color: #ffffff;
}

.neuro-header nav ul li a:hover {
    color: #ff3333;
}

.neuro-header nav ul li a.active-admin {
    background-color: #ff3333;
    color: white;
}

/* Общие стили для секций - убираем общий padding */
section h2 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 40px;
    font-size: 2.2rem;
}

section h3 {
    color: #ff3333;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

/* Блок 1: Хедлайн (геро-блок) */
.hero-neuro {
    text-align: center;
    padding: 40px 0;
    background-color: #1a1a1a;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 0;
    position: relative;
}

.red-marker {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero-neuro h2 {
    font-size: 2.7rem; /* Уменьшено с 3rem до 2.5rem */
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

.hero-neuro .subtitle {
    font-size: 1.5rem;
    color: #cccccc;
    margin-bottom: 15px;
}

.hero-neuro p {
    font-size: 1.2rem;
    color: #aaaaaa;
    margin-bottom: 20px;
}

.offer-box {
    max-width: 600px;
    margin: 40px auto;
    background-color: #222222;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.offer-intro {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.offer-list {
    list-style: none;
    margin-bottom: 25px;
    text-align: left;
}

.offer-list li {
    margin-bottom: 10px;
    padding-left: 5px;
    position: relative;
}

.offer-outro {
    margin: 20px 0;
    font-weight: 500;
}

.locked-access {
    background-color: #222222;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.locked-access p {
    font-weight: 600;
    margin-bottom: 15px;
}

.price-box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    gap: 20px;
}

.old-price {
    font-size: 1.8rem;
    color: #888888;
    text-decoration: line-through;
}

.discount {
    background-color: #ff3333;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
}

.new-price {
    font-size: 2.5rem;
    color: #ff3333;
    font-weight: bold;
}

.btn-neuro {
    display: inline-block;
    background-color: #ff3333;
    color: white;
    font-size: 1.2rem;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-neuro:hover {
    background-color: #e62e2e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 51, 51, 0.4);
    text-decoration: none;
    color: white;
}

.btn-large {
    font-size: 1.4rem;
    padding: 18px 36px;
}

/* Блок 2: Что ты получаешь */
.whats-inside {
    background-color: #1A1A1A;
    padding: 40px 0;
}

.inside-grid {
    display: flex;
    justify-content: center;
    gap: 20px; /* Минимальный промежуток */
    flex-wrap: wrap;
    max-width: 1050px;
    margin: 0 auto;
}

.inside-item {
    background-color: #222222;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    flex: 1;
    min-width: 500px;
    max-width: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.inside-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 51, 51, 0.3);
    background-color: #2a2a2a;
}

.inside-item h3 {
    text-align: center; /* Центрируем заголовки */
}

.inside-item p {
    margin-bottom: 20px;
    text-align: center; /* Центрируем описание */
}

.inside-item ul {
    list-style: none;
    text-align: center; /* Центрируем список */
}

.inside-item ul li {
    margin-bottom: 10px;
    padding-left: 0; /* Убираем отступ слева */
    position: relative;
    text-align: center; /* Центрируем элементы списка */
}

.inside-item ul li:before {
    content: '✓';
    color: #ff3333;
    position: static; /* Меняем позиционирование галочки */
    margin-right: 8px; /* Добавляем отступ справа от галочки */
}

/* Блок 3: Кому подойдёт */
.for-whom {
    background-color: #1A1A1A;
    padding: 30px 0;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.audience-item {
    text-align: center;
    padding: 20px;
    background-color: #222222;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.audience-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 51, 51, 0.3);
    background-color: #2a2a2a;
}

.emoji {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.emoji-inline {
    font-size: 1.5rem;
    margin-right: 5px;
    display: inline;
}

/* Блок 4: Почему сейчас */
.why-now {
    background-color: #121212;
    text-align: center;
    padding: 140px 0;
}

.reasons-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.reason-item {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    min-width: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.reason-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 51, 51, 0.3);
    background-color: #222222;
}

.promo-price {
    margin: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.new-price-big {
    font-size: 4rem;
    color: #ff3333;
    font-weight: bold;
}

/* Блок 5: Что такое нейрокомментинг */
.what-is {
    background-color: #121212;
    text-align: center;
    padding: 100px 0;
}

.definition {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.3rem;
    line-height: 1.6;
}

.how-it-works {
    display: flex; /* Меняем с grid на flex */
    justify-content: center; /* Центрируем содержимое */
    align-items: center; /* Выравниваем по вертикали */
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

/* Убираем специальный стиль для кнопки, так как он больше не нужен */
/* .how-it-works .btn-neuro {
    display: inline-block;
    width: auto;
    max-width: fit-content;
} */

.step-item {
    background-color: #222222;
    padding: 20px 5px;
    border-radius: 10px;
    text-align: center;
    max-width: 900px; /* Добавляем ограничение ширины */
    margin: 0 auto; /* Центрируем блок */
}

.step-number {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

/* Блок 6: Преимущества */
.advantages {
    background-color: #121212;
    padding: 70px 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.advantage-item {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
    background-color: #222;
}

/* Блок 7: Курс */
.course {
    background-color: #1a1a1a;
    padding: 80px 0;
}

.lessons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.lesson-item {
    background-color: #222222;
    padding: 15px 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.lesson-item:hover {
    transform: translateY(-3px);
    background-color: #2a2a2a;
}

.bonuses {
    background-color: #222222;
    padding: 30px;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
}

.bonuses h3 {
    text-align: center;
}

.bonuses ul {
    list-style: none;
    margin-bottom: 20px;
}

.bonuses ul li {
    margin-bottom: 10px;
}

.bonuses p {
    font-weight: 500;
    text-align: center;
}

/* Блок 8: Автор */
.author {
    background-color: #121212;
    text-align: center;
    padding: 70px 0;
}

.author-quote {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.8rem;
    line-height: 1.5;
    color: #ffffff;
    border-left: 5px solid #ff3333;
    padding-left: 30px;
    text-align: left;
}

.author-quote p {
    margin-bottom: 15px;
}

/* Блок 9: Видеообзор */
.video-review {
    background-color: #1a1a1a;
    text-align: center;
    padding: 70px 0;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-placeholder {
    background-color: #222;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-top: 20px;
}

.video-placeholder span {
    font-size: 1.5rem;
    color: #666;
}

/* Блок 10: Купить */
.buy-now {
    background-color: #121212;
    text-align: center;
    padding: 80px 0;
}

.centered-promo {
    text-align: center;
    margin: 20px 0;
}

.centered-promo p {
    margin: 10px 0;
    font-size: 1.2rem;
    color: #ffffff;
}

.best-offer {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.locked-access h4 {
    color: #ffffff;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.cta-text {
    margin-top: 20px;
    font-size: 1.2rem;
    color: #ff3333;
    font-weight: bold;
}

/* Универсальные классы для центрирования */
.text-center {
    text-align: center !important;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.locked-access {
    text-align: center;
}

.inside-item {
    text-align: center;
}

.audience-item {
    text-align: center;
    padding: 20px;
    background-color: #222222;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.audience-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 51, 51, 0.3);
    background-color: #2a2a2a;
}

.reason-item {
    text-align: center;
}