.business-page-wrapper {
    background: #fff;
    color: #6f7a88;
    font-family: "Plus Jakarta Sans", sans-serif;
    overflow: hidden;
}

.business-page-wrapper * {
    box-sizing: border-box;
}

.business-page-wrapper .container {
    width: min(100%, 1600px);
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.business-page-wrapper .hero-section {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.business-page-wrapper .hero-background,
.business-page-wrapper .hero-background::after,
.business-page-wrapper .hero-image {
    position: absolute;
    inset: 0;
}

/* .business-page-wrapper .hero-background::after {
    content: "";
    z-index: 1;
    background: linear-gradient(90deg, rgba(6, 15, 23, 0.56) 0%, rgba(6, 15, 23, 0.2) 48%, rgba(6, 15, 23, 0.05) 100%);
} */

.business-page-wrapper .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 7%;
}

.business-page-wrapper .hero-content {
    position: relative;
    z-index: 2;
    padding-left: 0;
}

.business-page-wrapper .hero-title {
    margin: 0;
    color: #fff;
    font-size: 42px;
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: 0;
}

.business-page-wrapper .intro-section {
    padding: 58px 0 40px;
}

.business-page-wrapper .intro-content {
    max-width: 1060px;
    margin: 0 auto;
    text-align: center;
}

.business-page-wrapper .section-title {
    margin: 0;
    color: #545c68;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: center;
}

.business-page-wrapper .section-description {
    max-width: 990px;
    margin: 38px auto 0;
    color: #6f7a88;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.35;
    text-align: center;
}

.business-page-wrapper .packages-section {
    padding: 0 0 70px;
}

.business-page-wrapper .packages-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
    max-width: 1600px;
    margin: 0 auto;
}

.business-page-wrapper .package-card {
    min-height: 448px;
    padding: 32px 38px 34px;
    border-radius: 16px;
    background: #f4f5f8;
}

.business-page-wrapper .package-title {
    margin: 0 0 34px;
    color: #542e6d;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
}

.business-page-wrapper .btn-select {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 305px;
    max-width: 100%;
    height: 48px;
    margin: 0 0 34px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #542e6d 0%, #bb73d8 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    box-shadow: none;
}

.business-page-wrapper .features-title {
    margin: 0 0 20px;
    color: #545c68;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.business-page-wrapper .features-list {
    display: grid;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.business-page-wrapper .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #6f7a88;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.25;
}

.business-page-wrapper .check-icon {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    margin-top: 1px;
}

.business-page-wrapper .check-icon path {
    stroke: #542e6d;
    stroke-width: 2.4;
}

.business-page-wrapper .services-section {
    padding: 0 0 92px;
}

.business-page-wrapper .services-section .section-title,
.business-page-wrapper .pro-services-section .section-title {
    margin-bottom: 32px;
}

.business-page-wrapper .services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    max-width: 1600px;
    margin: 0 auto;
}

.business-page-wrapper .service-card,
.business-page-wrapper .pro-service-card {
    min-height: 220px;
    max-height: 220px;
    padding: 40px 40px 28px;
    border: 1px solid #e9eff7;
    border-radius: 14px;
    background: #fff;
    display: flex;
    flex-direction: column;
    /* grid-template-columns: 58px minmax(0, 1fr);
    grid-template-areas:
        "icon title"
        ". text"; */
    column-gap: 18px;
    row-gap: 22px;
    align-items: start;
}

