
/* ——— layout ——— */
.services_inner {
    color: var(--blue2);
    background: var(--bg);
    padding: clamp(24px, 4vw, 56px) 16px;
}

.services_inner__head {
    margin: 0 auto clamp(20px, 3vw, 28px);
    text-align: center;
}

.services_inner__title {
    font: 600 32px / 1.2 var(--font);
    text-transform: uppercase;
    margin: 70px auto 70px;
    text-align: center;
}

/* ——— tabs ——— */
.services_inner__tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    background-color: var(--grey-soft);
    font-weight: 600;
    font-size: 18px;
    line-height: 120%;
    align-items: center;
    justify-content: space-around;
    margin: auto;
    border-radius: 100px;
    padding: 5px;
    max-width: 1100px;
}

.services_inner__tab {
    appearance: none;
    border: 0;
    color: var(--blue2);
    padding: 17px 10px;
    border-radius: 999px;
    transition: transform .15s ease, background-color .2s ease;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    line-height: 120%;
    width: calc(33% - 14px);

}
.services_inner__tab:hover {
    background: var(--blue);
    color: #fff;
}
.services_inner__tab.is-active {
    background: var(--blue);
    color: #fff;
}

/* ——— card ——— */
.services_inner__item {

    margin: clamp(16px, 4vw, 32px) auto 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(18px, 3vw, 28px);
    align-items: start;
}

@media (min-width: 992px) {
    .services_inner__item {
        grid-template-columns: 0.95fr 1.05fr;
        gap: clamp(24px, 3vw, 40px);
    }
}

/* ——— media ——— */
.services_inner__media {
    border-radius: var(--radius-xl);
    overflow: hidden;
    /* box-shadow: var(--shadow-sm); */
    background: #ddd;
}
.services_inner__media img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* ——— content ——— */
.services_inner__content {
    padding: 0 clamp(6px, 1vw, 8px);
}

.services_inner__subtitle {
    font-family: Manrope;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 0%;
    text-transform: uppercase;
    padding-bottom: 10px

}

.services_inner__lead {
    font-family: Manrope;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 0%;
}

/* ——— list ——— */
.services_inner__list-title {
    font-family: Manrope;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 0%;
    padding-top: 20px;

}

.services_inner__list {
    margin: 0 0 14px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
    margin-bottom: 30px
}
.services_inner__list li {
    position: relative;
    padding-left: 16px;
    line-height: 1.45;
    font-family: Manrope;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 0%;
    align-items: center;
}
.services_inner__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
}

/* ——— price & CTA ——— */
.services_inner__price {
    font-family: Manrope;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 0%;
}



/* блок карго */
.cargo{
    background: var(--bg);
    padding: clamp(28px,4vw,56px) 16px;
    font-family: var(--font);
    color: var(--blue2);
}
.cargo__title{
    font-family: Manrope;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 32px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    padding-bottom: 50px;

}
.cargo__grid{
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;         /* мобилка — одна колонка */
    gap: clamp(18px,3vw,28px);
}

@media (min-width: 1024px){
    .cargo__grid{
        /* левая колонка не шире 385px, может сжиматься на меньших экранах */
        grid-template-columns: minmax(0, 385px) 1fr;
    }
    .cargo__aside{
        max-width: 340px;                 /* на всякий случай ограничим контент */
        justify-self: start;              /* чтобы не растягивалась */
        width: 100%;
    }
}



.cargo__aside p{
    font-family: Manrope;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 0%;
}
.btn{
    display:inline-flex;
    align-items:center;justify-content:center;
    padding:14px 22px;
    border-radius:999px;
    font-weight:700;
    text-decoration:none;
    box-shadow: var(--shadow-sm);
    transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease;
}
.btn--blue{ background: var(--blue); color:#fff; }
.btn--blue:hover{ transform: translateY(-1px); }

/* сетка карточек */
.cargo__cards{
    display:grid;
    grid-template-columns: 1fr;
    gap: clamp(16px,2.4vw,20px);
}
@media (min-width: 680px){
    .cargo__cards{ grid-template-columns: repeat(2,1fr); }
}
@media (min-width: 1024px){
    .cargo__cards{ grid-template-columns: repeat(3,1fr); }
}

/* карточка */
.c-card{
    position:relative;
    overflow:hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    min-height: 360px;
    background:#d9d9d9;
    isolation:isolate;
}
.c-card__img{
    position:absolute; inset:0;
    width:100%; height:100%;
    object-fit:cover;
    filter: saturate(1) contrast(1.05);
    z-index:-2;
}

/* затемнение сверху/снизу для читаемости */
.c-card::before{
    content:"";
    position:absolute; inset:0;
    background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, transparent 35%, rgba(0,0,0,.55) 75%);
    z-index:-1;
}

/* кнопка-стрелка */
.c-card__arrow{
    position:absolute;
    right:16px; top:16px;
    width:48px; height:48px;
    border-radius:50%;
    display:grid; place-items:center;
    background:#fff;
    color: var(--blue2);
    border:none; cursor:pointer;
}

/* низ карточки */
.c-card__bottom{
    position:absolute;
    left:20px; right:20px; bottom:16px;
    display:flex; flex-direction:column; gap:14px;
}
.c-card__title{
    color:#fff;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;

}

