/* =============================================================
   WorkNepali — Homepage redesign (newupdate.css)
   Scoped with .nu- prefix to avoid clashing with legacy CSS.
   Brand: #1b8af3  |  Font: Roboto (already loaded by layout)
   ============================================================= */

:root {
    --nu-primary: #1b8af3;
    --nu-primary-dark: #0f6fd1;
    --nu-primary-soft: #e8f3ff;
    --nu-accent: #16a34a;
    --nu-amber: #f59e0b;
    --nu-ink: #0f172a;
    --nu-text: #475569;
    --nu-muted: #94a3b8;
    --nu-line: #e2e8f0;
    --nu-bg: #f7f9fc;
    --nu-white: #ffffff;
    --nu-radius: 16px;
    --nu-radius-sm: 10px;
    --nu-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    --nu-shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.14);
    --nu-container: 1380px;
}

/* ---- base helpers (scoped) ---------------------------------- */
.nu-section {
    font-family: "Roboto", sans-serif;
    color: var(--nu-text);
    padding: 88px 0;
    background: var(--nu-white);
}
.nu-section.nu-alt {
    background: var(--nu-bg);
}
.nu-container {
    max-width: var(--nu-container);
    margin: 0 auto;
    padding: 0 24px;
}
.nu-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}
.nu-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--nu-primary);
    background: var(--nu-primary-soft);
    padding: 7px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
}
.nu-head h2 {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 900;
    color: var(--nu-ink);
    margin: 0 0 14px;
    letter-spacing: -0.5px;
}
.nu-head p {
    font-size: 17px;
    line-height: 1.6;
    margin: 0;
    color: var(--nu-text);
}

/* ---- buttons (override legacy .btn radius:0) ---------------- */
.nu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font: 700 15px/1 "Roboto", sans-serif;
    padding: 15px 28px;
    border-radius: var(--nu-radius-sm) !important;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease,
        background 0.18s ease, color 0.18s ease;
}
.nu-btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}
.nu-btn-primary {
    background: var(--nu-primary);
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(27, 138, 243, 0.35);
}
.nu-btn-primary:hover {
    background: var(--nu-primary-dark);
    box-shadow: 0 12px 26px rgba(27, 138, 243, 0.45);
}
.nu-btn-ghost {
    background: rgba(255, 255, 255, 0.12);
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(4px);
}
.nu-btn-ghost:hover {
    background: #fff;
    color: var(--nu-primary) !important;
    border-color: #fff;
}
.nu-btn-outline {
    background: transparent;
    color: var(--nu-primary) !important;
    border-color: var(--nu-primary);
}
.nu-btn-outline:hover {
    background: var(--nu-primary);
    color: #fff !important;
}
.nu-btn-block {
    width: 100%;
}

/* ============================================================
   NAVBAR — transparent over hero, solid on scroll
   ============================================================ */
.nu-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    font-family: "Roboto", sans-serif;
    background: transparent;
    transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}
.nu-nav:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0));
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.25s ease;
}
.nu-nav-inner {
    position: relative;
    z-index: 1;
    max-width: var(--nu-container);
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.nu-nav-logo img {
    height: 42px;
    width: auto;
    display: block;
    transition: height 0.25s ease;
}
.nu-nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nu-nav-menu > a {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: color 0.15s ease;
}
.nu-nav-menu > a:not(.nu-nav-cta):after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--nu-primary);
    transition: width 0.2s ease;
}
.nu-nav-menu > a:not(.nu-nav-cta):hover:after {
    width: 100%;
}
.nu-nav-cta {
    padding: 11px 24px;
    margin-left: 6px;
}

/* hamburger */
.nu-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 6px;
}
.nu-nav-toggle span {
    width: 26px;
    height: 3px;
    border-radius: 3px;
    background: #fff;
    transition: all 0.25s ease;
}

