/* Section: Hero */
.ocf-hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--ocf-heading-alt);
    background: var(--ocf-bg-dark);
    padding: 8.5rem 0 5.5rem;
}

@media (min-width: 1024px) {
    .ocf-hero {
        margin-top: -6rem;
        padding: 11.5rem 0 6.5rem;
    }
}

.ocf-hero__media,
.ocf-hero__shade {
    position: absolute;
    inset: 0;
}

.ocf-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ocf-hero__shade {
    background:
        linear-gradient(90deg, rgba(8, 14, 24, 0.88) 0%, rgba(8, 14, 24, 0.68) 48%, rgba(8, 14, 24, 0.38) 100%),
        linear-gradient(180deg, rgba(8, 14, 24, 0.62) 0%, rgba(8, 14, 24, 0.18) 45%, rgba(8, 14, 24, 0.7) 100%);
}

.ocf-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 980px) {
    .ocf-hero__grid {
        grid-template-columns: minmax(0, 1.1fr) minmax(360px, 420px);
        gap: 5rem;
    }

    .ocf-hero--split_no_form .ocf-hero__grid,
    .ocf-hero--single_column .ocf-hero__grid {
        grid-template-columns: minmax(0, 780px);
    }
}

.ocf-hero__content {
    max-width: 760px;
}

.ocf-hero__rating {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: var(--text-sm);
}

.ocf-hero__rating-value {
    color: var(--ocf-heading-alt);
    font-weight: 700;
}

.ocf-hero__stars {
    display: inline-flex;
    gap: 0.12rem;
    color: #f8c529;
}

.ocf-hero__title {
    color: var(--ocf-heading-alt);
    margin-bottom: 1.35rem;
}

.ocf-hero__title span {
    display: block;
}

.ocf-hero__text {
    max-width: 680px;
    color: var(--ocf-body-alt);
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.ocf-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.ocf-hero__phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--ocf-heading-alt);
    text-decoration: none;
    font-weight: 600;
}

.ocf-hero__phone:hover {
    color: var(--ocf-accent);
}

.ocf-hero__form {
    width: 100%;
}
