/* Hero Split Design */
.hero-split {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

/* Background Logo */
.hero-logo-bg {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translate(-50%, -50%) rotate(-15deg);
    width: 600px;
    height: 600px;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.hero-logo-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left Side - Content */
.hero-left {
    padding: 40px 0;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #2c3e50;
}

.text-gradient {
    background: linear-gradient(135deg, #FDB933 0%, #FFD700 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    font-size: 1.2em;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #6c757d;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(253, 185, 51, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.feature span {
    font-weight: 600;
    color: #2c3e50;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #FDB933, #FFD700);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(253, 185, 51, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(253, 185, 51, 0.4);
}

.btn-hero-primary svg {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover svg {
    transform: translateX(5px);
}

.btn-hero-secondary {
    background: transparent;
    color: #2c3e50;
    padding: 18px 35px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: white;
    border-color: #FDB933;
    color: #FDB933;
    transform: translateY(-3px);
}

/* Right Side - Video */
.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    aspect-ratio: 4/5;
    background: transparent;
    max-height: 600px;
    width: 100%;
    max-width: 500px;
    min-height: 400px;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.video-frame {
    position: absolute;
    inset: 0;
    border: 3px solid rgba(253, 185, 51, 0.3);
    border-radius: 20px;
    pointer-events: none;
    z-index: 1;
}

/* Video Logo Badge */
.video-logo-badge {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, #ffffff 0%, #FFF8E7 100%);
    border-radius: 50%;
    padding: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(15deg);
    transition: all 0.3s ease;
    border: 3px solid #FDB933;
    z-index: 10;
}

.video-logo-badge:hover {
    transform: rotate(0deg);
    bottom: -50px;
    right: -50px;
    box-shadow: 0 20px 50px rgba(253, 185, 51, 0.4);
}

.video-logo-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.5);
    transition: transform 0.3s ease;
}

.video-logo-badge:hover img {
    transform: scale(1.6);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-left {
        text-align: center;
    }

    .hero-description {
        margin: 0 auto 40px;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .video-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }
}

/* Hero Divider */
.hero-divider {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    z-index: 2;
    height: 20px;
    overflow: visible;
}

.hero-divider svg {
    width: 100%;
    height: 100%;
    display: block;
}