/* =============================================
   CARTANTS - personal-branding.css
   Personal Branding service page
   ============================================= */

/* ════ HERO ══════════════════════════════════════
   Figma: padding 196px 100px, gap 32px
   bg: white screen + conic-gradient purple/lavender
   ═══════════════════════════════════════════ */
.pb-hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 180px 100px 100px;
    gap: 32px;
    width: 100%;
    min-height: 580px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;

    /* Figma: white screen + conic-gradient */
    background:
        linear-gradient(0deg, rgba(255,255,255,0.19), rgba(255,255,255,0.19)),
        conic-gradient(from 269.94deg at 72.78% 32%,
            #FFFFFF  0deg,
            #6070D7  122.88deg,
            #C598E3  240.58deg,
            #888DE8  360deg
        );
    background-blend-mode: screen, normal;
}

/* Content */
.pb-hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    max-width: 1030px;
    animation: cpFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.1s both;
}

/* H1 — Figma: 61px → 46px */
.pb-hero__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 46px;
    line-height: 56px;
    color: #2D335D;
    margin: 0;
}

.pb-hero__title-accent {
    background: linear-gradient(107.49deg, #7661B4 7.25%, #0D23AC 95.34%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Description — Figma: 25px → 17px */
.pb-hero__desc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 26px;
    color: #2D335D;
    margin: 0;
    max-width: 900px;
}

/* ── Responsive ── */
@media(max-width:1280px){ .pb-hero { padding: 140px 60px; } }
@media(max-width:1024px){
    .pb-hero { padding: 120px 40px; min-height: auto; }
    .pb-hero__title { font-size: 36px; line-height: 46px; }
}
@media(max-width:768px){
    .pb-hero { padding: 100px 24px 60px; }
    .pb-hero__title { font-size: 28px; line-height: 36px; }
    .pb-hero__title br { display: none; }
    .pb-hero__desc { font-size: 15px; }
}
@media(max-width:480px){
    .pb-hero__title { font-size: 24px; line-height: 32px; }
}


/* ════ SECTION 2 — PRICING ══════════════════════
   ═══════════════════════════════════════════ */
.pb-pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 100px;
    gap: 32px;
    width: 100%;
    background: #ffffff;
    box-sizing: border-box;
}

/* Header */
.pb-pricing__header {
    display: flex; flex-direction: column;
    align-items: center; gap: 12px;
    width: 100%; max-width: 1239px;
    text-align: center;
}
.pb-pricing__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; font-size: 26px;
    line-height: 34px; color: #2D335D; margin: 0;
}
.pb-pricing__desc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500; font-size: 14px;
    line-height: 22px; color: #2D335D; margin: 0;
    max-width: 700px;
}

/* ── Toggle — Figma: 375x88, border #2D335D, radius 64 ── */
.pb-toggle {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 6px;
    gap: 4px;
    width: 300px;
    height: 60px;
    background: rgba(254,254,254,0.25);
    border: 1.5px solid #2D335D;
    border-radius: 64px;
    box-sizing: border-box;
}

.pb-toggle__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 28px;
    height: 46px;
    border-radius: 64px;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600; font-size: 14px;
    transition: all 0.2s ease;
    background: transparent;
    color: #2D335D;
    flex: 1;
}

/* Active — Figma: Gradd2 pastel gradient */
.pb-toggle__btn--active {
    background: linear-gradient(107.49deg,
        #AED7EB 7.25%, #C598E3 51.3%,
        #92ADE6 73.32%, #888DE8 95.34%
    );
    color: #2D335D;
    font-weight: 700;
}

/* ── Cards Row ── */
.pb-cards-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 24px;
    width: 100%;
    max-width: 1239px;
}