/* scrolled / solid state */
.nu-nav.nu-scrolled {
    background: #fff;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}
.nu-nav.nu-scrolled:before {
    opacity: 0;
}
.nu-nav.nu-scrolled .nu-nav-inner {
    padding-top: 12px;
    padding-bottom: 12px;
}
.nu-nav.nu-scrolled .nu-nav-logo img {
    height: 38px;
}
.nu-nav.nu-scrolled .nu-nav-menu > a {
    color: var(--nu-ink);
}
.nu-nav.nu-scrolled .nu-nav-menu > a.nu-nav-cta {
    color: #fff;
}
.nu-nav.nu-scrolled .nu-nav-toggle span {
    background: var(--nu-ink);
}

/* always-solid navbar for inner pages (no hero video behind it) */
.nu-nav.nu-nav-static {
    position: fixed;
    background: #fff;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}
.nu-nav.nu-nav-static:before {
    opacity: 0;
}
.nu-nav.nu-nav-static .nu-nav-menu > a {
    color: var(--nu-ink);
}
.nu-nav.nu-nav-static .nu-nav-menu > a.nu-nav-cta {
    color: #fff;
}
.nu-nav.nu-nav-static .nu-nav-toggle span {
    background: var(--nu-ink);
}

/* ============================================================
   HERO — overlays the existing video (#landing keeps the video)
   ============================================================ */
.nu-hero {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: calc(100vh - 68px);
    display: flex;
    align-items: center;
    font-family: "Roboto", sans-serif;
}
.nu-hero-grid {
    width: 100%;
    max-width: var(--nu-container);
    margin: 0 auto;
    padding: 40px 24px;
    display: flex;
    justify-content: center;
    gap: 48px;
    align-items: center;
}
.nu-hero-single .nu-hero-grid {
    grid-template-columns: 1fr;
}
.nu-hero-single .nu-hero-copy {
    max-width: 760px;
}
.nu-hero-single .nu-hero-sub {
    max-width: 620px;
    margin: 0 auto 24px auto;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
}
.nu-hero h1 {
    font-size: 52px;
    line-height: 1.08;
    font-weight: 900;
    color: #fff;
    margin: 0 0 18px;
    letter-spacing: -1px;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.3);
}
.nu-hero h1 .nu-hl {
    color: #8ecbff;
}
.nu-hero-sub {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 540px;
    margin: 0 0 32px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}
.nu-hero-sub .nep {
    display: block;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 6px;
}
.nu-hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 30px;
}
.nu-hero-mini {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 22px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-weight: 500;
}
.nu-hero-mini span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.nu-hero-mini .fa {
    color: #6ee7a8;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.nu-trust {
    background: var(--nu-white);
    border-bottom: 1px solid var(--nu-line);
}
.nu-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.nu-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 26px 10px;
}
.nu-trust-ic {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--nu-primary-soft);
    color: var(--nu-primary);
    font-size: 24px;
}
.nu-trust-item h4 {
    margin: 0 0 2px;
    font-size: 20px;
    font-weight: 700;
    color: var(--nu-ink);
}
.nu-trust-item p {
    margin: 0;
    font-size: 14px;
    color: var(--nu-ink);
}

/* ============================================================
   SERVICES / PRICING CARDS
   ============================================================ */
