
/* =========================================================
   SCROLL REVEAL INITIAL STATE
========================================================= */

.hrm-hero-content,
.hrm-feature,
.hrm-dashboard {
    will-change: transform, opacity;
}


/* =========================================================
   SMOOTH DASHBOARD POPUP
========================================================= */

.hrm-dashboard {
    transform-origin: center bottom;
}


/* =========================================================
   REDUCE MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .hrm-hero-content,
    .hrm-feature,
    .hrm-dashboard {
        opacity: 1 !important;
        transform: none !important;
    }

}


/* =========================================================
   GLOBAL TYPOGRAPHY
========================================================= */

h2 {
    font-size: clamp(28px, 3.4vw, 36px);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.025em;
    color: #1f2937;
}

.description-text,
.hrm-description p,
.module-description,
.attendance-info-card p,
.leave-explanation-card p,
.payroll-intro-text,
.wbi-content > p,
.employment-record-heading p,
.workforce-intelligence__heading p,
.hrm-journey-header p,
.attendance-3d__intro p,
.leave-management-intro p,
.payroll-information-header p,
.payroll-structure-text p,
.payroll-generation-heading p,
.wbi-insight p,
.hrm-record-heading p,
.hrm-final-content h3 {
    color: #6b7480;
}


/* =========================================================
   HERO
========================================================= */

.hrm-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 100px 20px 0;
    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(5, 59, 47, .035),
            transparent 42%
        ),
        #ffffff;
    isolation: isolate;
}


/* =========================================================
   CONTAINER
========================================================= */

.hrm-container {
    position: relative;
    width: min(1450px, 100%);
    margin: auto;
    z-index: 5;
}


/* =========================================================
   BLOBS
========================================================= */

.hrm-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: -2;
}

.hrm-blob-1 {
    width: 600px;
    height: 600px;
    top: 200px;
    left: -220px;
    background: rgb(212 255 246 / 66%);
}

.hrm-blob-2 {
    width: 400px;
    height: 400px;
    top: 0px;
    right: -200px;
    background: rgb(253 225 146);
}


/* =========================================================
   GRID
========================================================= */

.hrm-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(5,59,47,.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(5,59,47,.018) 1px,
            transparent 1px
        );
    background-size: 65px 65px;
    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 75%
        );
    pointer-events: none;
    z-index: -3;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hrm-hero-content {
    max-width: 820px;
    margin: auto;
    text-align: center;
    position: relative;
    z-index: 10;
}


/* =========================================================
   EYEBROW
========================================================= */

.hrm-eyebrow {
    display: flex;
    justify-content: center;
    flex-direction:column;
    align-items: center;
    gap: 8px;
    padding: 7px 13px;
    border-radius: 100px;
    /* border: 1px solid rgba(5,59,47,.1); */
    background: rgba(255,255,255,.65);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    color: #053b2f;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .07em;
}

.hrm-eyebrow-dot {
    width: 7px;
    height: 7px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #f7c948;
    box-shadow: 0 0 0 5px rgba(247,201,72,.1);
    animation: hrmEyebrowPulse 2.5s ease-in-out infinite;
}

.hrm-eyebrow-logo {
    width: 60px;
    height: 60px;
    margin: 15px auto;

    object-fit: contain;
    /* display: inline-block; */
    vertical-align: middle;
    /* margin-right: 8px; */
}

@keyframes hrmEyebrowPulse {
    0%, 100% {
        box-shadow: 0 0 0 4px rgba(247,201,72,.08);
    }
    50% {
        box-shadow: 0 0 0 7px rgba(247,201,72,.16);
    }
}


/* =========================================================
   HEADING
========================================================= */

.hrm-hero h1 {
    margin: 24px 0 0;
    color: #1f2937;
    font-size: clamp(30px, 5vw, 42px);
    line-height: 1;
    letter-spacing: 0.3;
    font-weight: 700;
}

.hrm-hero h1 span {
    display: block;
    color: #059669;
    /* -webkit-text-fill-color: transparent; */
}


/* =========================================================
   TITLE LINE
========================================================= */

.hrm-title-line {
    display: flex;
    justify-content: center;
    margin: 24px 0;
}

.hrm-title-line span {
    width: 65px;
    height: 3px;
    border-radius: 50px;
    background: linear-gradient(90deg, #053b2f, #f7c948);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.hrm-description {
    max-width: 720px;
    margin: auto;
}

.hrm-description p {
    margin: 0 0 14px;
    font-size: 16px;
    line-height: 1.5;
}

.hrm-description strong {
    font-weight: 700;
}

.hrm-description .hrm-highlight {
    margin-top: 20px;
    font-size: 17px;
    font-weight: 750;
    color: #053b2f;
}


/* =========================================================
   DEMO BUTTON
========================================================= */

.hrm-demo-btn {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-top: 14px;
    padding: 7px 12px 7px 7px;
    border-radius: 100px;
    border: 1px solid rgba(5,59,47,.1);
    background: rgba(255,255,255,.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    color: #053b2f;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(5,59,47,.06);
    transition: .3s ease;
}

.hrm-demo-btn:hover {
    transform: translateY(-3px);
    color: #053b2f;
    box-shadow: 0 18px 40px rgba(5,59,47,.11);
}

.hrm-play-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #053b2f;
    color: white;
    font-size: 10px;
}

.hrm-duration {
    padding-left: 9px;
    border-left: 1px solid #e5e7eb;
    color: #9ca3af;
    font-size: 11px;
}


/* =========================================================
   FEATURES LAYOUT
========================================================= */

.hrm-features-layout {
    position: absolute;
    display: grid;
    top: 150px;
    left: -12%;
    grid-template-columns: 400px minmax(900px, 1fr) 400px;
    gap: 35px;
    align-items: center;
}


/* =========================================================
   FEATURE COLUMNS
========================================================= */

.hrm-features-column {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    z-index: 20;
}

.hrm-left {
    align-items: flex-end;
}

.hrm-right {
    align-items: flex-start;
}


/* =========================================================
   FEATURE
========================================================= */

.hrm-feature {
    width: 285px;
    height: 115px;
    position: relative;
    cursor: pointer;
    outline: none;
}


/* =========================================================
   CARD
========================================================= */

.hrm-feature-card {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease;
}


/* =========================================================
   CARD HOVER
========================================================= */

.hrm-feature:hover .hrm-feature-card {
    transform: translateY(-5px);
}


/* =========================================================
   KEYBOARD FOCUS
========================================================= */

.hrm-feature:focus-visible .hrm-card-front {
    outline: 2px solid #f7c948;
    outline-offset: 4px;
}


/* =========================================================
   FRONT CARD
========================================================= */

.hrm-card-front {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 17px;
    border-radius: 22px;
    border: 1px solid rgb(71 83 80);
    background: linear-gradient(135deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, .55));
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 18px 45px rgba(5, 59, 47, .065), inset 0 1px 0 rgba(255, 255, 255, .9);
    transition: box-shadow .35s ease, border-color .35s ease;
}


/* =========================================================
   HOVER CARD GLOW
========================================================= */

.hrm-feature:hover .hrm-card-front {
    border-color: rgba(5,59,47,.16);
    box-shadow: 0 25px 60px rgba(5,59,47,.12), 0 0 0 1px rgba(247,201,72,.08), inset 0 1px 0 rgba(255,255,255,.95);
}


/* =========================================================
   CARD ACTIVE
========================================================= */

.hrm-feature:active .hrm-feature-card {
    transform: translateY(-2px) scale(.985);
}


/* =========================================================
   SUBTLE GOLD SHIMMER
========================================================= */

.hrm-feature-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -130%;
    width: 65%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(247,201,72,.09), transparent);
    transform: skewX(-20deg);
    animation: hrmCardShimmer 5.5s ease-in-out infinite;
}

@keyframes hrmCardShimmer {
    0% {
        left: -130%;
    }
    15% {
        left: 140%;
    }
    100% {
        left: 140%;
    }
}


/* =========================================================
   ICON
========================================================= */

.hrm-feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    font-size: 18px;
    background: rgba(255,255,255,.75);
    transition: transform .35s ease;
}

.hrm-feature:hover .hrm-feature-icon {
    transform: scale(1.06);
}

.blue {
    color: #2563eb;
    background: rgba(37,99,235,.08);
}

.green {
    color: #059669;
    background: rgba(5,150,105,.08);
}

.yellow {
    color: #b77900;
    background: rgba(247,201,72,.12);
}

.purple {
    color: #7c3aed;
    background: rgba(124,58,237,.08);
}

.orange {
    color: #ea580c;
    background: rgba(234,88,12,.08);
}

.teal {
    color: #087f73;
    background: rgba(8,127,115,.08);
}

.gold {
    color: #a56b00;
    background: rgba(247,201,72,.10);
}

.pink {
    color: #db2777;
    background: rgba(219,39,119,.08);
}


/* =========================================================
   TEXT
========================================================= */

.hrm-feature-info {
    min-width: 0;
    padding-right: 4px;
    position: relative;
    z-index: 2;
}

.hrm-feature-info h3 {
    margin: 0 0 5px;
    color: #1e2024;
    font-size: 14px;
    font-weight: 500;
}

.hrm-feature-info p {
    margin: 0;
    font-size: 11px;
    line-height: 1.5;
    margin-bottom: 10px;
}


/* =========================================================
   CLICK TO PREVIEW
========================================================= */

.hrm-view {
    position: absolute;
    right: 23px;
    bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #053b2f;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5px;
    letter-spacing: 0.2px;
    opacity: .72;
    z-index: 5;
    animation: hrmViewAttention 3.5s ease-in-out infinite;
    transition: opacity .3s ease, transform .3s ease;
}


/* =========================================================
   GOLD DOT
========================================================= */

.hrm-view-dot {
    width: 5px;
    height: 5px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #f7c948;
    box-shadow: 0 0 0 0 rgba(247,201,72,.45);
    animation: hrmViewPulse 2s ease-out infinite;
}


/* =========================================================
   ARROW
========================================================= */

.hrm-view i {
    font-size: 8px;
    transition: transform .3s ease;
}


/* =========================================================
   ATTENTION ANIMATION
========================================================= */

@keyframes hrmViewAttention {
    0%, 65%, 100% {
        opacity: .65;
        transform: translateX(0);
    }
    72% {
        opacity: 1;
        transform: translateX(2px);
    }
    78% {
        opacity: .75;
        transform: translateX(0);
    }
    84% {
        opacity: 1;
        transform: translateX(2px);
    }
    90% {
        opacity: .7;
        transform: translateX(0);
    }
}


/* =========================================================
   DOT PULSE
========================================================= */

@keyframes hrmViewPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(247,201,72,.45);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(247,201,72,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(247,201,72,0);
    }
}


/* =========================================================
   HOVER VIEW
========================================================= */

.hrm-feature:hover .hrm-view {
    opacity: 1;
    transform: translateX(2px);
    animation: none;
}

.hrm-feature:hover .hrm-view-dot {
    animation: none;
    box-shadow: 0 0 0 5px rgba(247,201,72,.12);
}

.hrm-feature:hover .hrm-view i {
    transform: translateX(4px);
}


/* =========================================================
   BACK IMAGE SOURCE
========================================================= */

.hrm-card-back {
    display: none !important;
}

.hrm-card-back img {
    display: none;
}


/* =========================================================
   CENTER
========================================================= */

.hrm-feature-center {
    position: relative;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.hrm-center-orbit {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 1px dashed rgba(5,59,47,.07);
    animation: orbitRotate 20s linear infinite;
    opacity: 0;
}

.hrm-center-orbit::before,
.hrm-center-orbit::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #f7c948;
    box-shadow: 0 0 0 5px rgba(247,201,72,.08), 0 0 15px rgba(247,201,72,.3);
    opacity: 0;
}