/* ── Base card ── */
.pb-card {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 24px;
    flex: 1;
    max-width: 397px;
    position: relative;
    border-radius: 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pb-card:hover { transform: translateY(-4px); }

/* Plain card — Figma: radial gradient white→navy */
.pb-card--plain {
    background: radial-gradient(168.45% 168.45% at 51.89% 3.51%,
        rgba(254,254,254,0.5) 12.98%,
        rgba(81,89,173,0.5) 100%
    );
    box-shadow: 0 6px 26px rgba(49,32,70,0.2), 0 1px 5px rgba(0,0,0,0.15);
}

/* Popular card — Figma: pastel gradient */
.pb-card--popular {
    background: linear-gradient(107.49deg,
        rgba(174,215,235,0.4)  7.25%,
        rgba(197,152,227,0.4) 51.3%,
        rgba(146,173,230,0.4) 73.32%,
        rgba(136,141,232,0.4) 95.34%
    );
    box-shadow: 0 6px 26px rgba(49,32,70,0.2), 0 1px 5px rgba(0,0,0,0.15);
    border: 1px solid rgba(118,97,180,0.2);
}

/* Popular badge */
.pb-card__badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    padding: 4px 18px;
    background: linear-gradient(107.49deg, #7661B4 7.25%, #0D23AC 95.34%);
    border-radius: 32px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600; font-size: 12px;
    color: #ffffff; white-space: nowrap;
}

/* Card header — border bottom */
.pb-card__header {
    display: flex; flex-direction: column;
    gap: 6px; width: 100%;
    padding-bottom: 14px;
    border-bottom: 1px solid #C9CDE4;
}
.pb-card__name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; font-size: 26px;
    line-height: 32px; color: #2D335D; margin: 0;
}
.pb-card__tagline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500; font-size: 13px;
    line-height: 18px; color: #2D335D; margin: 0;
}

/* Price */
.pb-card__price {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    padding-bottom: 14px;
    border-bottom: 1px solid #C9CDE4;
    width: 100%;
}
.pb-card__amount {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; font-size: 36px;
    line-height: 44px; color: #2D335D;
    transition: all 0.2s ease;
}
.pb-card__period {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400; font-size: 15px;
    color: #8A92C5;
    padding-bottom: 6px;
    transition: all 0.2s ease;
}

/* Features */
.pb-card__features {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column;
    gap: 10px; width: 100%; flex: 1;
}
.pb-card__features li {
    display: flex; align-items: center; gap: 10px;
}
.pb-card__features li img {
    width: 16px; height: 16px;
    object-fit: contain; flex-shrink: 0; opacity: 0.8;
}
.pb-card__features li span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500; font-size: 13px;
    line-height: 18px; color: #2D335D;
}

/* Button — Figma: bg #4A559A */
.pb-card__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; height: 48px;
    background: #4A559A;
    border-radius: 24px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600; font-size: 14px;
    color: #ffffff !important; text-decoration: none;
    transition: background 0.15s, transform 0.15s;
    margin-top: auto;
}
.pb-card__btn:hover {
    background: #3A4278;
    transform: translateY(-1px);
    color: #ffffff !important;
}

/* ── Responsive ── */
@media(max-width:1280px){ .pb-pricing { padding: 64px 60px; } }
@media(max-width:1024px){
    .pb-pricing { padding: 48px 40px; }
    .pb-cards-row { flex-wrap: wrap; gap: 20px; }
    .pb-card { min-width: calc(50% - 10px); max-width: none; flex: none; }
    .pb-card--popular { min-width: 100%; order: -1; min-height: auto; }
}
@media(max-width:768px){
    .pb-pricing { padding: 40px 24px; }
    .pb-cards-row { flex-direction: column; align-items: center; }
    .pb-card { width: 100%; max-width: 400px; min-height: auto; }
    .pb-card--popular { min-height: auto; }
}


/* ════ SECTION 3 — HOW IT WORKS ═════════════════
   Figma: padding 32px 112px, gap 32px
   bg: radial-gradient + #F3F4FE
   ═══════════════════════════════════════════ */
.pb-how {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 64px 112px;
    gap: 28px;
    width: 100%;
    box-sizing: border-box;
    background:
        radial-gradient(100% 690.5% at 100% 1.55%,
            rgba(197,152,227,0.2) 0%,
            rgba(255,255,255,0) 100%
        ),
        #F3F4FE;
}

.pb-how__header {
    display: flex; flex-direction: column;
    align-items: center; gap: 10px;
    text-align: center;
}
.pb-how__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; font-size: 26px;
    line-height: 34px; color: #2D335D; margin: 0;
}
.pb-how__desc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400; font-size: 14px;
    line-height: 20px; color: #2D335D; margin: 0;
}

