.dm-hero {
    position: relative;
    min-height: 690px;
    padding-top: 128px;
    overflow: hidden;
    background: var(--primary);
}

.dm-hero__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2,8,23,1) 0%, rgba(4,18,43,.98) 41%, rgba(4,18,43,.52) 66%, rgba(4,18,43,.15) 100%),
        var(--dm-hero-bg-image);
    background-size: cover;
    background-position: right center;
    opacity: .96;
}

.dm-hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(2,8,23,0) 62%, rgba(2,8,23,.7) 100%),
        radial-gradient(circle at 73% 38%, rgba(255,196,0,.16), transparent 24%);
}

.dm-hero__bolt-shape {
    position: absolute;
    right: 43.5%;
    top: 108px;
    width: 142px;
    height: 420px;
    opacity: .82;
    clip-path: polygon(55% 0, 18% 48%, 49% 48%, 36% 100%, 88% 36%, 57% 36%);
    background: linear-gradient(180deg, var(--accent), rgba(255,196,0,.05));
    filter: drop-shadow(0 0 22px rgba(255,196,0,.35));
    transform: rotate(8deg);
}

.dm-hero__content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
    align-items: center;
    gap: 42px;
    min-height: 562px;
}

.dm-hero__text {
    max-width: 660px;
    padding-bottom: 40px;
}

.dm-hero h1 {
    max-width: 640px;
    font-size: 66px;
    line-height: .98;
    font-weight: 900;
    letter-spacing: 0;
    margin: 0 0 22px;
    color: var(--white);
}

.dm-hero h1 span {
    color: var(--accent);
}

.dm-hero__description {
    max-width: 560px;
    font-size: 17px;
    line-height: 1.62;
    color: var(--muted);
    margin-bottom: 30px;
}

.dm-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.dm-hero__visual {
    position: relative;
    min-height: 520px;
    align-self: stretch;
}

.dm-hero__image {
    position: absolute;
    inset: -36px -118px 0 0;
    border-radius: 0 0 0 var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(2,8,23,.04), rgba(2,8,23,.24)),
        var(--dm-hero-worker-image);
    background-size: cover;
    background-position: center center;
    box-shadow: -28px 32px 90px rgba(0,0,0,.34);
    border-left: 1px solid rgba(255,255,255,.12);
}

.dm-hero__card {
    position: absolute;
    right: 28px;
    bottom: 26px;
    width: min(100%, 360px);
    padding: 26px 28px 24px;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(8, 36, 74, .96), rgba(6, 23, 47, .94));
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(10px);
}

.dm-hero__card i {
    color: var(--accent);
    font-size: 34px;
    margin-bottom: 16px;
}

.dm-hero__card h3 {
    color: var(--white);
    font-size: 22px;
    line-height: 1.12;
    font-weight: 900;
    margin-bottom: 10px;
}

.dm-hero__card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.48;
    margin: 0;
}

@media (max-width: 1100px) {
    .dm-hero {
        padding-bottom: 72px;
    }

    .dm-hero__content {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 36px;
    }

    .dm-hero__text {
        padding-bottom: 0;
    }

    .dm-hero__visual {
        min-height: 430px;
    }

    .dm-hero__bolt-shape {
        right: 30px;
        top: 188px;
        width: 112px;
        height: 310px;
        opacity: .46;
        z-index: 2;
    }

    .dm-hero__image {
        inset: 0;
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255,255,255,.14);
    }
}

@media (max-width: 700px) {
    .dm-hero {
        padding-top: 112px;
        min-height: auto;
        padding-bottom: 64px;
    }

    .dm-hero h1 {
        font-size: 42px;
        line-height: 1.03;
        letter-spacing: 0;
    }

    .dm-hero__description {
        font-size: 16px;
    }

    .dm-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .dm-hero__visual {
        min-height: auto;
    }

    .dm-hero__image {
        position: relative;
        min-height: 315px;
        inset: auto;
    }

    .dm-hero__card {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 16px;
        padding: 22px;
    }

    .dm-hero__bolt-shape {
        display: none;
    }
}