.hrm-center-orbit::before {
    top: 15px;
    left: 50%;
}

.hrm-center-orbit::after {
    bottom: 15px;
    left: 50%;
}

.hrm-center-dot {
    opacity: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #f7c948;
    box-shadow: 0 0 0 8px rgba(247,201,72,.07), 0 0 25px rgba(247,201,72,.25);
}

@keyframes orbitRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


.hrm-dashboard {
    position: relative;
    width: min(1100px, 92%);
    margin: 35px auto 0;
    z-index: 30;
    isolation: isolate;
}

.hrm-dashboard::before {
    content: "";
    position: absolute;
    left: 5%;
    right: 5%;
    bottom: -35px;
    height: 230px;
    background:
        radial-gradient(
            ellipse at 18% 65%,
            rgba(55, 160, 255, .34),
            transparent 42%
        ),
        radial-gradient(
            ellipse at 48% 75%,
            rgba(247, 201, 72, .32),
            transparent 42%
        ),
        radial-gradient(
            ellipse at 82% 60%,
            rgba(0, 190, 210, .30),
            transparent 44%
        );
    filter: blur(32px);
    opacity: .95;
    z-index: -3;
    pointer-events: none;
}


/* =========================================================
   SOFT GREEN ATMOSPHERE
========================================================= */

.hrm-dashboard::after {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: -15px;
    height: 160px;
    background: radial-gradient(ellipse, rgba(5, 59, 47, .18), transparent 68%);
    filter: blur(30px);
    z-index: -4;
    pointer-events: none;
}


/* =========================================================
   EXISTING GLOW
========================================================= */

.hrm-dashboard-glow {
    position: absolute;
    right: -440%;
    bottom: -350px;
    width: 1000px;
    height: 1000px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgb(5 59 47 / 72%), transparent 68%);
    filter: blur(45px);
    z-index: -5;
    pointer-events: none;
}


/* =========================================================
   GLASS DASHBOARD FRAME
========================================================= */

.hrm-dashboard-frame {
    position: relative;
    overflow: hidden;
    border-radius: 28px 28px 0 0;
    border: 1px solid rgba(255, 255, 255, .78);
    background: linear-gradient(135deg, rgba(255,255,255,.72), rgba(255,255,255,.38));
    backdrop-filter: blur(22px) saturate(135%);
    -webkit-backdrop-filter: blur(22px) saturate(135%);
    box-shadow:
        0 45px 100px rgba(5, 59, 47, .14),
        0 15px 35px rgba(5, 59, 47, .08),
        inset 0 1px 0 rgba(255,255,255,.95),
        inset 0 -1px 0 rgba(255,255,255,.35);
    transform: translateZ(0);
    isolation: isolate;
}


/* =========================================================
   TOP GLASS HIGHLIGHT
========================================================= */

.hrm-dashboard-frame::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 90px;
    background: linear-gradient(180deg, rgba(255,255,255,.42), rgba(255,255,255,0));
    pointer-events: none;
    z-index: 3;
}


/* =========================================================
   GLASS REFLECTION
========================================================= */

.hrm-dashboard-frame::after {
    content: "";
    position: absolute;
    top: -80%;
    left: -25%;
    width: 55%;
    height: 220%;
    background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.16) 48%, rgba(255,255,255,.05) 55%, transparent 68%);
    transform: rotate(8deg);
    pointer-events: none;
    z-index: 4;
    animation: hrmGlassReflection 7s ease-in-out infinite;
}

@keyframes hrmGlassReflection {
    0% {
        transform: translateX(-45%) rotate(8deg);
        opacity: .25;
    }
    45% {
        transform: translateX(110%) rotate(8deg);
        opacity: .65;
    }
    100% {
        transform: translateX(110%) rotate(8deg);
        opacity: .25;
    }
}


/* =========================================================
   DASHBOARD IMAGE
========================================================= */

.hrm-dashboard-frame img {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: none;
    z-index: 2;
    transform: translateZ(0);
}


/* =========================================================
   SUBTLE GLASS EDGE
========================================================= */

.hrm-dashboard-frame {
    box-shadow:
        0 0 0 1px rgba(255,255,255,.45),
        0 45px 100px rgba(5,59,47,.15),
        0 18px 45px rgba(5,59,47,.08),
        inset 0 1px 0 rgba(255,255,255,.95);
}


/* =========================================================
   FLOATING EFFECT
========================================================= */

.hrm-dashboard-frame {
    animation: hrmDashboardFloat 5s ease-in-out infinite;
}

@keyframes hrmDashboardFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}


/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width:1250px){
    .hrm-features-layout{
        position: static;
    }
}
@media (max-width: 991px) {
    .hrm-dashboard {
        width: 95%;
        margin-top: 30px;
    }
    .hrm-dashboard-frame {
        border-radius: 22px 22px 0 0;
    }
    .hrm-dashboard::before {
        height: 180px;
        filter: blur(28px);
    }
}

@media (max-width: 600px) {
    .hrm-dashboard {
        width: 100%;
        margin-top: 28px;
    }
    .hrm-dashboard-frame {
        border-radius: 16px 16px 0 0;
        box-shadow: 0 25px 60px rgba(5,59,47,.13), inset 0 1px 0 rgba(255,255,255,.9);
    }
    .hrm-dashboard::before {
        left: 0;
        right: 0;
        bottom: -20px;
        height: 140px;
        filter: blur(25px);
    }
    .hrm-dashboard::after {
        left: 5%;
        right: 5%;
        bottom: -10px;
        height: 110px;
    }
}


/* =========================================================
   NETWORK
========================================================= */

.hrm-network {
    margin: 60px auto 80px;
    text-align: center;
}

.hrm-network-title {
    color: #053b2f;
    font-size: 14px;
    font-weight: 750;
}

.hrm-network-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.hrm-network-items span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 100px;
    border: 1px solid rgba(5,59,47,.08);
    background: rgba(255,255,255,.65);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    color: #6b7280;
    font-size: 11px;
    font-weight: 650;
}

.hrm-network-items i {
    color: #053b2f;
}


/* =========================================================
   IMAGE PREVIEW MODAL
========================================================= */

.hrm-image-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease, visibility .3s ease;
}


/* =========================================================
   MODAL OPEN
========================================================= */

.hrm-image-modal.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}


/* =========================================================
   MODAL OVERLAY
========================================================= */

.hrm-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(2,38,31,.84);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}


/* =========================================================
   MODAL CONTAINER
========================================================= */

.hrm-modal-container {
    position: relative;
    z-index: 2;
    width: min(1200px, 94vw);
    max-height: 92vh;
    transform: translateY(30px) scale(.94);
    opacity: 0;
    transition: transform .4s cubic-bezier(.2,.8,.2,1), opacity .3s ease;
}

.hrm-image-modal.is-open .hrm-modal-container {
    transform: translateY(0) scale(1);
    opacity: 1;
}


/* =========================================================
   MODAL IMAGE BOX
========================================================= */

.hrm-modal-image-box {
    position: relative;
    width: 100%;
    max-height: 82vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255,255,255,.98);
    border: 1px solid rgba(255,255,255,.8);
    box-shadow: 0 40px 100px rgba(0,0,0,.38), 0 0 0 1px rgba(247,201,72,.12);
}


/* =========================================================
   MODAL IMAGE
========================================================= */

.hrm-modal-image {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 14px;
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.hrm-modal-close {
    position: absolute;
    top: -18px;
    right: -18px;
    z-index: 20;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    background: #053b2f;
    color: white;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,.28);
    transition: transform .25s ease, background .25s ease, color .25s ease;
}

.hrm-modal-close:hover {
    transform: rotate(90deg) scale(1.08);
    background: #f7c948;
    color: #02261f;
}


/* =========================================================
   MODAL FOOTER
========================================================= */

.hrm-modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 10px;
    padding: 10px 15px;
    border-radius: 12px;
    background: rgba(5,59,47,.92);
    border: 1px solid rgba(255,255,255,.08);
    color: white;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.hrm-modal-title {
    font-size: 13px;
    font-weight: 700;
    color: white;
}

.hrm-modal-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: rgba(255,255,255,.62);
}

.hrm-modal-hint i {
    color: #f7c948;
}


/* =========================================================
   BODY LOCK
========================================================= */

body.hrm-modal-open {
    overflow: hidden;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {
    .hrm-features-layout {
        grid-template-columns: 250px minmax(350px, 1fr) 250px;
        gap: 20px;
    }
    .hrm-feature {
        width: 245px;
    }
    .hrm-center-orbit {
        width: 350px;
        height: 350px;
    }
}


/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 991px) {
    .hrm-hero {
        padding-top: 70px;
    }
    .hrm-features-layout {
        grid-template-columns: 1fr;
        gap: 14px;
        min-height: auto;
        margin-top: 40px;
    }
    .hrm-features-column {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        width: 100%;
    }
    .hrm-feature {
        width: 100%;
        height: 110px;
    }
    .hrm-left,
    .hrm-right {
        align-items: stretch;
    }
    .hrm-feature-center {
        display: none;
    }
    .hrm-dashboard {
        width: 95%;
        margin-top: 35px;
    }
    .hrm-image-modal {
        padding: 22px;
    }
    .hrm-modal-container {
        width: 94vw;
    }
    .hrm-modal-image-box {
        max-height: 78vh;
        border-radius: 17px;
    }
    .hrm-modal-image {
        max-height: 76vh;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {
    .hrm-hero {
        padding: 55px 14px 0;
    }
    .hrm-hero h1 {
        font-size: clamp(34px, 10vw, 46px);
    }
    .hrm-description p {
        font-size: 12.5px;
        line-height: 1.7;
    }
    .hrm-description .hrm-highlight {
        font-size: 15px;
    }
    .hrm-features-column {
        grid-template-columns: 1fr;
        gap: 11px;
    }
    .hrm-feature {
        height: 100px;
    }
    .hrm-card-front {
        padding: 13px;
        border-radius: 17px;
    }
    .hrm-feature-icon {
        width: 43px;
        height: 43px;
        border-radius: 13px;
        font-size: 15px;
    }
    .hrm-feature-info h3 {
        font-size: 12px;
    }
    .hrm-feature-info p {
        font-size: 9px;
    }
    .hrm-view {
        right: 11px;
        bottom: 8px;
        font-size: 8px;
    }
    .hrm-view-dot {
        width: 5px;
        height: 5px;
    }
    .hrm-dashboard {
        width: 100%;
        margin-top: 30px;
    }
    .hrm-dashboard-frame {
        border-radius: 15px 15px 0 0;
    }
    .hrm-network {
        margin-top: 45px;
    }
    .hrm-network-items {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .hrm-network-items span {
        justify-content: center;
        padding: 9px 7px;
        font-size: 9px;
    }
    .hrm-image-modal {
        padding: 15px;
    }
    .hrm-modal-container {
        width: 96vw;
    }
    .hrm-modal-image-box {
        max-height: 72vh;
        padding: 5px;
        border-radius: 13px;
    }
    .hrm-modal-image {
        max-height: 70vh;
        border-radius: 9px;
    }
    .hrm-modal-close {
        width: 36px;
        height: 36px;
        top: -10px;
        right: -6px;
        font-size: 13px;
    }
    .hrm-modal-footer {
        padding: 9px 11px;
    }
    .hrm-modal-title {
        font-size: 11px;
    }
    .hrm-modal-hint {
        font-size: 8px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {
    .hrm-view {
        font-size: 7px;
    }
    .hrm-modal-container {
        width: 97vw;
    }
    .hrm-modal-image-box {
        max-height: 68vh;
    }
    .hrm-modal-image {
        max-height: 66vh;
    }
}


/* =========================================================
   REDUCE MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
    .hrm-feature-card,
    .hrm-modal-container,
    .hrm-feature-icon,
    .hrm-view {
        transition: none !important;
    }
    .hrm-view,
    .hrm-view-dot,
    .hrm-feature-card::after,
    .hrm-eyebrow-dot,
    .hrm-center-orbit {
        animation: none !important;
    }
}


/* =========================================================
   ATTENDANCE SECTION
========================================================= */

.modules-section {
    position: relative;
    overflow: hidden;
    background: #f8fafc;
    padding: 60px 0;
}

.modules-section .grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(226, 232, 240, 0.12) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(226, 232, 240, 0.12) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
}

.modules-container {
    position: relative;
    z-index: 2;
    max-width: 1530px;
    margin: 0 auto;
    padding: 0 24px;
}


/* =========================================================
   HEADING
========================================================= */

.modules-heading {
    margin: 0 auto 40px;
    text-align: center;
}

.module-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 18px;
    border: 1px solid #a7f3d0;
    border-radius: 999px;
    background: #ecfdf5;
    color: #047857;
    font-size: 14px;
    font-weight: 500;
}

.modules-heading h2 {
    margin: 22px 0 0;
}

.module-description {
    max-width: 600px;
    margin: 18px auto 0;
    font-size: 16px;
    line-height: 1.7;
}

.attendance-question {
    margin-top: 8px;
    color: #1f2937;
    font-size: 17px;
    line-height: 1.5;
}


/* =========================================================
   MAIN CONTENT
========================================================= */

.attendance-content {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(450px, 560px) minmax(300px, 1fr);
    gap: 34px;
    align-items: center;
}


/* =========================================================
   COLUMNS
========================================================= */

.attendance-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}


/* =========================================================
   INFORMATION CARDS
========================================================= */

.attendance-info-card {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.035);
}

.info-card-label {
    margin-bottom: 12px;
    color: #047857;
    letter-spacing: 0.05em;
    font-size: 20px;
    font-weight: 600;
}

.attendance-info-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
}

