.home-banner {
    margin-top: 50px;
    margin-bottom: 0;
    position: relative;
    color: #ffffff;
    display: flex;
    align-items: stretch;
    min-height: clamp(260px, 48vw, 520px);
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
}

.home-banner.app-container-full {
    min-height: clamp(260px, 48vw, 380px);
    height: auto;
}

.home-banner ~ .app-footer {
    margin-top: 0;
}

.home-banner .app-container {
    padding-top: clamp(32px, 5vw, 72px);
    padding-bottom: clamp(16px, 4vw, 36px);
    width: 100%;
}

.home-banner__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(1.75rem, 4vw, 2.5rem);
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.banner-content {
    color: #ffffff;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.45;
    margin: 0;
    max-width: 600px;
}

.btn-banner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 999px;
    background: #ffffff;
    color: #4caf93;
    font-size: 18px;
    font-weight: 700;
    gap: 12px;
    text-decoration: none;
    height: auto;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 12px 24px rgba(76, 175, 147, 0.2);
}

.btn-banner img {
    display: block;
    width: 20px;
    height: 20px;
}

.btn-banner:hover,
.btn-banner:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(76, 175, 147, 0.28);
}

.btn-banner:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .home-banner {
        display: none;
    }

    .home-banner__content {
        padding: 0 15px;
    }

    .home-banner .app-container {
        padding-top: 32px;
        padding-bottom: 24px;
    }
}

@media (max-width: 1024px) {
    .home-banner {
        padding: 96px 0;
    }

    .home-banner__content {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .banner-content {
        font-size: 28px;
        max-width: none;
    }
}

@media (max-width: 640px) {
    .home-banner {
        padding: 72px 0;
    }

    .banner-content {
        font-size: 24px;
    }

    .btn-banner {
        width: 100%;
        justify-content: center;
    }
}
.seed-banner-page .app-main {
    padding-bottom: 0;
}
