/* =============================================
   CARTANTS - job-smart.css
   JobSmart service page
   ============================================= */

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

    /* Figma: white screen 34% + purple gradient */
    background:
        linear-gradient(0deg,
            rgba(255,255,255,0.34),
            rgba(255,255,255,0.34)
        ),
        linear-gradient(102.64deg,
            #B0A4E9 0%,
            #D5C4E9 50%,
            #5340B8 100%
        );
    background-blend-mode: screen, normal;
}

/* Subtle blob effects */
.js-hero::before {
    content: '';
    position: absolute;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(176,164,233,0.25) 0%, transparent 70%);
    top: -200px; right: -100px;
    pointer-events: none;
    animation: cpFadeUp 1s ease both;
}

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

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

/* "JobSmart" accent — gradient purple */
.js-hero__title-accent {
    background: linear-gradient(107.49deg, #7661B4 7.25%, #5340B8 95.34%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Description — Figma: 25px → 17px */
.js-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){ .js-hero { padding: 160px 60px 80px; } }
@media(max-width:1024px){
    .js-hero { padding: 140px 40px 70px; min-height: auto; }
    .js-hero__title { font-size: 36px; line-height: 46px; }
}
@media(max-width:768px){
    .js-hero { padding: 110px 24px 56px; }
    .js-hero__title { font-size: 28px; line-height: 36px; }
    .js-hero__title br { display: none; }
    .js-hero__desc { font-size: 15px; }
}
@media(max-width:480px){
    .js-hero__title { font-size: 24px; line-height: 32px; }
}


/* ════ SECTION 2 — PRICING ══════════════════════
   Reuses pb-card, pb-toggle, pb-cards-row from
   personal-branding.css (loaded via services.css check)
   ═══════════════════════════════════════════ */
.js-pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 100px;
    gap: 32px;
    width: 100%;
    background: #ffffff;
    box-sizing: border-box;
}

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

/* ── Toggle — copy from pb since services.css loads for both ── */
.js-pricing .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;
}
.js-pricing .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;
}
.js-pricing .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 */
.js-pricing .pb-cards-row {
    display: flex; flex-direction: row;
    justify-content: center; align-items: center;
    gap: 24px; width: 100%; max-width: 1239px;
}
.js-pricing .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;
}
.js-pricing .pb-card:hover { transform: translateY(-4px); }
.js-pricing .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);
}
.js-pricing .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);
    border: 1px solid rgba(118,97,180,0.2);
}
.js-pricing .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: #fff; white-space: nowrap;
}
.js-pricing .pb-card__header {
    display: flex; flex-direction: column;
    gap: 6px; width: 100%;
    padding-bottom: 14px; border-bottom: 1px solid #C9CDE4;
}
.js-pricing .pb-card__name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; font-size: 26px;
    line-height: 32px; color: #2D335D; margin: 0;
}
.js-pricing .pb-card__tagline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500; font-size: 13px;
    line-height: 18px; color: #2D335D; margin: 0;
}
.js-pricing .pb-card__price {
    display: flex; align-items: flex-end; gap: 4px;
    padding-bottom: 14px; border-bottom: 1px solid #C9CDE4; width: 100%;
}
.js-pricing .pb-card__amount {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; font-size: 36px;
    line-height: 44px; color: #2D335D; transition: all 0.2s;
}
.js-pricing .pb-card__period {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px; color: #8A92C5;
    padding-bottom: 6px; transition: all 0.2s;
}
.js-pricing .pb-card__features {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column;
    gap: 10px; width: 100%; flex: 1;
}
.js-pricing .pb-card__features li {
    display: flex; align-items: center; gap: 10px;
}
.js-pricing .pb-card__features li img {
    width: 16px; height: 16px; object-fit: contain; flex-shrink: 0; opacity: 0.8;
}
.js-pricing .pb-card__features li span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500; font-size: 13px;
    line-height: 18px; color: #2D335D;
}
.js-pricing .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: #fff !important; text-decoration: none;
    transition: background 0.15s, transform 0.15s;
    margin-top: auto;
}
.js-pricing .pb-card__btn:hover { background: #3A4278; transform: translateY(-1px); color: #fff !important; }

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


/* ════ SECTION 3 — HOW IT WORKS ═════════════════
   Figma: padding 32px 112px, gap 32px
   bg: radial-gradient + #F3F4FE
   Layout: row1=wide+normal, row2=2 normal, row3=1 full
   ═══════════════════════════════════════════ */
.js-how {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 64px 112px;
    gap: 32px;
    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;
}

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

/* Grid container */
.js-how__grid {
    display: flex; flex-direction: column;
    gap: 16px; width: 100%; max-width: 1217px;
}

/* Each row */
.js-how__row {
    display: flex; flex-direction: row;
    gap: 16px; width: 100%;
}

/* Base card — Figma: rgba(243,244,254,0.7) frosted, radius 32 */
.js-how__card {
    box-sizing: border-box;
    display: flex; flex-direction: row;
    align-items: center;
    padding: 20px 24px; gap: 24px;
    flex: 1;
    background: rgba(243,244,254,0.7);
    border-radius: 24px;
    border: 1.5px solid rgba(201,205,228,0.4);
    transition: transform 0.2s ease, border-color 0.2s;
    min-height: 200px;
}
.js-how__card:hover {
    transform: translateY(-2px);
    border-color: rgba(118,97,180,0.35);
}

/* Wide card (first in row 1) — takes more space */
.js-how__card--wide { flex: 1.6; }

/* Full card (row 3) — spans full width */
.js-how__card--full { flex: 1; }

/* Image in card */
.js-how__card-img {
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    width: 200px;
}
.js-how__card-img img {
    width: 100%; max-height: 180px;
    object-fit: contain; display: block;
    filter: drop-shadow(0 3px 8px rgba(20,4,56,0.06));
}

/* Image on top (row 2 cards) — stack vertically */
.js-how__card:has(.js-how__card-img--top) {
    flex-direction: column;
    align-items: flex-start;
}
.js-how__card-img--top {
    width: 100%; max-height: 160px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;  /* left-align image */
}
.js-how__card-img--top img {
    width: auto; max-width: 80%; max-height: 160px;
    margin: 0;  /* no auto margin - stays left */
    display: block;
}

/* Text block */
.js-how__card-text {
    display: flex; flex-direction: column;
    align-items: flex-start; gap: 10px; flex: 1;
}

/* Number badge */
.js-how__num-wrap {
    width: 44px; height: 44px;
    border-radius: 16px;
    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;
}
.js-how__num {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; font-size: 15px;
    color: #ffffff; text-align: center;
}

/* Figma: 31px → 16px */
.js-how__card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600; font-size: 16px;
    line-height: 24px; color: #000000; margin: 0;
}