.attendance-info-card p + p {
    margin-top: 12px;
}

.attendance-info-card strong {
    font-weight: 700;
}


/* =========================================================
   POLICY HEADING
========================================================= */

.attendance-policy-heading {
    padding: 10px 4px 4px;
}

.attendance-policy-heading span {
    display: block;
    margin-bottom: 5px;
    color: #1f2937;
    font-size: 20px;
    font-weight: 600;
}

.attendance-policy-heading p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}


/* =========================================================
   POLICY CARDS
========================================================= */

.policy-card {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 11px 14px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.68);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

.policy-card:hover {
    transform: translateX(4px);
    border-color: #a7f3d0;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}


/* =========================================================
   POLICY NUMBER
========================================================= */

.policy-number {
    flex: 0 0 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-right: 12px;
    border-radius: 10px;
    background: rgba(167, 243, 208, 0.42);
    color: #047857;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
}


/* =========================================================
   POLICY TEXT
========================================================= */

.policy-content {
    min-width: 0;
}

.policy-content strong {
    display: block;
    color: #6b7480;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
}


/* =========================================================
   CENTER DASHBOARD
========================================================= */

.attendance-center {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 620px;
    isolation: isolate;
}


/* =========================================================
   BACKGROUND CIRCLE
========================================================= */

.module-bg-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 450px;
    height: 450px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.13) 0%, rgba(16, 185, 129, 0.06) 48%, rgba(16, 185, 129, 0) 72%);
    z-index: 1;
    pointer-events: none;
}


/* =========================================================
   DASHBOARD GLOW
========================================================= */

.center-glow {
    position: absolute;
    width: 75%;
    height: 45%;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.09);
    filter: blur(45px);
    z-index: 1;
    pointer-events: none;
}


/* =========================================================
   DASHBOARD
========================================================= */