/* Rows */
.pb-how__row {
    display: flex; flex-direction: row;
    align-items: flex-start; gap: 24px;
    width: 100%; max-width: 1217px;
}
.pb-how__row--2col .pb-how__card { flex: 1; }

/* Card — transparent with border */
.pb-how__card {
    box-sizing: border-box;
    display: flex; flex-direction: column;
    align-items: flex-start;
    padding: 22px; gap: 14px;
    flex: 1;
    background: transparent;
    border-radius: 20px;
    border: 1.5px solid rgba(118,97,180,0.25);
    transition: border-color 0.2s, transform 0.2s;
}
.pb-how__card:hover {
    border-color: rgba(118,97,180,0.55);
    transform: translateY(-2px);
}

/* Number badge — Figma: 72x72 gradient radius 32 */
.pb-how__num-wrap {
    width: 50px; height: 50px;
    border-radius: 18px;
    background: linear-gradient(107.49deg, #7661B4 7.25%, #0D23AC 95.34%);
    box-shadow: 0 4px 4px rgba(0,0,0,0.19), inset 0 4px 10px rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.pb-how__num {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; font-size: 16px;
    color: #ffffff; text-align: center;
}

/* Figma: 31px → 16px semibold */
.pb-how__card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; font-size: 16px;
    line-height: 24px; color: #2D335D; margin: 0;
}

/* Figma: 20px → 12px */
.pb-how__card-desc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500; font-size: 12px;
    line-height: 18px; color: #2D335D; margin: 0;
}

/* ── Responsive ── */
@media(max-width:1280px){ .pb-how { padding: 56px 60px; } }
@media(max-width:1024px){
    .pb-how { padding: 48px 40px; }
    .pb-how__row { flex-wrap: wrap; }
    .pb-how__card { min-width: calc(50% - 12px); flex: none; }
}
@media(max-width:768px){
    .pb-how { padding: 40px 24px; }
    .pb-how__row, .pb-how__row--2col { flex-direction: column; }
    .pb-how__card { width: 100%; min-width: auto; }
}


/* ════ SECTION 4 — BEFORE VS AFTER ═════════════
   Figma: padding 64px 100px, gap 32px
   bg: pastel gradient overlay on dark purple
   ═══════════════════════════════════════════ */
.pb-bva {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 72px 100px;
    gap: 32px;
    width: 100%;
    box-sizing: border-box;
    background:
        linear-gradient(107.49deg,
            rgba(174,215,235,0.4)  7.25%,
            rgba(197,152,227,0.4) 51.3%,
            rgba(146,173,230,0.4) 73.32%,
            rgba(136,141,232,0.4) 95.34%
        ),
        radial-gradient(124.41% 513.32% at -20.35% 183.17%,
            #7661B4 0%, #172262 100%
        );
}

/* Header */
.pb-bva__header {
    display: flex; flex-direction: column;
    align-items: center; gap: 12px;
    text-align: center;
}
/* Figma: 49px → 28px white */
.pb-bva__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; font-size: 28px;
    line-height: 36px; color: #ffffff; margin: 0;
}
.pb-bva__desc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400; font-size: 14px;
    line-height: 20px; color: rgba(255,255,255,0.8); margin: 0;
}

/* Slider container */
.pb-bva__slider-wrap {
    width: 100%;
    max-width: 1100px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    border: 2px solid rgba(255,255,255,0.15);
}

/* The comparison slider */
.pb-bva__slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    cursor: ew-resize;
    user-select: none;
    -webkit-user-select: none;
    overflow: hidden;
    border-radius: 18px;
    background: #1a1a2e;
}

/* After image — fills full width (base layer) */
.pb-bva__img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    pointer-events: none;
    border-radius: 18px;
}
.pb-bva__img--after { z-index: 1; }

/* Before image wrapper — clipped on right */
.pb-bva__before-wrap {
    position: absolute;
    top: 0; left: 0;
    width: 50%; height: 100%;
    overflow: hidden;
    z-index: 2;
    border-radius: 18px 0 0 18px;
    transition: width 0s; /* instant — JS handles smooth via drag */
}
.pb-bva__before-wrap .pb-bva__img--before {
    position: absolute;
    top: 0; left: 0;
    width: 100vw; /* wider than wrapper so it doesn't distort */
    max-width: 1100px;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 0;
}