.nu-cards-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}
.nu-price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--nu-white);
    border: 1px solid var(--nu-line);
    border-radius: var(--nu-radius);
    padding: 30px 26px;
    box-shadow: var(--nu-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease,
        border-color 0.2s ease;
}
.nu-price-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--nu-shadow-lg);
    border-color: #cfe4fc;
}
.nu-price-card.nu-featured {
    border-color: var(--nu-primary);
    box-shadow: 0 20px 45px rgba(27, 138, 243, 0.2);
}
.nu-badge-pop {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--nu-amber);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    white-space: nowrap;
}
.nu-price-ic {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    font-size: 22px;
    background: var(--nu-primary-soft);
    color: var(--nu-primary);
    margin-bottom: 18px;
}
.nu-price-card h3 {
    font-size: 19px;
    font-weight: 800;
    color: var(--nu-ink);
    margin: 0 0 6px;
}
.nu-price-card .nu-price-desc {
    font-size: 13px;
    color: var(--nu-muted);
    margin: 0 0 18px;
    min-height: 34px;
}
.nu-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 20px;
}
.nu-price b {
    font-size: 34px;
    font-weight: 900;
    color: var(--nu-ink);
    letter-spacing: -1px;
}
.nu-price span {
    font-size: 13px;
    color: var(--nu-muted);
}
.nu-feat {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex: 1 1 auto;
}
.nu-feat li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--nu-text);
    padding: 7px 0;
}
.nu-feat li .fa {
    color: var(--nu-accent);
    margin-top: 3px;
    font-size: 13px;
}

/* ============================================================
   EMPLOYER BENEFITS (split — image + feature list)
   ============================================================ */
.nu-benefits-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 56px;
    align-items: center;
}
.nu-benefits-media {
    position: relative;
}
.nu-benefits-image {
    height: 550px;
    width: 100%;
}
.nu-benefits-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: var(--nu-radius);
    box-shadow: var(--nu-shadow-lg);
    display: block;
}
.nu-benefits-media .nu-float {
    position: absolute;
    bottom: 24px;
    left: -24px;
    background: #fff;
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: var(--nu-shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
}
.nu-benefits-media .nu-float .fa {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--nu-accent);
    color: #fff;
    font-size: 18px;
}
.nu-benefits-media .nu-float b {
    display: block;
    color: var(--nu-ink);
    font-size: 18px;
}
.nu-benefits-media .nu-float small {
    color: var(--nu-muted);
    font-size: 12px;
}
.nu-benefit-list {
    display: grid;
    gap: 22px;
    margin-top: 26px;
}
.nu-benefit {
    display: flex;
    gap: 16px;
    align-items: center;
}
.nu-benefit .nu-benefit-ic {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 24px;
    background: var(--nu-primary-soft);
    color: var(--nu-primary);
}
.nu-benefit h4 {
    margin: 0 0 4px;
    font-size: 20px;
    font-weight: 700;
    color: var(--nu-ink);
}
.nu-benefit p {
    margin: 0;
    font-size: 16px;
    line-height: 1.55;
}
.nu-left-head {
    text-align: left;
    margin: 0 0 8px;
    max-width: none;
}

/* ============================================================
   STATISTICS BAND
   ============================================================ */