.dashboard-frame {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.dashboard-frame img {
    display: block;
    width: 100%;
    max-width: 610px;
    border-radius: 20px;
    filter: contrast(1.02) saturate(1.02) drop-shadow(0 25px 45px rgba(15, 23, 42, 0.14));
    transform-origin: center;
    will-change: transform;
    cursor: zoom-in;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.8s ease;
}

.dashboard-frame:hover img {
    transform: scale(1.05);
    filter: contrast(1.05) saturate(1.04) drop-shadow(0 32px 55px rgba(15, 23, 42, 0.18));
}


/* =========================================================
   CONCLUSION
========================================================= */

.conclusion-card {
    margin-top: 30px;
    border-color: #a7f3d0;
    background: rgba(236, 253, 245, 0.68);
}

.conclusion-card p {
    color: #334155;
    font-size: 12.5px;
    line-height: 1.7;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {
    .attendance-content {
        grid-template-columns: minmax(270px, 1fr) minmax(360px, 450px) minmax(270px, 1fr);
        gap: 22px;
    }
    .attendance-center {
        min-height: 520px;
    }
    .module-bg-circle {
        width: 360px;
        height: 360px;
    }
    .dashboard-frame img {
        max-width: 500px;
    }
}


/* =========================================================
   MOBILE / TABLET
========================================================= */

@media (max-width: 991px) {
    .attendance-content {
        grid-template-columns: 1fr;
    }
    .attendance-center {
        order: -1;
        min-height: 430px;
    }
    .attendance-left,
    .attendance-right {
        max-width: 720px;
        width: 100%;
        margin: 0 auto;
    }
    .dashboard-frame img {
        max-width: 600px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {
    .modules-section {
        padding: 60px 0;
    }
    .modules-container {
        padding: 0 18px;
    }
    .modules-heading {
        margin-bottom: 40px;
    }
    .modules-heading h2 {
        font-size: 28px;
    }
    .module-description {
        font-size: 15px;
    }
    .attendance-question {
        font-size: 16px;
    }
    .attendance-center {
        min-height: 300px;
    }
    .module-bg-circle {
        width: 270px;
        height: 270px;
    }
    .dashboard-frame img {
        max-width: 94%;
    }
    .attendance-info-card {
        padding: 17px;
    }
    .policy-card {
        min-height: 54px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {
    .modules-heading h2 {
        font-size: 25px;
    }
    .module-description {
        font-size: 14px;
    }
    .attendance-question {
        font-size: 15px;
    }
    .policy-content strong {
        font-size: 12px;
    }
    .policy-number {
        flex-basis: 30px;
        width: 30px;
        height: 30px;
        margin-right: 10px;
    }
}


/* =========================================================
   3D ANIMATION
========================================================= */

.attendance-3d {
    --primary: #053b2f;
    --primary-light: #0b5d47;
    --primary-dark: #02261f;
    --secondary: #f7c948;
    --secondary-light: #ffdc73;
    --secondary-dark: #e8b92d;
    --white: #ffffff;
    --black: #111827;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --border-color: #e5e7eb;
    --bg-light: #f8fafc;

    width: 100%;
    position: relative;
    overflow: hidden;
    background: var(--white);
    color: var(--text-primary);
}

.attendance-3d__blobs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.attendance-3d__blob {
    position: absolute;
    display: block;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    opacity: 0.55;
}

.attendance-3d__blob--green {
    width: 420px;
    height: 420px;
    top: -80px;
    right: 0%;
    background: rgba(174, 239, 224, 0.55);
    animation: attendanceFloatGreen 16s ease-in-out infinite;
}

.attendance-3d__blob--gold {
    width: 360px;
    height: 360px;
    top: 35%;
    left: -60px;
    background: rgba(247, 201, 72, 0.45);
    animation: attendanceFloatGold 19s ease-in-out infinite;
}

.attendance-3d__blob--green-small {
    width: 300px;
    height: 300px;
    bottom: 5%;
    right: -120px;
    background: rgba(11, 93, 71, 0.18);
    animation: attendanceFloatSmall 14s ease-in-out infinite;
}

@keyframes attendanceFloatGreen {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-35px, 45px) scale(1.08);
    }
}

@keyframes attendanceFloatGold {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(40px, -30px) scale(1.1);
    }
}

@keyframes attendanceFloatSmall {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-30px, -40px) scale(1.07);
    }
}

.attendance-3d__container {
    width: min(1300px, calc(100% - 48px));
    margin: 0 auto;
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.attendance-3d__intro {
    max-width: 760px;
    margin-bottom: 55px;
}

.attendance-3d__eyebrow {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0b5d47;
}

.attendance-3d__intro h2 {
    margin: 0;
}

.attendance-3d__intro h2 span {
    color: #059669;
}

.attendance-3d__intro p {
    margin: 10px 0;
    font-size: 18px;
    line-height: 1.6;
}

.attendance-3d__intro strong {
    color: #053b2f;
}

.attendance-3d__interactive {
    display: grid;
    grid-template-columns: 300px minmax(500px, 1fr) 400px;
    align-items: center;
    gap: 50px;
    min-height: 560px;
}

.attendance-3d__dimensions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.attendance-3d__dimension {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 15px;
    border: 0;
    border-left: 2px solid var(--border-color);
    background: transparent;
    color: var(--text-secondary);
    text-align: left;
    cursor: pointer;
    transition: color 0.25s ease, border-color 0.25s ease, padding-left 0.25s ease, background 0.25s ease;
    font: inherit;
}

.attendance-3d__dimension:hover,
.attendance-3d__dimension.is-active {
    padding-left: 23px;
    border-left-color: var(--primary);
    background: linear-gradient(90deg, rgba(5, 59, 47, 0.07), transparent);
    color: var(--primary);
}

.attendance-3d__number {
    font-size: 12px;
    font-weight: 700;
    opacity: 0.55;
}

.attendance-3d__dimension-title {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.attendance-3d__center {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-width: 0;
}

.attendance-3d__visual {
    width: 100%;
    max-width: 540px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.attendance-3d__visual::before {
    content: "";
    position: absolute;
    width: 75%;
    aspect-ratio: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(5, 59, 47, 0.10) 0%, rgba(5, 59, 47, 0.045) 35%, transparent 70%);
    filter: blur(18px);
    pointer-events: none;
}

.attendance-3d__visual-image {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 28px 45px rgba(5, 59, 47, 0.12));
    transition: transform 0.5s ease, filter 0.5s ease;
}

.attendance-3d__visual:hover .attendance-3d__visual-image {
    transform: translateY(-6px) scale(1.015);
    filter: drop-shadow(0 34px 55px rgba(5, 59, 47, 0.16));
}

.attendance-3d__content {
    min-height: 300px;
    position: relative;
}

.attendance-3d__panel {
    display: none;
    animation: attendancePanelIn 0.35s ease both;
}

.attendance-3d__panel.is-active {
    display: block;
}

@keyframes attendancePanelIn {
    from {
        opacity: 0;
        transform: translateX(15px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.attendance-3d__panel-label {
    margin-bottom: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #0b5d47;
}

.attendance-3d__panel p {
    margin: 0 0 18px;
    font-size: 16px;
    letter-spacing: 0.2px;
    line-height: 1.5;
    color: #6b7280;
}

.attendance-3d__panel strong {
    color: var(--text-primary);
}

.attendance-3d__movement {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 28px 0;
}

.attendance-3d__movement span {
    font-size: 13px;
}

.attendance-3d__movement span:not(:nth-child(even)) {
    padding: 10px 12px;
    border-radius: 30px;
    background: var(--bg-light);
    font-weight: 500;
    font-size: 16px;
    color: var(--text-primary);
}

.attendance-3d__trail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 10px 0;
    border-top: 1px solid var(--border-color);
    margin-top: 60px;
}

.attendance-3d__trail-content {
    max-width: 520px;
}

.attendance-3d__small-title {
    display: block;
    margin-bottom: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #0b5d47;
}

.attendance-3d__trail-content p {
    margin: 0;
    font-size: 20px;
    line-height: 1.7;
}

.attendance-3d__trail-reasons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.attendance-3d__trail-reasons button {
    padding: 18px 20px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: var(--white);
    color: var(--text-primary);
    text-align: left;
    font: inherit;
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.attendance-3d__trail-reasons button:hover {
    transform: translateX(8px);
    border-color: rgba(5, 59, 47, 0.35);
    background: var(--bg-light);
    box-shadow: 0 10px 25px rgba(5, 59, 47, 0.06);
}

.attendance-3d__final {
    text-align: center;
    padding-top: 30px;
}

.attendance-3d__final p {
    max-width: 650px;
    margin: 0 auto 20px;
    font-size: 16px;
    line-height: 1.7;
}

.attendance-3d__final h3 {
    max-width: 850px;
    margin: 0 auto;
    font-size: clamp(16px, 5vw, 25px);
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: #053b2f;
}

@media (max-width: 1100px) {
    .attendance-3d__interactive {
        grid-template-columns: 170px minmax(350px, 1fr) 330px;
        gap: 35px;
    }
    .attendance-3d__visual {
        max-width: 480px;
    }
}

@media (max-width: 900px) {
    .attendance-3d__container {
        padding: 60px 0;
    }
    .attendance-3d__interactive {
        grid-template-columns: 1fr;
        gap: 40px;
        min-height: auto;
    }
    .attendance-3d__dimensions {
        flex-direction: row;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 5px;
    }
    .attendance-3d__dimension {
        min-width: 150px;
        border-left: 0;
        border-bottom: 2px solid var(--border-color);
    }
    .attendance-3d__dimension:hover,
    .attendance-3d__dimension.is-active {
        padding-left: 15px;
        border-left: 0;
        border-bottom-color: var(--primary);
        background: transparent;
    }
    .attendance-3d__center {
        order: 0;
    }
    .attendance-3d__visual {
        max-width: 650px;
        padding: 0;
    }
    .attendance-3d__content {
        min-height: auto;
        max-width: 650px;
        margin: 0 auto;
        width: 100%;
    }
    .attendance-3d__trail {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 65px 0;
    }
}

@media (max-width: 600px) {
    .attendance-3d__container {
        width: min(100% - 32px, 1200px);
        padding: 65px 0;
    }
    .attendance-3d__intro {
        margin-bottom: 40px;
    }
    .attendance-3d__intro h2 {
        font-size: 32px;
        line-height: 1.2;
    }
    .attendance-3d__intro p {
        font-size: 16px;
    }
    .attendance-3d__dimensions {
        gap: 5px;
    }
    .attendance-3d__dimension {
        min-width: 115px;
        padding: 14px 10px;
        gap: 10px;
    }
    .attendance-3d__dimension-title {
        font-size: 12px;
    }
    .attendance-3d__number {
        font-size: 10px;
    }
    .attendance-3d__visual {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    .attendance-3d__visual-image {
        width: 100%;
        transform: none !important;
    }
    .attendance-3d__panel p {
        font-size: 16px;
        line-height: 1.65;
    }
    .attendance-3d__trail {
        padding: 50px 0;
        gap: 35px;
    }
    .attendance-3d__trail-content p {
        font-size: 17px;
    }
    .attendance-3d__final {
        padding-top: 50px;
    }
    .attendance-3d__final p {
        font-size: 17px;
    }
    .attendance-3d__final h3 {
        font-size: 38px;
    }
}

@media (max-width: 400px) {
    .attendance-3d__intro h2 {
        font-size: 29px;
    }
    .attendance-3d__dimension {
        min-width: 105px;
    }
    .attendance-3d__dimension-title {
        font-size: 11px;
    }
    .attendance-3d__final h3 {
        font-size: 34px;
    }
}


/* =========================================================
   LEAVE MANAGEMENT
========================================================= */

.leave-management-new {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    background: #f8fafc;
    color: #1f2937;
}

.leave-management-container {
    position: relative;
    z-index: 2;
    width: min(1300px, calc(100% - 40px));
    margin: 0 auto;
}

.leave-management-grid {
    position: absolute;
    inset: 0;
    opacity: 0.55;
    background-image:
        linear-gradient(rgba(5, 59, 47, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(5, 59, 47, 0.025) 1px, transparent 1px);
    background-size: 55px 55px;
    pointer-events: none;
}

.leave-management-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.07;
    pointer-events: none;
}

.leave-glow-left {
    left: -200px;
    top: 20%;
    background: #0b5d47;
}

.leave-glow-right {
    right: -200px;
    top: 50%;
    background: #f7c948;
}

.leave-management-intro {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    max-width: 900px;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(35px);
}

.leave-management-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    flex-shrink: 0;
    border-radius: 11px;
    background: #053b2f;
    color: #f7c948;
    font-size: 11px;
    font-weight: 800;
}

.leave-management-label {
    display: block;
    margin-bottom: 11px;
    color: #0b5d47;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.leave-management-intro h2 {
    margin: 0;
    color: #02261f;
    line-height: 1.5;
    letter-spacing: -1.5px;
    font-weight: 600;
}

.leave-management-intro h2 span {
    display: block;
    color: #059669;
}

.leave-management-intro p {
    max-width: 720px;
    margin: 18px 0 0;
    font-size: 16px;
    line-height: 1.7;
}

.leave-policy-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.92fr);
    gap: 65px;
    align-items: start;
}

.leave-policy-list-wrapper {
    min-width: 0;
    opacity: 0;
    transform: translateX(-55px);
}

.leave-policy-list-title {
    margin-bottom: 18px;
    color: #02261f;
    font-size: 20px;
    font-weight: 700;
}

.leave-policy-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.leave-config-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 62px;
    padding: 11px 13px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #ffffff;
    opacity: 0;
    transform: translateX(-25px);
    box-shadow: 0 6px 20px rgba(5, 59, 47, 0.025);
    transition: border-color 0.6s ease, box-shadow 0.6s ease, transform 0.5s ease;
}

.leave-config-fill {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(247, 201, 72, 0.12), rgba(247, 201, 72, 0.015));
    transform: translateY(100%);
    transition: transform 1.15s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.leave-config-item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: #f7c948;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.leave-config-item.config-active {
    border-color: rgba(247, 201, 72, 0.55);
    box-shadow: 0 10px 28px rgba(5, 59, 47, 0.06);
}

.leave-config-item.config-active .leave-config-fill {
    transform: translateY(0);
}

.leave-config-item.config-active::after {
    transform: scaleX(1);
}

.leave-config-number {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 8px;
    background: rgba(5, 59, 47, 0.065);
    color: #0b5d47;
    font-size: 9px;
    font-weight: 800;
    transition: background 0.6s ease, color 0.6s ease;
}

.config-active .leave-config-number {
    background: #f7c948;
    color: #02261f;
}

.leave-config-content {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.leave-config-content strong {
    display: block;
    color: #02261f;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
}

.leave-policy-explanation {
    min-width: 0;
    opacity: 0;
    transform: translateX(55px);
}

.leave-explanation-card {
    padding: 25px;
    border-radius: 17px;
    background: #02261f;
    box-shadow: 0 20px 50px rgba(2, 38, 31, 0.15);
}

.leave-explanation-top {
    margin-bottom: 20px;
}

.leave-explanation-top > span {
    display: block;
    margin-bottom: 9px;
    color: #f7c948;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1.2px;
}

.leave-explanation-line {
    width: 42px;
    height: 3px;
    border-radius: 10px;
    background: #f7c948;
}

.leave-explanation-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.75;
}

.leave-reclassify-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 15px;
    padding: 22px;
    border: 1px solid #e5e7eb;
    border-radius: 17px;
    background: #ffffff;
    opacity: 0;
    transform: translateY(25px);
    box-shadow: 0 10px 30px rgba(5, 59, 47, 0.04);
}

.reclassify-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;
    flex-shrink: 0;
    border-radius: 10px;
    background: #f7c948;
    color: #02261f;
    font-size: 10px;
    font-weight: 800;
}

.reclassify-content p {
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
}

.leave-approval-highlight {
    position: relative;
    display: grid;
    grid-template-columns: 4px 1fr 42px;
    gap: 18px;
    align-items: center;
    margin-top: 70px;
    padding: 25px 28px;
    border: 1px solid rgba(247, 201, 72, 0.35);
    border-radius: 17px;
    background: rgba(247, 201, 72, 0.07);
    opacity: 0;
    transform: translateY(30px);
}

.approval-highlight-line {
    width: 4px;
    height: 100%;
    min-height: 65px;
    border-radius: 10px;
    background: #f7c948;
    transform: scaleY(0);
    transform-origin: bottom;
}

.approval-highlight-content > span {
    display: block;
    margin-bottom: 6px;
    color: #0b5d47;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.approval-highlight-content h3 {
    max-width: 850px;
    margin: 0;
    color: #02261f;
    font-size: clamp(19px, 2.2vw, 27px);
    line-height: 1.35;
    font-weight: 800;
}

.approval-highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: #f7c948;
    color: #02261f;
    font-size: 13px;
    font-weight: 900;
    opacity: 0;
    transform: scale(0.5);
}

.leave-connected-process {
    margin-top: 60px;
    padding-top: 42px;
    border-top: 1px solid #e5e7eb;
    opacity: 0;
    transform: translateY(30px);
}

.connected-process-heading {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 28px;
    align-items: start;
    margin-bottom: 32px;
}

.connected-process-heading > span {
    padding-top: 2px;
    color: #0b5d47;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.4px;
    white-space: nowrap;
}

.connected-process-heading p {
    max-width: 760px;
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
}

.connected-process-heading strong {
    color: #02261f;
    font-weight: 800;
}

.connected-process-flow {
    display: flex;
    align-items: center;
    width: 100%;
}

.connected-flow-item {
    display: flex;
    align-items: center;
    gap: 11px;
    flex: 0 0 auto;
    opacity: 0;
    transform: translateY(20px);
}

.connected-flow-icon {
    position: relative;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e7eb;
    border-radius: 11px;
    background: #ffffff;
    color: #053b2f;
    box-shadow: 0 7px 18px rgba(5, 59, 47, 0.06);
    transition: transform 0.45s ease, background 0.45s ease, border-color 0.45s ease, color 0.45s ease, box-shadow 0.45s ease;
}

.connected-flow-icon i {
    font-size: 16px;
}

.connected-flow-icon::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    top: -2px;
    right: -2px;
    border-radius: 50%;
    background: #f7c948;
    transform: scale(0);
    transition: transform 0.4s ease;
}

.connected-flow-text {
    min-width: 82px;
}

.connected-flow-text span {
    display: block;
    margin-bottom: 2px;
    color: #9ca3af;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.connected-flow-text strong {
    display: block;
    color: #02261f;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 800;
    white-space: nowrap;
}

.connected-flow-line {
    position: relative;
    flex: 1 1 auto;
    min-width: 35px;
    max-width: 85px;
    height: 2px;
    margin: 0 18px;
    opacity: 0;
}

.connected-flow-line::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    background: #e5e7eb;
}

.connected-flow-line span {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    background: #f7c948;
    transform: scaleX(0);
    transform-origin: left;
}

.connected-flow-item:hover .connected-flow-icon {
    transform: translateY(-3px);
    background: #053b2f;
    border-color: #053b2f;
    color: #f7c948;
    box-shadow: 0 10px 24px rgba(5, 59, 47, 0.13);
}

.connected-flow-item:hover .connected-flow-icon::after {
    transform: scale(1);
}

