.ini-hhc,
.ini-hhc * {
    box-sizing: border-box;
}

.ini-hhc {
    position: relative;
    width: 100%;
    font-family: inherit;
    --ini-slide-transition: 500ms;
}

.ini-hhc__hero {
    position: relative;
    width: 100%;
    min-height: 580px;
    overflow: hidden;
    font-family: inherit;
}

.ini-hhc__slide {
    position: absolute;
    inset: 0;
    min-height: 580px;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--ini-slide-transition) ease, visibility var(--ini-slide-transition) ease;
}

.ini-hhc__slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
}

.ini-hhc__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
}

.ini-hhc__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 5, 30, 0.88) 0%, rgba(10, 5, 30, 0.82) 40%, rgba(10, 5, 30, 0.45) 70%, rgba(10, 5, 30, 0.10) 100%);
    z-index: 1;
}

.ini-hhc__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px 140px;
}

.ini-hhc__inner {
    max-width: 640px;
}

.ini-hhc__badge {
    display: inline-block;
    margin: 0 0 20px;
    padding: 7px 18px;
    border-radius: 50px;
    background: linear-gradient(135deg, #c026d3, #7c3aed);
    color: #fff;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ini-hhc__title {
    margin: 0 0 18px;
    color: #fff;
    font-family: inherit;
    font-size: clamp(30px, 5vw, 54px);
    font-weight: 900;
    line-height: 1.1;
}

.ini-hhc__desc {
    max-width: 560px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.85);
    font-family: inherit;
    font-size: clamp(14px, 1.4vw, 18px);
    line-height: 1.7;
}

.ini-hhc__button,
.ini-hhc__button:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 50px;
    background: linear-gradient(135deg, #e91e8c, #9c27b0);
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(233, 30, 140, 0.30);
    transition: transform 0.22s ease, box-shadow 0.22s ease, color 0.22s ease, background 0.22s ease;
}

.ini-hhc__button:hover,
.ini-hhc__button:focus {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(233, 30, 140, 0.42);
    color: #fff;
}

.ini-hhc__button i,
.ini-hhc__card-link i {
    font-size: 0.8em;
}

.ini-hhc__arrow {
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.ini-hhc__arrow:hover,
.ini-hhc__arrow:focus {
    background: rgba(255, 255, 255, 0.15);
}

.ini-hhc__arrow--prev {
    left: 24px;
}

.ini-hhc__arrow--next {
    right: 24px;
}

.ini-hhc__dots {
    position: absolute;
    bottom: 80px;
    left: 50%;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateX(-50%);
}

.ini-hhc__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.40);
    cursor: pointer;
    transition: background 0.22s ease, transform 0.22s ease;
}

.ini-hhc__dot.is-active {
    background: #e91e8c;
    transform: scale(1.3);
}

.ini-hhc__wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: 3;
    width: 100%;
    line-height: 0;
}

.ini-hhc__wave svg {
    display: block;
    width: 100%;
    height: 70px;
}

.ini-hhc__cards-wrap {
    position: relative;
    z-index: 10;
    width: 100%;
    margin-top: -60px;
    font-family: inherit;
}

.ini-hhc__cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 60px;
}

.ini-hhc__card {
    position: relative;
    min-width: 0;
    min-height: 380px;
    overflow: hidden;
    border-radius: 14px;
    background: var(--ini-card-background, #fff);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.09);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ini-hhc__card:hover {
    transform: translateY(-5px);
}

.ini-hhc__card-body {
    position: relative;
    z-index: 2;
    width: 75%;
    padding: 26px 24px;
}

.ini-hhc__card-icon {
    width: 48px;
    height: 48px;
    margin: 0 0 18px;
    border-radius: 50%;
    background: var(--ini-card-accent, #d97736);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ini-hhc__card-icon i,
.ini-hhc__card-icon svg {
    display: block;
    width: 20px;
    height: 20px;
    font-size: 20px;
    fill: currentColor;
}

.ini-hhc__card-title {
    margin: 0 0 12px;
    color: #1a1a2e;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.ini-hhc__card-divider {
    width: 30px;
    height: 2px;
    margin: 0 0 12px;
    border-radius: 2px;
    background: var(--ini-card-accent, #d97736);
}

.ini-hhc__card-text {
    margin: 0 0 20px;
    color: #555;
    font-family: inherit;
    font-size: 13px;
    line-height: 1.65;
}

.ini-hhc__card-link,
.ini-hhc__card-link:visited {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--ini-card-accent, #d97736);
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    transition: gap 0.2s ease, color 0.2s ease;
}

.ini-hhc__card-link:hover,
.ini-hhc__card-link:focus {
    gap: 8px;
    color: var(--ini-card-accent, #d97736);
}

.ini-hhc__card-image {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 85%;
    height: 62%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

@media (max-width: 1024px) {
    .ini-hhc__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ini-hhc__card-body {
        width: 100%;
    }

    .ini-hhc__card-image {
        width: 100%;
        height: 100%;
        opacity: 0.12;
        clip-path: none;
    }
}

@media (max-width: 767px) {
    .ini-hhc__content {
        padding: 80px 24px 120px;
    }

    .ini-hhc__inner {
        max-width: 100%;
    }

    .ini-hhc__overlay {
        background: rgba(10, 5, 30, 0.80);
    }

    .ini-hhc__arrow {
        display: none;
    }

    .ini-hhc__cards-wrap {
        margin-top: -70px;
    }

    .ini-hhc__cards {
        padding: 0 24px 60px;
    }
}

@media (max-width: 540px) {
    .ini-hhc__cards {
        grid-template-columns: 1fr;
        padding-left: 20px;
        padding-right: 20px;
    }

    .ini-hhc__card {
        min-height: auto;
    }

    .ini-hhc__content {
        padding: 60px 20px 100px;
    }
}