.nu-stats {
    background: linear-gradient(
        135deg,
        var(--nu-primary) 0%,
        var(--nu-primary-dark) 100%
    );
    color: #fff;
    position: relative;
    overflow: hidden;
}
.nu-stats:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        rgba(255, 255, 255, 0.14) 1px,
        transparent 1px
    );
    background-size: 26px 26px;
    opacity: 0.6;
}
.nu-stats .nu-container {
    position: relative;
    z-index: 1;
}
.nu-head-light h2 {
    color: #fff;
}
.nu-head-light p {
    color: rgba(255, 255, 255, 0.85);
}
.nu-eyebrow-light {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}
.nu-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.nu-stat-box {
    text-align: center;
    padding: 36px 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    backdrop-filter: blur(6px);
    transition: transform 0.2s ease, background 0.2s ease;
}
.nu-stat-box:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.16);
}
.nu-stat-ic {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 30px;
    color: #fff;
}
.nu-stat-box b {
    display: flex;
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    align-items: center;
    justify-content: center;
}
.nu-stat-box span {
    display: block;
    margin-top: 12px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.3px;
}
.nu-stat-box b {
    font-size: 24px;
}
.nu-stat-box .counter {
    font-size: 48px;
    margin-right: 10px;
    margin-top: 0;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.nu-test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.nu-test-card {
    background: var(--nu-white);
    border: 1px solid var(--nu-line);
    border-radius: var(--nu-radius);
    padding: 30px 26px;
    box-shadow: var(--nu-shadow);
}
.nu-quote {
    font-size: 26px;
    color: var(--nu-primary);
    opacity: 0.35;
    line-height: 1;
}
.nu-test-card p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--nu-text);
    margin: 8px 0 22px;
}
.nu-test-author {
    display: flex;
    align-items: center;
    gap: 13px;
}
.nu-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--nu-primary);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 18px;
}
.nu-test-author b {
    display: block;
    font-size: 15px;
    color: var(--nu-ink);
}
.nu-test-author small {
    color: var(--nu-muted);
    font-size: 13px;
}
.nu-stars {
    color: var(--nu-amber);
    font-size: 13px;
    margin-bottom: 14px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.nu-footer {
    background: var(--nu-ink);
    color: #cbd5e1;
    font-family: "Roboto", sans-serif;
    padding: 70px 0 0;
}
.nu-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
}
.nu-footer-logo {
    width: 140px;
    margin-bottom: 18px;
}
.nu-footer p {
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 18px;
    color: #94a3b8;
}
.nu-footer h5 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 18px;
    letter-spacing: 0.3px;
}
.nu-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.nu-footer ul li {
    margin-bottom: 11px;
}
.nu-footer ul li a {
    color: #94a3b8;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.15s;
}
.nu-footer ul li a:hover {
    color: #fff;
}
.nu-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #94a3b8;
}
.nu-footer-contact li .fa {
    color: var(--nu-primary);
    margin-top: 4px;
}
.nu-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}
.nu-social a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    font-size: 16px;
    transition: background 0.15s, color 0.15s, transform 0.15s;
}
.nu-social a:hover {
    background: var(--nu-primary);
    color: #fff;
    transform: translateY(-2px);
}
.nu-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.nu-footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: #64748b;
}
.nu-footer-bottom .nu-legal {
    display: flex;
    gap: 22px;
}
.nu-footer-bottom .nu-legal a {
    color: #94a3b8;
    font-size: 13px;
    text-decoration: none;
}
.nu-footer-bottom .nu-legal a:hover {
    color: #fff;
}

/* ============================================================
   INNER PAGE HERO  (Pricing & future pages)
   ============================================================ */
.nu-page-hero {
    background: linear-gradient(
        135deg,
        var(--nu-primary) 0%,
        var(--nu-primary-dark) 100%
    );
    color: #fff;
    text-align: center;
    padding: 150px 0 120px;
    position: relative;
    overflow: hidden;
    font-family: "Roboto", sans-serif;
}
.nu-page-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        rgba(255, 255, 255, 0.14) 1px,
        transparent 1px
    );
    background-size: 26px 26px;
    opacity: 0.55;
}
.nu-page-hero .nu-container {
    position: relative;
    z-index: 1;
}
.nu-page-hero h1 {
    font-size: 46px;
    font-weight: 900;
    letter-spacing: -1px;
    margin: 14px 0 16px;
    color: #fff;
}
.nu-page-hero p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 620px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.nu-compare-wrap {
    overflow-x: auto;
    border-radius: var(--nu-radius);
    box-shadow: var(--nu-shadow);
    background: #fff;
}
.nu-compare {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    font-family: "Roboto", sans-serif;
}
.nu-compare th,
.nu-compare td {
    padding: 18px 20px;
    text-align: center;
    border-bottom: 1px solid var(--nu-line);
    font-size: 15px;
    color: var(--nu-text);
}
.nu-compare thead th {
    background: var(--nu-ink);
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    line-height: 1.3;
}
.nu-compare thead th span {
    font-weight: 400;
    font-size: 13px;
    color: #cbd5e1;
}
.nu-compare thead th.nu-compare-hi {
    background: var(--nu-primary);
}
.nu-compare thead th.nu-compare-hi span {
    color: #dcefff;
}
.nu-compare .nu-compare-feature,
.nu-compare tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--nu-ink);
}
.nu-compare tbody tr:nth-child(even) {
    background: var(--nu-bg);
}
.nu-compare td.nu-compare-hi {
    background: var(--nu-primary-soft);
    font-weight: 600;
}
.nu-compare .nu-yes {
    color: var(--nu-accent);
    font-size: 17px;
}
.nu-compare .nu-no {
    color: var(--nu-muted);
    font-size: 16px;
    opacity: 0.6;
}
.nu-compare tr.nu-compare-cta td {
    border-bottom: 0;
    padding-top: 22px;
    padding-bottom: 24px;
}

