/* VELTRION SEO/PWA SSR Phase 38 */
.vseo-pwa {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    margin: 34px auto 22px;
    padding: clamp(22px, 3vw, 42px);
    border: 1px solid rgba(244, 205, 128, .22);
    border-radius: 28px;
    background:
        radial-gradient(circle at 15% 10%, rgba(211, 164, 83, .18), transparent 30%),
        radial-gradient(circle at 84% 8%, rgba(96, 154, 255, .12), transparent 34%),
        linear-gradient(135deg, rgba(8, 11, 20, .94), rgba(15, 18, 31, .88));
    box-shadow: 0 24px 80px rgba(0, 0, 0, .38), inset 0 1px 0 rgba(255, 255, 255, .06);
    overflow: hidden;
}

.vseo-pwa::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, transparent, rgba(255, 255, 255, .05), transparent),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 72px);
    opacity: .55;
}

.vseo-pwa__inner {
    position: relative;
}

.vseo-pwa__eyebrow {
    margin: 0 0 10px;
    color: rgba(255, 213, 139, .9);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.vseo-pwa__title {
    margin: 0;
    color: #fff6dd;
    font-size: clamp(28px, 4.8vw, 56px);
    line-height: 1.06;
    letter-spacing: -.04em;
    text-wrap: balance;
}

.vseo-pwa__lead {
    max-width: 850px;
    margin: 18px 0 0;
    color: rgba(238, 244, 255, .82);
    font-size: clamp(15px, 1.8vw, 19px);
    line-height: 1.72;
}

.vseo-pwa__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.vseo-pwa__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid rgba(255, 225, 164, .24);
    border-radius: 999px;
    color: #fff3d0;
    background: rgba(255, 255, 255, .06);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: -.01em;
    transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.vseo-pwa__btn:hover,
.vseo-pwa__btn:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(255, 217, 137, .62);
    background: rgba(255, 255, 255, .1);
}

.vseo-pwa__btn--primary {
    color: #160d04;
    border-color: rgba(255, 218, 139, .78);
    background: linear-gradient(135deg, #ffe19a, #c68833);
    box-shadow: 0 10px 28px rgba(199, 136, 51, .22);
}

.vseo-pwa__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
}

.vseo-pwa__card {
    min-height: 132px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 18px;
    background: rgba(255, 255, 255, .045);
}

.vseo-pwa__card strong {
    display: block;
    color: #fff4dc;
    font-size: 15px;
    margin-bottom: 8px;
}

.vseo-pwa__card span {
    display: block;
    color: rgba(231, 237, 250, .72);
    font-size: 13px;
    line-height: 1.58;
}

.vseo-pwa__note {
    margin: 18px 0 0;
    color: rgba(226, 234, 248, .62);
    font-size: 13px;
    line-height: 1.65;
}

@media (max-width: 960px) {
    .vseo-pwa__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .vseo-pwa {
        width: min(100% - 20px, 1180px);
        margin-top: 18px;
        border-radius: 20px;
    }

    .vseo-pwa__actions {
        flex-direction: column;
    }

    .vseo-pwa__btn {
        width: 100%;
    }

    .vseo-pwa__grid {
        grid-template-columns: 1fr;
    }

    .vseo-pwa__card {
        min-height: auto;
    }
}