.hero {
    position: relative;
    min-height: calc(100vh - 85px);
    display: grid;
    align-items: center;
    padding: 5rem 0;
    overflow: hidden;
    color: #ffffff;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-background,
.hero-media video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-background {
    background-size: cover;
    background-position: center;
    filter: saturate(1.2) brightness(0.7);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 8, 22, 0.2) 0%, rgba(5, 8, 22, 0.9) 100%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 2rem;
    align-items: center;
}

.hero-copy {
    max-width: 42rem;
}

.hero-copy h1 {
    margin-bottom: 1rem;
    line-height: 1.05;
}

.hero-text {
    margin-bottom: 2rem;
    color: rgba(226, 232, 240, 0.9);
    max-width: 34rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-details {
    display: grid;
    gap: 1rem;
}

.hero-card {
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1.5rem;
    backdrop-filter: blur(18px);
}

.hero-card h2 {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.hero-card p {
    color: rgba(226, 232, 240, 0.82);
}

.hero-card-secondary {
    background: rgba(34, 197, 94, 0.14);
}

@media (max-width: 980px) {
    .hero-inner {
        grid-template-columns: 1fr;
        padding-top: 3rem;
    }
}