/* ============================================================
   FAQ (accordion via <details>)
   ============================================================ */
.nu-faq-container {
    max-width: 820px;
}
.nu-faq {
    display: grid;
    gap: 14px;
}
.nu-faq-item {
    background: #fff;
    border: 1px solid var(--nu-line);
    border-radius: var(--nu-radius-sm);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.nu-faq-item[open] {
    border-color: #cfe4fc;
    box-shadow: var(--nu-shadow);
}
.nu-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 22px;
    font-size: 16px;
    font-weight: 700;
    color: var(--nu-ink);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.nu-faq-item summary::-webkit-details-marker {
    display: none;
}
.nu-faq-item summary:after {
    content: "\f067"; /* fa-plus */
    font-family: "FontAwesome";
    font-size: 13px;
    color: var(--nu-primary);
    flex: 0 0 auto;
    transition: transform 0.2s ease;
}
.nu-faq-item[open] summary:after {
    content: "\f068"; /* fa-minus */
}
.nu-faq-body {
    padding: 0 22px 22px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--nu-text);
}

/* ============================================================
   CONTACT CTA BAND
   ============================================================ */
.nu-cta-band {
    background: var(--nu-ink);
    color: #fff;
}
.nu-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 26px;
}
.nu-cta-inner h2 {
    font-size: 30px;
    font-weight: 900;
    color: #fff;
    margin: 0 0 8px;
    letter-spacing: -0.5px;
}
.nu-cta-inner p {
    font-size: 16px;
    color: #cbd5e1;
    margin: 0;
    max-width: 560px;
}
.nu-cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.nu-btn-light {
    background: #fff;
    color: var(--nu-primary) !important;
}
.nu-btn-light:hover {
    background: var(--nu-primary-soft);
}

/* ============================================================
   FOR EMPLOYERS — Why cards
   ============================================================ */
.nu-why-card {
    background: var(--nu-white);
    border: 1px solid var(--nu-line);
    border-radius: var(--nu-radius);
    padding: 30px 26px;
    box-shadow: var(--nu-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease,
        border-color 0.2s ease;
}
.nu-why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--nu-shadow-lg);
    border-color: #cfe4fc;
}
.nu-why-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--nu-ink);
    margin: 0 0 8px;
}
.nu-why-card p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ---- Hiring solutions ---- */
.nu-solutions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.nu-solution {
    display: flex;
    gap: 18px;
    background: var(--nu-white);
    border: 1px solid var(--nu-line);
    border-radius: var(--nu-radius);
    padding: 30px 26px;
    box-shadow: var(--nu-shadow);
}
.nu-solution-ic {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--nu-primary);
    color: #fff;
    font-size: 22px;
}
.nu-solution h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--nu-ink);
    margin: 0 0 8px;
}
.nu-solution p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 12px;
}
.nu-solution .nu-feat {
    margin: 0;
}
.nu-solution .nu-feat li {
    padding: 4px 0;
    font-size: 13px;
}

/* ---- Recruitment process steps ---- */
.nu-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.nu-step {
    position: relative;
    text-align: center;
    background: var(--nu-white);
    border: 1px solid var(--nu-line);
    border-radius: var(--nu-radius);
    padding: 38px 22px 28px;
    box-shadow: var(--nu-shadow);
}
.nu-step-num {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--nu-ink);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 15px;
}
.nu-step-ic {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--nu-primary-soft);
    color: var(--nu-primary);
    font-size: 26px;
}
.nu-step h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--nu-ink);
    margin: 0 0 8px;
}
.nu-step p {
    font-size: 13px;
    line-height: 1.55;
    margin: 0;
}

