html, body {
    min-height: 100%;
    overflow-x: hidden;
}

body {
    background-image: url('../images/bg.svg');
    background-size: 1920px auto;
    background-repeat: repeat;
    background-position: center top;
    margin: 0;
}

.bg-pattern {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.bg-pattern svg {
    display: none;
}

main {
    margin: 0;
    padding: 0;
}
header{
    background-color: #f0f0f0;
}
.hero {
    position: relative;
    width: 110%;
    height: 60vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.hero__map {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero__map-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.hero__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: max-content;
    max-width: 90%;
}

.hero__line {
    display: block;
    width: fit-content;
    background-color: #ffffff;
    padding: 3px 14px;
    line-height: 1;
}
.hero__line__desc {
    display: block;
    width: fit-content;
    background-color: #ffffff;
    padding: 7px 14px;
    line-height: 1;
    font-size: 45px;
    font-weight: 500;
    
}

.hero__title {
    margin: 0;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    color: #1a1a1a;
}

.hero__subtitle {
    margin: 0;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.4;
    color: #1a1a1a;
}

.hero__actions {
    margin: 0;
    display: inline-flex;
    gap: 16px;
    background-color: #ffffff;
    padding: 8px 14px;
}

.hero__btn {
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid transparent;
}

.hero__btn--primary {
    background-color: #5c6b6f;
    color: #ffffff;
}

.hero__btn--outline {
    border-color: #1a1a1a;
    color: #1a1a1a;
}

.how {
    padding: 80px 24px;
}

.how__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.how__title {
    margin: 0 0 48px;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    text-align: center;
}

.how__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.how__card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.how__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #5c6b6f;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.how__card-title {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

.how__card-text {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: #5a5a5a;
    max-width: 260px;
}

/* Адаптив */
@media (max-width: 900px) {
    .how__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .how__grid {
        grid-template-columns: 1fr;
    }

    .how__title {
        font-size: 28px;
    }
}