.platform-page__hero {
    padding: 80px 0;
}

.platform-page__wrapper {
    display: grid;
    grid-template-columns: 0.7fr 0.4fr;
    gap: 50px;
    align-items: center;
}

/* LEFT */
/* .platform-page__content {
    max-width: 600px;
} */

.platform-page__title {
    font-size: 48px;
    font-family: "Libre Baskerville", serif;
    color: #2F3551;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.platform-page__list {
    list-style: none;
    padding: 0;
}

.platform-page__item {
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    font-size: 18px;
    color: #474A5D;
}

/* STAR ICON */
.platform-page__item::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: #ff4db8;
    font-size: 18px;
}

/* RIGHT FORM */
.platform-page__form {
    background: #2e3550;
    padding: 30px;
}

.platform-page__form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    background: #e6e6e6;
}

.platform-page__btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #ff4db8, #d94cff);
    color: #fff;
    border: none;
    font-weight: bold;
    cursor: pointer;
}

.platform-page__checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 14px;
    color: #ccc;
}

.platform-page__small {
    font-size: 12px;
    color: #aaa;
    margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .platform-page__wrapper {
        grid-template-columns: 1fr;
    }

    .platform-page__form {
        width: 100%;
    }

    .platform-page__title {
        font-size: 34px;
    }
}

/* INITIAL */
.platform-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.platform-animate.show {
    opacity: 1;
    transform: translateY(0);
}


.solution-p__main-title {
    color: #2F3551;
}

.solution-p {
    padding: 30px 0;
}

.solution-p__tabs {
    gap: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.solution-p__tabs_title {
    text-align: center;
    --title-font-weight: 400;
}

.solution-p__desc {
    text-align: center;
}

@media (max-width: 768px) {
    .solution-p__tabs {
        gap: 10px;
        display: flex;
        justify-content: flex-start;
    }

    .solution-p__main-title {
        text-align: left;
    }

    .solution-p__tabs_title {
        text-align: left !important;
    }

    .solution-p__desc {
        text-align: left;
    }
}


.platform-page__features {
    padding: 80px 20px;
    background: #eef0f4;
}

/* GRID */
.platform-page__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 100px;
}

/* CARD */
.platform-page__card {
    background: #FCFCFD;
    padding: 30px;
    /* transition: all 0.3s ease; */
}

/* HOVER */
.platform-page__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

/* HEADER */
.platform-page__card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.platform-page__card:first-child .platform-page__card-header {
    align-items: start;
}

.platform-page__card h3 {
    font-size: 24px;
    color: #474A5D;
    margin: 0;
}

.platform-page__card p {
    font-size: 16px;
    color: #474A5D;
    line-height: 1.6;
}

/* ICON */
.platform-page__icon {
    font-size: 22px;
    color: #3d4154;
}

.platform-page__icon img {
    width: 32px;
}

.platform-page__icon img:first-child {
    padding-top: 5px;
}

/* =========================
   📱 RESPONSIVE
========================= */

@media (max-width: 992px) {
    .platform-page__grid {
        grid-template-columns: 1fr;
        margin-bottom: 60px;
    }

    .platform-page__card {
        padding: 25px;
    }

    .platform-page__card h3 {
        font-size: 20px;
    }
}

@media (max-width: 576px) {

    .platform-page__grid {
        margin-bottom: 40px;
    }

    .platform-page__features {
        padding: 60px 15px;
    }

    .platform-page__card {
        padding: 20px;
    }

    .platform-page__card p {
        font-size: 15px;
    }
}

.platform-page__tabs {
    display: flex;
    gap: 10px;
    margin: 40px 0 60px;
}

.platform-page__tab {
    padding: 10px 20px;
    border: none;
    background: #FCFCFD;
    cursor: pointer;
    transition: all .3s ease;
}

.tailored__tab1.active {
    background: #F44FCA;
    color: #FCFCFD;
    font-weight: 700;
    transition: all .3s ease;
}

.tailored__tab2.active {
    background: #E5C430;
    color: #2F3551;
    font-weight: 700;
    transition: all .3s ease;
}

.tailored__tab3.active {
    background: #EF5737;
    color: #FCFCFD;
    font-weight: 700;
    transition: all .3s ease;
}

.tailored__tab4.active {
    background: #474A5D;
    color: #FCFCFD;
    font-weight: 700;
    transition: all .3s ease;
}

