/* ============================================
   SCG Hero Block - Full Background Image
   ============================================ */

.scg-hero {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    min-height: 500px;
    display: flex;
    align-items: center;
    background: #090B10;
}

.scg-hero__video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.scg-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #090B10 0%, #171927 58%, #19313A 100%);
    opacity: 0.88;
    z-index: 1;
}

.scg-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

.scg-hero__content {
    max-width: 760px;
    padding: 2rem 0 2rem 2rem;
    border-left: 1px solid #668289;
}

.scg-hero__title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #F1F2F2;
    line-height: 1.08;
    text-shadow: 0 2px 10px #090B10;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.scg-hero__highlight {
    color: #43D5CC;
}

.scg-hero__subtitle {
    font-size: 1.25rem;
    color: #C5C9CC;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    text-shadow: 0 1px 5px #090B10;
}

.scg-hero__cta {
    margin-bottom: 1.5rem;
}

.scg-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #43D5CC;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.125rem;
    background: #43D5CC;
    color: #090B10;
    letter-spacing: 0.04em;
}

.scg-hero__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px #090B10;
    background: #F1F2F2;
    border-color: #F1F2F2;
    color: #090B10;
    text-decoration: none;
}

.scg-hero__btn:focus-visible {
    outline: 3px solid #F1F2F2;
    outline-offset: 4px;
}

.scg-hero__arrow {
    font-size: 1.2em;
    transition: transform 0.3s;
}

.scg-hero__btn:hover .scg-hero__arrow {
    transform: translateX(4px);
}

.scg-hero__disclaimer {
    font-size: 0.875rem;
    color: #C5C9CC;
    font-style: italic;
}

/* Responsive */
@media (max-width: 1024px) {
    .scg-hero {
        padding: 6rem 0;
        min-height: 400px;
    }

    .scg-hero__title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .scg-hero {
        padding: 5rem 0;
        min-height: 350px;
    }

    .scg-hero__content {
        max-width: 100%;
        padding: 1.5rem 0 1.5rem 1.25rem;
    }

    .scg-hero__title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .scg-hero {
        padding: 4rem 0;
    }

    .scg-hero__title {
        font-size: 1.75rem;
    }

    .scg-hero__btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}