/* Divider line */
.pb-bva__divider {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    width: 3px;
    background: rgba(255,255,255,0.9);
    z-index: 10;
    transform: translateX(-50%);
    cursor: ew-resize;
    box-shadow: 0 0 12px rgba(0,0,0,0.4);
}

/* Drag handle circle */
.pb-bva__handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px; height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid rgba(118,97,180,0.6);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: ew-resize;
    transition: transform 0.1s ease;
}
.pb-bva__handle:hover { transform: translate(-50%, -50%) scale(1.1); }

/* Before / After labels */
.pb-bva__label {
    position: absolute;
    top: 16px;
    z-index: 8;
    padding: 4px 14px;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; font-size: 12px;
    letter-spacing: 0.5px;
    pointer-events: none;
}
.pb-bva__label--before {
    left: 16px;
    background: rgba(13,35,172,0.75);
    color: #ffffff;
}
.pb-bva__label--after {
    right: 16px;
    background: rgba(118,97,180,0.75);
    color: #ffffff;
}

/* Hint text */
.pb-bva__hint {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px; font-weight: 500;
    color: rgba(255,255,255,0.65);
    margin: 0; text-align: center;
    letter-spacing: 0.5px;
}

/* ── Responsive ── */
@media(max-width:1280px){ .pb-bva { padding: 60px 60px; } }
@media(max-width:1024px){ .pb-bva { padding: 48px 40px; } }
@media(max-width:768px){
    .pb-bva { padding: 40px 24px; gap: 24px; }
    .pb-bva__slider { aspect-ratio: 4/3; }
    .pb-bva__title  { font-size: 22px; }
    .pb-bva__handle { width: 38px; height: 38px; }
}


/* ════ SECTION 5 — WHY OUR PERSONAL BRANDING ════
   Figma: padding 120px 112px, gap 24px
   bg: white, alternating feature rows
   ═══════════════════════════════════════════ */
.pb-why {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 112px;
    gap: 0;
    width: 100%;
    background: #ffffff;
    box-sizing: border-box;
}

/* Header */
.pb-why__header {
    display: flex; flex-direction: column;
    align-items: center; gap: 12px;
    text-align: center;
    margin-bottom: 48px;
}
/* Figma: 49px → 26px */
.pb-why__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; font-size: 26px;
    line-height: 34px; color: #2D335D; margin: 0;
}
/* Figma: 25px → 14px */
.pb-why__desc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500; font-size: 14px;
    line-height: 22px; color: #2D335D; margin: 0;
}

/* Feature row — Figma: 1217x448 */
.pb-why__row {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 32px 0;
    gap: 64px;
    width: 100%;
    max-width: 1217px;
    border-bottom: 1px solid rgba(201,205,228,0.25);
}
.pb-why__row:last-of-type { border-bottom: none; }

/* Text side — Figma: 633px */
.pb-why__text-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
}

/* Icon — Figma: 64x64 → 36x36 */
.pb-why__icon {
    width: 36px; height: 36px;
    object-fit: contain;
    opacity: 0.85;
}

/* Title — Figma: 39px → 20px */
.pb-why__feat-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; font-size: 20px;
    line-height: 28px; color: #2D335D; margin: 0;
}

/* Description — Figma: 25px → 13px */
.pb-why__feat-desc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500; font-size: 13px;
    line-height: 20px; color: #3D4470; margin: 0;
    max-width: 520px;
}

/* Image side — Figma: 471x400 */
.pb-why__img-side {
    flex: 0 0 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pb-why__img-side img {
    width: 100%;
    max-height: 320px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 8px 24px rgba(13,35,172,0.07));
}