/* Figma: 20px → 12px */
.js-how__card-desc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400; font-size: 12px;
    line-height: 18px; color: #3D4470; margin: 0;
}

/* ── Responsive ── */
@media(max-width:1280px){ .js-how { padding: 56px 60px; } }
@media(max-width:1024px){
    .js-how { padding: 48px 40px; }
    .js-how__row { flex-wrap: wrap; }
    .js-how__card--wide { flex: 1; min-width: calc(60% - 8px); }
    .js-how__card { min-width: calc(40% - 8px); }
}
@media(max-width:768px){
    .js-how { padding: 40px 24px; }
    .js-how__row { flex-direction: column; }
    .js-how__card,
    .js-how__card--wide,
    .js-how__card--full { width: 100%; min-width: auto; flex: none; min-height: auto; }
    .js-how__card-img { width: 140px; }
}


/* ════ SECTION 4 — WHAT YOU GET + DELIVERABLES ══
   Figma: padding 64px 100px, bg radial dark purple
   ═══════════════════════════════════════════ */
.js-wyg {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 64px 100px;
    gap: 24px;
    width: 100%;
    box-sizing: border-box;
    background: radial-gradient(124.41% 513.32% at -20.35% 183.17%,
        #7661B4 0%, #172262 100%
    );
}

/* Section titles */
.js-wyg__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; font-size: 26px;
    line-height: 34px; color: #ffffff;
    margin: 0; text-align: center;
    width: 100%;
}

/* ── 8 feature cards — 4x2 grid ── */
.js-wyg__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
    max-width: 1241px;
}

/* Single card — Figma: rgba(45,51,93,0.4) radius 32 */
.js-wyg__card {
    box-sizing: border-box;
    display: flex; flex-direction: column;
    align-items: flex-start;
    padding: 16px; gap: 10px;
    background: rgba(45,51,93,0.4);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: background 0.2s, transform 0.2s;
    min-height: 160px;
}
.js-wyg__card:hover {
    background: rgba(45,51,93,0.6);
    transform: translateY(-2px);
}

/* Icon circle — Figma: 64x64 Gradd2 radius 99 */
.js-wyg__card-icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: linear-gradient(107.49deg,
        #AED7EB 7.25%, #C598E3 51.3%,
        #92ADE6 73.32%, #888DE8 95.34%
    );
    display: flex; align-items: center;
    justify-content: center; flex-shrink: 0;
}
.js-wyg__card-icon img {
    width: 28px; height: 28px;
    object-fit: contain; display: block;
}

