/* Hero Section V2 (Split) - Shared Component */
.hero-split-v2 {
    display: grid;
    grid-template-columns: minmax(0, 800px) 0.8fr;
    align-items: center;
    min-height: 90vh;
    padding-left: 40px;
    gap: 60px;
    padding-top: 80px;
    overflow: hidden;
}

.hero-content-left {
    text-align: left;
    padding-right: 20px;
    margin-left: 120px;
}

.hero-content-left h1 {
    font-size: 56px;
    font-weight: 500;
    line-height: 1.1;
    color: #171717;
    letter-spacing: -0.02em;
}

.hero-content-left .highlight {
    color: #3675ff;
    font-weight: 600;
}

.hero-content-left .hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    margin-top: 32px;
}

.hero-image-right {
    position: relative;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    aspect-ratio: 4/3;
}

.hero-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Split Hero */
@media (max-width: 900px) {
    .hero-split-v2 {
        grid-template-columns: 1fr;
        padding: 120px 20px 60px;
        min-height: auto;
        text-align: center;
        gap: 40px;
    }

    .hero-content-left {
        text-align: center;
        padding-right: 0;
        margin-left: 0;
    }

    .hero-content-left .hero-buttons {
        justify-content: center;
    }

    .hero-content-left h1 {
        font-size: 40px;
    }
}