/* ==================================================
   ОСНОВНЫЕ СТИЛИ ДЛЯ ВСЕХ СТРАНИЦ
   style.css — главный файл стилей
   ================================================== */

/* ---------- Базовые сбросы ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f0f4f8;
    color: #1a2a3a;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- Цветовая схема (переменные) ---------- */
:root {
    --bg-light: #f0f4f8;
    --text-dark: #1a2a3a;
    --gradient-start: #2a7de1;
    --gradient-end: #6c5ce7;
    --gold: #f5a623;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --radius: 20px;
    --transition: 0.3s ease;
}

/* ---------- Кнопки ---------- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: #fff;
    box-shadow: 0 4px 15px rgba(42, 125, 225, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(42, 125, 225, 0.4);
}

.btn-secondary {
    background: var(--gold);
    color: #fff;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gradient-start);
    color: var(--gradient-start);
}

.btn-outline:hover {
    background: var(--gradient-start);
    color: #fff;
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

/* ---------- Пульсация для главной кнопки ---------- */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* ---------- Анимация появления (reveal) ---------- */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Шапка (header) ---------- */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 12px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 28px;
}
.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    transition: color var(--transition);
}
.nav-link:hover {
    color: var(--gradient-start);
}

.btn-nav {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
}
.btn-nav:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(42, 125, 225, 0.3);
}

/* Бургер-меню (мобильные) */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.burger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all var(--transition);
}

/* ---------- Герой (Hero) ---------- */
.hero {
    padding: 60px 0 80px;
    background: var(--white);
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(42, 125, 225, 0.1);
    color: var(--gradient-start);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 16px;
    color: #4a5a6a;
    margin-bottom: 28px;
    max-width: 600px;
}

.hero-footnote {
    font-size: 14px;
    color: #7a8a9a;
    margin-top: 16px;
}

/* Фото эксперта */
.hero-image-wrapper {
    flex: 0 0 380px;
}

.hero-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #e8ecf0;
    aspect-ratio: 3/4;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d0d8e0, #b0b8c0);
    color: #6a7a8a;
    font-size: 18px;
}

.badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255,255,255,0.95);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* ---------- Секции общие ---------- */
.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

/* ---------- Обо мне (About) ---------- */
.about {
    padding: 80px 0;
    background: var(--bg-light);
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.about-card {
    background: var(--white);
    padding: 30px 24px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all var(--transition);
    cursor: pointer;
    position: relative;
    text-align: center;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.about-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.about-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.about-card p {
    font-size: 15px;
    color: #4a5a6a;
}

.click-hint {
    margin-top: 12px;
    font-size: 13px;
    color: #9aaaba;
}

.about-quote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-quote blockquote {
    font-size: 20px;
    font-style: italic;
    color: var(--text-dark);
}

.about-quote cite {
    display: block;
    margin-top: 16px;
    font-style: normal;
    font-weight: 600;
    color: var(--gradient-start);
}

/* ---------- Документы (Docs) ---------- */
.docs {
    padding: 80px 0;
    background: var(--white);
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.doc-card {
    background: var(--bg-light);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.doc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.doc-image {
    aspect-ratio: 4/3;
    background: #d0d8e0;
    overflow: hidden;
}

.doc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doc-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #6a7a8a;
    font-size: 16px;
}

.doc-caption {
    padding: 16px 20px;
    font-weight: 600;
    text-align: center;
}

/* ---------- Социальные сети (Social) ---------- */
.social {
    padding: 80px 0;
    background: var(--bg-light);
}

.social-subtitle {
    text-align: center;
    font-size: 18px;
    color: #4a5a6a;
    margin-bottom: 32px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    color: #fff;
    transition: all var(--transition);
}
.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.social-btn i {
    font-size: 20px;
}

.telegram { background: #0088cc; }
.vk { background: #4a76a8; }
.instagram { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); }
.youtube { background: #ff0000; }

/* ---------- Подвал (Footer) ---------- */
.footer {
    padding: 30px 0;
    background: var(--text-dark);
    color: #aabaca;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-admin {
    color: var(--gold);
    font-weight: 600;
    transition: color var(--transition);
}
.footer-admin:hover {
    color: #fff;
}

/* ---------- Модальные окна ---------- */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius);
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    padding: 30px;
    position: relative;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #4a5a6a;
    transition: color var(--transition);
    line-height: 1;
}
.modal-close:hover {
    color: var(--text-dark);
}

/* Галерея в модалке "Обо мне" */
.modal-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.modal-gallery img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 12px;
    background: #e0e8f0;
}

.modal-caption {
    text-align: center;
    font-weight: 500;
    font-size: 18px;
}

/* ---------- Стили для страницы теста ---------- */
.test-form-section {
    padding: 60px 0 80px;
}

.test-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
}

.test-subtitle {
    text-align: center;
    font-size: 18px;
    color: #4a5a6a;
    margin-bottom: 40px;
}

.alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
}
.alert-error {
    background: #fee2e2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

/* Форма */
.test-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-section {
    background: var(--white);
    padding: 28px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}

.form-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 15px;
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group input[type="email"],
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e8f0;
    border-radius: 12px;
    font-size: 16px;
    transition: border-color var(--transition);
    background: #fafcfe;
}
.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gradient-start);
}