/* Card text */
.js-wyg__card-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400; font-size: 12px;
    line-height: 18px; color: rgba(255,255,255,0.9);
    margin: 0;
}

/* ── Deliverables — 2 boxes ── */
.js-deliverables {
    display: flex; flex-direction: row;
    gap: 24px; width: 100%; max-width: 1241px;
}

/* Single deliverable box — Figma: rgba(45,51,93,0.4) radius 16 */
.js-deliv-box {
    box-sizing: border-box;
    display: flex; flex-direction: column;
    align-items: flex-start;
    padding: 28px 32px; gap: 24px;
    flex: 1;
    background: rgba(45,51,93,0.4);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
}

/* Header: icon + title */
.js-deliv-box__header {
    display: flex; flex-direction: row;
    align-items: center; gap: 12px;
}
.js-deliv-box__header img {
    width: 36px; height: 36px;
    object-fit: contain; opacity: 0.9;
    filter: brightness(0) invert(1);
}

/* Figma: 49px → 22px white */
.js-deliv-box__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600; font-size: 22px;
    line-height: 28px; color: #ffffff;
}

/* Checkmark list */
.js-deliv-box__list {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 16px;
}
.js-deliv-box__list li {
    display: flex; align-items: center; gap: 12px;
}
.js-deliv-box__list li img {
    width: 18px; height: 18px;
    object-fit: contain; flex-shrink: 0;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}
/* Figma: 31px → 14px white */
.js-deliv-box__list li span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500; font-size: 14px;
    line-height: 20px; color: #ffffff;
}

/* ── Responsive ── */
@media(max-width:1280px){ .js-wyg { padding: 56px 60px; } }
@media(max-width:1024px){
    .js-wyg { padding: 48px 40px; }
    .js-wyg__cards { grid-template-columns: repeat(2, 1fr); }
    .js-deliverables { flex-wrap: wrap; }
    .js-deliv-box { min-width: calc(50% - 12px); }
}
@media(max-width:768px){
    .js-wyg { padding: 40px 24px; }
    .js-wyg__cards { grid-template-columns: 1fr 1fr; gap: 12px; }
    .js-deliverables { flex-direction: column; }
    .js-deliv-box { width: 100%; }
}


/* ════ SECTION 5 — TESTIMONIALS + STATS ═════════ */
.js-testi {
    display: flex; flex-direction: column;
    align-items: center;
    padding: 64px 100px; gap: 32px;
    width: 100%; background: #ffffff;
    box-sizing: border-box;
}
.js-testi__header { text-align: center; width: 100%; }
.js-testi__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; font-size: 28px;
    line-height: 36px; color: #2D335D; margin: 0 0 8px;
}
.js-testi__desc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500; font-size: 15px;
    line-height: 22px; color: #2D335D; margin: 0;
}

/* Scroller */
.js-testi__scroller-wrap {
    position: relative; width: 100%; max-width: 1241px;
    display: flex; align-items: center; gap: 16px;
}
.js-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%);
}
.js-testi__track {
    display: flex; gap: 24px;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
    will-change: transform; padding: 8px 2px;
}