/* CTA */
.pb-why__cta {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
/* Figma: 444x56 gradient */
.pb-why__cta-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    height: 52px;
    background: linear-gradient(107.49deg, #7661B4 7.25%, #0D23AC 95.34%);
    border-radius: 24px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600; font-size: 15px;
    color: #ffffff !important;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: transform 0.15s ease, opacity 0.15s;
}
.pb-why__cta-btn:hover {
    transform: translateY(-2px);
    opacity: 0.92;
    color: #ffffff !important;
}

/* ── Responsive ── */
@media(max-width:1280px){ .pb-why { padding: 72px 60px; } }
@media(max-width:1024px){
    .pb-why { padding: 60px 40px; }
    .pb-why__img-side { flex: 0 0 280px; }
    .pb-why__row { gap: 40px; }
}
@media(max-width:768px){
    .pb-why { padding: 48px 24px; }
    .pb-why__row,
    .pb-why__row--left,
    .pb-why__row--right {
        flex-direction: column !important;
        gap: 24px; padding: 28px 0;
    }
    .pb-why__img-side { flex: none; width: 100%; order: -1; }
    .pb-why__img-side img { max-height: 220px; }
    .pb-why__feat-desc { max-width: 100%; }
}


/* ════ SECTION 6 — TESTIMONIALS + STATS ═════════
   ═══════════════════════════════════════════ */
.pb-testi {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 64px 100px;
    gap: 32px;
    width: 100%;
    background: #ffffff;
    box-sizing: border-box;
}

.pb-testi__header {
    display: flex; flex-direction: column;
    align-items: center; gap: 10px;
    text-align: center; width: 100%;
}
/* Figma: 61px → 28px */
.pb-testi__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; font-size: 28px;
    line-height: 36px; color: #2D335D; margin: 0;
}
/* Figma: 31px → 15px */
.pb-testi__desc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500; font-size: 15px;
    line-height: 22px; color: #2D335D; margin: 0;
}

/* Scroller — reuse ms-testi styles */
.pb-testi__scroller-wrap {
    position: relative;
    width: 100%; max-width: 1241px;
    display: flex; align-items: center; gap: 16px;
}
.pb-testi__track-outer {
    flex: 1; overflow: hidden;
    mask-image: linear-gradient(to right,transparent 0%,black 4%,black 96%,transparent 100%);
    -webkit-mask-image: linear-gradient(to right,transparent 0%,black 4%,black 96%,transparent 100%);
}
.pb-testi__track {
    display: flex; flex-direction: row;
    gap: 24px;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
    will-change: transform; padding: 8px 2px;
}
/* ── Standalone testimonial card for Personal Branding page ── */
.pb-tcard {
    box-sizing: border-box;
    display: flex !important;
    flex-direction: column !important;
    padding: 20px !important;
    gap: 14px !important;
    min-width: calc(33.333% - 16px) !important;
    max-width: calc(33.333% - 16px) !important;
    background: #ffffff !important;
    border: 1px solid #EEEFF6 !important;
    border-radius: 20px !important;
    box-shadow: 0 2px 16px rgba(13,35,172,0.05) !important;
    flex-shrink: 0 !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}
.pb-tcard:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 28px rgba(13,35,172,0.10) !important;
}
.pb-tcard .ms-tcard__top {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 12px !important;
    width: 100% !important;
}
.pb-tcard .ms-tcard__avatar {
    width: 44px !important; height: 44px !important;
    border-radius: 50% !important; overflow: hidden !important;
    flex-shrink: 0 !important;
    background: #B2ADD2 !important;
}
.pb-tcard .ms-tcard__avatar img {
    width: 100% !important; height: 100% !important;
    object-fit: cover !important; display: block !important;
}
.pb-tcard .ms-tcard__avatar-ph {
    width: 44px !important; height: 44px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #7661B4, #0D23AC) !important;
    display: flex !important; align-items: center !important;
    justify-content: center !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important; font-size: 18px !important;
    color: #ffffff !important;
}
.pb-tcard .ms-tcard__body {
    display: flex !important; flex-direction: column !important;
    gap: 10px !important; flex: 1 !important;
}
.pb-tcard .ms-tcard__feedback {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 400 !important; font-size: 13px !important;
    line-height: 20px !important; color: #141414 !important;
    margin: 0 !important;
}
.pb-tcard .ms-tcard__meta {
    display: flex !important; flex-direction: column !important; gap: 2px !important;
}
.pb-tcard .ms-tcard__name {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important; font-size: 12px !important;
    color: #7661B4 !important; display: block !important;
}
.pb-tcard .ms-tcard__role {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 11px !important; color: #8A92C5 !important; display: block !important;
}
.pb-tcard .ms-tcard__stars {
    display: flex !important; gap: 3px !important; margin-top: 4px !important;
}