/* ---- Contact form ---- */
.nu-contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: center;
}
.nu-contact-aside p {
    font-size: 15px;
    line-height: 1.65;
    margin: 0 0 22px;
}
.nu-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}
.nu-contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--nu-ink);
    font-weight: 500;
}
.nu-contact-info li .fa {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    flex: 0 0 38px;
    display: grid;
    place-items: center;
    background: var(--nu-primary-soft);
    color: var(--nu-primary);
    font-size: 16px;
}
.nu-contact-card {
    background: var(--nu-white);
    border: 1px solid var(--nu-line);
    border-radius: var(--nu-radius);
    padding: 34px;
    box-shadow: var(--nu-shadow-lg);
}
.nu-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.nu-field {
    margin-bottom: 18px;
}
.nu-field label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--nu-ink);
    margin-bottom: 7px;
}
.nu-field input,
.nu-field textarea {
    width: 100%;
    border: 1px solid var(--nu-line);
    border-radius: var(--nu-radius-sm);
    padding: 13px 15px;
    font: 400 15px/1.4 "Roboto", sans-serif;
    color: var(--nu-ink);
    background: var(--nu-bg);
    transition: border-color 0.15s ease, box-shadow 0.15s ease,
        background 0.15s ease;
}
.nu-field input::placeholder,
.nu-field textarea::placeholder {
    color: var(--nu-muted);
}
.nu-field input:focus,
.nu-field textarea:focus {
    outline: none;
    border-color: var(--nu-primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(27, 138, 243, 0.15);
}
.nu-field textarea {
    resize: vertical;
    min-height: 120px;
}

/* ============================================================
   VERTICAL TIMELINE  (How It Works)
   ============================================================ */
.nu-timeline {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 760px;
    position: relative;
}
/* the vertical spine */
.nu-timeline:before {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 31px;
    width: 3px;
    background: linear-gradient(180deg, var(--nu-primary), #cfe4fc);
    border-radius: 3px;
}
.nu-tl-item {
    position: relative;
    display: flex;
    gap: 26px;
    padding-bottom: 36px;
}
.nu-tl-item.nu-tl-last {
    padding-bottom: 0;
}
.nu-tl-marker {
    position: relative;
    z-index: 1;
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    border: 3px solid var(--nu-primary);
    color: var(--nu-primary);
    font-size: 24px;
    box-shadow: 0 6px 16px rgba(27, 138, 243, 0.22);
}
.nu-tl-num {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--nu-ink);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    display: grid;
    place-items: center;
    border: 2px solid #fff;
}
.nu-tl-card {
    flex: 1 1 auto;
    background: var(--nu-white);
    border: 1px solid var(--nu-line);
    border-radius: var(--nu-radius);
    padding: 24px 26px;
    box-shadow: var(--nu-shadow);
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease,
        border-color 0.2s ease;
}
.nu-tl-card:hover {
    transform: translateX(4px);
    box-shadow: var(--nu-shadow-lg);
    border-color: #cfe4fc;
}
/* little arrow pointing to the spine */
.nu-tl-card:before {
    content: "";
    position: absolute;
    left: -9px;
    top: 26px;
    width: 16px;
    height: 16px;
    background: var(--nu-white);
    border-left: 1px solid var(--nu-line);
    border-bottom: 1px solid var(--nu-line);
    transform: rotate(45deg);
}
.nu-tl-card h3 {
    font-size: 19px;
    font-weight: 800;
    color: var(--nu-ink);
    margin: 0 0 8px;
}
.nu-tl-card p {
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
}

/* ============================================================
   TRUST & SAFETY — Always / Never guideline cards
   ============================================================ */
.nu-guard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}
.nu-guard-card {
    background: var(--nu-white);
    border: 1px solid var(--nu-line);
    border-radius: var(--nu-radius);
    padding: 28px 30px;
    box-shadow: var(--nu-shadow);
    border-top: 4px solid var(--nu-line);
}
.nu-guard-do {
    border-top-color: var(--nu-accent);
}
.nu-guard-dont {
    border-top-color: #e23d4b;
}
.nu-guard-card h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 800;
    color: var(--nu-ink);
    margin: 0 0 14px;
}
.nu-guard-do h4 .fa {
    color: var(--nu-accent);
}
.nu-guard-dont h4 .fa {
    color: #e23d4b;
}
.nu-guard-card .nu-feat {
    margin: 0;
}
.nu-guard-card .nu-feat li {
    align-items: flex-start;
}
.nu-guard-card .nu-no {
    color: #e23d4b;
    opacity: 1;
}

