.features-section .section-heading {
    margin: unset;
}

.features-section .section-body {
    max-width: 100%;
    margin-top: 1rem;
}

.services-frame {
    max-width: 1280px;
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    padding: 0;
}

/* ---------- SERVICES SECTION ---------- */
.section-heading {
    max-width: 100%;
    margin: auto;
}

.service-item.nav-link {
    display: block;
    width: 100%;
    text-align: left;
    background: transparent;
    border: 0;
    border-bottom: 1px dashed var(--is-border);
    border-radius: 0;
    padding: 0;
    color: var(--ink);
    cursor: pointer;
}

.service-item.nav-link:last-child {
    border-bottom: 0;
}

.service-item.nav-link:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: -2px;
}

.services-body {
    margin-top: 3rem;
    align-items: center;
}

.service-row {
    display: grid;
    grid-template-columns: 92px 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 26px 28px;
}

.service-meta {
    font-size: 0.92rem;
    font-weight: 500;
    white-space: nowrap;
}

.service-item.active .service-meta .s {
    visibility: hidden;
}

.service-meta .s {
    color: var(--is-muted);
}

.service-meta .num {
    color: var(--is-primary);
    font-weight: 600;
}

.service-name {
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--is-dark);
}

.service-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.service-arrow svg {
    width: 18px;
    height: 18px;
}

.service-item.nav-link:hover .service-arrow {
    transform: translate(2px, -2px);
}

.service-detail {
    display: none;
}

/* ----- active tab (Bootstrap adds .active) ----- */
.service-item.nav-link.active {
    border-bottom: 0;
    border-radius: 6px;
    overflow: hidden;
    background:
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0 2px, transparent 2px 9px),
        #050519;
    color: #fff;
}

.service-item.nav-link.active .service-row {
    grid-template-columns: 92px 1fr auto;
    padding: 26px 28px 6px;
}

.service-item.nav-link.active .service-meta .s {
    color: #9aa0bd;
}

.service-item.nav-link.active .service-meta .num {
    color: #6f9bf2;
}

.service-item.nav-link.active .service-name {
    color: #fff;
}

.service-item.nav-link.active .service-arrow {
    background: var(--is-btn-gradient);
    color: #fff;
}

.service-item.nav-link.active .service-detail {
    display: flex;
    gap: 26px;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 6px 28px 30px;
}

.service-icon {
    line-height: 0;
}

.service-icon svg {
    width: 56px;
    height: 56px;
}

.service-text {
    display: block;
    color: var(--is-white);
    font-size: 0.98rem;
    line-height: 1.6;
    max-width: 46ch;
}

/* ---------- Right visual (tab panes) ---------- */
.services-visual {
    padding: 28px;
    position: relative;
    height: 500px;
}

.services-visual .tab-pane {
    height: 100%;
}

.services-visual .tab-pane.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-stage {
    position: relative;
    width: 100%;
    max-width: 460px;
    aspect-ratio: 4 / 3.4;
}

.shape {
    position: absolute;
    border-radius: 16px;
}

.shape-back {
    right: 4%;
    bottom: 0;
    width: 84%;
    height: 54%;
    background: var(--is-btn-gradient);
    box-shadow: inset 0px 0px 11px rgba(255, 255, 255, 0.68);
}

.shape-front {
    right: 4%;
    bottom: 0;
    width: 84%;
    height: 43%;
    background: var(--is-btn-gradient);
    border-radius: 14px;
    box-shadow: inset 0px 0px 11px rgba(255, 255, 255, 0.68);
}

.visual-img {
    position: absolute;
    bottom: 70px;
    left: 16%;
    width: 78%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transform: rotate(3deg);
    box-shadow: 0 24px 50px rgba(6, 10, 35, 0.28);
}

/* ---------- Bottom CTA ---------- */
.services-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    padding: 34px 28px;
}

.cta-text {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.01em;
    max-width: 40ch;
}