.platform-page__tab-content {
    opacity: 0;
    /* transform: translateY(20px); */
    pointer-events: none;
    position: absolute;
    width: 100%;
    transition: all 0.4s ease;
    margin-bottom: 100px;
}

.platform-page__tab-content.active {
    opacity: 1;
    /* transform: translateY(0); */
    pointer-events: auto;
    position: relative;
}

.platform-page__tab-content .star-p__toolchain {
    padding: 0;
}

.platform-page__tab-content {
    display: none;
}

.platform-page__tab-content.active {
    display: block;
}

.star-p__toolchain {
    padding-bottom: 70px;
}

.solution-p__usecases {
    margin-bottom: 100px;
}


/* SECTION */
.platform-page__testimonial {
    padding: 80px 20px;
    background: #eef0f4;
}

/* GRID */
.platform-page__testimonial-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: stretch;
}

.platform-page__slider-wrapper {
    overflow: hidden;
    width: 100%;
}

/* LEFT */
.platform-page__testimonial-left {
    background: linear-gradient(135deg, #2f3551, #1c2138);
    padding: 50px;
}

/* SLIDER */
.platform-page__slider {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

/* SLIDES */
.platform-page__slide {
    min-width: 100%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
    /* same height */
}

/* CONTENT */
.platform-page__logo img {
    max-width: 150px;
    margin-bottom: 25px;
}

.platform-page__text {
    color: #e5e7ef;
    line-height: 1.7;
    font-size: 16px;
}

.platform-page__author {
    color: #fff;
    font-size: 20px;
    margin-top: 30px;
}

/* RIGHT */
.platform-page__testimonial-right {
    background: #f3f4f7;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.platform-page__testimonial-title {
    font-size: 40px;
    color: #2f3551;
    font-family: serif;
}

/* CONTROLS */
.platform-page__controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* DOTS */
.platform-page__dots {
    display: flex;
    gap: 10px;
}

.platform-page__dots span {
    width: 10px;
    height: 10px;
    background: #2f3551;
    border-radius: 50%;
    opacity: 0.5;
    cursor: pointer;
}

.platform-page__dots span.active {
    background: #ff4db8;
    opacity: 1;
}

/* ARROWS */
.platform-page__arrows button {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ff4db8, #d94cff);
    border: none;
    color: #fff;
    cursor: pointer;
}

/* MOBILE */
@media (max-width: 992px) {
    .platform-page__testimonial-wrapper {
        grid-template-columns: 1fr;
    }

    .platform-page__testimonial-title {
        font-size: 30px;
        margin-bottom: 20px;
    }
}

@media (max-width: 992px) {

    .platform-page__testimonial-wrapper {
        grid-template-columns: 1fr;
    }

    .platform-page__testimonial-left,
    .platform-page__testimonial-right {
        padding: 30px 20px;
    }

    .platform-page__slide {
        min-height: 280px;
    }
}

@media (max-width: 576px) {

    .platform-page__slide {
        min-height: 260px;
    }

    .platform-page__testimonial-title {
        font-size: 26px;
    }
}

.b-testimonials__inner {
    border: none;
    padding: 0;
    border-radius: 0;
    gap: 0;
    /* background-color: #fff; */
}

@media (min-width: 992px) {
    .b-testimonials__inner {
        grid-template-columns: minmax(0, 55%) minmax(0, 45%);
        align-items: stretch;
    }

    .b-testimonials .c-testimonial {
        padding-block: 24px;
    }
}

.b-testimonials__head {
    justify-content: space-between;
    padding: 25px;
    background-color: #fff;
}

.b-testimonials .c-testimonial {
    background-color: #2F3551;
    border-radius: 0;
}

.c-testimonial .c-testimonial__text {
    color: #FCFCFD;
}

.c-testimonial__title {
    color: #FCFCFD;
}

.b-testimonials .c-slider-testimonials__slide {
    width: 100% !important;
}

.b-testimonials__button {
    width: 45px;
    height: 32px;
    background-color: #F44FCA;
    color: #FCFCFD;
    display: flex;
    align-items: center;
    justify-content: center;
}

.b-testimonials__head .c-section-header__title {
    font-family: "Libre Baskerville", serif;
    --title-font-weight: 400;
    font-size: 32px;
}

.b-testimonials__button:hover {
    background-color: #F44FCA;
    color: #FCFCFD;
}

/* CONTROLS WRAPPER */
.b-testimonials__controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

/* DOTS */
.b-testimonials__pagination {
    display: flex;
    gap: 8px;
}

.b-testimonials__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #2f3551;
    opacity: 0.4;
    border-radius: 50%;
}

.b-testimonials__pagination .swiper-pagination-bullet-active {
    background: #ff4db8;
    opacity: 1;
}

/* ARROWS */
.b-testimonials__arrows {
    display: flex;
    gap: 15px;
}

.b-testimonials__button:focus {
    color: #fff;
    background-color: #F44FCA;
}

@media (max-width: 768px) {
    h2.c-title.c-section-header__title.default {
        font-size: 24px;
    }
}

.b-testimonials {
    margin-block: 0 !important;
}

.star-p__security-card.pink .star-p__security-card__btn {
    background-color: #FCFCFD;
    border-top: 2px solid #F44FCA;
    color: #474A5D;
}

.star-p__security-card.yellow .star-p__security-card__btn {
    background-color: #FCFCFD;
    border-top: 2px solid #E5C430;
    color: #474A5D;
}

.star-p__security-card.orange .star-p__security-card__btn {
    background-color: #FCFCFD;
    border-top: 2px solid #EF5737;
    color: #474A5D;
}

.star-p__demo {
    padding: 100px 0;
}

.platform-p__integrate {
    background-color: #FCFCFD;
    padding: 30px;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    text-align: center;
}

.platform-p__integrate h4 {
    font-size: 24px;
    color: #2F3551;
}

@media (max-width: 768px) {
    .platform-p__integrate {
        align-items: flex-start;
        text-align: left;
    }

    .platform-p__integrate h4 {
        font-size: 20px;
    }
}

.b-logo-grid__items {
    --d-columns-per-row-mobile: 2;
    --d-columns-per-row-tablet: 4;
    --d-columns-per-row-desktop: 6;
    --d-columns-gap-mobile: 48px;
    --d-columns-gap-desktop: 51px;
    gap: var(--d-columns-gap-mobile);
    flex-wrap: wrap;
    justify-content: center;
    display: flex;
}

.enterprises-container {
    display: flex;

}

.enterprises-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 25px 0;
}