/* ============================================================
   WHATSAPP FLOATER  (replaces Tawk.to chat)
   ============================================================ */
.nu-wa-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1040;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: nu-wa-pulse 2.4s infinite;
}
.nu-wa-float:hover {
    color: #fff;
    text-decoration: none;
    transform: scale(1.08);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.55);
    animation: none;
}
.nu-wa-tip {
    position: absolute;
    right: 74px;
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    white-space: nowrap;
    background: var(--nu-ink);
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 14px;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.18);
}
.nu-wa-tip:after {
    content: "";
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: var(--nu-ink);
}
.nu-wa-float:hover .nu-wa-tip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}
@keyframes nu-wa-pulse {
    0% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45),
            0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45),
            0 0 0 16px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45),
            0 0 0 0 rgba(37, 211, 102, 0);
    }
}
@media (max-width: 575px) {
    .nu-wa-float {
        width: 54px;
        height: 54px;
        font-size: 28px;
        right: 16px;
        bottom: 16px;
    }
    .nu-wa-tip {
        display: none;
    }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.nu-contact-method {
    display: block;
    text-decoration: none;
    color: inherit;
}
.nu-contact-method:hover {
    text-decoration: none;
    color: inherit;
}
.nu-contact-method .nu-method-value {
    display: block;
    margin-top: 12px;
    font-size: 15px;
    font-weight: 700;
    color: var(--nu-primary);
    word-break: break-word;
}
.nu-ic-whatsapp {
    background: #25d366 !important;
    color: #fff !important;
}

/* office info list: align icon with multi-line text */
.nu-contact-info li {
    align-items: flex-start;
}
.nu-contact-info li span {
    line-height: 1.5;
}

.nu-map {
    margin-top: 24px;
    border-radius: var(--nu-radius);
    overflow: hidden;
    box-shadow: var(--nu-shadow);
    border: 1px solid var(--nu-line);
    line-height: 0;
}

.nu-form-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--nu-ink);
    margin: 0 0 4px;
}
.nu-form-note {
    font-size: 14px;
    color: var(--nu-muted);
    margin: 0 0 22px;
}
.nu-optional {
    font-weight: 400;
    color: var(--nu-muted);
    font-size: 12px;
}

