/* ===== Block: Home Heading ===== */
.block-home-heading {
    position: relative;
    background-size: 80% !important;
    background-position: 50% 40% !important;
    height: 100vh;
    background-repeat: no-repeat !important;
}

body:not(.theme-dark) .block-home-heading::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(ellipse 70% 60% at center, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 40%, rgba(255,255,255,0.8) 80%, rgba(255,255,255,1) 100%);
    pointer-events: none;
}

body.theme-dark .block-home-heading::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    /* background: radial-gradient(ellipse 70% 60% at center, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.8) 80%, rgba(0,0,0,1) 100%); */
    background: radial-gradient(ellipse 70% 60% at center, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 40%, #060b21 60%, #060b21 100%);
    pointer-events: none;
}

body:not(.theme-dark) .block-home-heading::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 15%, rgba(255,255,255,0) 85%, rgba(255,255,255,1) 100%);
    pointer-events: none;
}

body.theme-dark .block-home-heading::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to bottom, #060b21 0%, rgba(0,0,0,0) 15%, rgba(0,0,0,0) 85%, #060b21 100%);
    pointer-events: none;
}

.home-heading__top-btn .btn--top {
    border: 1px solid var(--s-font-color);
    border-radius: 20px;
    padding: 3px 4rem;
    font-size: 14px;
    width: fit-content;
    margin: 15px auto 5px auto;
    color: var(--s-font-color);
}

.home-heading__top-btn {
    margin-bottom: 35px;
}

.home-heading__inner {
    text-align: center;
    min-height: 80vh;
    padding: 0 0 5rem 0;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 3;
}

.home-heading__inner h1 {
    font-size: 60px;
    line-height: 53px;
}

.home-heading__description {
    width: 80%;
    margin: auto;
    color: var(--s-font-color);
}

.home-heading__mobile-image {
    display: none;
}

.home-heading__mobile-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px auto;
}

.home-heading__buttons {
    margin: 50px 16px;
    display: flex;
    gap: 25px;
    justify-content: center;
}

@media screen and (max-width: 480px) {
    .home-heading__buttons {
        flex-direction: column;
        gap: 15px;
    }
}

a.btn--primary {
    display: inline-block;
    padding: 15px 40px;
    border: 0px;
    text-align: center;
    border-radius: 12px;
    font-family: Montserrat;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background: #000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15), 0 -5px 15px 0 rgba(19, 20, 94, 0.98) inset;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a.btn--secondary {
    display: inline-block;
    padding: 15px 40px;
    border: 0px;
    text-align: center;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), 0 -6px 10px 0 rgba(255, 137, 92, 0.30) inset;
    font-family: Montserrat;
    font-weight: 600;
    text-decoration: none;
    color: #000;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), 0 -5px 15px 0 rgba(19, 20, 94, 0.98) inset;
    background: #1a1a1a;
}

a.btn--secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15), 0 -6px 10px 0 rgba(255, 137, 92, 0.30) inset;
    background: #f5f5f5;
}

@media (max-width: 768px) {
    .block-home-heading {
        height: auto;
        min-height: 70vh;
        background-image: none !important;
    }

    .block-home-heading::before,
    .block-home-heading::after {
        display: none;
    }

    .home-heading__mobile-image {
        display: block;
        width: 90%;
        margin: 20px auto;
    }

    .home-heading__inner {
        min-height: 70vh;
        padding: 2rem 1rem;
    }

    .home-heading__inner h1 {
        font-size: 40px;
        line-height: 34px;
    }

    .home-heading__description {
        width: 100%;
        font-size: 15px;
    }

    .home-heading__top-btn .btn--top {
        padding: 3px 1.5rem;
        font-size: 13px;
    }

    .home-heading__buttons {
        margin: 30px 16px;
        gap: 15px;
    }

    a.btn--primary,
    a.btn--secondary {
        padding: 12px 30px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .home-heading__inner h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    .home-heading__buttons {
        flex-direction: column;
        gap: 15px;
        margin: 25px 16px;
    }

    a.btn--primary,
    a.btn--secondary {
        width: 100%;
        padding: 12px 24px;
    }
}
