/* =============================================
   RVS — Replace Vendor Sprawl
   ============================================= */
.rvs {
    padding: 100px 0;
    background: #F5F7FC;
}
.rvs__container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.rvs__header {
    text-align: center;
    margin-bottom: 30px;
}
span.rvs__label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(0, 0, 0, 0.50);
    margin-bottom: 10px;
    line-height: 28px;
}
.rvs__title {
    font-size: 38px;
    font-weight: 600;
    color: #000000;
    line-height: 54px;
    margin: 0 0 10px;
}
.rvs__subtitle p {
    font-size: 16px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.80);
    line-height: 28px;
    max-width: 900px;
    margin: 0 auto;
}

/* Grid */
.rvs__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Card */
.rvs__card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
}
.rvs__card-title {
    font-size: 20px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.8);
    line-height: 27px;
    margin: 0 0 10px;
}

/* List */
.rvs__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.rvs__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.rvs__item:before {
    display: none;
}
.rvs__check {
    flex-shrink: 0;
    line-height: 0;
}
.rvs__item-text {
    font-size: 14px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.80);
    line-height: 22px;
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 1200px) {
    .rvs__container {
        padding: 0 32px;
    }
    .rvs__title {
        font-size: 38px;
    }
}
@media (max-width: 1024px) {
    .rvs {
        padding: 64px 0 80px;
    }
    .rvs__title {
        font-size: 34px;
    }
    .rvs__card {
        padding: 28px 28px 32px;
    }
}
@media (max-width: 768px) {
    .rvs {
        padding: 52px 0 68px;
    }
    .rvs__container {
        padding: 0 24px;
    }
    .rvs__header {
        margin-bottom: 40px;
    }
    .rvs__title {
        font-size: 28px;
    }
    .rvs__subtitle p {
        font-size: 15px;
    }
    .rvs__grid {
        gap: 16px;
    }
}
@media (max-width: 640px) {
    .rvs {
        padding: 44px 0 56px;
    }
    .rvs__container {
        padding: 0 16px;
    }
    .rvs__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .rvs__title {
        font-size: 24px;
    }
    .rvs__card {
        padding: 24px 20px 28px;
    }
}
@media (max-width: 480px) {
    .rvs__title {
        font-size: 22px;
        line-height: 1.2;
    }
    .rvs__subtitle p {
        font-size: 14px;
        line-height: 24px;
    }
    .rvs__card-title {
        font-size: 18px;
    }
    .rvs__item-text {
        font-size: 13px;
    }
}

/* =============================================
   PBRT — Pre-Built Role Templates
   ============================================= */
.pbrt {
    padding: 60px 0 0;
}
/* Header — left-aligned */
.pbrt__header {
    margin-bottom: 20px;
}
.pbrt__title {
    font-size: 24px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.8);
    line-height: 32px;
    margin: 0 0 4px;
}
.pbrt__subtitle {
    font-size: 14px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.70);
    line-height: 20px;
    margin: 0;
}

/* Grid */
.pbrt__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Card */
.pbrt__card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
}
.pbrt__card-top {
    margin-bottom: 26px;
}
.pbrt__card-title {
    font-size: 20px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.8);
    line-height: 27px;
    margin: 0 0 10px;
}
.pbrt__card-desc p {
    font-size: 15px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.70);
    line-height: 25px;
    margin: 0;
}
/* List */
.pbrt__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pbrt__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.pbrt__item:before {
    display: none;
}
.pbrt__check {
    flex-shrink: 0;
    line-height: 0;
}
.pbrt__item-text {
    font-size: 15px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.80);
    line-height: 20px;
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 1200px) {
    .pbrt__container {
        padding: 0 32px;
    }
    .pbrt__title {
        font-size: 28px;
    }
}
@media (max-width: 1024px) {
    .pbrt {
        padding: 60px 0 80px;
    }
    .pbrt__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .pbrt__title {
        font-size: 26px;
    }
}
@media (max-width: 768px) {
    .pbrt {
        padding: 52px 0 68px;
    }
    .pbrt__container {
        padding: 0 24px;
    }
    .pbrt__title {
        font-size: 24px;
    }
    .pbrt__card {
        padding: 24px 22px;
    }
}
@media (max-width: 640px) {
    .pbrt {
        padding: 44px 0 56px;
    }
    .pbrt__container {
        padding: 0 16px;
    }
    .pbrt__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .pbrt__title {
        font-size: 22px;
    }
}
@media (max-width: 480px) {
    .pbrt__title {
        font-size: 20px;
    }
    .pbrt__card-title {
        font-size: 16px;
    }
    .pbrt__card-desc p,
    .pbrt__item-text {
        font-size: 13px;
    }
}