.nu-field select {
    width: 100%;
    border: 1px solid var(--nu-line);
    border-radius: var(--nu-radius-sm);
    padding: 13px 15px;
    font: 400 15px/1.4 "Roboto", sans-serif;
    color: var(--nu-ink);
    background: var(--nu-bg);
    cursor: pointer;
    transition: border-color 0.15s ease, box-shadow 0.15s ease,
        background 0.15s ease;
}
.nu-field select:focus {
    outline: none;
    border-color: var(--nu-primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(27, 138, 243, 0.15);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    /* mobile navbar */
    .nu-nav-toggle {
        display: flex;
    }
    .nu-nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #fff;
        box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
        padding: 8px 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: max-height 0.3s ease, opacity 0.25s ease,
            visibility 0.25s ease;
    }
    .nu-nav-menu.nu-open {
        max-height: 460px;
        opacity: 1;
        visibility: visible;
    }
    .nu-nav-menu > a {
        color: var(--nu-ink);
        padding: 14px 24px;
        font-weight: 600;
    }
    .nu-nav-menu > a:not(.nu-nav-cta):after {
        display: none;
    }
    .nu-nav-menu > a:not(.nu-nav-cta):hover {
        background: var(--nu-bg);
        color: var(--nu-primary);
    }
    .nu-nav-cta {
        margin: 10px 24px 6px;
        text-align: center;
    }
    /* open hamburger -> X */
    .nu-nav-toggle.nu-open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .nu-nav-toggle.nu-open span:nth-child(2) {
        opacity: 0;
    }
    .nu-nav-toggle.nu-open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    /* toggle is dark even over transparent hero since menu bg is white */
    .nu-nav .nu-nav-toggle span {
        background: #fff;
    }
    .nu-nav.nu-scrolled .nu-nav-toggle span {
        background: var(--nu-ink);
    }

    .nu-hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .nu-hero h1 {
        font-size: 42px;
    }
    .nu-cards-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .nu-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .nu-benefits-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .nu-test-grid {
        grid-template-columns: 1fr;
    }
    .nu-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 24px;
    }
    .nu-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .nu-page-hero {
        padding: 130px 0 100px;
    }
    .nu-page-hero h1 {
        font-size: 38px;
    }
    .nu-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    .nu-solutions {
        grid-template-columns: 1fr;
    }
    .nu-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 24px;
    }
    .nu-contact-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .nu-guard-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 575px) {
    .nu-section {
        padding: 60px 0;
    }
    .nu-hero {
        min-height: auto;
    }
    .nu-hero h1 {
        font-size: 34px;
        color: var(--nu-ink);
    }
    .nu-hero-single .nu-hero-sub {
        font-size: 16px;
        color: var(--nu-ink);
    }
    .nu-hero-cta {
        flex-direction: column;
    }
    .nu-hero-cta .nu-btn {
        width: 100%;
    }
    .nu-hero-cta .nu-btn-ghost {
        background: rgba(13, 13, 13, 0.12);
        color: var(--nu-ink) !important;
        border-color: rgba(13, 13, 13, 0.55);
        backdrop-filter: blur(4px);
    }
    .nu-hero-mini {
        color: var(--nu-ink);
    }
    .nu-cards-4 {
        grid-template-columns: 1fr;
    }
    .nu-trust-grid {
        grid-template-columns: 1fr;
    }
    .nu-head h2 {
        font-size: 28px;
    }
    .nu-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .nu-stat-box {
        padding: 26px 12px;
    }
    .nu-stat-ic {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 14px;
    }
    .nu-stat-box b {
        font-size: 38px;
        letter-spacing: -1px;
    }
    .nu-stat-box span {
        font-size: 13px;
    }
    .nu-footer-grid {
        grid-template-columns: 1fr;
    }
    .nu-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .nu-page-hero h1 {
        font-size: 30px;
    }
    .nu-page-hero p {
        font-size: 16px;
    }
    .nu-cta-inner h2 {
        font-size: 24px;
    }
    .nu-cta-actions {
        width: 100%;
    }
    .nu-cta-actions .nu-btn {
        width: 100%;
    }
    .nu-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .nu-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    /* timeline: tighter on phones */
    .nu-timeline:before {
        left: 25px;
    }
    .nu-tl-item {
        gap: 18px;
    }
    .nu-tl-marker {
        flex: 0 0 52px;
        width: 52px;
        height: 52px;
        font-size: 20px;
    }
    .nu-tl-card {
        padding: 20px;
    }
    .nu-tl-card h3 {
        font-size: 17px;
    }
    .nu-tl-card p {
        font-size: 14px;
    }
    .nu-left-head {
        line-height: 1.8;
    }
    .nu-stat-box .counter {
        font-size: 32px;
    }
}
