/* ============================================
   Homepage product banners — Web / Reseller / DMCA
   Layout preserved. Porcelain/atlantic glass polish.
   ============================================ */

.promo-stack {
    background: transparent;
}

.promo-band {
    padding: 72px 0;
    background: linear-gradient(180deg, rgba(255, 252, 247, 0.88) 0%, rgba(255, 252, 247, 0.62) 100%);
    border-top: 1px solid rgba(45, 90, 138, 0.08);
}

.promo-band:nth-of-type(even) {
    background: linear-gradient(180deg, rgba(232, 237, 244, 0.72) 0%, rgba(244, 239, 230, 0.55) 100%);
}

.promo-row {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 48px 64px;
    align-items: center;
}

.promo-row--flip {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
}

.promo-row--flip .promo-copy { order: 2; }
.promo-row--flip .promo-visual { order: 1; }

.promo-kicker {
    display: block;
    font-size: .95rem;
    font-weight: 500;
    color: #8fa3b8;
    letter-spacing: .02em;
    margin-bottom: 6px;
}

.promo-title {
    font-family: 'Space Grotesk', 'Poppins', sans-serif;
    font-size: clamp(2rem, 4.2vw, 2.85rem);
    font-weight: 700;
    color: #0c2340;
    line-height: 1.12;
    letter-spacing: -.4px;
    margin: 0 0 10px;
}

.promo-lead {
    font-size: 1.05rem;
    color: #6b7c90;
    line-height: 1.55;
    margin: 0 0 28px;
    max-width: 34rem;
}

.promo-feats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 22px;
    margin: 0 0 32px;
    max-width: 460px;
}

.promo-feat {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.promo-feat-ico {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: linear-gradient(165deg, rgba(226, 234, 244, 0.9), rgba(255, 252, 247, 0.7));
    color: #1e4068;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset, 0 6px 12px rgba(30, 42, 64, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
}

.promo-feat span {
    font-size: .92rem;
    font-weight: 600;
    color: #1a2b3c;
    line-height: 1.3;
}

.promo-price-block {
    margin-bottom: 22px;
}

.promo-price-label {
    display: block;
    font-size: .95rem;
    color: #7a8b9c;
    margin-bottom: 4px;
}

.promo-price {
    font-family: 'Space Grotesk', 'Poppins', sans-serif;
    font-size: clamp(1.85rem, 3.2vw, 2.35rem);
    font-weight: 700;
    color: #1e4068;
    line-height: 1.1;
    letter-spacing: -.3px;
}

.promo-price small {
    font-size: .55em;
    font-weight: 600;
    color: #7a8b9c;
    margin-left: 2px;
}

.promo-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(180deg, #4a7ab0 0%, #1e4068 100%);
    color: #fff !important;
    font-weight: 600;
    font-size: .98rem;
    padding: 13px 26px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 1px 0 rgba(255, 255, 255, .28) inset, 0 10px 22px rgba(45, 90, 138, .28);
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.promo-cta:hover {
    background: linear-gradient(180deg, #5b82b0 0%, #163250 100%);
    transform: translateY(-3px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .35) inset, 0 16px 32px rgba(45, 90, 138, .36);
    color: #fff !important;
}

.promo-visual {
    position: relative;
    min-width: 0;
}

.promo-visual-frame {
    border: 1.5px solid rgba(45, 90, 138, 0.16);
    border-radius: 14px;
    background: linear-gradient(165deg, rgba(255, 252, 247, 0.92), rgba(226, 234, 244, 0.5));
    padding: 8px 6px;
    overflow: hidden;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset, 0 16px 36px rgba(30, 42, 64, 0.1);
}

.promo-visual picture,
.promo-visual img {
    display: block;
    width: 100%;
    height: auto;
}

.promo-visual img {
    object-fit: contain;
    object-position: center right;
}

@media (max-width: 980px) {
    .promo-band { padding: 56px 0; }
    .promo-row,
    .promo-row--flip {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .promo-row .promo-copy,
    .promo-row .promo-visual,
    .promo-row--flip .promo-copy,
    .promo-row--flip .promo-visual {
        order: unset;
    }
    .promo-copy { order: 1; }
    .promo-visual { order: 2; }
    .promo-lead,
    .promo-feats { max-width: none; }
}

@media (max-width: 560px) {
    .promo-band { padding: 44px 0; }
    .promo-feats {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .promo-cta {
        width: 100%;
        justify-content: center;
    }
}
