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

html {
    scroll-behavior: smooth; 
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #1e2022;
    background-color: #ffffff;
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}


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


.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #f0f2f5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
}

.logo img {
    display: block;
    height: auto;
    max-height: 65px;
    width: auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: #1e2022;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: #0066cc;
}

.main-nav .nav-email a {
    font-weight: 700;
    color: #000000;
    border: 1px solid #1e2022;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.main-nav .nav-email a:hover {
    background-color: #1e2022;
    color: #ffffff;
}


section {
    padding: 100px 0;
}


.service-image {
    width: 100%;
    height: 180px; 
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: 4px; 
    background-color: #ffffff; 
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    display: block;
}


.service-card {
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    display: flex;
    flex-direction: column; 
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e2022;
}

.service-card p {
    font-size: 15px;
    color: #495057;
    line-height: 1.5;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #868e96;
    margin-bottom: 12px;
    font-weight: 600;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.3;
    max-width: 800px;
}


.hero-section {
    background-color: #f8f9fa;
    padding: 120px 0;
}

.hero-wrap {
    display: flex;
    align-items: center;
    gap: 64px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #000000;
}

.hero-subtitle {
    font-size: 22px;
    color: #495057;
    font-weight: 300;
}

.hero-gallery {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gallery-item img {
    width: 100%;
    height: 320px;
    border-radius: 6px;
    display: block;
    object-fit: cover;
}


.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
}

.about-text p {
    margin-bottom: 20px;
    color: #495057;
    font-size: 16px;
}

.mission-block {
    margin-top: 32px;
    padding: 20px;
    border-left: 4px solid #1e2022;
    background-color: #f8f9fa;
    font-size: 16px;
    color: #212529;
}

.about-features {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.about-features h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 28px;
    line-height: 1.4;
}

.features-list {
    list-style: none;
}

.features-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.features-list li:last-child {
    margin-bottom: 0;
}

.features-list .num {
    background-color: #1e2022;
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
}


.services-section {
    background-color: #ffffff;
    border-top: 1px solid #f0f2f5;
}

.innovation-block {
    margin-bottom: 60px;
}

.innovation-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #eaeaea;
}

.innovation-image {
    width: 100%;
    height: 350px;
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.innovation-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.innovation-text p {
    font-size: 16px;
    color: #495057;
    margin-bottom: 16px;
    line-height: 1.6;
}

.innovation-text p:last-child {
    margin-bottom: 0;
}

.section-divider {
    border: 0;
    height: 1px;
    background-color: #eaeaea;
    margin: 60px 0;
}


.traditional-block {
    position: relative;
}

.section-tag-secondary {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #adb5bd;
    margin-bottom: 8px;
    font-weight: 600;
}

.traditional-title {
    font-size: 22px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 32px;
}


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

.service-card {
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    padding: 24px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 180px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 4px;
    background-color: #f8f9fa;
    border: 1px solid #f0f0f0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.service-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e2022;
}

.service-card p {
    font-size: 14px;
    color: #6c757d; 
    line-height: 1.5;
}


@media (max-width: 992px) {
    .innovation-content {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 24px;
    }
    
    .innovation-image {
        height: 260px;
    }
}

.features-list h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.features-list p {
    font-size: 14px;
    color: #495057;
}


.services-section {
    background-color: #ffffff;
    border-top: 1px solid #f0f2f5;
}


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


.service-card {
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    padding: 24px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
}


.service-image {
    width: 100%;
    height: 200px; 
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: 4px;
    background-color: #f8f9fa; 
    border: 1px solid #f0f0f0;
}


.service-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    display: block;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e2022;
}

.service-card p {
    font-size: 14px;
    color: #495057;
    line-height: 1.6;
}


.contacts-section {
    background-color: #f8f9fa;
}

.contacts-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.contacts-lead {
    font-size: 18px;
    color: #495057;
    margin-bottom: 32px;
}

.contacts-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-item .icon {
    font-size: 24px;
    flex-shrink: 0;
}

.contact-item a {
    color: #0066cc;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.map-placeholder {
    background-color: #e9ecef;
    height: 350px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    color: #6c757d;
    font-size: 14px;
    border: 1px dashed #ced4da;
}


.site-footer {
    background-color: #1e2022;
    color: #a0aec0;
    padding: 40px 0;
    font-size: 14px;
    border-top: 1px solid #2d3748;
}

.footer-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


@media (max-width: 992px) {
    .hero-wrap, .about-grid, .contacts-wrap {
        grid-template-columns: 1fr;
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: 38px;
    }
    
    .hero-gallery {
        grid-template-columns: 1fr;
    }
    
    .gallery-item img {
        height: 260px;
    }
}

@media (max-width: 768px) {
    .header-wrap {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .footer-wrap {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}