.soam-em {
    --ink: #f8fbff;
    --muted: #b7c0cc;
    --panel: rgba(255, 255, 255, .085);
    --panel-strong: rgba(255, 255, 255, .14);
    --line: rgba(255, 255, 255, .18);
    --blue: #2f80ff;
    --mint: #29d0a8;
    --copper: #d79b5c;
    --deep: #11151d;
    color: var(--ink);
    background: var(--deep);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.soam-em * {
    box-sizing: border-box;
}

.soam-em a {
    text-decoration: none;
}

.soam-em-hero {
    min-height: 720px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
    align-items: center;
    gap: clamp(28px, 5vw, 72px);
    padding: clamp(96px, 12vw, 154px) clamp(18px, 6vw, 84px) clamp(44px, 7vw, 84px);
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(118deg, rgba(17, 21, 29, .97), rgba(17, 21, 29, .84) 46%, rgba(31, 43, 59, .72)),
        url("../img/hero-showcase.png") right center / min(58vw, 780px) auto no-repeat,
        #11151d;
}

.soam-em-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.32), transparent);
}

.soam-em-hero__copy {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.soam-em-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 6px 13px;
    border: 1px solid rgba(41, 208, 168, .38);
    color: #9ff5df;
    background: rgba(41, 208, 168, .08);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.soam-em h1,
.soam-em h2,
.soam-em h3,
.soam-em p {
    margin-top: 0;
}

.soam-em h1 {
    margin-bottom: 20px;
    max-width: 780px;
    color: #fff;
    font-size: clamp(48px, 6vw, 84px);
    line-height: .96;
    letter-spacing: 0;
}

.soam-em h2 {
    color: #fff;
    font-size: clamp(30px, 3.4vw, 52px);
    line-height: 1.03;
    letter-spacing: 0;
}

.soam-em h3 {
    color: #fff;
    font-size: 24px;
}

.soam-em p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.72;
}

.soam-em-hero__copy p {
    max-width: 650px;
    font-size: 21px;
}

.soam-em-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.soam-em-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border: 1px solid transparent;
    font-weight: 850;
    color: #fff;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.soam-em-btn:hover {
    transform: translateY(-2px);
    color: #fff;
}

.soam-em-btn--primary {
    background: linear-gradient(135deg, var(--blue), var(--mint));
    box-shadow: 0 18px 50px rgba(47, 128, 255, .32);
}

.soam-em-btn--ghost {
    border-color: var(--line);
    background: rgba(255, 255, 255, .06);
}

.soam-em-hero__visual {
    min-height: 430px;
}

.soam-em-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255,255,255,.12);
}

.soam-em-strip span {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: #161b25;
    color: #eef6ff;
    font-weight: 800;
}

.soam-em-section {
    padding: clamp(64px, 8vw, 112px) clamp(18px, 6vw, 84px);
}

.soam-em-section__head {
    max-width: 760px;
    margin-bottom: 34px;
}

.soam-em-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.soam-em-card,
.soam-em-values article {
    min-height: 280px;
    padding: 28px;
    border: 1px solid var(--line);
    background:
        linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.04)),
        #171d27;
    border-radius: 8px;
    transition: transform .2s ease, border-color .2s ease;
}

.soam-em-card:hover {
    transform: translateY(-4px);
    border-color: rgba(41, 208, 168, .5);
}

.soam-em-card span {
    display: block;
    margin-bottom: 38px;
    color: var(--copper);
    font-size: 13px;
    font-weight: 900;
}

.soam-em-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, .6fr);
    gap: 26px;
    padding: clamp(64px, 8vw, 104px) clamp(18px, 6vw, 84px);
    background: #edf4f8;
    color: #11151d;
}

.soam-em-feature h2,
.soam-em-feature p {
    color: #11151d;
}

.soam-em-feature ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.soam-em-feature li {
    padding: 18px 20px;
    border-left: 4px solid var(--blue);
    background: #fff;
    color: #17202b;
    font-weight: 800;
}

.soam-em-products {
    background: #10141b;
}

.soam-em-products .woocommerce ul.products li.product,
.woocommerce .soam-em-products ul.products li.product {
    padding: 18px;
    border: 1px solid var(--line);
    background: #171d27;
    border-radius: 8px;
}

.soam-em-products .woocommerce-loop-product__title,
.soam-em-products .price {
    color: #fff;
}

.soam-em-page-hero {
    padding: clamp(96px, 13vw, 160px) clamp(18px, 6vw, 84px) clamp(48px, 7vw, 86px);
    background:
        linear-gradient(110deg, rgba(17,21,29,.96), rgba(23, 31, 43, .84)),
        url("../img/hero-showcase.png") right center / min(56vw, 700px) auto no-repeat;
}

.soam-em-page-hero p {
    max-width: 760px;
}

.soam-em-values {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding: clamp(56px, 7vw, 90px) clamp(18px, 6vw, 84px);
}

.soam-em-contact {
    padding: clamp(90px, 12vw, 150px) clamp(18px, 6vw, 84px);
}

@media (max-width: 980px) {
    .soam-em-hero {
        min-height: auto;
        grid-template-columns: 1fr;
        background-size: 680px auto;
        background-position: right bottom;
        padding-bottom: 420px;
    }

    .soam-em-hero__visual {
        display: none;
    }

    .soam-em-grid,
    .soam-em-strip,
    .soam-em-values {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .soam-em-feature {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .soam-em-hero {
        padding-top: 88px;
        padding-bottom: 300px;
        background-size: 460px auto;
        background-position: center bottom;
    }

    .soam-em h1 {
        font-size: 43px;
    }

    .soam-em-hero__copy p {
        font-size: 18px;
    }

    .soam-em-grid,
    .soam-em-strip,
    .soam-em-values {
        grid-template-columns: 1fr;
    }

    .soam-em-actions {
        display: grid;
    }
}
