.hero-block {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-block__background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-block__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-block__color-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(22, 78, 99, 0.5),
        rgba(17, 94, 89, 0.4),
        rgba(14, 116, 144, 0.5)
    );
}

.hero-block__bottom-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.6),
        transparent,
        transparent
    );
}

.hero-block__content {
    position: relative;
    z-index: 20;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    text-align: center;
}

.hero-block__title {
    margin: 0 0 24px;
    font-size: 48px;
    line-height: 1.1;
    font-weight: 700;
    color: #ffffff;
}

.hero-block__subtitle {
    max-width: 768px;
    margin: 0 auto 32px;
    font-size: 20px;
    line-height: 1.6;
    color: #e5e7eb;
}

.hero-block__highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
    color: #ffffff;
}

.hero-block__highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-block__highlight-number {
    font-size: 40px;
    line-height: 1;
    font-weight: 700;
    color: #61A229;
}

.hero-block__highlight-text {
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-block__cta {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    border-radius: 8px;
    background-color: #61A229;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.hero-block__cta:hover {
    background-color: #4f8821;
    transform: scale(1.05);
    color: #ffffff;
}

.hero-block__cta-icon {
    margin-left: 8px;
    flex-shrink: 0;
}

.hero-block__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    z-index: 20;
    transform: translateX(-50%);
}

.hero-block__scroll-link {
    display: block;
    animation: heroBounce 1s infinite;
}

.hero-block__scroll-mouse {
    width: 24px;
    height: 40px;
    padding: 8px;
    border: 2px solid #ffffff;
    border-radius: 999px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.hero-block__scroll-dot {
    width: 4px;
    height: 12px;
    border-radius: 999px;
    background-color: #ffffff;
}

@keyframes heroBounce {
    0%, 100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

@media (min-width: 640px) {
    .hero-block__content {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (min-width: 768px) {
    .hero-block__title {
        font-size: 72px;
    }

    .hero-block__subtitle {
        font-size: 24px;
    }
}

@media (min-width: 1024px) {
    .hero-block__content {
        padding-left: 32px;
        padding-right: 32px;
    }
}