/* Базовые стили */
:root {
    --primary-color: #1a365d; /* Темно-синий */
    --secondary-color: #2d74da; /* Светло-синий */
    --accent-color: #0d4ba3; /* Акцентный синий */
    --light-color: #f8fafc; /* Светло-серый/белый */
    --text-color: #2d3748; /* Цвет основного текста */
    --text-light: #718096; /* Светлый текст */
    --border-color: #e2e8f0; /* Цвет границ */
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 10px 15px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    padding-top: 0px;
}

.top-contacts .container{
    padding-top: 0px;
}

/* Типография */
h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--secondary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.section-icon {
    margin-right: 10px;
    color: var(--secondary-color);
}

p {
    margin-bottom: 1.2rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Верхние контакты */
.top-contacts {
    background-color: var(--primary-color);
    padding: 8px 0;
    color: white;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.principle #ass1 {
    display: flex;
    align-items: center;
    width: 100px;
    height: 100px;
}

.principle #ass2 {
    display: flex;
    align-items: center;
    width: 75px;
    height: 75px;
}


.contacts-inner {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    align-items: center;
    color: white;
}

.contact-link:hover {
    color: #a0c4ff;
}

.contact-link i {
    margin-right: 8px;
}

/* Шапка */
.header {
    background-color: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-color);
}

.logo-plus {
    color: var(--secondary-color);
}

.logo-subtitle {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 2px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.nav-link i {
    margin-right: 8px;
    font-size: 0.9rem;
}

.nav-link:hover, .nav-link.active {
    color: var(--secondary-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Главный баннер */
.hero {
    background: linear-gradient(rgba(26, 54, 93, 0.9), rgba(26, 54, 93, 0.95)), url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-content {
    max-width: 100%;
    margin: 0 auto;
}

#head-cont {
    justify-self: end;
}

.hero-title {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-highlight {
    color: #a0c4ff;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn i {
    margin-right: 8px;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* Основной контент */
.main-content {
    padding: 60px 0;
}

.content-section {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.content-section:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.top-head {
    display: grid;
    width: 100%;
    grid-auto-flow: column;
}

#someshit {
    justify-self: left;
}

.section-content {
    padding-top: 10px;
}

/* Список услуг */
.services-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    padding-left: 5px;
}

.services-list i {
    color: var(--secondary-color);
    margin-right: 12px;
    margin-top: 5px;
    flex-shrink: 0;
}

/* Особенности/фичи */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.feature {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #f1f7ff;
    border-radius: 6px;
    border-left: 4px solid var(--secondary-color);
}

.feature-icon {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-right: 12px;
}

/* Принципы */
.principles-section {
    background: linear-gradient(to bottom right, #f8fafc, #f1f7ff);
}

.principles {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.principle {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.principle:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.principle-icon {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 15px;
}

.principle h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.principle-final {
    font-style: italic;
    margin-top: 25px;
    color: var(--text-light);
}

.blockquote {
    border-left: 4px solid var(--secondary-color);
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: var(--text-light);
}

/* Отчет */
.report-card {
    background: linear-gradient(to right, #f1f7ff, #e8f0fe);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    border-top: 5px solid var(--secondary-color);
}

.report-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.report-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.report-card p {
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Футер */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
}

.footer-logo .logo-text {
    color: white;
    font-size: 2rem;
}

.footer-logo .logo-subtitle {
    color: #cbd5e0;
}

.footer-logo p {
    margin-top: 15px;
    color: #cbd5e0;
    font-size: 0.9rem;
}

.footer-contacts h3, .footer-nav h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-contacts h3:after, .footer-nav h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item i {
    color: var(--secondary-color);
    margin-right: 12px;
    font-size: 1.1rem;
}

.contact-item a {
    color: #cbd5e0;
    display: block;
}

.contact-item a:hover {
    color: white;
}

.footer-nav {
    display: flex;
    flex-direction: column;
}

.footer-nav a {
    color: #cbd5e0;
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-nav a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 20px;
    text-align: center;
    color: #a0aec0;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 5px;
}

/* Мобильное меню */
.mobile-menu {
    display: none;
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    flex-direction: column;
    padding: 80px 30px 30px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    display: flex;
    transform: translateX(0);
}

.mobile-nav-link {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.mobile-nav-link i {
    margin-right: 15px;
    width: 24px;
    text-align: center;
}

.mobile-contacts {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.mobile-contacts a {
    display: flex;
    align-items: center;
    padding: 12px 0;
    color: var(--primary-color);
}

.mobile-contacts i {
    margin-right: 15px;
    color: var(--secondary-color);
}

.mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.8rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Адаптивность */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.3rem;
    }
    
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .principles {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .top-contacts {
        display: none;
    }
    
    .hero {
        padding: 70px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        margin-bottom: 10px;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .principles {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .content-section {
        padding: 20px;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .principles {
        grid-template-columns: 1fr;
    }
    
    .contacts-inner {
        justify-content: center;
        gap: 15px;
    }
}