@media (max-width: 950px) {
    .connected-process-heading {
        grid-template-columns: 160px 1fr;
        gap: 22px;
    }
    .connected-flow-line {
        margin: 0 12px;
        min-width: 25px;
    }
    .connected-flow-text {
        min-width: 72px;
    }
}

@media (max-width: 700px) {
    .connected-process-heading {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 28px;
    }
    .connected-process-heading p {
        font-size: 13px;
    }
    .connected-process-flow {
        flex-direction: column;
        align-items: flex-start;
    }
    .connected-flow-item {
        width: 100%;
    }
    .connected-flow-icon {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }
    .connected-flow-text {
        min-width: auto;
    }
    .connected-flow-line {
        width: 2px;
        height: 32px;
        min-width: 2px;
        max-width: 2px;
        margin: 0 0 0 21px;
    }
    .connected-flow-line::before {
        left: 0;
        right: auto;
        width: 2px;
        height: 100%;
    }
    .connected-flow-line span {
        width: 2px;
        height: 100%;
        transform: scaleY(0);
        transform-origin: top;
    }
}

@media (max-width: 950px) {
    .leave-policy-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .leave-policy-explanation {
        max-width: 700px;
        width: 100%;
        margin: 0 auto;
    }
    .connected-process-heading {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 700px) {
    .leave-management-new {
        padding: 70px 0;
    }
    .leave-management-container {
        width: min(100% - 28px, 1300px);
    }
    .leave-management-intro {
        margin-bottom: 45px;
    }
    .leave-management-intro h2 {
        font-size: 34px;
    }
    .leave-management-intro p {
        font-size: 14px;
    }
    .leave-policy-list {
        grid-template-columns: 1fr;
    }
    .leave-approval-highlight {
        grid-template-columns: 4px 1fr;
    }
    .approval-highlight-icon {
        display: none;
    }
    .connected-process-flow {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    .connected-flow-item {
        width: 100%;
    }
    .connected-flow-line {
        width: 2px;
        height: 35px;
        margin-left: 16px;
    }
    .connected-flow-line span {
        width: 2px;
        height: 100%;
        transform: scaleY(0);
        transform-origin: top;
    }
    .connected-flow-line.line-active span {
        transform: scaleY(1);
    }
}

@media (max-width: 480px) {
    .leave-management-number {
        width: 37px;
        height: 37px;
    }
    .leave-management-intro {
        gap: 12px;
    }
    .leave-management-intro h2 {
        font-size: 31px;
    }
    .leave-policy-heading {
        align-items: flex-start;
    }
    .leave-explanation-card,
    .leave-reclassify-card {
        padding: 19px;
    }
    .leave-approval-highlight {
        padding: 20px;
    }
}


/* =========================================================
   PAYROLL WORKFORCE
========================================================= */

.payroll-workforce-section {
    position: relative;
    overflow: hidden;
    background: #f7fbf9;
    padding: 60px 0;
}

.payroll-container {
    position: relative;
    z-index: 2;
    width: min(1300px, calc(100% - 40px));
    margin: 0 auto;
}

.payroll-bg-grid {
    position: absolute;
    inset: 0;
    opacity: .45;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(0, 143, 104, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 143, 104, .045) 1px, transparent 1px);
    background-size: 42px 42px;
}

.payroll-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(110px);
    opacity: .10;
    pointer-events: none;
}

.payroll-glow-one {
    left: -180px;
    top: 10%;
    background: #008f68;
}

.payroll-glow-two {
    right: -180px;
    bottom: 10%;
    background: #f6c84c;
}

.payroll-intro {
    max-width: 780px;
    margin-bottom: 50px;
}

.payroll-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 13px 7px 7px;
    border: 1px solid rgba(0, 143, 104, .18);
    border-radius: 50px;
    background: rgba(255, 255, 255, .85);
    color: #024130;
    font-size: 13px;
    font-weight: 700;
}

.payroll-label-icon {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #008f68;
    color: #fff;
    font-size: 12px;
}

.payroll-intro h2 {
    margin: 20px 0 15px;
    color: #071d2b;
    line-height: 1.1;
    letter-spacing: -.035em;
    font-weight: 750;
}

.payroll-intro h2 span {
    color: #008f68;
}

.payroll-intro-text {
    max-width: 650px;
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
}

.payroll-data-flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-bottom: 60px;
}

.payroll-flow-line {
    position: absolute;
    left: 6%;
    right: 6%;
    top: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 143, 104, .3), rgba(0, 143, 104, .3), transparent);
}

.payroll-data-card {
    position: relative;
    z-index: 2;
    min-height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 18px 10px;
    border: 1px solid #e3eee9;
    border-radius: 18px;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 14px 35px rgba(0, 61, 47, .055);
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.payroll-data-card:hover {
    transform: translateY(-7px);
    border-color: rgba(0, 143, 104, .35);
    box-shadow: 0 20px 45px rgba(0, 61, 47, .10);
}

.payroll-card-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: #e9faf4;
    color: #008f68;
    font-size: 15px;
}

.payroll-data-card span {
    color: #071d2b;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 700;
    text-align: center;
}

.payroll-information {
    position: relative;
    padding: 32px 36px;
    border: 1px solid #dcebe5;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 55px rgba(0, 61, 47, .065);
    margin-bottom: 22px;
}

.payroll-information::before {
    content: "";
    position: absolute;
    left: 0;
    top: 28px;
    bottom: 28px;
    width: 3px;
    border-radius: 5px;
    background: #008f68;
}

.payroll-information-header {
    display: flex;
    align-items: flex-start;
    gap: 22px;
}

.payroll-number {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #003d2f;
    color: #f6c84c;
    font-size: 12px;
    font-weight: 800;
}

.payroll-information h3 {
    margin: 2px 0 22px;
    color: #071d2b;
    font-size: 21px;
    line-height: 1.45;
    font-weight: 700;
}

.payroll-connection {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.payroll-connection span {
    padding: 8px 11px;
    border: 1px solid #e3eee9;
    border-radius: 9px;
    background: #f8fcfa;
    color: #024130;
    font-size: 12px;
    font-weight: 700;
    transition: transform .3s ease, background .3s ease;
}

.payroll-connection span:hover {
    transform: translateY(-3px);
    background: #e9faf4;
}

.payroll-connection b {
    color: #008f68;
    font-size: 13px;
}

.payroll-structure {
    padding: 30px 36px;
    border: 1px solid #dcebe5;
    border-radius: 24px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 18px 55px rgba(0, 61, 47, .055);
    margin-bottom: 22px;
}

.payroll-structure-content {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    margin-bottom: 25px;
}

.green-number {
    background: #e9faf4;
    color: #008f68;
}

.payroll-structure-text h3 {
    margin: 2px 0 8px;
    color: #071d2b;
    font-size: 20px;
    font-weight: 750;
}

.payroll-structure-text p {
    max-width: 920px;
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
}

.payroll-fields {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.payroll-field {
    min-height: 78px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 9px;
    padding: 12px;
    border: 1px solid #e3eee9;
    border-radius: 13px;
    background: #fbfdfc;
    transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

.payroll-field:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 143, 104, .3);
    background: #e9faf4;
}

.payroll-field-icon {
    width: 29px;
    height: 29px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: #e9faf4;
    color: #008f68;
    font-size: 11px;
}

.payroll-field span {
    color: #071d2b;
    font-size: 11px;
    line-height: 1.35;
    font-weight: 700;
}

.payroll-generation {
    padding: 30px 36px;
    border: 1px solid #dcebe5;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 55px rgba(0, 61, 47, .055);
    margin-bottom: 22px;
}

.payroll-generation-heading {
    display: flex;
    align-items: flex-start;
    gap: 22px;
}

.payroll-generation-heading p {
    max-width: 900px;
    margin: 4px 0 0;
    color: #071d2b;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 600;
}

.salary-process {
    position: relative;
    max-width: 650px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 38px auto 5px;
}

.salary-process-line {
    position: absolute;
    left: 16%;
    right: 16%;
    top: 23px;
    height: 2px;
    background: #e3eee9;
    overflow: hidden;
}

.salary-process-line span {
    display: block;
    width: 0;
    height: 100%;
    background: #008f68;
}

.salary-process-item {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.salary-process-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid #e3eee9;
    border-radius: 50%;
    background: #ffffff;
    color: #6b7280;
    font-size: 14px;
    transition: color .3s ease, border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.payroll-final {
    display: flex;
    align-items: center;
    gap: 18px;
    max-width: 900px;
    margin: 35px auto 0;
    padding: 23px 27px;
    border: 1px solid rgba(0, 143, 104, .2);
    border-radius: 18px;
    background: #e9faf4;
}

.payroll-final-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #008f68;
    color: #ffffff;
    font-size: 14px;
}

.payroll-final p {
    margin: 0;
    color: #024130;
    font-size: 15px;
    line-height: 1.65;
    font-weight: 600;
}

@media (max-width: 1000px) {
    .payroll-data-flow {
        grid-template-columns: repeat(3, 1fr);
    }
    .payroll-flow-line {
        display: none;
    }
    .payroll-fields {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .payroll-workforce-section {
        padding: 75px 0;
    }
    .payroll-container {
        width: calc(100% - 28px);
    }
    .payroll-intro h2 {
        font-size: 32px;
    }
    .payroll-data-flow {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .payroll-information,
    .payroll-structure,
    .payroll-generation {
        padding: 24px;
    }
    .payroll-information-header,
    .payroll-structure-content,
    .payroll-generation-heading {
        gap: 14px;
    }
    .payroll-information h3 {
        font-size: 18px;
    }
    .payroll-fields {
        grid-template-columns: repeat(2, 1fr);
    }
    .payroll-final {
        align-items: flex-start;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .payroll-intro h2 {
        font-size: 28px;
    }
    .payroll-data-flow {
        grid-template-columns: 1fr 1fr;
    }
    .payroll-data-card {
        min-height: 95px;
    }
    .payroll-information-header,
    .payroll-structure-content,
    .payroll-generation-heading {
        flex-direction: column;
    }
    .payroll-fields {
        grid-template-columns: 1fr;
    }
    .payroll-connection {
        gap: 6px;
    }
    .payroll-connection span {
        font-size: 11px;
    }
    .payroll-final {
        gap: 12px;
    }
    .payroll-final p {
        font-size: 14px;
    }
}


/* =========================================================
   WORKFORCE VISIBILITY
========================================================= */

.wbi-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 60px 0;
    background: #ffffff;
}

.wbi-container {
    width: min(1300px, calc(100% - 40px));
    margin: 0 auto;
    position: relative;
}

.wbi-content {
    width: 52%;
    position: relative;
    z-index: 5;
}

.wbi-label {
    display: inline-flex;
    align-items: center;
    padding: 7px 13px;
    border-radius: 30px;
    background: #e9faf4;
    color: #008f68;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .3px;
    margin-bottom: 18px;
}

.wbi-content h2 {
    margin: 0 0 18px;
    line-height: 1.2;
    font-weight: 750;
    color: #071d2b;
    max-width: 650px;
}

.wbi-content > p {
    margin: 0 0 14px;
    max-width: 620px;
    font-size: 16px;
    line-height: 1.7;
}

.wbi-content strong {
    color: #071d2b;
}

.wbi-activity-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
    max-width: 650px;
}

.wbi-activity {
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    padding: 9px 11px;
    border: 1px solid #e3eee9;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 7px 20px rgba(7, 29, 43, .055);
}

.wbi-activity i {
    font-size: 13px;
    color: #008f68;
}

.wbi-activity span {
    font-size: 13px;
    color: #071d2b;
    font-weight: 600;
}

.wbi-line {
    width: 18px;
    height: 1px;
    background: #b9d8cd;
}

.wbi-insight {
    display: flex;
    gap: 14px;
    margin-top: 30px;
    padding: 17px 18px;
    max-width: 620px;
    border: 1px solid #dceee7;
    border-radius: 15px;
    background: #f7fcfa;
}

.wbi-insight-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: #008f68;
    color: #ffffff;
    font-size: 15px;
}

.wbi-insight strong {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
}

.wbi-insight p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.wbi-visual {
    position: absolute;
    width: 54%;
    right: -5%;
    top: 55px;
    height: 570px;
    z-index: 2;
}

.wbi-screen {
    position: absolute;
    width: 100%;
    left: 0;
    top: 55px;
    border-radius: 17px;
    padding: 7px;
    background: #102c28;
    box-shadow: 0 35px 80px rgba(0, 55, 43, .20), 0 10px 30px rgba(0, 0, 0, .10);
    transform-origin: center;
}

.wbi-screen-top {
    height: 24px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding-left: 8px;
}

.wbi-screen-top span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ffffff;
    opacity: .45;
}