/* Stats bar — Figma: 1247x244, radial-gradient #7661B4→#172262, radius 32 */
.pb-stats-bar {
    display: flex; flex-direction: row;
    justify-content: space-between; align-items: center;
    padding: 32px; gap: 0;
    width: 100%; max-width: 1247px;
    background: radial-gradient(124.41% 513.32% at -20.35% 183.17%, #7661B4 0%, #172262 100%);
    border-radius: 24px;
    box-sizing: border-box;
}
.pb-stat {
    display: flex; flex-direction: column;
    align-items: center; gap: 6px;
    flex: 1; text-align: center;
}
/* Figma: 61px → 38px */
.pb-stat__num {
    font-family: 'Cairo', sans-serif;
    font-weight: 700; font-size: 38px;
    line-height: 46px; color: #ffffff; display: block;
}
/* Figma: 31px → 16px */
.pb-stat__label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500; font-size: 16px;
    line-height: 22px; color: #C6CDFA; display: block;
}
/* Figma: 16px → 12px */
.pb-stat__note {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px; color: rgba(198,205,250,0.7); display: block;
}
.pb-stat__divider {
    width: 1px; height: 60px;
    background: rgba(255,255,255,0.15); flex-shrink: 0;
}

/* Space between How it Works and Before After sections */
.pb-how  { padding-bottom: 80px; }
.pb-bva  { margin-top: 0; }

/* ── Responsive ── */
@media(max-width:1280px){ .pb-testi { padding: 56px 60px; } }
@media(max-width:1024px){
    .pb-testi { padding: 48px 40px; }
    .pb-tcard { min-width: calc(50% - 12px) !important; max-width: calc(50% - 12px) !important; }
    .pb-stats-bar { flex-wrap: wrap; gap: 16px; }
    .pb-stat__divider { display: none; }
    .pb-stat { min-width: calc(50% - 8px); }
}
@media(max-width:768px){
    .pb-testi { padding: 40px 24px; }
    .pb-tcard { min-width: calc(100% - 4px) !important; max-width: calc(100% - 4px) !important; }
    .pb-stats-bar { flex-direction: column; gap: 20px; }
    .pb-stat { width: 100%; }
    .pb-stat__num { font-size: 30px; }
}


