.sync__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
    width: 100%;
    max-width: 100%;
}

@media (max-width: 640px) {
    .sync__grid {
        grid-template-columns: 1fr;
    }
}

/* ── Base Card ── */
.sync__card {
    position: relative;
    border-radius: 24px;
    padding: 2.2rem 2rem 2rem;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

/* ── SELLER CARD ── */
.sync__card--seller {
    background: linear-gradient(145deg, #080032 0%, #001877 50%, #000000 100%);
    box-shadow:
        0 4px 24px rgba(108, 63, 255, 0.25),
        0 1px 0 rgba(255, 255, 255, 0.06) inset;
    border: 1px solid rgba(108, 63, 255, 0.3);
    color: #fff;
}
.sync__card--seller:hover {
    box-shadow:
        0 16px 48px rgba(108, 63, 255, 0.35),
        0 1px 0 rgba(255, 255, 255, 0.08) inset;
}

/* ── BUYER CARD ── */
.sync__card--buyer {
    background: linear-gradient(145deg, #ffffff 0%, #ffffff 50%, #ffffff 100%);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.9) inset;
    border: 1px solid rgba(180, 160, 255, 0.25);
    color: #1a1a2e;
}
.sync__card--buyer:hover {
    box-shadow:
        0 16px 48px rgba(108, 63, 255, 0.15),
        0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

/* Deco blobs */
.sync__deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(55px);
}
.sync__card--seller .sync__deco--1 {
    width: 180px;
    height: 180px;
    background: #ff0054;
    left: -50px;
    bottom: -50px;
    opacity: 0.5;
}
.sync__card--seller .sync__deco--2 {
    width: 120px;
    height: 120px;
    background: #ff0054;
    right: -30px;
    top: -30px;
    opacity: 0.25;
}
.sync__card--buyer .sync__deco--1 {
    width: 200px;
    height: 200px;
    background: #ff0054;
    left: -60px;
    bottom: -60px;
    opacity: 0.38;
}
.sync__card--buyer .sync__deco--2 {
    width: 120px;
    height: 120px;
    background: #ff0054;
    right: -30px;
    top: -30px;
    opacity: 0.22;
}

/* Top row */
.sync__top {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.4rem;
    position: relative;
    z-index: 2;
}

.sync__icon-box {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.sync__card--seller .sync__icon-box {
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    box-shadow: 0 4px 18px rgba(124, 58, 237, 0.5);
}
.sync__card--buyer .sync__icon-box {
    background: linear-gradient(135deg, #6d28d9, #db2777);
    box-shadow: 0 4px 18px rgba(109, 40, 217, 0.3);
}
.sync__icon-box svg {
    width: 22px;
    height: 22px;
}

.sync__label-group {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.sync__eyebrow {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.sync__card--seller .sync__eyebrow {
    color: rgba(200, 180, 255, 0.7);
}
.sync__card--buyer .sync__eyebrow {
    color: rgba(109, 40, 217, 0.6);
}

.sync__title {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.55rem);
    letter-spacing: 0.05em;
    line-height: 1.05;
    font-weight: 700;
}
.sync__card--seller .sync__title {
    background: linear-gradient(90deg, #fff 0%, #c4b5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.sync__card--buyer .sync__title {
    background: linear-gradient(90deg, #1a1a2e 0%, #6d28d9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Divider */
.sync__divider {
    height: 1px;
    border: none;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 2;
}
.sync__card--seller .sync__divider {
    background: linear-gradient(90deg, rgb(255 255 255), #ffffff);
}
.sync__card--buyer .sync__divider {
    background: linear-gradient(90deg, rgb(0, 0, 0), transparent);
}

/* Body */
.sync__body {
    font-size: clamp(0.78rem, 2vw, 0.875rem);
    line-height: 1.75;
    margin-bottom: 1.4rem;
    position: relative;
    z-index: 2;
}
.sync__card--seller .sync__body {
    color: rgba(220, 210, 255, 0.75);
}
.sync__card--buyer .sync__body {
    color: #4b4b6b;
}

/* Features */
.sync__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-bottom: 1.8rem;
    position: relative;
    z-index: 2;
}
.sync__feature {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: clamp(0.76rem, 2vw, 0.84rem);
    font-weight: 500;
}
.sync__card--seller .sync__feature {
    color: rgba(230, 220, 255, 0.9);
}
.sync__card--buyer .sync__feature {
    color: #2e2e4e;
}

.sync__dot {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.sync__card--seller .sync__dot {
    background: rgba(167, 139, 250, 0.2);
    border: 1px solid rgba(167, 139, 250, 0.4);
}
.sync__card--buyer .sync__dot {
    background: rgba(109, 40, 217, 0.1);
    border: 1px solid rgba(109, 40, 217, 0.25);
}
.sync__dot svg {
    width: 10px;
    height: 10px;
}

/* Button */
.sync__btn {
    position: relative;
    display: inline-flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 0.45rem;
    padding: 0.72rem 1.6rem;
    border-radius: 50px;
    border: none;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    text-decoration: none;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease;
    z-index: 2;
    overflow: hidden;
    color: #fff !important;
}
.sync__btn svg {
    transform: rotate(180deg);
}
.sync__btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.15) 0%,
        transparent 60%
    );
    border-radius: inherit;
    pointer-events: none;
}
.sync__card--seller .sync__btn {
background: linear-gradient(135deg, #ff7100, #ff3100);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.45);
}
.sync__card--seller .sync__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.6);
}
.sync__card--buyer .sync__btn {
background: linear-gradient(135deg, #ff7100, #ff3100);
    box-shadow: 0 4px 20px rgba(109, 40, 217, 0.3);
}
.sync__card--buyer .sync__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(109, 40, 217, 0.45);
}
.sync__btn:active {
    transform: scale(0.97);
}
.sync__btn svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}
.banner-BtnBox.banner-BtnBox-ar.partnerbanner-BtnBox {
    justify-content: center;
}




/* ── Grid — 4 columns, 2 rows ── */
.wcb__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
    margin-top: 30px;
}
@media (max-width: 991px) {
    .wcb__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575px) {
    .wcb__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
/* ── Card ── */
.wcb__card {
    border-radius: 20px; /* moderate rounded — not pill, not sharp */
    padding: 2rem 1.8rem 1.9rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: none; /* no border */
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.07),
        0 1px 4px rgba(0, 0, 0, 0.04);
    transition:
        transform 0.3s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(18px);
    animation: wcbRise 0.55s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.wcb__card:nth-child(1) {
    animation-delay: 0.05s;
}
.wcb__card:nth-child(2) {
    animation-delay: 0.12s;
}
.wcb__card:nth-child(3) {
    animation-delay: 0.19s;
}
.wcb__card:nth-child(4) {
    animation-delay: 0.26s;
}
.wcb__card:nth-child(5) {
    animation-delay: 0.33s;
}
.wcb__card:nth-child(6) {
    animation-delay: 0.4s;
}
.wcb__card:nth-child(7) {
    animation-delay: 0.47s;
}
.wcb__card:nth-child(8) {
    animation-delay: 0.54s;
}
@keyframes wcbRise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wcb__card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.13),
        0 4px 12px rgba(0, 0, 0, 0.06);
}

/* ── 4 different light background colors, repeat for rows ── */
.wcb__card:nth-child(4n + 1) {
    background: #fff7ed;
} /* warm peach  */
.wcb__card:nth-child(4n + 2) {
    background: #eff6ff;
} /* soft blue   */
.wcb__card:nth-child(4n + 3) {
    background: #f0fdf4;
} /* mint green  */
.wcb__card:nth-child(4n + 4) {
    background: #fdf4ff;
} /* light lilac */

/* ── Subtle large bg number deco ── */
.wcb__card::after {
    content: attr(data-index);
    position: absolute;
    bottom: -12px;
    left: 10px;
    font-size: 6rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

/* ── Icon box — moderate rounded, no border ── */
.wcb__icon {
    width: 50px;
    height: 50px;
    border-radius: 14px; /* moderate rounded square */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.6rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.wcb__card:hover .wcb__icon {
    transform: scale(1.1) rotate(-5deg);
}

/* icon bg matches card but slightly deeper tint */
.wcb__card:nth-child(4n + 1) .wcb__icon {
    background: #fed7aa;
} /* peach deeper  */
.wcb__card:nth-child(4n + 2) .wcb__icon {
    background: #bfdbfe;
} /* blue deeper   */
.wcb__card:nth-child(4n + 3) .wcb__icon {
    background: #bbf7d0;
} /* green deeper  */
.wcb__card:nth-child(4n + 4) .wcb__icon {
    background: #e9d5ff;
} /* lilac deeper  */

.wcb__icon svg {
    width: 22px;
    height: 22px;
}

/* icon svg color matches accent */
.wcb__card:nth-child(4n + 1) .wcb__icon svg {
    color: #c2410c;
}
.wcb__card:nth-child(4n + 2) .wcb__icon svg {
    color: #1d4ed8;
}
.wcb__card:nth-child(4n + 3) .wcb__icon svg {
    color: #15803d;
}
.wcb__card:nth-child(4n + 4) .wcb__icon svg {
    color: #7e22ce;
}

/* ── Number ── */
.wcb__num {
    font-size: clamp(1.6rem, 3vw, 1.6rem);
    font-weight: 800;
    color: #0a0a0a;
    line-height: 1;
    margin-bottom: 0.45rem;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

/* ── Label ── */
.wcb__lbl {
    font-size: clamp(0.74rem, 1.5vw, 0.84rem);
    font-weight: 500;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}
.wcb__card:nth-child(4n + 1) .wcb__lbl {
    color: #9a3412;
}
.wcb__card:nth-child(4n + 2) .wcb__lbl {
    color: #1e40af;
}
.wcb__card:nth-child(4n + 3) .wcb__lbl {
    color: #166534;
}
.wcb__card:nth-child(4n + 4) .wcb__lbl {
    color: #6b21a8;
}

.bg-colorsec {
    background: #eefffd;
}
.alignpositiosec{
    align-items: start !important;
}