.wbi-screen-image {
    width: 100%;
    overflow: hidden;
    border-radius: 11px;
    background: #ffffff;
}

.wbi-screen-image img {
    width: 100%;
    height: auto;
    display: block;
}

.wbi-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
}

.wbi-glow-one {
    width: 260px;
    height: 260px;
    right: 10%;
    top: 10%;
    background: rgba(0, 143, 104, .14);
}

.wbi-glow-two {
    width: 200px;
    height: 200px;
    left: 5%;
    bottom: 5%;
    background: rgba(246, 200, 76, .10);
}

.wbi-float {
    position: absolute;
    z-index: 8;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 10px;
    background: rgba(255,255,255,.94);
    border: 1px solid #e1eee9;
    box-shadow: 0 12px 28px rgba(7,29,43,.10);
    backdrop-filter: blur(12px);
}

.wbi-float i {
    color: #008f68;
    font-size: 13px;
}

.wbi-float span {
    font-size: 12px;
    font-weight: 650;
    color: #071d2b;
}

.wbi-float-one {
    left: -32px;
    top: 105px;
}

.wbi-float-two {
    right: -25px;
    top: 165px;
}

.wbi-float-three {
    left: -42px;
    top: 260px;
}

.wbi-float-four {
    right: -38px;
    top: 335px;
}

.wbi-float-five {
    left: 15px;
    bottom: 55px;
}

.wbi-bottom {
    position: relative;
    z-index: 6;
    margin-top: 85px;
    width: 100%;
    text-align: center;
}

.wbi-bottom-line {
    width: 55px;
    height: 3px;
    margin: 0 auto 18px;
    border-radius: 5px;
    background: #008f68;
}

.wbi-bottom p {
    width: min(850px, 100%);
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.7;
}

.wbi-final {
    margin-top: 22px;
}

.wbi-final span {
    font-size: 22px;
    font-weight: 750;
    color: #008f68;
}

@media (max-width: 991px) {
    .wbi-section {
        padding: 80px 0;
    }
    .wbi-content {
        width: 100%;
    }
    .wbi-content h2 {
        font-size: 30px;
    }
    .wbi-visual {
        position: relative;
        width: 100%;
        right: auto;
        top: auto;
        height: 470px;
        margin-top: 50px;
    }
    .wbi-screen {
        width: 90%;
        left: 5%;
    }
    .wbi-bottom {
        margin-top: 30px;
    }
    .wbi-float-one {
        left: 0;
    }
    .wbi-float-two {
        right: 0;
    }
    .wbi-float-three {
        left: 0;
    }
    .wbi-float-four {
        right: 0;
    }
}

@media (max-width: 600px) {
    .wbi-section {
        padding: 65px 0;
    }
    .wbi-container {
        width: min(100% - 28px, 1300px);
    }
    .wbi-content h2 {
        font-size: 26px;
    }
    .wbi-content > p {
        font-size: 16px;
    }
    .wbi-activity-row {
        gap: 6px;
    }
    .wbi-line {
        display: none;
    }
    .wbi-activity {
        padding: 8px 9px;
    }
    .wbi-insight {
        padding: 14px;
    }
    .wbi-visual {
        height: 330px;
        margin-top: 35px;
    }
    .wbi-screen {
        top: 30px;
        width: 96%;
        left: 2%;
    }
    .wbi-float {
        padding: 7px 9px;
    }
    .wbi-float span {
        font-size: 11px;
    }
    .wbi-float-one {
        left: -2px;
        top: 45px;
    }
    .wbi-float-two {
        right: -2px;
        top: 90px;
    }
    .wbi-float-three {
        left: -2px;
        top: 160px;
    }
    .wbi-float-four {
        right: -2px;
        top: 210px;
    }
    .wbi-float-five {
        left: 5px;
        bottom: 20px;
    }
    .wbi-final span {
        font-size: 19px;
    }
}


/* =========================================================
   EMPLOYEE JOURNEY
========================================================= */

.hrm-employee-journey {
    --ej-green: #008f68;
    --ej-green-dark: #024130;
    --ej-green-deep: #003d2f;
    --ej-green-light: #e9faf4;
    --ej-gold: #f6c84c;
    --ej-text: #071d2b;
    --ej-muted: #687780;
    --ej-border: #e3eee9;
    --ej-white: #ffffff;

    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 50% 15%, rgba(0, 143, 104, 0.07), transparent 34%), #ffffff;
    padding: 60px 20px;
}

.hrm-journey-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hrm-bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
}

.hrm-bg-circle-1 {
    width: 450px;
    height: 450px;
    left: -250px;
    top: 180px;
    background: rgba(0, 143, 104, 0.035);
}

.hrm-bg-circle-2 {
    width: 500px;
    height: 500px;
    right: -280px;
    bottom: 100px;
    background: rgba(246, 200, 76, 0.035);
}

.hrm-bg-grid {
    position: absolute;
    inset: 0;
    opacity: .3;
    background-image:
        linear-gradient(rgba(0, 143, 104, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 143, 104, .025) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hrm-journey-container {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
}

.hrm-journey-header {
    text-align: center;
}

.hrm-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 13px;
    border: 1px solid rgba(0, 143, 104, .16);
    border-radius: 100px;
    color: #008f68;
    background: rgba(233, 250, 244, .65);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hrm-tag-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #008f68;
    box-shadow: 0 0 0 5px rgba(0, 143, 104, .08);
}

.hrm-journey-header h2 {
    margin: 20px 0 18px;
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: -1.5px;
}

.hrm-journey-header h2 span {
    color: #008f68;
}

.hrm-journey-header p {
    max-width: 680px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.75;
}

.hrm-journey-visual {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 500px 1fr;
    align-items: center;
    gap: 45px;
    min-height: 430px;
    margin-bottom: 40px;
}

.hrm-journey-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hrm-side-left {
    align-items: flex-end;
}

.hrm-side-right {
    align-items: flex-start;
}

.hrm-floating-card {
    position: relative;
    width: 280px;
    min-height: 74px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 13px 16px;
    background: rgba(255,255,255,.9);
    border: 1px solid #e3eee9;
    border-radius: 16px;
    box-shadow: 0 14px 35px rgba(7, 29, 43, .06);
    transition: transform .6s cubic-bezier(.2,.8,.2,1), box-shadow .6s ease, border-color .6s ease;
}

.hrm-floating-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0,143,104,.25);
    box-shadow: 0 20px 45px rgba(7,29,43,.1);
}

.hrm-mini-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #e9faf4;
    color: #008f68;
    font-size: 16px;
}

.hrm-floating-card strong {
    display: block;
    color: #071d2b;
    font-size: 15px;
    line-height: 1.35;
}

.hrm-floating-card small {
    display: block;
    margin-top: 2px;
    color: #687780;
    font-size: 11px;
}

.hrm-core-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,143,104,.15), rgba(0,143,104,.025) 55%, transparent 72%);
    animation: hrmCoreGlow 5s ease-in-out infinite;
}

@keyframes hrmCoreGlow {
    0%,100% {
        transform: scale(.92);
        opacity: .65;
    }
    50% {
        transform: scale(1.06);
        opacity: 1;
    }
}

.hrm-core-card {
    position: relative;
    z-index: 3;
    width: 310px;
    padding: 25px;
    border-radius: 24px;
    background: linear-gradient(145deg, #ffffff, #f8fcfa);
    border: 1px solid rgba(0,143,104,.18);
    box-shadow: 0 30px 70px rgba(0,61,47,.12), 0 5px 15px rgba(0,0,0,.03);
    transform: translateZ(0);
}

.hrm-core-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.hrm-core-label {
    color: #687780;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .13em;
}

.hrm-core-status {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #008f68;
    font-size: 9px;
    font-weight: 700;
}

.hrm-core-status i {
    font-size: 6px;
}

.hrm-profile {
    display: flex;
    align-items: center;
    gap: 13px;
}

.hrm-profile-avatar {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: #ffffff;
    background: linear-gradient(145deg, #008f68, #003d2f);
    font-size: 18px;
}

.hrm-profile-info strong {
    display: block;
    color: #071d2b;
    font-size: 15px;
}

.hrm-profile-info span {
    display: block;
    margin-top: 4px;
    color: #687780;
    font-size: 10px;
}

.hrm-core-line {
    height: 1px;
    margin: 24px 0;
    background: #e3eee9;
}

.hrm-core-stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 8px;
}

.hrm-core-stats div {
    padding: 10px 6px;
    text-align: center;
    border-radius: 11px;
    background: #f3f8f6;
}

.hrm-core-stats strong {
    display: block;
    color: #008f68;
    font-size: 15px;
}

.hrm-core-stats span {
    display: block;
    margin-top: 3px;
    color: #687780;
    font-size: 8px;
}

.hrm-orbit-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #008f68;
    box-shadow: 0 0 0 5px rgba(0,143,104,.08);
}

.hrm-orbit-dot-1 {
    top: 42px;
    left: 75px;
}

.hrm-orbit-dot-2 {
    top: 95px;
    right: 35px;
}

.hrm-orbit-dot-3 {
    bottom: 65px;
    left: 40px;
}

.hrm-orbit-dot-4 {
    bottom: 42px;
    right: 85px;
}

.hrm-record-section {
    margin-top: 30px;
}

.hrm-record-heading {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 35px;
}

.hrm-record-heading span {
    color: #008f68;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
}

.hrm-record-heading h3 {
    margin: 8px 0 0;
    color: #071d2b;
    font-size: 27px;
    line-height: 1.2;
}

.hrm-record-heading p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
}

.hrm-record-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.hrm-record-card {
    position: relative;
    min-height: 160px;
    padding: 20px;
    overflow: hidden;
    background: rgba(255,255,255,.88);
    border: 1px solid #e3eee9;
    border-radius: 16px;
    transition: transform .7s cubic-bezier(.2,.8,.2,1), border-color .5s ease, box-shadow .6s ease, background .5s ease;
}

.hrm-record-card::before {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    right: -45px;
    bottom: -45px;
    border-radius: 50%;
    background: rgba(0,143,104,.05);
    transition: transform .7s ease;
}

.hrm-record-card:hover {
    transform: translateY(-7px);
    border-color: rgba(0,143,104,.24);
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(7,29,43,.08);
}

.hrm-record-card:hover::before {
    transform: scale(2);
}

.hrm-record-number {
    position: absolute;
    top: 15px;
    right: 16px;
    color: #b9c9c3;
    font-size: 9px;
    font-weight: 800;
}

.hrm-record-icon {
    width: 39px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 11px;
    background: #e9faf4;
    color: #008f68;
    font-size: 20px;
    transition: transform .5s ease, background .5s ease;
}

.hrm-record-card:hover .hrm-record-icon {
    transform: scale(1.08) rotate(-3deg);
    background: #008f68;
    color: #ffffff;
}

