/* Reskill & Redeploy page — scoped to body.page-reskill-redeploy */

body.page-reskill-redeploy {
    --dr-navy: #0a1172;
    --dr-teal: #14857e;
    --dr-teal-bar: #26a69a;
    --dr-text: #4b5563;
    --dr-badge-bg: #eef2f8;
    --dr-badge-text: #1e3a8a;
}

body.page-reskill-redeploy .dr-hero {
    padding: 56px 0 80px;
    background: #ffffff;
}

body.page-reskill-redeploy .dr-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(36px, 5vw, 72px);
    align-items: center;
}

body.page-reskill-redeploy .dr-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    padding: 8px 16px 8px 12px;
    background: var(--dr-badge-bg);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--dr-badge-text);
}

body.page-reskill-redeploy .dr-hero__badge-icon {
    display: flex;
    flex-shrink: 0;
    line-height: 0;
}

body.page-reskill-redeploy .dr-hero__title {
    margin-bottom: 22px;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--dr-navy);
}

body.page-reskill-redeploy .dr-hero__title-accent {
    display: block;
    color: var(--dr-teal);
}

body.page-reskill-redeploy .dr-hero__lead {
    max-width: 34rem;
    margin-bottom: 32px;
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--dr-text);
}

body.page-reskill-redeploy .dr-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

body.page-reskill-redeploy .dr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.2;
    border-radius: 8px;
    text-decoration: none;
    transition:
        background-color var(--duration-ui) var(--ease-motion),
        color var(--duration-ui) var(--ease-motion),
        border-color var(--duration-ui) var(--ease-motion),
        box-shadow var(--duration-ui) var(--ease-motion);
}

body.page-reskill-redeploy .dr-btn--primary {
    background: var(--dr-navy);
    color: #ffffff;
    border: 2px solid var(--dr-navy);
    box-shadow: 0 4px 14px rgba(10, 17, 114, 0.22);
}

body.page-reskill-redeploy .dr-btn--primary:hover {
    background: #080d5c;
    border-color: #080d5c;
    box-shadow: 0 6px 20px rgba(10, 17, 114, 0.28);
}

body.page-reskill-redeploy .dr-btn--outline {
    background: #ffffff;
    color: var(--dr-navy);
    border: 2px solid var(--dr-navy);
}

body.page-reskill-redeploy .dr-btn--outline:hover {
    background: rgba(10, 17, 114, 0.05);
}

/* Visual column */
body.page-reskill-redeploy .dr-hero__visual {
    position: relative;
}

body.page-reskill-redeploy .dr-hero__image-wrap {
    overflow: hidden;
}

body.page-reskill-redeploy .dr-hero__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

body.page-reskill-redeploy .dr-hero__stat-card {
    position: absolute;
    left: -12px;
    bottom: 28px;
    z-index: 2;
    width: min(100%, 280px);
    padding: 18px 20px 16px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(8px);
}

body.page-reskill-redeploy .dr-hero__stat-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

body.page-reskill-redeploy .dr-hero__stat-icon {
    display: flex;
    flex-shrink: 0;
    line-height: 0;
}

body.page-reskill-redeploy .dr-hero__stat-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dr-navy);
}

body.page-reskill-redeploy .dr-hero__stat-bar {
    height: 8px;
    margin-bottom: 10px;
    border-radius: 999px;
    background: #e8edf3;
    overflow: hidden;
}

body.page-reskill-redeploy .dr-hero__stat-bar-fill {
    display: block;
    height: 100%;
    width: var(--bar-width, 84%);
    border-radius: inherit;
    background: linear-gradient(90deg, var(--dr-teal-bar), var(--dr-teal));
}

body.page-reskill-redeploy .dr-hero__stat-caption {
    font-size: 0.8125rem;
    color: #64748b;
    line-height: 1.4;
}

@media (max-width: 960px) {
    body.page-reskill-redeploy .dr-hero__grid {
        grid-template-columns: 1fr;
    }

    body.page-reskill-redeploy .dr-hero__visual {
        order: -1;
        max-width: 520px;
        margin-inline: auto;
    }

    body.page-reskill-redeploy .dr-hero__stat-card {
        left: 12px;
        bottom: 20px;
    }
}

/* Career & Hiring Intelligence Platform */
body.page-reskill-redeploy .dr-intel {
    padding: 72px 0 88px;
    background: #eef3f8;
}

body.page-reskill-redeploy .dr-intel__inner {
    max-width: 1180px;
}

body.page-reskill-redeploy .dr-intel__header {
    max-width: 900px;
    margin: 0 auto 48px;
    text-align: center;
}

