.vc-home-anchor {
    scroll-margin-top: 90px;
}

.container {
    max-width: 85% !important;
}

.vc-hero {
    border-radius: 12px;
    overflow: hidden;
}

    .vc-hero .carousel-item {
        height: clamp(240px, 34vw, 440px);
    }

.vc-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #111827;
}

    .vc-hero .carousel-item {
        height: clamp(240px, 30vw, 440px);
        position: relative;
        overflow: hidden;
    }

.container {
    max-width: 85% !important;
}

.vc-hero .slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 8s ease;
}

.vc-hero .carousel-item.active .slide-bg {
    transform: scale(1.04);
}

.vc-hero .slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(10,12,22,.78) 0%, rgba(10,12,22,.40) 55%, rgba(10,12,22,.15) 100%);
    z-index: 1;
}

.vc-hero .slide-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
}

.vc-hero .slide-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #f97316;
    margin-bottom: 12px;
}

    .vc-hero .slide-eyebrow::before {
        content: '';
        display: block;
        width: 24px;
        height: 2px;
        background: #f97316;
        border-radius: 2px;
    }

.vc-hero .slide-title {
    font-size: clamp(1.6rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 12px;
    letter-spacing: -.01em;
}

.vc-hero .slide-desc {
    font-size: clamp(13px, 1.5vw, 16px);
    color: rgba(255,255,255,.78);
    line-height: 1.65;
    max-width: 460px;
    margin-bottom: 22px;
}

.vc-hero .slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 28px;
    background: #f97316;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    border-radius: 50px;
    text-decoration: none;
    transition: background .22s, transform .22s, box-shadow .22s;
    box-shadow: 0 4px 18px rgba(249,115,22,.4);
}

    .vc-hero .slide-cta:hover {
        background: #ea6c00;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(249,115,22,.5);
    }

    .vc-hero .slide-cta i {
        transition: transform .22s;
    }

    .vc-hero .slide-cta:hover i {
        transform: translateX(4px);
    }

/* Controls */
.vc-hero .carousel-control-prev,
.vc-hero .carousel-control-next {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,.14);
    backdrop-filter: blur(6px);
    border: 1.5px solid rgba(255,255,255,.22);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: background .22s;
}

.vc-hero .carousel-control-prev {
    left: 1rem;
}

.vc-hero .carousel-control-next {
    right: 1rem;
}

    .vc-hero .carousel-control-prev:hover,
    .vc-hero .carousel-control-next:hover {
        background: rgba(249,115,22,.75);
        border-color: transparent;
    }

.vc-hero .carousel-control-prev-icon,
.vc-hero .carousel-control-next-icon {
    width: 16px;
    height: 16px;
}

/* Indicators */
.vc-hero .carousel-indicators {
    margin-bottom: 1rem;
    gap: 5px;
}

    .vc-hero .carousel-indicators [data-bs-target] {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        border: none;
        background: rgba(255,255,255,.4);
        transition: background .22s, width .22s;
    }

    .vc-hero .carousel-indicators .active {
        width: 26px;
        border-radius: 50px;
        background: #f97316;
    }

/* Fallback */
.vc-hero-fallback {
    height: clamp(200px, 28vw, 360px);
    display: flex;
    align-items: center;
    background: linear-gradient(135deg,#111827 0%,#1f2937 100%);
    position: relative;
    overflow: hidden;
}

    .vc-hero-fallback::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 28% 50%, rgba(249,115,22,.14) 0%, transparent 60%);
    }

@media (max-width: 575.98px) {
    .vc-hero .carousel-item {
        height: 220px;
    }

    .vc-hero .carousel-control-prev,
    .vc-hero .carousel-control-next {
        width: 34px;
        height: 34px;
    }
}