.hrm-record-card h4 {
    position: relative;
    z-index: 2;
    max-width: 190px;
    margin: 0;
    color: #071d2b;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 600;
}

.hrm-history-block {
    display: grid;
    grid-template-columns: 260px 1fr;
    align-items: center;
    gap: 65px;
    margin-top: 100px;
    padding: 55px;
    border-radius: 25px;
    background: linear-gradient(135deg, #f7fbf9, #ffffff);
    border: 1px solid #e3eee9;
}

.hrm-history-visual {
    position: relative;
    width: 190px;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hrm-history-ring {
    position: absolute;
    border: 1px solid rgb(0 143 104 / 58%);
    border-radius: 50%;
}

.ring-one {
    width: 150px;
    height: 150px;
    animation: hrmRing 7s linear infinite;
}

.ring-two {
    width: 190px;
    height: 190px;
    border-style: dashed;
    animation: hrmRingReverse 10s linear infinite;
}

@keyframes hrmRing {
    to {
        transform: rotate(360deg);
    }
}

@keyframes hrmRingReverse {
    to {
        transform: rotate(-360deg);
    }
}

.hrm-history-icon {
    position: relative;
    z-index: 3;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    color: #ffffff;
    background: linear-gradient(145deg, #008f68, #003d2f);
    box-shadow: 0 15px 35px rgba(0,143,104,.22);
    font-size: 25px;
}

.hrm-history-label {
    color: #008f68;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
}

.hrm-history-content p {
    margin: 13px 0 25px;
    color: #071d2b;
    font-size: 18px;
    line-height: 1.65;
}

.hrm-history-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 17px;
    border-radius: 13px;
    background: #e9faf4;
    color: #687780;
    font-size: 13px;
    line-height: 1.6;
}

.hrm-history-note i {
    margin-top: 3px;
    color: #008f68;
}

.hrm-rejoin-section {
    margin-top: 28px;
}

.hrm-rejoin-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    padding: 28px 32px;
    border: 1px solid #e3eee9;
    border-radius: 20px;
    background: #ffffff;
}

.hrm-rejoin-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hrm-rejoin-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: #008f68;
    background: #e9faf4;
    font-size: 18px;
}

.hrm-rejoin-title span {
    color: #008f68;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
}

.hrm-rejoin-title h3 {
    margin: 5px 0 0;
    color: #071d2b;
    font-size: 19px;
}

.hrm-rejoin-right {
    display: flex;
    align-items: center;
}

.hrm-rejoin-right p {
    margin: 0;
    color: #687780;
    font-size: 14px;
    line-height: 1.7;
}

.hrm-eligibility-card {
    position: relative;
    display: grid;
    grid-template-columns: 55px 1fr auto;
    align-items: center;
    gap: 18px;
    margin-top: 15px;
    padding: 22px 25px;
    border-radius: 20px;
    background: linear-gradient(110deg, #fffaf4, #ffffff);
    border: 1px solid rgba(211,164,72,.22);
    transition: transform .6s ease, box-shadow .6s ease;
}

.hrm-eligibility-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(80,55,10,.07);
}

.hrm-warning-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: #9b6d00;
    background: #fff3cf;
    font-size: 17px;
}

.hrm-eligibility-content span {
    color: #987000;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
}

.hrm-eligibility-content p {
    margin: 5px 0 0;
    color: #687780;
    font-size: 13px;
    line-height: 1.65;
}

.hrm-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 100px;
    color: #8b6500;
    background: #fff3cf;
    font-size: 10px;
    font-weight: 750;
    white-space: nowrap;
}

.hrm-final-statement {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 28px;
    margin-top: 80px;
}

.hrm-final-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e3eee9);
}

.hrm-final-line:last-child {
    background: linear-gradient(90deg, #e3eee9, transparent);
}

.hrm-final-content {
    max-width: 650px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.hrm-final-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #008f68;
    background: #e9faf4;
    font-size: 17px;
}

.hrm-final-content h3 {
    margin: 0;
    color: #071d2b;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 650;
}

.hrm-final-content h3 span {
    color: #008f68;
}

.hrm-record-card,
.hrm-floating-card,
.hrm-history-block,
.hrm-rejoin-card,
.hrm-eligibility-card,
.hrm-final-statement {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 1s cubic-bezier(.2,.7,.2,1), transform 1s cubic-bezier(.2,.7,.2,1);
}

.hrm-floating-card.hrm-visible,
.hrm-record-card.hrm-visible,
.hrm-history-block.hrm-visible,
.hrm-rejoin-card.hrm-visible,
.hrm-eligibility-card.hrm-visible,
.hrm-final-statement.hrm-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1050px) {
    .hrm-journey-visual {
        grid-template-columns: 1fr 320px 1fr;
        gap: 20px;
    }
    .hrm-core-card {
        width: 285px;
    }
    .hrm-floating-card {
        width: 215px;
    }
    .hrm-record-grid {
        grid-template-columns: repeat(3, minmax(0,1fr));
    }
}

@media (max-width: 800px) {
    .hrm-employee-journey {
        padding: 80px 18px;
    }
    .hrm-journey-header {
        margin-bottom: 55px;
    }
    .hrm-journey-visual {
        display: flex;
        flex-direction: column;
        gap: 20px;
        min-height: auto;
    }
    .hrm-side-left {
        order: 2;
    }
    .hrm-side-right {
        order: 3;
    }
    .hrm-journey-side {
        width: 100%;
        align-items: stretch;
    }
    .hrm-floating-card {
        width: 100%;
    }
    .hrm-record-heading {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .hrm-record-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
    .hrm-history-block {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 35px 25px;
    }
    .hrm-history-visual {
        margin: 0 auto;
    }
    .hrm-rejoin-card {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .hrm-eligibility-card {
        grid-template-columns: 50px 1fr;
    }
    .hrm-status-pill {
        grid-column: 2;
        width: fit-content;
    }
    .hrm-final-statement {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .hrm-final-line {
        display: none;
    }
}

@media (max-width: 520px) {
    .hrm-employee-journey {
        padding: 70px 15px;
    }
    .hrm-journey-header h2 {
        font-size: 32px;
    }
    .hrm-journey-header p {
        font-size: 14px;
    }
    .hrm-record-grid {
        grid-template-columns: 1fr;
    }
    .hrm-record-card {
        min-height: 125px;
    }
    .hrm-history-content p {
        font-size: 15px;
    }
    .hrm-rejoin-card {
        padding: 23px 20px;
    }
    .hrm-eligibility-card {
        grid-template-columns: 1fr;
    }
    .hrm-status-pill {
        grid-column: auto;
    }
    .hrm-final-content {
        align-items: flex-start;
    }
    .hrm-final-content h3 {
        font-size: 14px;
    }
}


/* =========================================================
   EMPLOYMENT RECORD
========================================================= */

.employment-record-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 60px 20px;
    background: radial-gradient(circle at 50% 48%, rgba(11, 93, 71, 0.07), transparent 34%), linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.employment-record-container {
    position: relative;
    width: min(1300px, 100%);
    margin: 0 auto;
    z-index: 2;
}

.employment-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(10px);
    opacity: 0.12;
    z-index: 0;
    animation: employmentBlobFloat 9s ease-in-out infinite;
}

.employment-blob--one {
    width: 430px;
    height: 430px;
    left: -180px;
    top: 180px;
    background: #053b2f;
}

.employment-blob--two {
    width: 380px;
    height: 380px;
    right: -160px;
    bottom: 100px;
    background: #f7c948;
    animation-delay: -4s;
}

@keyframes employmentBlobFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(20px, -25px, 0) scale(1.05);
    }
}

.employment-record-heading {
    max-width: 850px;
    margin: 0 auto 70px;
    text-align: center;
}

.employment-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 100px;
    background: rgba(5, 59, 47, 0.07);
    border: 1px solid rgba(5, 59, 47, 0.12);
    color: #053b2f;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.employment-record-heading h2 {
    margin: 20px 0 18px;
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: -1.8px;
}

.employment-record-heading h2 span {
    display: block;
    color: #053b2f;
}

.employment-record-heading p {
    max-width: 720px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.75;
}

.employment-record-visual {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 0.9fr 1fr;
    align-items: center;
    gap: 45px;
    min-height: 560px;
}

.employment-flow-line {
    position: absolute;
    top: 50%;
    left: 9%;
    right: 9%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(5, 59, 47, 0.18), rgba(5, 59, 47, 0.18), transparent);
    z-index: 0;
}

.employment-flow-dot {
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-radius: 50%;
    background: #f7c948;
    box-shadow: 0 0 0 5px rgba(247, 201, 72, 0.08), 0 0 20px rgba(247, 201, 72, 0.55);
    animation: employmentFlow 4s linear infinite;
}

.employment-flow-dot--one {
    animation-delay: 0s;
}

.employment-flow-dot--two {
    animation-delay: 1.3s;
}

.employment-flow-dot--three {
    animation-delay: 2.6s;
}

@keyframes employmentFlow {
    0% {
        left: 0;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

.employment-side {
    position: relative;
    z-index: 3;
}

.employment-side--left {
    justify-self: end;
}

.employment-side--right {
    justify-self: start;
}

.employment-side-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding: 9px 14px;
    border-radius: 10px;
    background: #053b2f;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(5, 59, 47, 0.14);
}

.label-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.14);
}

.employment-person-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    max-width: 370px;
    padding: 16px;
    border: 1px solid rgba(5, 59, 47, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 18px 45px rgba(5, 59, 47, 0.08);
    backdrop-filter: blur(15px);
    animation: employmentCardFloat 5s ease-in-out infinite;
}

.person-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(5, 59, 47, 0.1), rgba(247, 201, 72, 0.15));
    color: #053b2f;
}

.person-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.person-info strong {
    color: #1f2937;
    font-size: 15px;
}

.person-info span {
    color: #6b7280;
    font-size: 12px;
}

.person-status {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(5, 59, 47, 0.07);
    color: #053b2f;
    animation: arrowMove 1.8s ease-in-out infinite;
}

@keyframes arrowMove {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
}

.employment-info-card,
.employment-documents-card {
    width: 100%;
    max-width: 370px;
    margin-top: 16px;
    padding: 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e5e7eb;
    box-shadow: 0 20px 50px rgba(5, 59, 47, 0.07);
    backdrop-filter: blur(14px);
}

.employment-card-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #1f2937;
    font-size: 14px;
}

.employment-card-heading > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(5, 59, 47, 0.08);
    color: #053b2f;
}

.employment-info-card ul,
.employment-documents-card ul {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.employment-info-card li,
.employment-documents-card li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 12px;
    line-height: 1.5;
}

.employment-info-card li i,
.employment-documents-card li i {
    margin-top: 3px;
    color: #0b5d47;
    font-size: 10px;
}

.employment-center {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.employment-center-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(5, 59, 47, 0.15), transparent 65%);
    filter: blur(15px);
    animation: centerGlow 4s ease-in-out infinite;
}

@keyframes centerGlow {
    0%, 100% {
        transform: scale(0.9);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

.employment-profile-card {
    position: relative;
    width: 100%;
    max-width: 380px;
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.93));
    border: 1px solid rgba(5, 59, 47, 0.15);
    box-shadow: 0 35px 80px rgba(5, 59, 47, 0.16), 0 5px 20px rgba(5, 59, 47, 0.05);
    backdrop-filter: blur(20px);
    transform-style: preserve-3d;
    animation: profileFloat 6s ease-in-out infinite;
}

@keyframes profileFloat {
    0%, 100% {
        transform: translateY(0) rotateX(0deg);
    }
    50% {
        transform: translateY(-12px) rotateX(1deg);
    }
}