body.page-reskill-redeploy .dr-intel__eyebrow {
    margin: 0 0 14px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dr-teal);
}

body.page-reskill-redeploy .dr-intel__title {
    margin: 0 0 22px;
    font-size: clamp(1.65rem, 3.2vw, 2.25rem);
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -0.03em;
    color: var(--dr-navy);
}

body.page-reskill-redeploy .dr-intel__lead {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: #5c6370;
}

body.page-reskill-redeploy .dr-intel__cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

body.page-reskill-redeploy .dr-intel-card {
    display: flex;
    flex-direction: column;
    padding: 28px 24px 26px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.85);
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
}

body.page-reskill-redeploy .dr-intel-card__icon {
    display: flex;
    margin-bottom: 18px;
    color: var(--dr-teal);
    line-height: 0;
}

body.page-reskill-redeploy .dr-intel-card__title {
    margin: 0 0 12px;
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dr-navy);
}

body.page-reskill-redeploy .dr-intel-card__text {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #5c6370;
}

body.page-reskill-redeploy .dr-intel-card__link {
    font-weight: 600;
    color: var(--dr-navy);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color var(--duration-ui) var(--ease-motion);
}

body.page-reskill-redeploy .dr-intel-card__link:hover {
    color: var(--dr-teal);
}

/* Key Capabilities */
body.page-reskill-redeploy .dr-caps {
    padding: 72px 0 88px;
    background: #ffffff;
}

body.page-reskill-redeploy .dr-caps__header {
    max-width: 640px;
    margin-bottom: 44px;
}

body.page-reskill-redeploy .dr-caps__eyebrow {
    margin: 0 0 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dr-teal);
}

body.page-reskill-redeploy .dr-caps__title {
    margin: 0;
    font-size: clamp(1.65rem, 3vw, 2.125rem);
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -0.03em;
    color: var(--dr-navy);
}

body.page-reskill-redeploy .dr-caps__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

body.page-reskill-redeploy .dr-caps-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

body.page-reskill-redeploy .dr-caps-item__icon-wrap {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #e8f1fc;
    color: var(--dr-navy);
}

body.page-reskill-redeploy .dr-caps-item__icon {
    display: block;
}

body.page-reskill-redeploy .dr-caps-item__body {
    min-width: 0;
}

body.page-reskill-redeploy .dr-caps-item__title {
    margin: 0 0 8px;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dr-navy);
}

body.page-reskill-redeploy .dr-caps-item__text {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #5c6370;
}

/* Strategic workflow — dark section */
body.page-reskill-redeploy .dr-workflow {
    --dr-workflow-bg: #0c1a42;
    --dr-workflow-card: #152952;
    --dr-workflow-muted: #a8b8d4;

    padding: 72px 0 88px;
    background: var(--dr-workflow-bg);
}

body.page-reskill-redeploy .dr-workflow__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.25fr);
    gap: clamp(36px, 5vw, 64px);
    align-items: start;
}

body.page-reskill-redeploy .dr-workflow__eyebrow {
    margin: 0 0 14px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dr-teal);
}

body.page-reskill-redeploy .dr-workflow__title {
    margin: 0 0 20px;
    font-size: clamp(1.65rem, 3vw, 2.125rem);
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -0.03em;
    color: #ffffff;
}

body.page-reskill-redeploy .dr-workflow__lead {
    margin: 0 0 28px;
    max-width: 26rem;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--dr-workflow-muted);
}

body.page-reskill-redeploy .dr-workflow__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    text-decoration: none;
    background: var(--dr-teal);
    border: 2px solid var(--dr-teal);
    border-radius: 8px;
    transition:
        background-color var(--duration-ui) var(--ease-motion),
        border-color var(--duration-ui) var(--ease-motion),
        box-shadow var(--duration-ui) var(--ease-motion);
}

body.page-reskill-redeploy .dr-workflow__cta:hover {
    background: #107a74;
    border-color: #107a74;
    box-shadow: 0 6px 20px rgba(20, 133, 126, 0.35);
}

body.page-reskill-redeploy .dr-workflow__steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

body.page-reskill-redeploy .dr-workflow-step {
    position: relative;
    padding: 22px 22px 20px;
    background: var(--dr-workflow-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
}

body.page-reskill-redeploy .dr-workflow-step--wide {
    grid-column: 1 / -1;
    padding-right: 72px;
}

body.page-reskill-redeploy .dr-workflow-step__num {
    display: block;
    margin-bottom: 10px;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--dr-teal);
}

body.page-reskill-redeploy .dr-workflow-step__title {
    margin: 0 0 10px;
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
}