.business-page-wrapper .service-icon,
.business-page-wrapper .pro-service-icon {
    grid-area: icon;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.business-page-wrapper .service-icon img,
.business-page-wrapper .pro-service-icon img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.business-page-wrapper .service-title,
.business-page-wrapper .pro-service-title {
    grid-area: title;
    align-self: center;
    margin: 0;
    color: #545c68;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.15;
}

.business-page-wrapper .service-description,
.business-page-wrapper .pro-service-description {
    grid-area: text;
    margin: 0;
    color: #6f7a88;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
}

.business-page-wrapper .pro-services-section {
    padding: 0 0 104px;
}

/* .business-page-wrapper .pro-services-grid {
    grid-template-areas:
        "a b c"
        "d d e";
} */

.business-page-wrapper .pro-service-card:nth-child(1) {
    grid-area: a;
}

.business-page-wrapper .pro-service-card:nth-child(2) {
    grid-area: b;
}

.business-page-wrapper .pro-service-card:nth-child(3) {
    grid-area: c;
}

.business-page-wrapper .pro-service-card:nth-child(4) {
    grid-area: d;
}

.business-page-wrapper .pro-service-card:nth-child(5) {
    grid-area: e;
}

@media (max-width: 1199px) {
    .business-page-wrapper .container {
        width: min(100%, 1040px);
        max-width: 1040px;
    }

    .business-page-wrapper .hero-content {
        padding-left: 20px;
    }

    .business-page-wrapper .section-title {
        font-size: 36px;
    }
}

@media (max-width: 991px) {
    .business-page-wrapper .hero-section {
        height: 340px;
    }

    .business-page-wrapper .services-grid,
    .business-page-wrapper .pro-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-areas: none;
    }

    .business-page-wrapper .pro-service-card:nth-child(n) {
        grid-area: auto;
    }
}

@media (max-width: 767px) {
    .business-page-wrapper .container {
        width: 100%;
        max-width: 100%;
        padding: 0 18px;
    }

    .business-page-wrapper .hero-section {
        height: 182px;
        align-items: center;
    }

    .business-page-wrapper .hero-background::after {
        background: rgba(6, 15, 23, 0.34);
    }

    .business-page-wrapper .hero-image {
        object-position: center center;
    }

    .business-page-wrapper .hero-content {
        width: 100%;
        padding: 14px 0 0;
        text-align: center;
    }

    .business-page-wrapper .hero-title {
        font-size: 28px;
        line-height: 1.08;
    }

    .business-page-wrapper .intro-section {
        padding: 25px 0 26px;
    }

    .business-page-wrapper .section-title {
        max-width: 335px;
        margin-left: auto;
        margin-right: auto;
        font-size: 26px;
        line-height: 1.18;
    }

    .business-page-wrapper .section-description {
        margin-top: 28px;
        font-size: 11px;
        line-height: 1.2;
        max-width: 315px;
    }

    .business-page-wrapper .packages-section {
        padding-bottom: 28px;
    }

    .business-page-wrapper .packages-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .business-page-wrapper .package-card {
        min-height: 0;
        padding: 22px 18px 25px;
        border-radius: 10px;
    }

    .business-page-wrapper .package-title {
        margin-bottom: 22px;
        font-size: 19px;
    }

    .business-page-wrapper .btn-select {
        width: 100%;
        height: 32px;
        margin-bottom: 22px;
        font-size: 10px;
    }

    .business-page-wrapper .features-title {
        margin-bottom: 15px;
        font-size: 10px;
    }

    .business-page-wrapper .features-list {
        gap: 11px;
    }

    .business-page-wrapper .feature-item {
        gap: 8px;
        font-size: 9px;
    }

    .business-page-wrapper .check-icon {
        width: 10px;
        height: 10px;
        flex-basis: 10px;
    }

    .business-page-wrapper .services-section {
        padding-bottom: 46px;
    }

    .business-page-wrapper .services-section .section-title,
    .business-page-wrapper .pro-services-section .section-title {
        margin-bottom: 19px;
    }

    .business-page-wrapper .services-grid,
    .business-page-wrapper .pro-services-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .business-page-wrapper .service-card,
    .business-page-wrapper .pro-service-card {
        min-height: 100px;
        padding: 18px 16px 15px;
        border-radius: 8px;
        grid-template-columns: 44px minmax(0, 1fr);
        column-gap: 12px;
        row-gap: 12px;
    }

    .business-page-wrapper .service-icon,
    .business-page-wrapper .pro-service-icon,
    .business-page-wrapper .service-icon img,
    .business-page-wrapper .pro-service-icon img {
        width: 44px;
        height: 44px;
    }

    .business-page-wrapper .service-title,
    .business-page-wrapper .pro-service-title {
        font-size: 15px;
        line-height: 1.15;
    }

    .business-page-wrapper .service-description,
    .business-page-wrapper .pro-service-description {
        font-size: 10px;
        line-height: 1.3;
    }

    .business-page-wrapper .pro-services-section {
        padding-bottom: 42px;
    }
}

@media (max-width: 375px) {
    .business-page-wrapper .hero-title {
        font-size: 29px;
    }

    .business-page-wrapper .section-title {
        font-size: 24px;
    }
}