/* Arrow buttons */
.js-arrow {
    width: 44px; height: 44px; border-radius: 50%;
    background: #ffffff; border: 1.5px solid #EEEFF6;
    box-shadow: 0 4px 12px rgba(13,35,172,0.09);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; flex-shrink: 0;
    transition: background 0.15s, opacity 0.2s;
}
.js-arrow:hover { background: #F8F9FF; }

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

/* Testimonial card — standalone styles */
.js-tcard {
    box-sizing: border-box;
    display: flex; flex-direction: column;
    padding: 20px; gap: 14px;
    min-width: calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
    background: #ffffff;
    border: 1px solid #EEEFF6;
    border-radius: 20px;
    box-shadow: 0 2px 16px rgba(13,35,172,0.05);
    flex-shrink: 0;
    transition: transform 0.2s, box-shadow 0.2s;
}
.js-tcard:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(13,35,172,0.10); }
.js-tcard__top { display: flex; flex-direction: row; align-items: flex-start; gap: 12px; width: 100%; }
.js-tcard__avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: #B2ADD2; }
.js-tcard__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.js-tcard__avatar-ph {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, #7661B4, #0D23AC);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Montserrat',sans-serif; font-weight: 700; font-size: 18px; color: #fff;
}
.js-tcard__body { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.js-tcard__feedback { font-family: 'Montserrat',sans-serif; font-weight: 400; font-size: 13px; line-height: 20px; color: #141414; margin: 0; }
.js-tcard__meta { display: flex; flex-direction: column; gap: 2px; }
.js-tcard__name { font-family: 'Montserrat',sans-serif; font-weight: 600; font-size: 12px; color: #7661B4; display: block; }
.js-tcard__role { font-family: 'Montserrat',sans-serif; font-size: 11px; color: #8A92C5; display: block; }
.js-tcard__stars { display: flex; gap: 3px; margin-top: 4px; }

/* Stats bar — reuse pb-stats-bar styles inline */
.js-stats-bar {
    display: flex !important; flex-direction: row !important;
    justify-content: space-between !important; align-items: center !important;
    padding: 32px !important; gap: 0 !important;
    width: 100% !important; max-width: 1247px !important;
    background: radial-gradient(124.41% 513.32% at -20.35% 183.17%, #7661B4 0%, #172262 100%) !important;
    border-radius: 24px !important; box-sizing: border-box !important;
}

/* ── Fixes: doc icons original color + spacing ── */

/* Remove white filter from deliverable icons */
.js-deliv-box__header img { filter: none !important; opacity: 1 !important; }
.js-deliv-box__list li img { filter: none !important; opacity: 1 !important; }

/* Space between How it Works and What You Get */
.js-how { padding-bottom: 80px !important; }
.js-wyg { margin-top: 0; }

/* Responsive */
@media(max-width:1280px){ .js-testi { padding: 56px 60px; } }
@media(max-width:1024px){
    .js-testi { padding: 48px 40px; }
    .js-tcard { min-width: calc(50% - 12px); max-width: calc(50% - 12px); }
    .js-stats-bar { flex-wrap: wrap !important; }
}
@media(max-width:768px){
    .js-testi { padding: 40px 24px; }
    .js-tcard { min-width: calc(100% - 4px); max-width: calc(100% - 4px); }
    .js-stats-bar { flex-direction: column !important; }
}


/* ════ STATS BAR — standalone ══════════════════ */
.js-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;
}
.js-stat {
    display: flex; flex-direction: column;
    align-items: center; gap: 6px;
    flex: 1; text-align: center;
}
/* Figma: 61px → 38px */
.js-stat__num {
    font-family: 'Cairo', sans-serif;
    font-weight: 700; font-size: 38px;
    line-height: 46px; color: #ffffff; display: block;
}
/* Figma: 31px → 16px */
.js-stat__label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500; font-size: 16px;
    line-height: 22px; color: #C6CDFA; display: block;
}
/* Figma: 16px → 12px */
.js-stat__note {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px; color: rgba(198,205,250,0.7); display: block;
}
.js-stat__divider { width: 1px; height: 60px; background: rgba(255,255,255,0.15); flex-shrink: 0; }


/* ════ SECTION 6 — WHY JOBSMART ════════════════
   bg: white, alternating rows
   ═══════════════════════════════════════════ */
.js-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;
}

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

/* Feature rows — alternating */
.js-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);
}
.js-why__row:last-of-type { border-bottom: none; }

.js-why__text {
    display: flex; flex-direction: column;
    align-items: flex-start; gap: 12px; flex: 1;
}
.js-why__icon { width: 36px; height: 36px; object-fit: contain; opacity: 0.9; }

/* Figma: 39px → 20px */
.js-why__feat-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; font-size: 20px;
    line-height: 28px; color: #2D335D; margin: 0;
}
/* Figma: 25px → 13px */
.js-why__feat-desc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500; font-size: 13px;
    line-height: 20px; color: #3D4470; margin: 0;
    max-width: 520px;
}
.js-why__img { flex: 0 0 380px; display: flex; align-items: center; justify-content: center; }
.js-why__img img { width: 100%; max-height: 320px; object-fit: contain; display: block; filter: drop-shadow(0 8px 24px rgba(13,35,172,0.07)); }

