.vina-sh-tech {
    --vina-sh-tech-ease: cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
    color: #f5efe7;
}

.vina-sh-tech__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.4) 1px, transparent 0);
    background-size: 24px 24px;
    pointer-events: none;
}

.vina-sh-tech__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: clamp(64px, 8vw, 96px) clamp(24px, 5vw, 96px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: stretch;
}

.vina-sh-tech__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vina-sh-tech__eyebrow {
    display: block;
    margin-bottom: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #a78295;
}

.vina-sh-tech__title {
    margin: 0 0 20px;
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
}

.vina-sh-tech__desc {
    margin: 0 0 32px;
    font-size: 1.05rem;
    line-height: 1.85;
    opacity: 0.85;
    text-align: justify;
}

.vina-sh-tech__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.vina-sh-tech__stat {
    padding-right: 20px;
    border-right: 2px solid rgba(255,255,255,0.15);
}

.vina-sh-tech__stat-title {
    margin: 0 0 6px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #a78295;
}

.vina-sh-tech__stat-desc {
    margin: 0;
    font-size: 0.75rem;
    opacity: 0.65;
    line-height: 1.6;
}

.vina-sh-tech__gallery {
    display: flex;
    flex-direction: row;
    gap: 16px;
    min-height: 420px;
    height: 100%;
    align-self: stretch;
}

.vina-sh-tech__img-wrap {
    flex: 1 1 0;
    min-width: 0;
    min-height: 200px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.vina-sh-tech__img-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--vina-sh-tech-ease);
}

.vina-sh-tech__img-wrap:hover img {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .vina-sh-tech__inner {
        grid-template-columns: 1fr;
    }

    .vina-sh-tech__gallery {
        min-height: 320px;
        height: 320px;
    }
}

@media (max-width: 575px) {
    .vina-sh-tech__stats {
        grid-template-columns: 1fr;
    }

    .vina-sh-tech__gallery {
        flex-direction: column;
        height: auto;
        min-height: 0;
    }

    .vina-sh-tech__img-wrap {
        flex: none;
        height: 200px;
    }
}

.vina-sh-tech--animate .vina-sh-tech__reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s var(--vina-sh-tech-ease), transform 0.8s var(--vina-sh-tech-ease);
}

.vina-sh-tech--animate.is-visible .vina-sh-tech__reveal {
    opacity: 1;
    transform: none;
}

.vina-sh-tech--animate.is-visible .vina-sh-tech__gallery {
    transition-delay: 0.15s;
}