.enterprises-badges img {
    aspect-ratio: 1;
    object-fit: contain;
    width: 65px;
    display: block;
}

.enterprises_heading {
    font-size: 24px;
    font-family: "Libre Baskerville", serif;
    text-transform: uppercase;
}

/* .integrate-section {
    padding-bottom: 80px;
} */

.enterprises-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #FCFCFD;
    padding: 25px;
}

@media (max-width: 991px) {
    .enterprises-container {
        flex-direction: column;
        text-align: center;
    }

    .enterprises-content {
        order: 2;
    }

    .enterprises-image {
        order: 1;
        text-align: center;
    }

    .enterprises-badges {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .enterprises-badges img {
        width: 50px;
    }
}

@media (max-width: 768px) {
    .integrate-section {
        padding: 0px;
    }

    .enterprises-content {
        text-align: left;
        align-items: start;
    }

    .enterprises_heading {
        text-transform: none;
    }
}

.b-testimonials__pagination {
    display: flex;
    gap: 10px;
}

.b-testimonials__pagination span {
    width: 10px;
    height: 10px;
    background: #2f3551;
    border-radius: 50%;
    opacity: 0.4;
    cursor: pointer;
}

.b-testimonials__pagination span.active {
    background: #ff4db8;
    opacity: 1;
}

.c-slider-testimonials {
    overflow: hidden;
}

.c-slider-testimonials__slides {
    display: flex;
}

.b-testimonials__button.b-testimonials__button--prev::before {
    content: "◀";
}

.b-testimonials__button.b-testimonials__button--next::before {
    content: "▶";
}

button#wpforms-submit-8773 {
    background: #F44FCA;
    width: 100%;
    margin-top: 10px !important;
}

.star-p__demo-section{
	grid-template-columns: 1fr
}

.star-p__demo-content{
	justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.star-p__clients-grid{
	display: flex;
	align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.star-p__demo-title{
	--title-font-weight: 400;
	text-align: center;
}

.star-p__demo-desc{
	text-align: center;
}

@media (max-width: 768px) {
    .star-p__demo-desc {
        margin-bottom: 20px;
    }
}

.star-p__client-logo{
	width: auto;
	height: 38px;
}

.platform-p__book-btn{
	background: #F44FCA;
	padding: 24px;
	text-align: center;
	font-size: 24px;
	color: #FCFCFD;
	font-weight: 600;
}