.cta-mid .robo-img {
    position: absolute;
    bottom: 0px;
    right: 10%;
    width: 332px;
    height: auto;
    z-index: 1;
}

.blog-vec1 {
    position: absolute;
    top: 0;
    left: 40%;
    width: 250px;
}

.blog-vec2 {
    position: absolute;
    bottom: 0;
    right: 3%;
    rotate: 180deg;
    width: 260px;
}

/* ---------- why-section ---------- */
.features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 18px 24px;
    border: 1px solid transparent;
    border-radius: 18px;
}

.why-feature-icon {
    flex: 0 0 auto;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #F4F4FB;
}

.why-feature-icon svg {
    width: 24px;
    height: 24px;
}

.why-section .feature-text {
    font-size: 0.875rem;
    color: var(--is-muted);
    margin-bottom: 1rem;
}

/* highlighted feature */
.feature-active {
    background: #fff;
    border-color: #eef0f6;
    box-shadow: 0 18px 40px rgba(20, 30, 80, 0.10);
}

.feature-active .why-feature-icon {
    background: var(--is-btn-gradient);
    color: #fff;
    box-shadow: 0 8px 18px rgba(28, 84, 184, 0.35);
}

/* ---------- Media ---------- */
.media-fill {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
}

.media-fill img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ---------- Right column ---------- */
.side-col {
    display: flex;
    flex-direction: column;
    gap: 22px;
    height: 100%;
}

.side-col .col-image {
    height: 50%;
    object-fit: cover;
    border-radius: var(--is-radius);
}

.side-media {
    flex: 1 1 auto;
    min-height: 200px;
}

/*-------------software-build-section----------------*/
.bg-section-wrapper {
    position: relative;
    background-color: #010128;
    z-index: 1;
    padding-bottom: 100px;
    padding-top: 100px;
}

.bg-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -3;
    width: 90%;
    height: 96%;
}