/* ════ FAQ + CONTACT (reuse from mentorship, ensure loaded) ════ */
.pb-faq {
    background:
        linear-gradient(107.49deg,
            rgba(174,215,235,0.4)  7.25%,
            rgba(197,152,227,0.4) 51.3%,
            rgba(146,173,230,0.4) 73.32%,
            rgba(136,141,232,0.4) 95.34%
        ),
        #E1E2F0 !important;
    padding: 64px 100px !important;
}
.pb-faq .ms-faq__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
    max-width: 1241px;
    align-items: start;
}
.pb-faq .ms-faq__item {
    filter: drop-shadow(0px 4px 4px rgba(0,0,0,0.06));
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #EEEFF6;
    align-self: start;
}
.pb-faq .ms-faq__question {
    display: flex; justify-content: space-between;
    align-items: center; padding: 18px 20px; gap: 12px;
    width: 100%; background: transparent; border: none;
    cursor: pointer; text-align: left;
}
.pb-faq .ms-faq__q-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500; font-size: 13px;
    line-height: 20px; color: #2D335D; flex: 1;
}
.pb-faq .ms-faq__icon {
    width: 20px; height: 20px;
    object-fit: contain; flex-shrink: 0; opacity: 0.7;
}
.pb-faq .ms-faq__answer {
    max-height: 0; overflow: hidden; opacity: 0;
    transition: max-height 0.35s ease, opacity 0.3s ease;
    padding-top: 0; padding-bottom: 0;
}
.pb-faq .ms-faq__item.is-open .ms-faq__answer {
    max-height: 600px; opacity: 1;
}
.pb-faq .ms-faq__answer p {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px; line-height: 20px;
    color: #6B7280; margin: 0; padding: 0 20px 16px;
}
.pb-faq .ms-faq__item.is-open {
    border-color: rgba(118,97,180,0.3);
}
.pb-faq .ms-faq__item.is-open .ms-faq__q-text {
    background: linear-gradient(107.49deg,#7661B4 7.25%,#0D23AC 95.34%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Contact section standalone styles */
.pb-contact {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 64px 100px !important;
    gap: 60px !important;
    width: 100% !important;
    background: radial-gradient(168.45% 168.45% at 51.89% 3.51%,
        rgba(254,254,254,0.59) 12.98%,
        rgba(81,89,173,0.59) 100%
    ) !important;
    box-sizing: border-box !important;
}
.pb-contact .cp-contact__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500; font-size: 20px;
    line-height: 30px; color: #3A4278; margin: 0;
}
.pb-contact .cp-contact__form-wrap {
    width: 100%; max-width: 540px; flex-shrink: 0;
}
.pb-contact .cp-contact__form-wrap form {
    display: flex; flex-direction: column; gap: 14px;
}
.pb-contact .ms-contact-input {
    width: 100%; height: 42px; padding: 10px 12px;
    background: rgba(249,249,252,0.5);
    border: 1px solid #DCDCE2; border-radius: 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px; color: #222747; outline: none;
    box-sizing: border-box; transition: border-color 0.15s;
    backdrop-filter: blur(8px);
}
.pb-contact .ms-contact-input:focus { border-color: #7661B4; background: rgba(255,255,255,0.85); }
.pb-contact .ms-contact-input::placeholder { color: #AFB4D7; }
.pb-contact .ms-contact-textarea { height: 90px; resize: none; }
.pb-contact .ms-contact-btn {
    width: 100%; height: 48px; background: #4A559A;
    border: none; border-radius: 24px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600; font-size: 14px; color: #ffffff; cursor: pointer;
}
.pb-contact .ms-contact-btn:hover { background: #3A4278; }
.pb-contact .ms-contact-loggedin {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px; color: #3A4278;
    padding: 8px 12px; background: rgba(255,255,255,0.6);
    border: 1px solid #DCDCE2; border-radius: 12px;
}

/* Responsive tablet/mobile fixes */
@media(max-width:768px){
    .pb-faq .ms-faq__grid { grid-template-columns: 1fr; }
    .pb-contact { flex-direction: column !important; padding: 40px 24px !important; }
    .pb-contact .cp-contact__form-wrap { max-width: 100%; }
}


/* ════ TESTIMONIALS SCROLLER — arrows + dots ════ */

/* Arrow buttons */
.pb-testi__scroller-wrap .ms-testi__arrow {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    border: 1.5px solid #EEEFF6 !important;
    box-shadow: 0 4px 12px rgba(13,35,172,0.09) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    transition: background 0.15s, box-shadow 0.15s, opacity 0.2s !important;
    z-index: 2 !important;
}
.pb-testi__scroller-wrap .ms-testi__arrow:hover {
    background: #F8F9FF !important;
    box-shadow: 0 6px 18px rgba(13,35,172,0.14) !important;
}

/* Dots */
#pb-testi-dots {
    display: flex !important;
    gap: 8px !important;
    align-items: center !important;
    justify-content: center !important;
}
#pb-testi-dots .ms-testi-dot {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background: #C9CDE4 !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    padding: 0 !important;
}
#pb-testi-dots .ms-testi-dot.is-active {
    background: linear-gradient(107.49deg, #7661B4 7.25%, #0D23AC 95.34%) !important;
    width: 22px !important;
    border-radius: 4px !important;
}

/* FAQ header text */
.pb-faq .ms-faq__header {
    text-align: center;
    width: 100%;
    margin-bottom: 24px;
}
.pb-faq .ms-faq__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 36px;
    color: #2D335D;
    margin: 0;
    text-align: center;
}
.pb-faq .ms-faq__desc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
    color: #2D335D;
    margin: 0;
    text-align: center;
}
.pb-faq {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 32px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}
