.service-promo {
    position: relative;
    isolation: isolate;
    min-height: 340px;
    margin-top: 36px;
    padding: 40px 44px;
    overflow: hidden;
    border: 1px solid rgba(101, 193, 255, .38);
    border-radius: 21px;
    background: linear-gradient(120deg, #04396f 0%, #075aa5 58%, #0878d7 100%);
    color: #fff;
    box-shadow: 0 22px 48px rgba(2, 70, 140, .2);
}

.service-promo::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 31, 72, .98) 0%, rgba(4, 55, 105, .93) 43%, rgba(4, 67, 125, .48) 61%, transparent 78%);
    pointer-events: none;
}

.service-promo::after {
    content: "";
    position: absolute;
    z-index: 1;
    right: -115px;
    bottom: -205px;
    width: 510px;
    height: 510px;
    border: 62px solid rgba(111, 216, 255, .07);
    border-radius: 50%;
    pointer-events: none;
}

.service-promo--graveyard {
    background: linear-gradient(120deg, #07335f 0%, #075aa4 58%, #0875cb 100%);
}

.service-promo--graveyard::before {
    background: linear-gradient(90deg, rgba(4, 42, 79, .98) 0%, rgba(6, 71, 126, .9) 48%, rgba(7, 92, 164, .25) 72%, transparent 86%);
}

.service-promo__copy {
    position: relative;
    z-index: 3;
    max-width: 630px;
}

.service-promo__kicker {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 999px;
    background: rgba(255, 255, 255, .09);
    color: #dceeff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.service-promo__brand {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    text-decoration: none;
}

.service-promo__brand img {
    display: block;
    width: 190px;
    max-width: 100%;
    height: auto;
}

.service-promo__brand--czechia img {
    width: 205px;
}

.service-promo__brand:focus-visible {
    border-radius: 8px;
    outline: 3px solid rgba(99, 242, 138, .75);
    outline-offset: 5px;
}

.service-promo h2 {
    margin: 17px 0 13px;
    color: #fff;
    font-size: clamp(31px, 3.1vw, 42px);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.service-promo h2 > span,
.service-promo h2 > strong {
    display: block;
}

.service-promo h2 > strong {
    color: #63f28a;
    text-shadow: none;
}

.service-promo__copy > p {
    max-width: 610px;
    margin: 0;
    color: #deefff;
    font-size: 15px;
    line-height: 1.62;
}

.service-promo__points {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 18px;
    margin: 20px 0 0;
    padding: 0;
    color: #e5f4ff;
    font-size: 12px;
    font-weight: 800;
    list-style: none;
}

.service-promo__points li::before {
    content: "✓";
    display: inline-grid;
    place-items: center;
    width: 19px;
    height: 19px;
    margin-right: 7px;
    border-radius: 50%;
    background: #4bea83;
    color: #064174;
    font-size: 12px;
    font-weight: 950;
    box-shadow: 0 0 13px rgba(72, 233, 130, .28);
}

.service-promo__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 47px;
    margin-top: 22px;
    padding: 0 20px;
    border-radius: 11px;
    background: #fff;
    color: #064f96;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(0, 25, 58, .24);
    transition: transform .2s, background .2s;
}

.service-promo__cta:hover,
.service-promo__cta:focus-visible {
    transform: translateY(-2px);
    background: #eaf6ff;
    outline: 0;
}

.service-promo__cta span {
    font-size: 20px;
}

.service-promo__visual {
    position: absolute;
    z-index: 0;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.service-promo__visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.service-promo--graveyard .service-promo__visual img {
    position: absolute;
    right: -1%;
    top: 50%;
    width: min(49%, 520px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 24px 30px rgba(0, 20, 54, .34));
    transform: translateY(-50%);
}

@media (max-width: 1040px) {
    .service-promo {
        min-height: 330px;
        padding: 36px;
    }

    .service-promo__copy {
        max-width: 56%;
    }

    .service-promo h2 {
        font-size: 34px;
    }
}

@media (max-width: 760px) {
    .service-promo {
        min-height: 610px;
        padding: 28px 22px 265px;
    }

    .service-promo::before {
        background: linear-gradient(180deg, rgba(3, 31, 72, .99) 0%, rgba(4, 55, 105, .97) 52%, rgba(4, 62, 116, .52) 72%, transparent 91%);
    }

    .service-promo::after {
        right: -190px;
        bottom: -260px;
    }

    .service-promo__copy {
        max-width: none;
    }

    .service-promo h2 {
        font-size: 31px;
    }

    .service-promo__copy > p {
        font-size: 14px;
    }

    .service-promo__points {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 18px;
    }

    .service-promo__cta {
        width: 100%;
    }

    .service-promo--domain .service-promo__visual img,
    .service-promo--tls .service-promo__visual img {
        position: absolute;
        left: -78%;
        bottom: 0;
        width: 180%;
        height: auto;
        object-fit: initial;
    }

    .service-promo--graveyard .service-promo__visual img {
        right: 50%;
        top: auto;
        bottom: -4%;
        width: 112%;
        max-width: 520px;
        transform: translateX(50%);
    }
}

@media (max-width: 430px) {
    .service-promo {
        min-height: 625px;
        margin-top: 28px;
        padding: 25px 18px 255px;
        border-radius: 17px;
    }

    .service-promo h2 {
        font-size: 29px;
    }

    .service-promo__brand img {
        width: 165px;
    }

    .service-promo__brand--czechia img {
        width: 180px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .service-promo__cta {
        transition: none;
    }
}