body.page-reskill-redeploy .dr-workflow-step__text {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--dr-workflow-muted);
}

body.page-reskill-redeploy .dr-workflow-step__deco {
    position: absolute;
    right: 20px;
    bottom: 16px;
    line-height: 0;
    pointer-events: none;
}

body.page-reskill-redeploy .dr-workflow-step__deco-img {
    display: block;
    width: 50px;
    height: auto;
}

/* Measurable ROI — audiences */
body.page-reskill-redeploy .dr-roi {
    padding: 72px 0 88px;
    background: #ffffff;
}

body.page-reskill-redeploy .dr-roi__header {
    max-width: 820px;
    margin: 0 auto 44px;
    text-align: center;
}

body.page-reskill-redeploy .dr-roi__eyebrow {
    margin: 0 0 14px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dr-teal);
}

body.page-reskill-redeploy .dr-roi__title {
    margin: 0 0 20px;
    font-size: clamp(1.65rem, 3.2vw, 2.25rem);
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -0.03em;
    color: var(--dr-navy);
}

body.page-reskill-redeploy .dr-roi__title-accent {
    color: var(--dr-teal);
}

body.page-reskill-redeploy .dr-roi__lead {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: #5c6370;
}

body.page-reskill-redeploy .dr-roi__cards {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto 40px;
    padding: 0;
    list-style: none;
}

body.page-reskill-redeploy .dr-roi-card {
    grid-column: span 2;
    padding: 22px 22px 24px;
    background: #ffffff;
    border: 1px solid #e8edf3;
    border-radius: 14px;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04);
}



body.page-reskill-redeploy .dr-roi-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

body.page-reskill-redeploy .dr-roi-card__icon-wrap {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #e8f1fc;
    color: var(--dr-navy);
}

body.page-reskill-redeploy .dr-roi-card__icon {
    display: block;
}

body.page-reskill-redeploy .dr-roi-card__tag {
    flex-shrink: 0;
    padding: 5px 10px;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.2;
    color: #ffffff;
    background: var(--dr-teal);
    border-radius: 999px;
}

body.page-reskill-redeploy .dr-roi-card__title {
    margin: 0 0 10px;
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dr-navy);
}

body.page-reskill-redeploy .dr-roi-card__text {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #5c6370;
}

body.page-reskill-redeploy .dr-roi__cta-wrap {
    text-align: center;
}

body.page-reskill-redeploy .dr-roi__cta {
    min-width: 200px;
}

@media (max-width: 1100px) {
    body.page-reskill-redeploy .dr-intel__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    body.page-reskill-redeploy .dr-caps__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 24px;
    }

    body.page-reskill-redeploy .dr-workflow__grid {
        grid-template-columns: 1fr;
    }

    body.page-reskill-redeploy .dr-roi__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: none;
    }

    body.page-reskill-redeploy .dr-roi-card,
    body.page-reskill-redeploy .dr-roi-card:nth-child(4),
    body.page-reskill-redeploy .dr-roi-card:nth-child(5) {
        grid-column: auto;
    }
}

@media (max-width: 640px) {
    body.page-reskill-redeploy .dr-intel {
        padding: 56px 0 64px;
    }

    body.page-reskill-redeploy .dr-intel__header {
        margin-bottom: 32px;
        text-align: left;
    }

    body.page-reskill-redeploy .dr-intel__cards {
        grid-template-columns: 1fr;
    }

    body.page-reskill-redeploy .dr-caps {
        padding: 56px 0 64px;
    }

    body.page-reskill-redeploy .dr-caps__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    body.page-reskill-redeploy .dr-workflow {
        padding: 56px 0 64px;
    }

    body.page-reskill-redeploy .dr-workflow__steps {
        grid-template-columns: 1fr;
    }

    body.page-reskill-redeploy .dr-workflow-step--wide {
        padding-right: 22px;
        padding-bottom: 56px;
    }

    body.page-reskill-redeploy .dr-workflow__cta {
        width: 100%;
    }

    body.page-reskill-redeploy .dr-roi {
        padding: 56px 0 64px;
    }

    body.page-reskill-redeploy .dr-roi__cards {
        grid-template-columns: 1fr;
    }

    body.page-reskill-redeploy .dr-roi__cta {
        width: 100%;
        max-width: 22rem;
    }

    body.page-reskill-redeploy .dr-hero {
        padding: 40px 0 56px;
    }

    body.page-reskill-redeploy .dr-hero__actions {
        flex-direction: column;
    }

    body.page-reskill-redeploy .dr-btn {
        width: 100%;
    }

    body.page-reskill-redeploy .dr-hero__stat-card {
        position: unset;
        width: auto;
    }
}