/* Радио-кнопки */
.radio-group .question-label {
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.radio-options {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 15px;
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #c0c8d0;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
    transition: all var(--transition);
}
.radio-label input[type="radio"]:checked + .radio-custom {
    border-color: var(--gradient-start);
    background: var(--gradient-start);
}
.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
}

/* Чекбокс */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
}
.checkbox-label input[type="checkbox"] {
    display: none;
}
.checkbox-custom {
    width: 22px;
    height: 22px;
    border: 2px solid #c0c8d0;
    border-radius: 6px;
    flex-shrink: 0;
    display: inline-block;
    position: relative;
    transition: all var(--transition);
    margin-top: 2px;
}
.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--gradient-start);
    border-color: var(--gradient-start);
}
.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 16px;
}

.privacy-link {
    color: var(--gradient-start);
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}

/* ---------- Заключение (report) ---------- */
.report-section {
    padding: 60px 0 80px;
}

.report-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
}

.report-content {
    max-width: 700px;
    margin: 0 auto 30px;
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.report-greeting {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.report-block {
    margin-bottom: 24px;
}
.report-block h3 {
    font-size: 18px;
    margin-bottom: 10px;
}
.report-block ul {
    padding-left: 24px;
}
.report-block li {
    margin-bottom: 4px;
}

.risk h3 { color: #dc2626; }
.good h3 { color: #16a34a; }
.skills h3 { color: var(--gradient-start); }

.skills-note {
    margin-top: 12px;
    font-weight: 600;
    color: var(--gold);
}

/* Кнопка отправки на почту */
#sendEmailBtn {
    display: block;
    margin: 0 auto 40px;
}

/* ---------- Презентация трипваера ---------- */
.offer-presentation {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
    border-top: 2px dashed #e0e8f0;
}

.offer-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.offer-text {
    text-align: center;
    font-size: 17px;
    color: #4a5a6a;
    margin-bottom: 40px;
}

.offer-grid {
    margin-bottom: 40px;
}

.grid-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.offer-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.offer-card {
    background: var(--white);
    padding: 20px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all var(--transition);
}
.offer-card:hover {
    transform: translateY(-3px);
}

.offer-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.video-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.video-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.video-caption {
    padding: 12px 16px;
    font-weight: 500;
    text-align: center;
}

.offer-block {
    background: var(--white);
    padding: 24px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}

.offer-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.checklist {
    list-style: none;
    padding: 0;
}
.checklist li {
    padding: 6px 0;
    font-size: 15px;
}

/* Блок оплаты */
.payment-block {
    text-align: center;
}

.price-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 16px;
}

.price-old {
    font-size: 24px;
    color: #9aaaba;
    text-decoration: line-through;
}
.price-new {
    font-size: 42px;
    font-weight: 800;
    color: var(--gradient-start);
}

/* Кнопки внизу заключения */
.report-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* ---------- Адаптивность (мобильные) ---------- */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
    }
    .hero-image-wrapper {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
    }
    .about-cards,
    .docs-grid,
    .offer-cards,
    .video-cards {
        grid-template-columns: 1fr 1fr;
    }
    .modal-gallery {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.98);
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        backdrop-filter: blur(10px);
    }
    .nav.open {
        display: flex;
    }
    .burger {
        display: flex;
    }
    
    .hero-title {
        font-size: 30px;
    }
    .hero-subtitle {
        font-size: 20px;
    }
    
    .about-cards,
    .docs-grid,
    .offer-cards,
    .video-cards {
        grid-template-columns: 1fr;
    }
    .modal-gallery {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 28px;
    }
    .test-title,
    .report-title {
        font-size: 28px;
    }
    .price-new {
        font-size: 32px;
    }
    
    .form-section {
        padding: 20px;
    }
    .radio-options {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    .btn-large {
        padding: 14px 28px;
        font-size: 16px;
    }
    .container {
        padding: 0 12px;
    }
    .modal-content {
        padding: 20px;
    }
}

/* ============================================
   СТИЛИ ДЛЯ СТРЕЛКИ К ГАЙДУ
   ============================================ */