.bg-img-wrapper::before {
    content: "";
    position: absolute;
    width: 156.92px;
    height: 100%;
    background: -webkit-gradient(linear, right top, left top, from(#010128), to(rgba(2, 2, 48, 0)));
    background: linear-gradient(270deg, #010128 0%, rgba(2, 2, 48, 0) 100%);
    right: 0;
    top: 0;
    z-index: 1;
}

.bg-img-wrapper::after {
    content: "";
    position: absolute;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(2, 2, 48, 0)), to(#050519));
    background: linear-gradient(180deg, rgba(2, 2, 48, 0) 0%, #050519 100%);
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.bg-img-wrapper img {
    width: 100%;
    height: 100% !important;
    -o-object-fit: cover;
    object-fit: cover;
}

.font-white {
    color: var(--is-white) !important;
}

.sb-text-wrap .section-heading {
    margin: unset;
}

.scroller {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.scroller__inner {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    gap: 16px;
    will-change: transform;
}

.scroller[data-animated="true"] {
    padding: 1rem 0 .3rem;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.link-elm {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    background-color: #D5D0FF;
    border-radius: 100px;
    padding: 8px;
    padding-right: 24px;
    font-size: 16px;
    color: var(--is-text);
    font-weight: 500;
    text-decoration: none;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.link-elm .icon {
    width: 44px;
    height: 44px;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 28px;
    border-radius: 50%;
    color: #000;
}

.logs-grid,
.logs-grid-bottom {
    overflow: hidden;
    -webkit-mask: linear-gradient(90deg, transparent, white 10%, white 80%, transparent);
    mask: linear-gradient(90deg, transparent, white 10%, white 80%, transparent);
}

.flex-wrapper {
    display: flex;
}

.sb-text-wrap {
    width: 66%;
    margin-left: auto;
}


@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(var(--translateX));
    }
}

/*---------------ACHIEVEMENT----------------*/
.ach-section {
    background-color: #F5F5F5;
}

.bento-card {
    position: relative;
    border-radius: 20px;
    padding: 16px;
    overflow: hidden;
    min-height: 332px;
    background: #fff;
    border: 1px solid var(--is-border);
}

.row>[class*="col-lg-6"] .bento-card {
    min-height: 332px;
}

.card-clients {
    display: flex;
    flex-direction: column;
}

.ca-stat {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ca-num {
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
}

.ca-plus {
    font-size: 2rem;
    font-weight: 600;
    color: #b9bdcb;
    line-height: 1.1;
}

.ca-label {
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.2;
    align-self: center;
    margin-left: 4px;
}

.ca-text {
    color: var(--is-text);
    font-size: 0.92rem;
    line-height: 1.5;
    margin: 18px 0 16px;
}

.ca-media {
    margin-top: auto;
    border-radius: 12px;
    overflow: hidden;
    height: 120px;
}

.ca-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ---------- B: Projects (dark, wide) ---------- */
.card-projects {
    color: #fff;
    background:
        linear-gradient(115deg, rgba(10, 14, 28, .92) 0%, rgba(13, 20, 40, .78) 45%, rgba(20, 30, 58, .55) 100%),
        url("https://images.unsplash.com/photo-1522071820081-009f0129c71c?q=80&w=1200&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
}

.bp-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 11, 24, .25), rgba(8, 11, 24, .55));
}

.bp-num {
    position: absolute;
    top: 30px;
    left: 32px;
    font-size: 4rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
    z-index: 3;
}

.bp-num span {
    font-weight: 600;
}

.bp-chart {
    position: absolute;
    left: 32px;
    bottom: 26px;
    width: 320px;
    height: 175px;
    z-index: 2;
    border-bottom: 1px solid rgba(255, 255, 255, .25);
    border-left: 1px solid rgba(255, 255, 255, .18);
}

.bp-chart .bar {
    position: absolute;
    bottom: 0;
}

.bp-chart .tall {
    left: 250px;
    width: 58px;
    height: 165px;
    border-radius: 4px;
    background: linear-gradient(180deg, #6f8dff, #3b62f0);
}

.bp-chart .sq {
    border: 1px dashed rgba(255, 255, 255, .45);
    background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, .10) 0 1px, transparent 1px 7px);
}

.bp-chart .sq1 {
    left: 86px;
    width: 68px;
    height: 70px;
}

.bp-chart .sq2 {
    left: 168px;
    width: 70px;
    height: 110px;
}

.bp-text {
    position: absolute;
    right: 0;
    top: 50%;
    /* transform: translateY(-50%); */
    width: 44%;
    z-index: 3;
}

.bp-text h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin: 0 0 12px;
}

.bp-text p {
    color: #c9cee0;
    font-size: 0.96rem;
    line-height: 1.55;
    margin: 0;
}

.bp-elements-wrap {
    display: grid;
    grid-template-columns: 1.98fr 1fr;
}

.bar-chart-wrap {
    z-index: 2;
}

/* ---------- C: Experts ---------- */
.card-experts {
    display: flex;
    flex-direction: column;
}

.ce-watermark {
    position: absolute;
    right: 6px;
    top: 70px;
    font-size: 13rem;
    font-weight: 700;
    color: #eef0f4;
    line-height: 0.8;
    z-index: 0;
}

.ce-head {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

.ce-label {
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.25;
}

.ce-rating {
    text-align: right;
}

.ce-rating .stars {
    display: block;
    color: #11131f;
    font-size: 0.95rem;
    letter-spacing: 1px;
    background: #e9ebf2;
    padding: 2px 8px;
    border-radius: 6px;
}

.ce-rating .score {
    display: block;
    font-size: 1.9rem;
    font-weight: 700;
    margin-top: 4px;
    letter-spacing: -0.01em;
}

.ce-slider {
    position: relative;
    z-index: 1;
    height: 2px;
    background: #d8dbe6;
    margin: auto 0 0;
}

.ce-slider .dot {
    position: absolute;
    left: 0;
    top: 50%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--blue);
    transform: translate(0, -50%);
    box-shadow: 0 0 0 4px rgba(47, 111, 224, .18);
}

.ce-text {
    position: relative;
    z-index: 1;
    color: var(--is-text);
    font-size: 0.92rem;
    line-height: 1.5;
    margin: 22px 0 0;
}

/* ---------- D: On-Time (blue) ---------- */
.card-ontime {
    color: #fff;
    background: linear-gradient(150deg, #2f6fe0 0%, #1e54c0 55%, #173f97 100%);
    display: flex;
    flex-direction: column;
}

.card-ontime h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 12px;
    letter-spacing: -0.01em;
}

.card-ontime p {
    color: #d7e3fb;
    font-size: 0.94rem;
    line-height: 1.55;
    margin: 0;
    max-width: 30ch;
}

.cd-num {
    margin-top: auto;
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
}

.cd-arc {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
}

.cd-arc.arc1 {
    width: 230px;
    height: 230px;
    right: -70px;
    bottom: -90px;
}

.cd-arc.arc2 {
    width: 320px;
    height: 320px;
    right: -130px;
    bottom: -140px;
    border-color: rgba(255, 255, 255, .14);
}

/* ---------- E: Support ---------- */
.card-support {
    display: flex;
    flex-direction: column;
    background: #fff;
}

.cs-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.cs-badge {
    width: 118px;
    height: 118px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #cfe4ff, #6aa7f5 55%, #3f7fe0);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 4px 10px rgba(255, 255, 255, .6), 0 12px 26px rgba(63, 127, 224, .35);
}

.cs-badge-inner {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(160deg, #5fa0f3, #2f6fe0);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: inset 0 3px 8px rgba(255, 255, 255, .45);
}

.cs-badge-inner svg {
    width: 26px;
    height: 26px;
    position: absolute;
    top: 12px;
}

.cs-badge-24 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 16px;
    line-height: 1;
}

.cs-badge-txt {
    font-size: 0.46rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-align: center;
    line-height: 1.25;
    margin-top: 2px;
}

.cs-247 {
    text-align: right;
}

.cs-247 .big {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.cs-247 .sub {
    font-size: 0.82rem;
    color: var(--is-text);
    margin-top: 4px;
}

.cs-chat {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cs-chat .avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
}

.msg-in {
    display: flex;
    align-items: center;
    gap: 10px;
}

.msg-out {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.cs-chat .bubble {
    background: #14171f;
    color: #fff;
    font-size: 0.9rem;
    padding: 11px 16px;
    border-radius: 12px;
}

.msg-in .bubble {
    border-bottom-left-radius: 4px;
}

.msg-out .bubble {
    border-bottom-right-radius: 4px;
}

.cs-chat .send {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cs-chat .send svg {
    width: 16px;
    height: 16px;
}

/* ---------- F: Countries (purple, wide) ---------- */
.card-countries {
    color: #fff;
    background: radial-gradient(120% 90% at 70% 110%, #7a2bf0 0%, #4a1eb0 35%, #1c1140 75%, #0e0a22 100%);
}

.cf-glow {
    position: absolute;
    right: 8%;
    bottom: -20%;
    width: 70%;
    height: 80%;
    background: radial-gradient(circle, rgba(150, 90, 255, .55), transparent 65%);
    filter: blur(10px);
}

.cf-wave {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 70%;
}

.cf-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: baseline;
    gap: 16px;
}

.cf-num {
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
}

.cf-label {
    font-size: 1.15rem;
    font-weight: 500;
}

.bg-img-grad {
    background-image: url('../images/bg-gradient-img.png');
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.bg-img-grad::after {
    content: "";
    position: absolute;
    width: 261px;
    height: 100%;
    background: -webkit-gradient(linear, right top, left top, from(#020241), to(rgba(2, 2, 65, 0)));
    background: linear-gradient(270deg, #020241 0%, rgba(2, 2, 65, 0) 100%);
    right: 0;
    top: 0;
}

.bg-img-grad h2 {
    position: relative;
}

.as-process-1-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
    -webkit-perspective: 2000px;
    perspective: 2000px;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    position: relative;
    z-index: 1;
}

.as-process-1-card-single {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 40px 40px;
    padding-top: 0;
    -webkit-transition: var(--as-cube-1);
    transition: var(--as-cube-1);
}

.as-process-1-card-single .icon-elm {
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--is-btn-gradient);
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
    margin-bottom: 35px;
}

.as-process-1-card-single img{
    width: 30px !important;
    height: 30px !important;
}

.as-process-1-card-single .big-title {
    position: absolute;
    left: 50%;
    top: 55px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    font-size: 68px;
    font-weight: 700;
    color: #D5D0FF;
    opacity: 52%;
    z-index: -1;
}

.as-process-1-card-single .title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 18px;
}

.as-p-1 {
    font-family: var(--as-font-2);
    font-weight: 400;
    font-size: 18px;
    color: var(--as-clr-p-1);
    line-height: 1.555;
    margin-bottom: 0;
}

.as-process-1-card-single .bg-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 27px);
    z-index: -2;
}

.how-we-work-process {
    max-width: 610px;
    margin-left: auto;
    z-index: 1;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .bento-card, .row>[class*="col-lg-6"] .bento-card {
        min-height: 300px;
    }

    .bp-text {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 150px;
    }

    .bp-num {
        position: static;
        margin-bottom: 8px;
    }

    .card-projects {
        display: flex;
        flex-direction: column;
    }

    .bp-chart {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .ach-section {
        padding: 44px 10px;
    }

    .bento-card {
        padding: 22px;
        min-height: 0;
    }

    .ca-media {
        height: 150px;
    }

    .card-projects {
        min-height: 260px;
    }

    .bp-text {
        margin-top: 90px;
    }

    .cf-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}


/* ---------- Desktop column widths ---------- */
@media (min-width: 992px) {
    .wcol-text {
        flex: 0 0 42%;
        max-width: 42%;
    }

    .wcol-img {
        flex: 0 0 35%;
        max-width: 35%;
    }

    .wcol-side {
        flex: 0 0 23%;
        max-width: 23%;
    }
}

/* ---------- Tablet / mobile ---------- */
@media (max-width: 991.98px) {
    .wcol-img .media-fill {
        height: 360px;
    }

    .side-col {
        flex-direction: column;
    }

    .side-media {
        height: 280px;
    }

    .sb-text-wrap {
        width: 97%;
        margin-left: auto;
    }

    .as-process-1-card-single .big-title {
        font-size: 37px;
        top: 82px;
    }
}

@media (max-width: 575.98px) {
    .why-section {
        padding: 44px 4px;
    }

    .feature {
        padding: 16px 14px;
        gap: 14px;
    }

    .features {
        margin: 0;
    }

    .side-media {
        height: 240px;
    }
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .services-list {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .services-visual {
        display: none;
    }

    .visual-stage {
        max-width: 420px;
        margin-inline: auto;
    }
}

@media (max-width: 575.98px) {
    .services-section {
        padding: 32px 0;
    }

    .services-head {
        padding: 20px 18px 30px;
    }

    .service-row {
        padding: 20px 18px;
        grid-template-columns: 74px 1fr auto;
        gap: 10px;
    }

    .service-item.nav-link.active .service-row {
        padding: 22px 18px 4px;
    }

    .service-item.nav-link.active .service-detail {
        flex-direction: column;
        gap: 14px;
        padding: 4px 18px 24px;
    }

    .service-arrow {
        width: 38px;
        height: 38px;
    }

    .services-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 18px;
    }

    .btn-consult {
        width: 100%;
        justify-content: center;
    }
}