/*
Theme Name: Sertvsk Waste Management
Description: Кастомная тема для сайта утилизации отходов
Version: 1.0
Author: AI Assistant
*/

/* Основные стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Шапка */
.site-header {
    color: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: relative;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Единая шапка для всех страниц */
.site-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.site-header.scrolled {
    background: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

/* Верхняя часть шапки */
.header-top {
    background: rgba(0,0,0,0.1);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.header-contact {
    display: flex;
    gap: 1rem;
}

.header-contact .contact-item {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    background: rgba(255,255,255,0.1) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 25px !important;
    color: white !important;
    font-weight: 500 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    transition: all 0.3s ease !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
}

.header-contact .contact-item:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
    background: rgba(255,255,255,0.2) !important;
}

.header-contact .contact-item i {
    color: #3498db !important;
    font-size: 1rem !important;
}

.header-contact .contact-item span {
    color: white !important;
    font-size: 0.9rem !important;
}

.header-social {
    display: flex;
    gap: 1rem;
}

.header-social .social-link {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    background: #34495e !important;
    border-radius: 50% !important;
    color: white !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border: 2px solid rgba(255,255,255,0.2) !important;
}

.header-social .social-link:hover {
    background: #3498db !important;
    transform: translateY(-2px) !important;
    border-color: #3498db !important;
}

/* Основная часть шапки */
.header-main {
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

/* Логотип */
.site-logo {
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.logo-icon i {
    font-size: 2rem;
    color: white;
}

.logo-text h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    color: white;
}

.logo-tagline {
    font-size: 0.9rem;
    color: #bdc3c7;
    font-weight: 400;
}

/* Breadcrumbs */
.breadcrumbs-bar {
    background: #f5f7fb;
    border-bottom: 1px solid #e1e5f0;
}

.breadcrumbs-container {
    padding: 0.75rem 0;
}

.breadcrumb-nav {
    font-size: 0.875rem;
    color: #6b7280;
}

.breadcrumb-nav a {
    color: #4b6cb7;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-nav a:hover {
    text-decoration: underline;
}

.breadcrumb-separator {
    margin: 0 0.35rem;
    color: #9ca3af;
}

.breadcrumb-current {
    color: #111827;
    font-weight: 600;
}

/* Навигация */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1001;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

/* Выпадающие меню */
.nav-menu .sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    background: white;
    min-width: 250px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 1rem 0;
    margin-left: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    z-index: 1002;
}

.nav-menu li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.nav-menu .sub-menu li {
    display: block;
    margin: 0;
}

.nav-menu .sub-menu a {
    color: #333 !important;
    padding: 0.75rem 1.5rem;
    display: block;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.nav-menu .sub-menu a:hover {
    background: #f8f9fa;
    color: #3498db !important;
    padding-left: 2rem;
}

/* Стрелочки для подменю */
.nav-menu .sub-menu .menu-item-has-children > a::after {
    content: '▶';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    color: #666;
    transition: transform 0.3s ease;
}

.nav-menu .sub-menu .menu-item-has-children:hover > a::after {
    transform: translateY(-50%) rotate(90deg);
    color: #3498db;
}

.nav-menu .sub-menu a::after {
    display: none;
}

/* Исключение для пунктов с подменю */
.nav-menu .sub-menu .menu-item-has-children > a::after {
    display: block;
}

/* Вложенные подменю (третий уровень) */
.nav-menu .sub-menu .sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    background: white;
    min-width: 250px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 1rem 0;
    margin-left: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    z-index: 1003;
}

.nav-menu .sub-menu li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    color: #3498db;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #3498db;
    transition: width 0.3s ease;
    z-index: 1;
}

/* Убираем возможные артефакты */
.nav-menu .menu-item-has-children > a::after {
    display: none;
}

/* Очистка отладочных элементов */
* {
    outline: none !important;
}

.nav-menu * {
    border: none !important;
    box-shadow: none !important;
}

.nav-menu .sub-menu {
    border: none !important;
    outline: none !important;
}

/* Стрелочка для пунктов с подменю */
.nav-menu .menu-item-has-children > a::before {
    content: '▶';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: #3498db;
    transition: transform 0.3s ease;
    z-index: 1;
}

.nav-menu .menu-item-has-children.active > a::before {
    transform: translateY(-50%) rotate(90deg);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Кнопка меню для мобильных - убрано в simple-menu.css */

/* Действия в шапке */
.header-actions {
    flex-shrink: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2980b9, #1f5f8b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

/* Исправляем стили кнопки в header - везде должна быть синяя */
.header-actions .btn-primary {
    background: linear-gradient(135deg, #3498db, #2980b9) !important;
    color: white !important;
    border-radius: 25px !important;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3) !important;
}

.header-actions .btn-primary:hover {
    background: linear-gradient(135deg, #2980b9, #1f5f8b) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4) !important;
}

/* Адаптивность */
@media (max-width: 768px) {
    .header-top {
        display: none;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    /* Мобильные стили навигации убраны в simple-menu.css */
    
    .logo-text h1 {
        font-size: 1.4rem;
    }
    
    .logo-tagline {
        font-size: 0.8rem;
    }
    
    .header-actions {
        order: 1;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .logo-icon {
        width: 50px;
        height: 50px;
    }
    
    .logo-icon i {
        font-size: 1.5rem;
    }
}

/* Основной контент */
.site-main {
    min-height: 60vh;
}

/* Главная страница */
.hero-section {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #ecf0f1;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #bdc3c7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #3498db;
}

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

.certificate-icon {
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
}

.certificate-icon i {
    font-size: 6rem;
    color: white;
}

/* Секции */
.services-preview,
.advantages-section,
.why-registration-section,
.who-must-register-section,
.services-section,
.documents-section,
.pricing-section,
.cta-section {
    padding: 4rem 0;
}

/* Секция "Зачем необходима регистрация" */
.why-registration-section {
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.warning-box {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
    max-width: 800px;
    margin: 0 auto;
}

.warning-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.warning-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.warning-content p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
}

/* Секция "Кто обязан вступить" */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #3498db;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.category-icon i {
    font-size: 2rem;
    color: white;
}

.category-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.category-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Секция услуг с этапами */
.services-section {
    background: #f8f9fa;
}

.process-steps {
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateX(10px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.step-content p {
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0;
}

/* Секция документов - Инфографика */
.documents-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.documents-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="docs-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(52, 152, 219, 0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23docs-pattern)"/></svg>');
    opacity: 0.5;
}

.documents-infographic {
    position: relative;
    z-index: 1;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.documents-header {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
}

.documents-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="header-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23header-pattern)"/></svg>');
    opacity: 0.3;
}

.documents-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
}

.documents-icon i {
    font-size: 2.5rem;
    color: white;
}

.documents-header h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.documents-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
    position: relative;
    z-index: 1;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0;
    padding: 0;
}

.document-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    border-bottom: 1px solid #f0f0f0;
    border-right: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    background: white;
    overflow: hidden;
    word-wrap: break-word;
    hyphens: auto;
}

.document-item:nth-child(odd) {
    background: #fafbfc;
}

.document-item:hover {
    background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.1);
}

.document-item:nth-child(2n) {
    border-right: none;
}

.document-item:nth-last-child(-n+2) {
    border-bottom: none;
}

.document-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.document-icon i {
    font-size: 1.5rem;
    color: white;
}

.document-content {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.document-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    word-wrap: break-word;
    hyphens: auto;
    line-height: 1.3;
}

.document-content p {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin: 0;
    line-height: 1.4;
    word-wrap: break-word;
    hyphens: auto;
}

.documents-footer {
    background: #f8f9fa;
    padding: 2rem;
    border-top: 1px solid #e9ecef;
}

.documents-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #495057;
    font-size: 1.1rem;
    font-weight: 500;
}

.documents-note i {
    color: #3498db;
    font-size: 1.3rem;
}

/* Секция преимуществ */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.advantage-item {
    text-align: center;
    padding: 1.5rem;
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.advantage-icon i {
    font-size: 1.5rem;
    color: white;
}

.advantage-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.advantage-item p {
    color: #7f8c8d;
}

/* Секция ценообразования */
.pricing-section {
    background: #f8f9fa;
}

.pricing-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.pricing-main {
    display: flex;
    justify-content: center;
}

.price-box {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    text-align: center;
    border: 3px solid #3498db;
    position: relative;
    overflow: hidden;
}

.price-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.price-label {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 1rem;
    font-weight: 500;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.price-note {
    font-size: 1rem;
    color: #7f8c8d;
    font-style: italic;
}

.pricing-factors h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.factors-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.factors-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
    color: #495057;
    font-size: 1.1rem;
}

.factors-list li:last-child {
    border-bottom: none;
}

.factors-list li i {
    color: #3498db;
    font-size: 1.2rem;
    flex-shrink: 0;
    width: 20px;
}

.pricing-note {
    background: #e8f5e8;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #28a745;
    color: #155724;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* CTA секция */
.cta-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-grain)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #bdc3c7;
    line-height: 1.6;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.cta-feature i {
    font-size: 1.5rem;
    color: #3498db;
    flex-shrink: 0;
}

.cta-feature span {
    font-size: 1.1rem;
    font-weight: 500;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Адаптивность для главной страницы */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .certificate-icon {
        width: 150px;
        height: 150px;
    }
    
    .certificate-icon i {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Адаптивность для новых секций */
    .warning-box {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .warning-icon {
        font-size: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-item:hover {
        transform: translateY(-5px);
    }
    
    .pricing-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-features {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Адаптивность для инфографики документов */
    .documents-grid {
        grid-template-columns: 1fr;
    }
    
    .document-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
        overflow: hidden;
    }
    
    .document-item:hover {
        transform: translateY(-5px);
    }
    
    .document-item:nth-child(2n) {
        border-right: 1px solid #f0f0f0;
    }
    
    .document-item:nth-last-child(-n+2) {
        border-bottom: 1px solid #f0f0f0;
    }
    
    .document-item:last-child {
        border-bottom: none;
    }
    
    .document-content {
        min-width: 0;
        overflow: hidden;
    }
    
    .document-content h4 {
        font-size: 1.1rem;
        line-height: 1.2;
    }
    
    .document-content p {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .documents-header {
        padding: 2rem 1rem;
    }
    
    .documents-header h3 {
        font-size: 1.5rem;
    }
    
    .documents-header p {
        font-size: 1rem;
    }
    
    .documents-icon {
        width: 60px;
        height: 60px;
    }
    
    .documents-icon i {
        font-size: 2rem;
    }
    
    .documents-note {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* Футер */
.site-footer {
    background: #34495e;
    color: white;
    padding: 2rem 0;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #3498db;
}

.footer-section ul {
    list-style: none;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(52, 152, 219, 0.2);
    color: #3498db;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(52, 152, 219, 0.3);
}

.footer-social .social-link:hover {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

/* Карточки услуг */
.service-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.service-details h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #27ae60;
    margin-bottom: 0.5rem;
}

.service-duration {
    color: #7f8c8d;
    margin-bottom: 1rem;
}

.service-features,
.service-benefits {
    margin-bottom: 1rem;
}

.service-features h4,
.service-benefits h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.service-features ul,
.service-benefits ul {
    list-style: none;
    padding-left: 0;
}

.service-features li,
.service-benefits li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before,
.service-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

/* Блок контактов */
.contacts-block {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contacts-block h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #3498db;
    width: 30px;
}

.contact-item strong {
    color: #2c3e50;
}

/* Яндекс карта */
.yandex-map-container {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 1rem;
}

/* Адаптивность */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    text-align: center;
}

    .contact-info {
        grid-template-columns: 1fr;
    }
}

/* ===== СТИЛИ ДЛЯ ТАБЛИЦ ===== */

/* Контейнер таблицы */
._tableContainer_1rjym_1 {
    margin: 2rem 0;
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: #fff;
}

/* Обертка таблицы */
._tableWrapper_1rjym_13 {
    min-width: 100%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

/* Основная таблица */
._tableContainer_1rjym_1 table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    line-height: 1.5;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

/* Заголовки таблицы */
._tableContainer_1rjym_1 thead {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

._tableContainer_1rjym_1 th {
    padding: 16px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    position: relative;
}

._tableContainer_1rjym_1 th:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

/* Ячейки таблицы */
._tableContainer_1rjym_1 td {
    padding: 16px 12px;
    border-bottom: 1px solid #e9ecef;
    vertical-align: top;
    transition: background-color 0.2s ease;
}

._tableContainer_1rjym_1 tbody tr {
    transition: all 0.2s ease;
}

._tableContainer_1rjym_1 tbody tr:hover {
    background-color: #f8f9fa;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

._tableContainer_1rjym_1 tbody tr:last-child td {
    border-bottom: none;
}

/* Стили для разных размеров колонок */
._tableContainer_1rjym_1 th[data-col-size="sm"],
._tableContainer_1rjym_1 td[data-col-size="sm"] {
    width: 60px;
    text-align: center;
    font-weight: 600;
    color: #2c3e50;
}

._tableContainer_1rjym_1 th[data-col-size="md"],
._tableContainer_1rjym_1 td[data-col-size="md"] {
    width: 25%;
    min-width: 200px;
}

._tableContainer_1rjym_1 th[data-col-size="lg"],
._tableContainer_1rjym_1 td[data-col-size="lg"] {
    width: 40%;
    min-width: 300px;
}

/* Стили для жирного текста в ячейках */
._tableContainer_1rjym_1 td strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Адаптивность для таблиц */
@media (max-width: 768px) {
    ._tableContainer_1rjym_1 {
        margin: 1rem 0;
        border-radius: 8px;
    }
    
    ._tableContainer_1rjym_1 table {
        font-size: 12px;
    }
    
    ._tableContainer_1rjym_1 th,
    ._tableContainer_1rjym_1 td {
        padding: 12px 8px;
    }
    
    ._tableContainer_1rjym_1 th[data-col-size="sm"],
    ._tableContainer_1rjym_1 td[data-col-size="sm"] {
        width: 50px;
    }
    
    ._tableContainer_1rjym_1 th[data-col-size="md"],
    ._tableContainer_1rjym_1 td[data-col-size="md"] {
        min-width: 150px;
    }
    
    ._tableContainer_1rjym_1 th[data-col-size="lg"],
    ._tableContainer_1rjym_1 td[data-col-size="lg"] {
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    ._tableContainer_1rjym_1 {
        margin: 0.5rem 0;
        border-radius: 6px;
    }
    
    ._tableContainer_1rjym_1 table {
        font-size: 11px;
    }
    
    ._tableContainer_1rjym_1 th,
    ._tableContainer_1rjym_1 td {
        padding: 8px 6px;
    }
}

/* Дополнительные стили для улучшения внешнего вида */
._tableContainer_1rjym_1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71, #f39c12, #e74c3c);
    border-radius: 12px 12px 0 0;
}

/* Анимация появления строк */
._tableContainer_1rjym_1 tbody tr {
    animation: fadeInUp 0.3s ease forwards;
    opacity: 0;
    transform: translateY(10px);
}

._tableContainer_1rjym_1 tbody tr:nth-child(1) { animation-delay: 0.1s; }
._tableContainer_1rjym_1 tbody tr:nth-child(2) { animation-delay: 0.2s; }
._tableContainer_1rjym_1 tbody tr:nth-child(3) { animation-delay: 0.3s; }
._tableContainer_1rjym_1 tbody tr:nth-child(4) { animation-delay: 0.4s; }
._tableContainer_1rjym_1 tbody tr:nth-child(5) { animation-delay: 0.5s; }
._tableContainer_1rjym_1 tbody tr:nth-child(6) { animation-delay: 0.6s; }
._tableContainer_1rjym_1 tbody tr:nth-child(7) { animation-delay: 0.7s; }
._tableContainer_1rjym_1 tbody tr:nth-child(8) { animation-delay: 0.8s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== СТИЛИ ДЛЯ ЛОГОТИПА ===== */

/* Логотип */
.site-logo .logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.site-logo .logo-link:hover {
    color: #3498db;
    transform: scale(1.05);
}

.logo-icon {
    font-size: 2.5rem;
    margin-right: 1rem;
    color: #3498db;
    transition: all 0.3s ease;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text .site-name {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1;
}

.logo-tagline {
    display: block;
    font-size: 0.9rem;
    color: #bdc3c7;
    font-weight: 400;
    margin-top: 0.3rem;
    line-height: 1;
}

/* Адаптивность для логотипа */
@media (max-width: 768px) {
    .logo-text .site-name {
        font-size: 1.5rem;
    }
    
    .logo-tagline {
        font-size: 0.8rem;
        margin-top: 0.2rem;
    }
    
    .logo-icon {
        font-size: 2rem;
        margin-right: 0.8rem;
    }
}

@media (max-width: 480px) {
    .logo-text .site-name {
        font-size: 1.3rem;
    }
    
    .logo-tagline {
        font-size: 0.75rem;
        margin-top: 0.1rem;
    }
    
    .logo-icon {
        font-size: 1.8rem;
        margin-right: 0.6rem;
    }
}

/* Стили для карточек услуг - 2 колонки на десктопе */
/* Применяется к контейнеру с grid-template-columns: repeat(2, 1fr), 1fr 1fr или repeat(auto-fit, ...) */
div[style*="grid-template-columns: repeat(2, 1fr)"],
div[style*="grid-template-columns:repeat(2, 1fr)"],
div[style*="grid-template-columns: 1fr 1fr"],
div[style*="grid-template-columns: repeat(auto-fit"],
div[style*="grid-template-columns:repeat(auto-fit"] {
    grid-template-columns: repeat(2, 1fr) !important;
    display: grid !important;
    max-width: 100% !important;
    width: 100% !important;
    gap: 18px !important;
}

/* Скрываем p теги внутри grid контейнера (комментарии WordPress) */
div[style*="grid-template-columns: repeat(2, 1fr)"] > p,
div[style*="grid-template-columns:repeat(2, 1fr)"] > p,
div[style*="grid-template-columns: 1fr 1fr"] > p,
div[style*="grid-template-columns: repeat(auto-fit"] > p,
div[style*="grid-template-columns:repeat(auto-fit"] > p {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Убираем ограничения ширины у карточек (div) внутри grid контейнера */
div[style*="grid-template-columns: repeat(2, 1fr)"] > div[style*="background"],
div[style*="grid-template-columns:repeat(2, 1fr)"] > div[style*="background"],
div[style*="grid-template-columns: 1fr 1fr"] > div[style*="background"],
div[style*="grid-template-columns: repeat(auto-fit"] > div[style*="background"],
div[style*="grid-template-columns:repeat(auto-fit"] > div[style*="background"],
div[style*="grid-template-columns: repeat(2, 1fr)"] > div[style*="border-radius"],
div[style*="grid-template-columns:repeat(2, 1fr)"] > div[style*="border-radius"],
div[style*="grid-template-columns: 1fr 1fr"] > div[style*="border-radius"],
div[style*="grid-template-columns: repeat(auto-fit"] > div[style*="border-radius"],
div[style*="grid-template-columns:repeat(auto-fit"] > div[style*="border-radius"] {
    max-width: 100% !important;
    min-width: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* На мобильных - 1 колонка */
@media (max-width: 768px) {
    div[style*="grid-template-columns: repeat(2, 1fr)"],
    div[style*="grid-template-columns:repeat(2, 1fr)"],
    div[style*="grid-template-columns: 1fr 1fr"],
    div[style*="grid-template-columns: repeat(auto-fit"],
    div[style*="grid-template-columns:repeat(auto-fit"] {
        grid-template-columns: 1fr !important;
    }
}
