:root {
    --primary-color: #4A90A4;
    --secondary-color: #87CEEB;
    --accent-color: #6B9080;
    --text-light: #7F8C8D;
}

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

#stop-ataka-wrapper { font-family: 'Inter', sans-serif; color: #34495E; line-height: 1.7; }
#stop-ataka-wrapper h1, #stop-ataka-wrapper h2, #stop-ataka-wrapper h3 { font-family: 'Playfair Display', serif; color: #2C3E50; font-weight: 600; }

.btn-primary-custom { background: linear-gradient(135deg, #4A90A4, #6B9080); border: none; padding: 16px 40px; font-size: 18px; font-weight: 600; border-radius: 50px; color: white; transition: all 0.3s; box-shadow: 0 4px 15px rgba(74, 144, 164, 0.3); text-decoration: none; display: inline-block; cursor: pointer; }
.btn-primary-custom:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(74, 144, 164, 0.4); color: white; }
.btn-warning-custom { background: linear-gradient(135deg, #F39C12, #E67E22); border: none; padding: 16px 40px; font-size: 18px; font-weight: 600; border-radius: 50px; color: white; transition: all 0.3s; box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3); text-decoration: none; display: inline-block; cursor: pointer; }
.btn-warning-custom:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(243, 156, 18, 0.4); color: white; }

.top-header { background: white; padding: 15px 0; box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: fixed; top: 0; left: 0; right: 0; z-index: 1000; }
body { margin-top: 90px; }
.header-wrapper { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.header-nav-section { display: flex; align-items: center; gap: 25px; flex-grow: 1; justify-content: center; }
.logo { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: #4A90A4; text-decoration: none; display: flex; align-items: center; gap: 10px; white-space: nowrap; }
.main-nav { display: flex; align-items: center; gap: 12px; list-style: none; margin: 0; padding: 0; flex-wrap: nowrap; }
.main-nav li a { color: #34495E; text-decoration: none; font-weight: 500; font-size: 14px; padding: 10px 18px; border-radius: 25px; background: rgba(74, 144, 164, 0.08); border: 1px solid rgba(74, 144, 164, 0.15); display: inline-block; white-space: nowrap; transition: all 0.3s; }
.main-nav li a:hover { color: #4A90A4; background: rgba(74, 144, 164, 0.15); border-color: rgba(74, 144, 164, 0.3); }
.btn-free { background: linear-gradient(135deg, #52B788, #40916C); color: white; border: none; padding: 12px 28px; }
.btn-free:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(82, 183, 136, 0.4); color: white; }
.mobile-menu-toggle { display: none; background: none; border: none; font-size: 28px; color: #4A90A4; cursor: pointer; }

.hero-section { background: linear-gradient(135deg, rgba(74, 144, 164, 0.05), rgba(107, 144, 128, 0.05)); padding: 100px 0 80px; position: relative; }
.urgent-badge { background: linear-gradient(135deg, #E74C3C, #C0392B); color: white; padding: 12px 30px; border-radius: 50px; font-size: 16px; font-weight: 600; display: inline-block; margin-bottom: 25px; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
.hero-section h1 { font-size: 52px; line-height: 1.2; margin-bottom: 25px; }
.hero-section .lead { font-size: 20px; color: var(--text-light); margin-bottom: 35px; }
.hero-image { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.hero-image img { width: 100%; height: auto; display: block; }
.fade-in-up { animation: fadeInUp 0.8s ease-out; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.help-section { padding: 80px 0; background: white; }
.help-header { background: linear-gradient(135deg, #4A90A4, #6B9080); color: white; padding: 40px; border-radius: 25px; text-align: center; margin-bottom: 50px; }
.help-list { list-style: none; padding: 0; }
.help-list li { background: #F8FAFB; padding: 30px; border-radius: 15px; margin-bottom: 20px; border-left: 5px solid #4A90A4; font-size: 16px; line-height: 1.8; color: #34495E; }
.help-list i { margin-right: 10px; }

.problem-section { padding: 80px 0; background: #F8FAFB; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: 42px; margin-bottom: 20px; }
.symptom-card { background: white; border-radius: 20px; padding: 35px 30px; margin-bottom: 25px; border-left: 4px solid #4A90A4; transition: all 0.3s; }
.symptom-card:hover { transform: translateX(5px); box-shadow: 0 5px 20px rgba(0,0,0,0.08); }
.symptom-card i { font-size: 28px; color: #4A90A4; margin-bottom: 15px; }
.symptom-card p { color: var(--text-light); margin: 0; }

.ready-help-section { padding: 80px 0; background: white; }
.ready-help-box { background: linear-gradient(135deg, rgba(82, 183, 136, 0.1), rgba(64, 145, 108, 0.1)); border: 3px solid #52B788; border-radius: 25px; padding: 50px; text-align: center; }
.ready-help-box h2 { font-size: 42px; color: #52B788; margin-bottom: 25px; }

.about-section { padding: 80px 0; background: #F8FAFB; }
.about-image { border-radius: 20px; overflow: hidden; box-shadow: 0 15px 50px rgba(0,0,0,0.1); }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-content h2 { font-size: 38px; margin-bottom: 25px; }
.about-content h3 { font-size: 32px; margin-top: 40px; margin-bottom: 25px; color: #4A90A4; }
.about-content p { font-size: 17px; color: var(--text-light); margin-bottom: 20px; }
.credential-item { display: flex; align-items: start; margin-bottom: 18px; gap: 15px; }
.credential-item i { color: #52B788; font-size: 22px; margin-top: 3px; }

.process-section { padding: 80px 0; background: #F8FAFB; }
.process-step { position: relative; padding-left: 90px; margin-bottom: 50px; }
.step-number { position: absolute; left: 0; top: 0; width: 60px; height: 60px; background: linear-gradient(135deg, #4A90A4, #6B9080); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 24px; font-weight: 700; box-shadow: 0 5px 20px rgba(74, 144, 164, 0.3); }
.process-step h4 { font-size: 22px; margin-bottom: 12px; }
.process-step p { color: var(--text-light); font-size: 16px; }

.testimonials-section { padding: 80px 0; background: white; }
.video-testimonial-card { background: #F8FAFB; border-radius: 20px; padding: 20px; margin-bottom: 30px; transition: all 0.3s; }
.video-testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 15px; }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.video-title { margin-top: 15px; font-size: 18px; font-weight: 600; color: #2C3E50; text-align: center; }

.video-section { padding: 80px 0; background: linear-gradient(135deg, #4A90A4, #6B9080); color: white; text-align: center; }
.video-alert { background: rgba(255,255,255,0.2); border: 3px solid white; padding: 30px; border-radius: 20px; margin: 30px 0; font-size: 24px; font-weight: 700; animation: pulse 2s infinite; color: white; }
.main-video-wrapper { max-width: 800px; margin: 40px auto; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }

.who-help-section { padding: 80px 0; background: white; }
.cannot-help-box { background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(192, 57, 43, 0.1)); border: 3px solid #E74C3C; border-radius: 25px; padding: 40px; margin-bottom: 50px; }
.cannot-help-box h2 { color: #E74C3C; font-size: 36px; margin-bottom: 25px; }
.can-help-box { background: linear-gradient(135deg, rgba(82, 183, 136, 0.1), rgba(64, 145, 108, 0.1)); border: 3px solid #52B788; border-radius: 25px; padding: 40px; }
.can-help-box h2 { color: #52B788; font-size: 36px; margin-bottom: 25px; }
.can-help-list { list-style: none; padding: 0; }
.can-help-list li { display: flex; align-items: start; gap: 15px; margin-bottom: 20px; font-size: 17px; color: #34495E; }
.can-help-list i { color: #52B788; font-size: 24px; margin-top: 3px; }

.contact-section { padding: 80px 0; background: #F8FAFB; }
.contact-form { background: white; padding: 50px; border-radius: 25px; box-shadow: 0 15px 50px rgba(0,0,0,0.08); }
.contact-form h2 { font-size: 36px; margin-bottom: 15px; text-align: center; }
.contact-form > p { text-align: center; color: var(--text-light); font-size: 17px; margin-bottom: 40px; }
.form-label { color: #34495E; font-weight: 500; }
.form-control-custom { border: 2px solid #E8ECEF; border-radius: 12px; padding: 15px 20px; font-size: 16px; transition: all 0.3s; color: #34495E; }
.form-control-custom:focus { border-color: #4A90A4; box-shadow: 0 0 0 0.2rem rgba(74, 144, 164, 0.1); outline: none; }

.messenger-buttons { display: flex; gap: 15px; margin-bottom: 20px; flex-wrap: wrap; }
.messenger-btn { flex: 1; min-width: 150px; padding: 15px; border: 2px solid #E8ECEF; border-radius: 12px; background: white; cursor: pointer; transition: all 0.3s; display: flex; align-items: center; justify-content: center; gap: 10px; font-weight: 600; color: #34495E; }
.messenger-btn:hover { border-color: #4A90A4; background: #F8FAFB; }
.messenger-btn.active { border-color: #4A90A4; background: rgba(74, 144, 164, 0.1); }

.rating-buttons { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.rating-buttons input[type="radio"] { display: none; }
.rating-buttons label { width: 40px; height: 40px; border: 2px solid #E8ECEF; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s; font-weight: 600; color: #34495E; background: white; }
.rating-buttons input[type="radio"]:checked + label { background: linear-gradient(135deg, #4A90A4, #6B9080); color: white; border-color: #4A90A4; }
.rating-buttons label:hover { border-color: #4A90A4; }

.video-confirmation { background: rgba(243, 156, 18, 0.1); border: 2px solid #F39C12; padding: 20px; border-radius: 12px; margin-bottom: 20px; }

.footer { background: #2C3E50; color: rgba(255,255,255,0.8); padding: 50px 0 30px; }
.footer h5 { color: white; font-size: 20px; margin-bottom: 25px; }
.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: 12px; color: rgba(255,255,255,0.7); }
.footer ul li a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.3s; }
.footer ul li a:hover { color: white; }
.social-links { display: flex; gap: 15px; margin-top: 20px; }
.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; color: white; transition: all 0.3s; }
.social-links a:hover { background: #4A90A4; transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 40px; padding-top: 25px; text-align: center; color: rgba(255,255,255,0.6); }

.sa-footer-wrapper { font-family: 'Inter', sans-serif; }
.sa-footer-wrapper .container { max-width: 1140px; margin: 0 auto; padding: 0 15px; }
.sa-footer-wrapper .row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.sa-footer-wrapper .col-lg-4, .sa-footer-wrapper .col-lg-3, .sa-footer-wrapper .col-md-4 { padding: 0 15px; margin-bottom: 24px; }
.sa-footer-wrapper .col-lg-4 { flex: 0 0 33.333%; max-width: 33.333%; }
.sa-footer-wrapper .col-lg-3 { flex: 0 0 25%; max-width: 25%; }

@media (max-width: 1200px) { .main-nav li a { padding: 8px 12px; font-size: 12px; } }
@media (max-width: 992px) { .header-nav-section { display: none; position: absolute; top: 100%; left: 0; right: 0; background: white; flex-direction: column; padding: 20px; box-shadow: 0 5px 20px rgba(0,0,0,0.1); gap: 15px; z-index: 999; } .header-nav-section.active { display: flex; } .main-nav { flex-direction: column; width: 100%; gap: 10px; } .main-nav li { width: 100%; } .main-nav li a { width: 100%; text-align: center; padding: 12px 20px; } .mobile-menu-toggle { display: block; } body { margin-top: 75px; } }
@media (max-width: 768px) { .hero-section { padding: 60px 0 50px; } .hero-section h1 { font-size: 36px; } .section-title h2 { font-size: 32px; } .process-step { padding-left: 70px; } .step-number { width: 50px; height: 50px; font-size: 20px; } }

.text-center { text-align: center; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-lg-0 { margin-bottom: 0; }
.small { font-size: 0.85rem; }

/* Стили для кнопок */
.next-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    background-color: #8e0c4b;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.9);
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

.next-button:hover {
    background-color: #f19a29;
    transform: scale(1.05);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}

.next-button:focus {
    outline: 2px solid #f19a29;
}

.next-button:active {
    transform: scale(0.98);
}

.next-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.7;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fa-spin {
    animation: spin 1s linear infinite;
}

/* Кнопка выравнивания по центру */
.btn-container {
    text-align: center;
}

/* Отключение выделения текста */
body {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Отключение перетаскивания изображений */
img {
    pointer-events: none;
    -webkit-user-drag: none;
}

/* Form Styles */
.form-label { display: block; font-weight: 600; color: #2C3E50; margin-bottom: 8px; font-size: 14px; }

.form-control {
    display: block;
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    line-height: 1.5;
    color: #34495E;
    background-color: #fff;
    background-clip: padding-box;
    border: 2px solid #E8ECEF;
    border-radius: 8px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
    color: #34495E;
    background-color: #fff;
    border-color: #4A90A4;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(74, 144, 164, 0.15);
}

.form-select {
    display: block;
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    line-height: 1.5;
    color: #34495E;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 12px;
    border: 2px solid #E8ECEF;
    border-radius: 8px;
    appearance: none;
    padding-right: 40px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-select:focus {
    border-color: #4A90A4;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(74, 144, 164, 0.15);
}

.form-check {
    display: block;
    padding-left: 0;
    margin-bottom: 0.5rem;
}

.form-check-input {
    float: left;
    margin-left: 0;
    margin-right: 8px;
    width: 18px;
    height: 18px;
    border: 2px solid #E8ECEF;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
    accent-color: #4A90A4;
}

.form-check-input:checked {
    background-color: #4A90A4;
    border-color: #4A90A4;
}

.form-check-label {
    margin-bottom: 0;
    font-size: 14px;
    color: #34495E;
    cursor: pointer;
}

.d-inline-block {
    display: inline-block;
}

.form-check-label a {
    color: #4A90A4;
    text-decoration: underline;
}