/* CTA */
.js-why__cta {
    display: flex; flex-direction: column;
    align-items: center; gap: 12px;
    padding: 48px 112px; text-align: center;
    width: 100%; max-width: 1217px;
}
/* Figma: 39px → 20px */
.js-why__cta-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500; font-size: 20px;
    line-height: 28px; color: #3A4278; margin: 0;
    max-width: 800px;
}
/* Figma: 25px → 13px */
.js-why__cta-desc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400; font-size: 13px;
    line-height: 20px; color: #515DA9; margin: 0;
}
.js-why__cta-btn {
    display: inline-flex; justify-content: center; align-items: center;
    padding: 13px 32px; height: 48px;
    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;
    transition: transform 0.15s, opacity 0.15s;
}
.js-why__cta-btn:hover { transform: translateY(-2px); opacity: 0.92; color: #fff !important; }

/* ── Responsive ── */
@media(max-width:1280px){ .js-why { padding: 72px 60px; } }
@media(max-width:1024px){
    .js-why { padding: 56px 40px; }
    .js-why__img { flex: 0 0 280px; }
    .js-why__row { gap: 40px; }
}
@media(max-width:768px){
    .js-why { padding: 40px 24px; }
    .js-why__row, .js-why__row--left, .js-why__row--right {
        flex-direction: column !important; gap: 24px; padding: 28px 0;
    }
    .js-why__img { flex: none; width: 100%; order: -1; }
    .js-why__img img { max-height: 200px; }
    .js-why__cta { padding: 32px 0; }
    .js-stats-bar { flex-direction: column; gap: 20px; border-radius: 16px; }
    .js-stat__divider { width: 80%; height: 1px; }
}


/* ════ SECTION 7 — FAQ ══════════════════════════
   Figma: pastel gradient bg, 2-col accordion
   ═══════════════════════════════════════════ */
.js-faq {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 64px 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%
        ),
        #E1E2F0;
}

.js-faq__header { text-align: center; width: 100%; }
.js-faq__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; font-size: 28px;
    line-height: 36px; color: #2D335D; margin: 0 0 10px;
}
.js-faq__desc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500; font-size: 15px;
    line-height: 22px; color: #2D335D; margin: 0;
}

/* 2-column grid */
.js-faq__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
    max-width: 1241px;
    align-items: start;
}

/* Single item */
.js-faq__item {
    background: rgba(255,255,255,0.85);
    border: 1px solid rgba(201,205,228,0.5);
    border-radius: 16px;
    overflow: hidden;
    align-self: start;
    filter: drop-shadow(0px 2px 8px rgba(0,0,0,0.06));
    transition: border-color 0.15s;
}
.js-faq__item.is-open { border-color: rgba(118,97,180,0.35); }

/* Question row */
.js-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; transition: background 0.15s;
}
.js-faq__question:hover { background: rgba(118,97,180,0.04); }

.js-faq__q-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500; font-size: 13px;
    line-height: 20px; color: #2D335D; flex: 1;
}
.js-faq__item.is-open .js-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;
}
.js-faq__icon { width: 20px; height: 20px; object-fit: contain; flex-shrink: 0; opacity: 0.7; }

/* Answer */
.js-faq__answer {
    max-height: 0; overflow: hidden; opacity: 0;
    transition: max-height 0.35s ease, opacity 0.3s ease;
    padding-bottom: 0;
}
.js-faq__item.is-open .js-faq__answer { max-height: 600px; opacity: 1; }
.js-faq__answer p {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px; line-height: 20px;
    color: #6B7280; margin: 0; padding: 0 20px 16px;
}


/* ════ SECTION 8 — CONTACT ══════════════════════ */
.js-contact {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 64px 100px;
    gap: 60px;
    width: 100%;
    min-height: 260px;
    box-sizing: border-box;
    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%
    );
}
.js-contact__text { flex: 1; }
.js-contact__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500; font-size: 20px;
    line-height: 30px; color: #3A4278; margin: 0;
}
.js-contact__form-wrap {
    width: 100%; max-width: 540px;
    flex-shrink: 0;
    display: flex; flex-direction: column; gap: 14px;
}
.js-contact__form-wrap form { display: flex; flex-direction: column; gap: 14px; }
.js-contact__success {
    padding: 10px 14px;
    background: rgba(22,163,74,0.08); border: 1px solid rgba(22,163,74,0.2);
    border-radius: 12px; font-family: 'Montserrat',sans-serif;
    font-size: 13px; color: #15803D;
}
.js-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;
}
.js-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;
}
.js-contact__input:focus { border-color: #7661B4; background: rgba(255,255,255,0.85); }
.js-contact__input::placeholder { color: #AFB4D7; }
.js-contact__textarea { height: 90px; resize: none; }
.js-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: #fff; cursor: pointer;
    transition: background 0.15s, transform 0.15s;
}
.js-contact__btn:hover { background: #3A4278; transform: translateY(-1px); }

/* ── Responsive ── */
@media(max-width:1280px){ .js-faq,.js-contact { padding: 56px 60px; } }
@media(max-width:1024px){ .js-faq,.js-contact { padding: 48px 40px; } }
@media(max-width:768px){
    .js-faq { padding: 40px 24px; }
    .js-faq__grid { grid-template-columns: 1fr; }
    .js-contact { flex-direction: column; padding: 40px 24px; gap: 28px; align-items: flex-start; }
    .js-contact__form-wrap { max-width: 100%; width: 100%; }
}
