.product-hero-modern {
    --hero-accent: #0095db;
    --hero-glow: rgba(0,149,219,.22);
    --hero-halo: rgba(0,149,219,.14);
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 24%, var(--hero-glow), transparent 34%),
        linear-gradient(135deg, #071421 0%, #0d2333 54%, #0a1b28 100%);
}
.product-hero-modern::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .18;
    background-image:
        linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 44px 44px;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 48%, #000 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 48%, #000 100%);
}
.product-hero-modern__inner {
    position: relative;
    z-index: 1;
    min-height: 620px;
    display: flex;
    align-items: center;
}
.product-hero-modern__eyebrow {
    margin: 0 0 14px;
    color: var(--hero-accent);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.product-hero-modern h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(2.7rem, 5vw, 5.2rem);
    line-height: .98;
}
.product-hero-modern__headline {
    max-width: 680px;
    margin: 24px 0 0;
    color: #fff;
    font-size: clamp(1.4rem, 2.35vw, 2.2rem);
    line-height: 1.15;
}
.product-hero-modern__copy {
    max-width: 630px;
    margin: 20px 0 0;
    color: rgba(255,255,255,.76);
    font-size: 1.06rem;
    line-height: 1.65;
}
.product-hero-modern__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}
.product-hero-modern__primary {
    background: var(--hero-accent) !important;
    border-color: var(--hero-accent) !important;
    color: #fff !important;
}
.product-hero-modern__secondary {
    border-color: rgba(255,255,255,.4) !important;
    color: #fff !important;
}
.product-hero-modern__workflow {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
    color: rgba(255,255,255,.68);
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .04em;
}
.product-hero-modern__workflow span:not(:last-child)::after {
    content: "→";
    margin-left: 10px;
    color: var(--hero-accent);
}
.product-hero-modern__visual {
    position: relative;
    padding: 16px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 26px;
    background: rgba(255,255,255,.06);
    box-shadow: 0 30px 80px rgba(0,0,0,.34);
    backdrop-filter: blur(10px);
}
.product-hero-modern__visual::after {
    content: "";
    position: absolute;
    inset: -18px;
    z-index: -1;
    border-radius: 34px;
    background: var(--hero-halo);
    filter: blur(24px);
}
.product-hero-modern__visual > img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
}
.product-hero-modern__visual--portrait > img {
    aspect-ratio: 4 / 3;
    object-position: center 48%;
}
.product-hero-modern__logo-card {
    position: absolute;
    right: 32px;
    bottom: 32px;
    max-width: min(46%, 310px);
    padding: 12px 18px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 14px;
    background: rgba(7,20,33,.88);
    box-shadow: 0 12px 30px rgba(0,0,0,.28);
    backdrop-filter: blur(10px);
}
.product-hero-modern__logo-card img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 52px;
    object-fit: contain;
}
@media (max-width: 959px) {
    .product-hero-modern__inner {
        min-height: auto;
        padding-top: 72px;
        padding-bottom: 72px;
    }
    .product-hero-modern__visual { margin-top: 18px; }
    .product-hero-modern__logo-card { right: 26px; bottom: 26px; }
}
@media (max-width: 639px) {
    .product-hero-modern__logo-card {
        position: static;
        max-width: 100%;
        margin-top: 12px;
    }
}
