.service-nav-v2 {
    padding: 70px 0;
    background: #f6f8fb;
    font-family: "Inter", sans-serif;
}

.service-nav-v2__box {
    display: grid;
    grid-template-columns: 360px 1fr;
    background:
        radial-gradient(circle at 70% 20%, rgba(35, 134, 255, 0.22), transparent 35%),
        linear-gradient(135deg, #061b36 0%, #08284d 50%, #031529 100%);
    border-radius: 18px;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 24px 60px rgba(3, 21, 41, 0.22);
}

/* LEFT */
.service-nav-v2__promo {
    position: relative;
    min-height: 560px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.service-nav-v2__promo-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.service-nav-v2__promo-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.34;
}

.service-nav-v2__promo::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(3, 21, 41, 0.28), rgba(3, 21, 41, 0.92)),
        linear-gradient(90deg, rgba(3, 21, 41, 0.88), rgba(3, 21, 41, 0.25));
    z-index: 1;
}

.service-nav-v2__promo-content,
.service-nav-v2__promo-bottom {
    position: relative;
    z-index: 2;
}

.service-nav-v2__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 34px;
    font-size: 14px;
    color: rgba(255,255,255,0.88);
}

.service-nav-v2__eyebrow-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.service-nav-v2__title {
    margin: 0 0 22px;
    font-size: 38px;
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.service-nav-v2__subtitle {
    margin: 0;
    font-size: 16px;
    line-height: 1.55;
    color: rgba(255,255,255,0.86);
}

.service-nav-v2__main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
	max-width:-webkit-fill-available;
    min-height: 58px;
    padding: 0 22px;
    border-radius: 8px;
    background: linear-gradient(135deg, #2f80ed, #1d5fd3);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 12px 26px rgba(47, 128, 237, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-nav-v2__main-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(47, 128, 237, 0.36);
}

/* RIGHT */
.service-nav-v2__content {
    padding: 38px 34px 24px;
    display: flex;
    flex-direction: column;
}

.service-nav-v2__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    border-left: 1px solid rgba(255,255,255,0.16);
    border-top: 1px solid rgba(255,255,255,0.16);
}

.service-nav-v2__card {
    position: relative;
    min-height: 210px;
    padding: 28px 26px;
    /* display: grid; */
    grid-template-columns: 92px 1fr;
    gap: 22px;
    align-items: center;
    color: #fff;
    text-decoration: none;
    border-right: 1px solid rgba(255,255,255,0.16);
    border-bottom: 1px solid rgba(255,255,255,0.16);
    transition: background 0.25s ease;
}

.service-nav-v2__card:hover {
    background: rgba(255,255,255,0.06);
}

.service-nav-v2__icon {
    width: 100;
    /* height: 92px; */
    border-radius: 50%;
    /* border: 1px solid rgba(126, 190, 255, 0.35); */
    /* background: rgba(255,255,255,0.035); */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
	margin-bottom:15px;
}

.service-nav-v2__icon img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.service-nav-v2__card-title {
    margin: 0 0 10px;
    font-size: 21px;
    line-height: 1.22;
    font-weight: 800;
}

.service-nav-v2__card-text {
    margin: 0 0 14px;
    font-size: 15px;
    line-height: 1.45;
    color: rgba(255,255,255,0.72);
}

.service-nav-v2__more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #48a7ff;
    font-size: 14px;
    font-weight: 700;
}

.service-nav-v2__card:hover .service-nav-v2__more {
    gap: 12px;
}

/* BOTTOM CTA */
.service-nav-v2__bottom {
    margin-top: 22px;
    padding: 20px 24px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(47,128,237,0.28), rgba(47,128,237,0.10));
    display: grid;
    grid-template-columns: 70px 1fr auto;
    gap: 22px;
    align-items: center;
}

.service-nav-v2__bottom-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-nav-v2__bottom-title {
    margin: 0 0 5px;
    font-size: 20px;
    font-weight: 800;
}

.service-nav-v2__bottom-text {
    margin: 0;
    font-size: 15px;
    color: rgba(255,255,255,0.72);
}

.service-nav-v2__bottom-btn {
    min-width: 220px;
    min-height: 54px;
    padding: 0 20px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.72);
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-size: 15px;
    font-weight: 700;
    transition: background 0.25s ease;
}

.service-nav-v2__bottom-btn:hover {
    background: rgba(255,255,255,0.10);
}

/* ADAPTIVE */
@media (max-width: 1200px) {
    .service-nav-v2__box {
        grid-template-columns: 320px 1fr;
    }

    .service-nav-v2__card {
        grid-template-columns: 76px 1fr;
        gap: 18px;
    }

    .service-nav-v2__icon {
        width: 76px;
        height: 76px;
    }

    .service-nav-v2__icon img {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 992px) {
    .service-nav-v2__box {
        grid-template-columns: 1fr;
    }

    .service-nav-v2__promo {
        min-height: 420px;
    }

    .service-nav-v2__content {
        padding: 28px 24px 24px;
    }
}

@media (max-width: 767px) {
    .service-nav-v2 {
        padding: 40px 0;
    }

    .service-nav-v2__box {
        border-radius: 14px;
    }

    .service-nav-v2__promo {
        min-height: 380px;
        padding: 28px 22px;
    }

    .service-nav-v2__title {
        font-size: 30px;
    }

    .service-nav-v2__grid {
        grid-template-columns: 1fr;
    }

    .service-nav-v2__card {
        min-height: auto;
        padding: 22px 0;
        grid-template-columns: 68px 1fr;
        border-right: none;
    }

    .service-nav-v2__icon {
        width: 68px;
        height: 68px;
    }

    .service-nav-v2__icon img {
        width: 42px;
        height: 42px;
    }

    .service-nav-v2__card-title {
        font-size: 19px;
    }

    .service-nav-v2__bottom {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .service-nav-v2__bottom-btn {
        width: 100%;
        min-width: 0;
    }
}