.gov-hero {
    padding: 100px 0 49px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(226, 231, 248, 0.36) 100%);
}
.gov-hero__container {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 40px;
}
.gov-hero__inner {
    display: flex;
    align-items: center;
    gap: 82px;
}
.gov-hero__content {
    flex: 0 0 650px;
    max-width: 650px;
    padding: 0;
}
span.gov-hero__label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    line-height: 28px;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 21px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}
.gov-hero__title {
    font-size: 54px;
    font-weight: 700;
    line-height: 70px;
    color: #000000;
    margin: 0 0 14px;
    width: 100%;
}
.gov-hero__desc {
    margin-bottom: 42px;
    max-width: 590px;
    width: 100%;
}
.gov-hero__desc p {
    font-size: 16px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.8);
    line-height: 28px;
    margin: 0;
}
.gov-hero__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
a.gov-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
    border: 2px solid #0a0a0a;
    transition: opacity 0.2s ease;
}
a.gov-hero__btn--dark {
    background: #000000;
    color: #ffffff;
}
a.gov-hero__btn--outline {
    background: transparent;
    color: #000000;
}
a.gov-hero__btn:hover {
    opacity: 0.85;
    text-decoration: none;
}
.gov-hero__visual {
    flex: 1;
    position: relative;
}
.gov-hero__mockup-wrap {
    width: 100%;
    text-align: right;
}
.gov-hero__mockup-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1200px) {
    .gov-hero {
        padding: 100px 0 15px;
    }
    .gov-hero__container {
        padding: 0 32px;
    }
    .gov-hero__content {
        flex: 0 0 600px;
        max-width: 600px;
    }
    .gov-hero__title {
        font-size: 52px;
        line-height: 58px;
    }
}
@media (max-width: 1024px) {
    .gov-hero {
        padding: 80px 0 40px;
    }
    .gov-hero__inner {
        flex-direction: column;
        gap: 40px;
    }
    .gov-hero__content {
        flex: none;
        max-width: 100%;
    }
    .gov-hero__title {
        font-size: 44px;
        line-height: 52px;
        max-width: 100%;
    }
    .gov-hero__desc {
        max-width: 100%;
    }
}
@media (max-width: 768px) {
    .gov-hero {
        padding: 56px 0 32px;
    }
    .gov-hero__container {
        padding: 0 20px;
    }
    .gov-hero__inner {
        gap: 32px;
    }
    .gov-hero__title {
        font-size: 36px;
        line-height: 44px;
    }
    .gov-hero__desc p {
        font-size: 15px;
    }
}
@media (max-width: 640px) {
    .gov-hero {
        padding: 44px 0 28px;
    }
    .gov-hero__container {
        padding: 0 16px;
    }
    .gov-hero__title {
        font-size: 30px;
        line-height: 38px;
    }
    .gov-hero__actions {
        gap: 10px;
    }
}
@media (max-width: 480px) {
    .gov-hero {
        padding: 40px 0 24px;
    }
    .gov-hero__title {
        font-size: 26px;
        line-height: 34px;
    }
    .gov-hero__desc p {
        font-size: 14px;
        line-height: 24px;
    }
    .gov-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }
    a.gov-hero__btn {
        width: 100%;
        justify-content: center;
    }
}
