/* Block: hero-home */
/* Mobile-first. Only 3 breakpoint tiers. */

.block-hero-home {
    position: relative;
    /* overflow: hidden; */
}

/* Hero Wrapper - Split Layout */
.block-hero-home .hero-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 500px;
    background: linear-gradient(135deg, #4A868E 0%, #3A6F76 100%);
    padding-top: 120px;
}

/* Content Side */
.block-hero-home .hero-content-side {
    padding: 60px 24px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.block-hero-home .hero-content {
    max-width: 540px;
    text-align: center;
}

.block-hero-home .hero-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.15;
    color: #FFFFFF;
    margin: 0 0 20px;
}

.block-hero-home .hero-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 32px;
}


/* Buttons */
.block-hero-home .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.block-hero-home .hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 50px;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.block-hero-home .hero-btn-primary {
    background-color: #00AEEF;
    color: #FFFFFF;
}

.block-hero-home .hero-btn-primary:hover {
    background-color: #0099D6;
    transform: translateY(-2px);
}

.block-hero-home .hero-btn-secondary {
    background-color: #4DD0E1;
    color: #1A5F66;
}

.block-hero-home .hero-btn-secondary:hover {
    background-color: #3DC5D6;
    transform: translateY(-2px);
}

.block-hero-home .hero-btn-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Image Side */
.block-hero-home .hero-image-side {
    position: relative;
    min-height: 300px;
    overflow: hidden;
}

.block-hero-home .hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.block-hero-home .hero-dec {
    position: absolute;
    width: auto;
    height: auto;
    max-width: 100%;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.block-hero-home .hero-dec-1 {
}

.block-hero-home .hero-dec-2 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.block-hero-home .hero-image {
    position: relative;
    width: 100%;
    min-height: 300px;
    object-fit: contain;
    object-position: center bottom;
    z-index: 2;
}

/* Stats Card */
.block-hero-home .hero-stats-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    background-color: #FFFFFF;
    padding: 20px 16px;
    border-radius: 15px;
    box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.08);
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.block-hero-home .hero-stat {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    flex: 1;
}

.block-hero-home .hero-stat-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    gap: 10px;
    margin-block: 0;
}

.block-hero-home .hero-stat-divider {
    display: none;
    width: 1px;
    height: 189px;
    background-color: #E0E0E0;
    flex-shrink: 0;
    align-self: center;
}

.block-hero-home .hero-stat-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.block-hero-home .hero-stat-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.block-hero-home .hero-stat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.block-hero-home .hero-stat-number {
    font-size: 20px;
    font-weight: 900;
    color: #323232;
    line-height: 1;
}

.block-hero-home .hero-stat-text {
    font-size: 13px;
    font-weight: 500;
    color: #323232;
    line-height: 1.35;
    max-width: none;
    padding-inline: 0;
}

/* ========================================
   Tablet / small desktop (768px+)
   ======================================== */
@media (min-width: 768px) {
    .block-hero-home .hero-wrapper {
        flex-direction: row;
        padding-top: 0;
    }

    .block-hero-home .hero-content-side {
        width: 55%;
        padding: 80px 48px;
        justify-content: flex-end;
    }

    .block-hero-home .hero-content {
        text-align: left;
        padding-right: 40px;
    }

    .block-hero-home .hero-title {
        font-size: 44px;
        margin-bottom: 24px;
    }

    .block-hero-home .hero-description {
        font-size: 17px;
        margin-bottom: 36px;
    }

    .block-hero-home .hero-buttons {
        flex-direction: row;
        justify-content: flex-start;
    }

    .block-hero-home .hero-btn {
        font-size: 16px;
        padding: 16px 32px;
    }

    .block-hero-home .hero-image-side {
        width: 45%;
        min-height: auto;
    }

    .block-hero-home .hero-dec-1 {
    }

    .block-hero-home .hero-dec-2 {
    }

    .block-hero-home .hero-image {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
    }

    .block-hero-home .hero-stats-card {
        display: flex;
        flex-direction: row;
        gap: 0;
        padding: 40px 32px;
        margin-top: -60px;
        height: auto;
        min-height: 286px;
    }

    .block-hero-home .hero-stat-divider {
        display: block;
    }

    .block-hero-home .hero-stat-inner {
        gap: 20px;
        margin-block: 0;
    }

    .block-hero-home .hero-stat-icon {
        width: 81px;
        height: 81px;
    }

    .block-hero-home .hero-stat-number {
        font-size: 28px;
    }

    .block-hero-home .hero-stat-text {
        font-size: 16px;
        max-width: 230px;
        padding-inline: 1rem;
    }

    .block-hero-home .hero-stat-text {
    }
}

/* ========================================
   Desktop / large desktops (1200px+)
   ======================================== */
@media (min-width: 1200px) {
    .block-hero-home .hero-wrapper {
    }

    .block-hero-home .hero-content-side {
        width: 50%;
        padding: 56px 30px 130px 80px;
    }

    .block-hero-home .hero-content {
        max-width: 580px;
        padding-right: 30px;
    }

    .block-hero-home .hero-title {
        font-size: 56px;
        margin-bottom: 28px;
    }

    .block-hero-home .hero-description {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .block-hero-home .hero-btn {
        font-size: 17px;
        padding: 18px 36px;
    }

    .block-hero-home .hero-btn-icon {
        width: 20px;
        height: 20px;
    }

    .block-hero-home .hero-image-side {
        width: 54%;
    }

    .block-hero-home .hero-dec-1 {
    }

    .block-hero-home .hero-dec-2 {
    }

    .block-hero-home .hero-stats-card {
        display: flex;
        flex-direction: row;
        gap: 0;
        padding: 38px 56px;
        border-radius: 15px;
        margin-top: -80px;
        height: 286px;
    }

    .block-hero-home .hero-stat-icon {
        width: 81px;
        height: 81px;
    }

    .block-hero-home .hero-stat-number {
        font-size: 32px;
        font-weight: 900;
    }

    .block-hero-home .hero-stat-text {
    font-size: 15px;
    }
}