* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Mir';
    src: url('mir_medium-webfont.woff2') format('woff2'),
         url('mir_medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: Mir, 'Mir Medium', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background-color: #f4f7fb;
    padding: 20px 0;
    border-bottom: 1px solid #e0e6ed;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav {
    display: flex;
    gap: 30px;
    font-weight: bold;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: color 0.3s;
}

.nav a:hover {
    color: #007bff;
}

.logo {
    font-size: 24px;
    font-weight: 400;
}

.logo-blue { color: #2b7de9; }
.logo-red { color: #e94b4b; }

.hero {
    background-color: #f4f7fb;
    background-image: url('../img/bg-waves.png');
    background-position: right center;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 60px 0 80px;
}

.hero-inner {
    display: flex;
    align-items: flex-start;
}

.hero-content {
    max-width: 600px;
}

h1 {
    font-size: 2em;
    line-height: 1.2;
    font-weight: 700;
    color: #000044;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.5;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    border-left: 4px solid #2b7de9;
    padding-left: 20px;
}

.feature-item {
    display: flex;
    gap: 15px;
}

.check-icon {
    color: #2b7de9;
    font-size: 20px;
    font-weight: bold;
}

.feature-item p {
    font-size: 15px;
    line-height: 1.5;
    color: #333;
}

.btn-primary {
    margin-top: 15px;
    background-color: #2b7de9;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary:hover {
    background-color: #1a5bb5;
}

.stats {
    padding: 80px 0;
    background-color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card img {
    width: 96px;
    height: 96px;
    object-fit: contain;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-number.blue { color: #2b7de9; }
.stat-number.red { color: #e94b4b; }

.stat-label {
    font-size: 15px;
    color: #888;
}

.tech {
    padding: 80px 0;
    background-color: #f9fbfd;
}

.section-title {
    text-align: center;
    font-size: 28px;
    color: #000044;
    margin-bottom: 40px;
}

.tech-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.tech-item {
    text-align: center;
    color: #000044;
}

.circle {
    width: 180px;
    height: 180px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
}

.circle img {
    width: 180px;
    height: 180px;
    object-fit: contain;
}

.tech-name {
    font-size: 18px;
    font-weight: 600;
}

.contacts {
    padding: 80px 0;
    background-color: #fff;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 20px;
}

.map-block {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.map-block img {
    width: 100%;
    height: auto;
    display: block;
}

.map-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    font-size: 16px;
    line-height: 1.4;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 32px 20px;
    border-bottom: 1px solid #e0e6ed;
    border-radius: 32px;
    transition: box-shadow 0.3s;
}

.contact-row:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.c-icon {
    font-size: 24px;
}

.contact-row a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
}

.contact-row a:hover {
    color: #2b7de9;
}

.footer {
    background-color: #fff;
    border-top: 1px solid #e0e6ed;
    padding: 20px 0;
    text-align: center;
}

.footer p {
    font-size: 13px;
    color: #888;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .hero {
       padding: 20px 0 32px 0;
    }
    .hero-inner, .contacts-grid {
        flex-direction: column;
        display: flex;
    }
    .logo {
        width:100%;
        text-align: right;
    }
    .logo-img {
       width:90%;
       max-width: 379px;
    }

    .hero-bg {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-grid {
        flex-direction: column;
        align-items: center;
    }

    .nav {
        display: none;
    }
}