.guide-arrow-container {
    text-align: center;
    padding: 20px 0 10px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.guide-arrow-wrapper {
    display: inline-block;
    animation: bounceArrow 2s ease-in-out infinite;
}

.guide-arrow-text {
    font-size: 18px;
    font-weight: 700;
    color: #2a7de1;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.guide-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.guide-arrow svg {
    animation: moveArrow 1.5s ease-in-out infinite;
}

.guide-arrow .arrow-second {
    animation-delay: 0.4s;
}

@keyframes bounceArrow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

@keyframes moveArrow {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.6; }
}

.guide-arrow-container.pulsing .guide-arrow-wrapper {
    animation: pulseArrow 1s ease-in-out 3;
}

@keyframes pulseArrow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ============================================
   СТИЛИ ДЛЯ МОДАЛЬНОГО ОКНА ДИПЛОМОВ
   ============================================ */
.modal-image {
    max-width: 900px;
    padding: 20px;
}

.modal-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.modal-image-wrapper img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* ============================================
   ДОПОЛНИТЕЛЬНЫЙ СТИЛЬ ДЛЯ КНОПКИ ВХОДА В АДМИНКУ
   ============================================ */
.login-footer {
    margin-top: 20px;
    text-align: center;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.admin-header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

/* Адаптивность для стрелки */
@media (max-width: 768px) {
    .guide-arrow-text {
        font-size: 14px;
    }
    .guide-arrow svg {
        width: 32px;
        height: 32px;
    }
}

/* ============================================
   НОВЫЕ СТИЛИ ДЛЯ ЗАКЛЮЧЕНИЯ (БЛОКИ + АККОРДЕОН)
   ============================================ */

/* --- Блоки заключения --- */
.report-block {
    margin-bottom: 32px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    background: #ffffff;
}

.block-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.block-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.block-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: #1a2a3a;
}

/* Цветовая кодировка заголовков */
.block-header-risks {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-left: 6px solid #dc2626;
}
.block-header-risks .block-title {
    color: #991b1b;
}

.block-header-advice {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 6px solid #f59e0b;
}
.block-header-advice .block-title {
    color: #92400e;
}

.block-header-skills {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-left: 6px solid #2563eb;
}
.block-header-skills .block-title {
    color: #1e40af;
}

.block-body {
    padding: 20px 24px 24px;
}

/* --- Списки в блоках --- */
.report-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.report-list li {
    padding: 8px 0 8px 32px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
    border-bottom: 1px solid #f1f5f9;
}
.report-list li:last-child {
    border-bottom: none;
}

.report-list-risks li::before {
    content: '❌';
    position: absolute;
    left: 0;
    top: 8px;
}

.report-list-skills li::before {
    content: '✅';
    position: absolute;
    left: 0;
    top: 8px;
}

/* --- Аккордеон (спойлеры) --- */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.accordion-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fafcfe;
}

.accordion-item:hover {
    border-color: #d1d5db;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s ease;
    gap: 12px;
}

.accordion-header:hover {
    background: #f1f5f9;
}

.accordion-icon {
    font-size: 15px;
    font-weight: 600;
    color: #1a2a3a;
    flex: 1;
}

.accordion-toggle {
    font-size: 14px;
    color: #6b7280;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.accordion-item.active .accordion-toggle {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 18px;
}

.accordion-body.open {
    max-height: 2000px;
    padding: 0 18px 18px;
}

.accordion-summary {
    font-size: 15px;
    color: #374151;
    margin: 0 0 12px 0;
    padding-top: 4px;
    font-style: italic;
    border-top: 1px dashed #e5e7eb;
    padding-top: 14px;
}

.accordion-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accordion-list li {
    padding: 6px 0 6px 28px;
    position: relative;
    font-size: 14px;
    line-height: 1.5;
    color: #1f2937;
}
.accordion-list li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: #f59e0b;
    font-weight: 700;
    font-size: 18px;
}

/* --- Приветствие и вступление --- */
.report-greeting {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.report-intro {
    font-size: 16px;
    color: #4a5a6a;
    margin-bottom: 28px;
}

/* --- Анимация последовательного появления блоков --- */
.report-block.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.report-block.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Адаптивность для новых стилей --- */
@media (max-width: 768px) {
    .block-header {
        padding: 14px 16px;
        gap: 10px;
    }
    .block-title {
        font-size: 17px;
    }
    .block-body {
        padding: 16px 16px 18px;
    }
    .report-list li {
        font-size: 14px;
        padding: 6px 0 6px 28px;
    }
    .accordion-header {
        padding: 12px 14px;
    }
    .accordion-icon {
        font-size: 14px;
    }
    .accordion-body.open {
        padding: 0 14px 14px;
    }
    .accordion-list li {
        font-size: 13px;
    }
}