.profile-top {
    display: flex;
    align-items: center;
    gap: 14px;
}

.profile-shield {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 15px;
    background: linear-gradient(135deg, #053b2f, #0b5d47);
    color: #ffffff;
    font-size: 22px;
    box-shadow: 0 10px 25px rgba(5, 59, 47, 0.2);
}

.profile-top > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.profile-label {
    color: #6b7280;
    font-size: 11px;
}

.profile-top strong {
    color: #053b2f;
    font-size: 20px;
}

.profile-divider {
    width: 100%;
    height: 1px;
    margin: 22px 0 5px;
    background: #e5e7eb;
}

.profile-record {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}

.profile-record:last-of-type {
    border-bottom: 0;
}

.record-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(5, 59, 47, 0.07);
    color: #053b2f;
    font-size: 14px;
}

.profile-record > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.profile-record strong {
    color: #1f2937;
    font-size: 12px;
}

.profile-record span {
    color: #6b7280;
    font-size: 10px;
    line-height: 1.4;
}

.profile-footer {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 18px;
    padding: 12px 14px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(5, 59, 47, 0.07), rgba(247, 201, 72, 0.08));
    color: #053b2f;
    font-size: 11px;
    font-weight: 700;
}

.profile-footer i {
    font-size: 15px;
}

.future-employer-card {
    position: relative;
    width: 100%;
    max-width: 370px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    padding: 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e5e7eb;
    box-shadow: 0 20px 50px rgba(5, 59, 47, 0.08);
    backdrop-filter: blur(14px);
    animation: employmentCardFloat 5s ease-in-out infinite;
    animation-delay: -2s;
}

.future-employer-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(5, 59, 47, 0.08);
    color: #053b2f;
    font-size: 20px;
}

.future-employer-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-right: 55px;
}

.future-employer-content strong {
    color: #1f2937;
    font-size: 13px;
}

.future-employer-content span {
    color: #6b7280;
    font-size: 11px;
    line-height: 1.5;
}

.verified-badge {
    position: absolute;
    right: 14px;
    top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 8px;
    border-radius: 100px;
    background: rgba(5, 59, 47, 0.08);
    color: #053b2f;
    font-size: 9px;
    font-weight: 700;
}

.verified-badge i {
    font-size: 8px;
}

.employment-documents-card {
    border-left: 3px solid #f7c948;
}

.employment-image-wrap {
    position: relative;
    width: 100%;
    max-width: 1250px;
    margin: 35px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.employment-image-glow {
    position: absolute;
    width: 65%;
    height: 70%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(5, 59, 47, 0.14), transparent 68%);
    filter: blur(35px);
}

.employment-main-image {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    border-radius: 24px;
    object-fit: contain;
    box-shadow: 0 30px 80px rgba(5, 59, 47, 0.12);
    animation: imageReveal 1.2s ease both;
}

@keyframes imageReveal {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.message-line {
    width: 70px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #f7c948);
}

.message-line:last-child {
    transform: rotate(180deg);
}

.employment-record-message h3 {
    margin: 0;
    text-align: center;
    color: #1f2937;
    font-size: clamp(22px, 2.5vw, 25px);
    line-height: 1.25;
    font-weight: 500;
}

.employment-record-message h3 span {
    color: #053b2f;
}

@keyframes employmentCardFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-7px);
    }
}

@media (max-width: 1100px) {
    .employment-record-visual {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .employment-flow-line {
        display: none;
    }
    .employment-side--left,
    .employment-side--right {
        justify-self: center;
        width: min(100%, 430px);
    }
    .employment-center {
        order: -1;
    }
    .employment-person-card,
    .employment-info-card,
    .future-employer-card,
    .employment-documents-card {
        max-width: 100%;
    }
    .employment-image-wrap {
        margin-top: 45px;
    }
}

@media (max-width: 768px) {
    .employment-record-section {
        padding: 80px 16px 90px;
    }
    .employment-record-heading {
        margin-bottom: 45px;
    }
    .employment-record-heading h2 {
        font-size: 38px;
        letter-spacing: -1px;
    }
    .employment-record-heading p {
        font-size: 15px;
        line-height: 1.65;
    }
    .employment-profile-card {
        padding: 22px;
        border-radius: 22px;
    }
    .employment-image-wrap {
        margin-top: 35px;
    }
    .employment-main-image {
        border-radius: 16px;
    }
    .employment-record-message {
        gap: 12px;
        margin-top: 40px;
    }
    .message-line {
        width: 35px;
    }
    .employment-record-message h3 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .employment-record-heading h2 {
        font-size: 31px;
    }
    .employment-record-heading p {
        font-size: 14px;
    }
    .employment-profile-card {
        padding: 18px;
    }
    .profile-top strong {
        font-size: 17px;
    }
    .employment-person-card,
    .employment-info-card,
    .employment-documents-card,
    .future-employer-card {
        padding: 16px;
    }
    .employment-record-message {
        align-items: flex-start;
    }
    .message-line {
        display: none;
    }
    .employment-record-message h3 {
        font-size: 21px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .employment-blob,
    .employment-flow-dot,
    .employment-person-card,
    .future-employer-card,
    .employment-profile-card,
    .employment-main-image,
    .person-status {
        animation: none !important;
    }
}


/* =========================================================
   WORKFORCE INTELLIGENCE
========================================================= */

.workforce-intelligence {
    position: relative;
    width: 100%;
    padding: 60px 0 60px;
    overflow: hidden;
    background: #ffffff;
    color: #1f2937;
}

.workforce-intelligence__container {
    width: min(1300px, calc(100% - 48px));
    margin: 0 auto;
}

.workforce-intelligence__heading {
    max-width: 850px;
    margin: 0 auto 40px;
    text-align: center;
}

.workforce-intelligence__eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #0b5d47;
}

.workforce-intelligence__heading h2 {
    margin: 0;
    line-height: 1.5;
    letter-spacing: 0.2px;
    font-weight: 600;
    color: #02261f;
}

.workforce-intelligence__heading h2 span {
    display: block;
    color: #0b5d47;
}

.workforce-intelligence__flow {
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, 1fr) 220px minmax(360px, 1.2fr);
    align-items: center;
    gap: 55px;
}

.workforce-panel {
    position: relative;
}

.workforce-panel__title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6b7280;
}

.workforce-panel__line {
    width: 30px;
    height: 1px;
    background: #e5e7eb;
}

.workforce-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 70px;
    padding: 15px 18px;
    margin-bottom: 10px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(5, 59, 47, 0.035);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.workforce-card:hover {
    transform: translateY(-3px);
    border-color: #0b5d47;
    box-shadow: 0 12px 30px rgba(5, 59, 47, 0.09);
}

.workforce-card__number {
    flex: 0 0 30px;
    font-size: 13px;
    font-weight: 700;
    color: #0b5d47;
}

.workforce-card h3 {
    margin: 0;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 600;
    color: #1f2937;
}

.workforce-core {
    position: relative;
    width: 190px;
    height: 190px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.workforce-core::before {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(5, 59, 47, 0.18);
    border-radius: 50%;
}

.workforce-core__orbit {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid transparent;
    border-top-color: #f7c948;
    border-right-color: #f7c948;
    animation: workforceOrbit 7s linear infinite;
}

.workforce-core__inner {
    position: relative;
    z-index: 2;
    width: 125px;
    height: 125px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(145deg, #053b2f, #02261f);
    box-shadow: 0 18px 45px rgba(5, 59, 47, 0.20);
}

.workforce-core__inner span {
    font-size: 13px;
    font-weight: 600;
    color: #ffdc73;
}

.workforce-core__inner strong {
    font-size: 28px;
    line-height: 1;
    color: #ffffff;
}

.workforce-core__caption {
    position: absolute;
    bottom: -34px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9ca3af;
}

@keyframes workforceOrbit {
    to {
        transform: rotate(360deg);
    }
}

.workforce-intelligence__flow::before,
.workforce-intelligence__flow::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 55px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #f7c948, transparent);
    opacity: 0.75;
}

.workforce-intelligence__flow::before {
    left: calc(33.33% - 20px);
}

.workforce-intelligence__flow::after {
    right: calc(33.33% - 20px);
}

.workforce-bon {
    position: relative;
    margin-top: 10px;
    padding-top: 30px;
}

.workforce-bon__connector {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 30px;
    transform: translateX(-50%);
    background: #e5e7eb;
}

.workforce-bon__connector span {
    position: absolute;
    width: 6px;
    height: 6px;
    left: 50%;
    top: 0;
    border-radius: 50%;
    background: #f7c948;
    transform: translateX(-50%);
    box-shadow: 0 0 0 5px rgba(247, 201, 72, 0.10);
}

.workforce-bon__label {
    position: relative;
    z-index: 2;
    width: max-content;
    margin: 0 auto 24px;
    padding: 9px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    background: #ffffff;
    font-size: 13px;
    font-weight: 700;
    color: #053b2f;
}

.workforce-bon__systems {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    position: relative;
}

.workforce-bon__systems::before {
    content: "";
    position: absolute;
    top: -13px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: #e5e7eb;
}

.workforce-system {
    position: relative;
    padding: 17px 20px;
    text-align: center;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #1f2937;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.workforce-system::before {
    content: "";
    position: absolute;
    top: -16px;
    left: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #f7c948;
    transform: translateX(-50%);
}

.workforce-system:hover {
    transform: translateY(-3px);
    border-color: #0b5d47;
    background: #ffffff;
}

.workforce-intelligence__closing {
    position: relative;
    margin-top: 70px;
    padding-top: 35px;
    text-align: center;
}

.workforce-intelligence__closing-line {
    width: 60px;
    height: 2px;
    margin: 0 auto 25px;
    background: #f7c948;
}

.workforce-intelligence__closing h3 {
    max-width: 900px;
    margin: 0 auto;
    font-size: clamp(22px, 3vw, 34px);
    line-height: 1.3;
    letter-spacing: -0.025em;
    font-weight: 600;
    color: #02261f;
}

.workforce-intelligence__closing h3 span {
    color: #0b5d47;
}

@media (max-width: 1000px) {
    .workforce-intelligence__flow {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .workforce-panel--intelligence {
        max-width: 700px;
        margin: 0 auto;
    }
    .workforce-panel--records {
        max-width: 600px;
        margin: 0 auto;
    }
    .workforce-panel--intelligence .workforce-panel__title {
        justify-content: flex-start;
    }
    .workforce-core {
        order: 2;
    }
    .workforce-panel--records {
        order: 1;
    }
    .workforce-panel--intelligence {
        order: 3;
    }
    .workforce-intelligence__flow::before,
    .workforce-intelligence__flow::after {
        display: none;
    }
    .workforce-bon {
        margin-top: 75px;
    }
}

@media (max-width: 650px) {
    .workforce-intelligence {
        padding: 80px 0;
    }
    .workforce-intelligence__container {
        width: min(100% - 30px, 520px);
    }
    .workforce-intelligence__heading {
        margin-bottom: 50px;
    }
    .workforce-intelligence__heading h2 {
        font-size: 38px;
    }
    .workforce-card {
        min-height: 64px;
    }
    .workforce-card h3 {
        font-size: 13px;
    }
    .workforce-core {
        width: 160px;
        height: 160px;
    }
    .workforce-core__inner {
        width: 108px;
        height: 108px;
    }
    .workforce-core__inner strong {
        font-size: 24px;
    }
    .workforce-bon__systems {
        grid-template-columns: 1fr 1fr;
    }
    .workforce-bon__systems::before {
        left: 25%;
        right: 25%;
    }
    .workforce-system {
        font-size: 12px;
    }
    .workforce-intelligence__closing h3 {
        font-size: 23px;
    }
}