/* MEGA Hero Block */
.mega-block-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--mega-white);
}

.mega-block-hero__overlay {
    position: absolute;
    inset: 0;
    background: #000;
    z-index: 1;
}

.mega-block-hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    padding: 100px var(--space-6) 80px;
}

.mega-block-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: var(--space-6);
}

.mega-block-hero__badge span {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.5);
}

.mega-block-hero__badge .overline-line {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.mega-block-hero__headline {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 2rem + 4vw, 5.5rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--mega-white);
    margin-bottom: var(--space-6);
}

.mega-block-hero__headline .hw-accent {
    color: transparent;
    background: linear-gradient(135deg, #4A7BF7 0%, #7BA3F7 40%, #C5D8FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.mega-block-hero__subtitle {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto var(--space-8);
}

.mega-block-hero__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .mega-block-hero { min-height: 400px; }
    .mega-block-hero__cta { flex-direction: column; }
    .mega-block-hero__cta .btn { width: 100%; justify-content: center; }
}
