:root {
    --pri: #1268fb;
    --sec: #010e37;
    --ter: #d9f1ff;
    --txt: #4d4d4d;
    --radius: 16px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Montserrat Alternates", system-ui, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.6;
    color: var(--txt);
    background: #fff;
}

body.hh-loaded .hh-loader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.vh {
    position: absolute;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0);
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--pri);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--sec);
    font-weight: 600;
    margin: 0 0 0.5em;
    line-height: 1.2;
}

h2 {
    font-size: clamp(1.65rem, 3.6vw, 2.75rem);
}

.hh-loader {
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: #fff;
    display: grid;
    place-items: center;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.hh-loader-inner {
    position: relative;
    width: 72px;
    height: 72px;
}

.hh-loader-dot {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--pri);
    animation: hh-pulse 1s ease-in-out infinite;
}

.hh-loader-ring {
    position: absolute;
    inset: 0;
    border: 3px solid var(--ter);
    border-top-color: var(--pri);
    border-radius: 50%;
    animation: hh-spin 0.9s linear infinite;
}

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

@keyframes hh-pulse {
    50% {
        transform: scale(1.15);
        opacity: 0.85;
    }
}

.hh-skip {
    position: absolute;
    left: -100vw;
    top: 12px;
    background: var(--pri);
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    z-index: 100001;
}

.hh-skip:focus {
    left: 12px;
}

.hh-container {
    width: min(1180px, 94vw);
    margin: 0 auto;
}

.hh-topbar {
    background: var(--sec);
    color: #dbe7ff;
    font-size: 14px;
    padding: 8px 0;
}

.hh-topbar-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.hh-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}

.hh-topbar a {
    color: inherit;
}

.hh-topbar-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hh-topbar-wa:hover {
    color: #fff;
}

.hh-topbar-wa-ico {
    display: inline-flex;
    width: 18px;
    height: 18px;
    color: #25d366;
}

.hh-topbar-wa-ico svg {
    width: 100%;
    height: 100%;
}

.hh-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 2px solid currentColor;
    margin-right: 6px;
    vertical-align: middle;
}

.hh-hero-shell {
    background: radial-gradient(ellipse 120% 90% at 50% 0%, #ffffff 0%, #eef6ff 42%, #dceefd 100%);
    padding-bottom: clamp(8px, 2vw, 16px);
}

.hh-head {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid #e8eef8;
    backdrop-filter: blur(10px);
}

.hh-btn-head-cta {
    align-items: stretch;
    padding: 0;
    overflow: hidden;
    border-radius: 999px;
    border: none;
    background: var(--sec);
    color: #fff;
    gap: 0;
}

.hh-btn-head-cta:hover {
    color: #fff;
    opacity: 0.94;
}

.hh-btn-head-cta > span:first-child {
    padding: 7px 12px 7px 16px;
}

.hh-btn-head-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    align-self: stretch;
    background: var(--pri);
    font-size: 0.9rem;
    font-weight: 700;
}

.hh-btn-head-cta-login {
    background: #14532d;
    color: #fff;
}

.hh-btn-head-cta-login:hover {
    color: #fff;
    opacity: 0.93;
}

.hh-btn-head-cta-login .hh-btn-head-ico {
    background: #bbf7d0;
    color: #14532d;
}

.hh-btn-head-cta-login:hover .hh-btn-head-ico {
    color: #0f3d26;
}

.hh-head-row {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 78px;
    flex-wrap: wrap;
}

.hh-head-ctas {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.hh-brand img {
    height: 40px;
    width: auto;
}

.hh-nav {
    display: block;
    width: 100%;
}

.hh-nav-root {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
}

.hh-nav-root > li > a {
    display: block;
    padding: 10px 12px;
    font-weight: 600;
    border-radius: 10px;
}

.hh-nav-root ul {
    list-style: none;
    padding: 8px 0;
    margin: 4px 0 0;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid #e8eef8;
}

.hh-nav-root .hh-sub {
    position: relative;
}

.hh-nav-root .hh-sub > ul {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 200px;
    box-shadow: 0 16px 48px rgba(1, 14, 55, 0.12);
}

.hh-nav-root .hh-sub:hover > ul {
    display: block;
}

.hh-nav-root ul a {
    display: block;
    padding: 8px 14px;
    font-weight: 500;
}

.hh-nav-root .hh-sub .hh-sub ul {
    left: 100%;
    top: 0;
    margin-left: 4px;
}

.hh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: inherit;
}

/* Must follow .hh-btn: base .hh-btn padding/border were winning over .hh-btn-head-cta */
.hh-btn.hh-btn-head-cta {
    padding: 0;
    border: none;
    border-radius: 999px;
    line-height: 1.28;
    min-height: 0;
}

.hh-btn-solid {
    background: var(--pri);
    border-color: var(--pri);
    color: #fff;
}

.hh-btn-solid:hover {
    opacity: 0.93;
    color: #fff;
}

.hh-btn-line {
    background: #fff;
    border-color: var(--sec);
    color: var(--sec);
}

.hh-sec {
    padding: clamp(48px, 8vw, 100px) 0;
}

.hh-sec-muted {
    background: #f4f8fd;
}

.hh-sec-dark {
    background: linear-gradient(135deg, #0a1744 0%, var(--sec) 55%, #152a6e 100%);
    color: #dfe9ff;
}

.hh-sec-dark h2,
.hh-sec-dark h5,
.hh-sec-dark p {
    color: inherit;
}

.hh-kicker {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 13px;
    font-weight: 600;
    color: var(--pri);
    margin: 0 0 10px;
}

.hh-on-dark {
    color: var(--ter);
}

.hh-on-dark-h {
    color: #fff;
}

.hh-center {
    text-align: center;
}

.hh-mb {
    margin-bottom: 18px;
}

.hh-mb-lg {
    margin-bottom: 36px;
}

.hh-lead {
    font-size: 1.05rem;
}

.hh-note {
    font-size: 13px;
    color: #6b738f;
}

.hh-bulletin {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 5vw, 56px);
    align-items: center;
}

@media (max-width: 900px) {
    .hh-bulletin {
        grid-template-columns: 1fr;
    }
}

.hh-bulletin-img img {
    border-radius: 24px;
    box-shadow: 0 28px 70px rgba(18, 104, 251, 0.15);
}

.hh-inline-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.hh-inline-form input {
    flex: 1 1 200px;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid #cfd9ee;
}

.hh-hero-first {
    padding: clamp(16px, 4vw, 40px) 0 clamp(48px, 9vw, 100px);
}

.hh-hero-title {
    font-size: clamp(2rem, 4.2vw, 3.15rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0 0 0.45em;
    color: var(--sec);
}

.hh-hero-pill {
    margin: 0 0 14px;
}

.hh-hero-pill span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(18, 104, 251, 0.14);
    color: var(--pri);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hh-hero-team {
    max-width: min(560px, 100%);
    margin: 0 auto;
    border-radius: 0;
    box-shadow: none;
}

.hh-hero-trust {
    margin: clamp(22px, 4vw, 32px) 0 12px;
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    font-weight: 600;
    color: var(--sec);
}

.hh-hero-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(16px, 4vw, 32px);
    list-style: none;
    padding: 0;
    margin: 0;
}

.hh-hero-logos li span {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--sec);
    opacity: 0.45;
    white-space: nowrap;
}

.hh-row-btn-hero {
    margin-top: clamp(16px, 3vw, 24px);
}

.hh-row-btn-hero .hh-btn {
    align-items: stretch;
    padding: 0;
    border-radius: 11px;
    border-width: 0;
    gap: 0;
    min-height: 52px;
}

.hh-row-btn-hero .hh-btn > span:first-child {
    padding: 14px 18px;
}

.hh-btn-hero-primary {
    background: var(--pri);
    color: #fff;
}

.hh-btn-hero-primary:hover {
    color: #fff;
    opacity: 0.93;
}

.hh-btn-hero-secondary {
    background: var(--sec);
    color: #fff;
}

.hh-btn-hero-secondary:hover {
    color: #fff;
    opacity: 0.93;
}

.hh-btn-hero-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    align-self: stretch;
    font-size: 1.15rem;
    font-weight: 700;
}

.hh-btn-hero-ico-dark {
    background: var(--sec);
}

.hh-btn-hero-ico-light {
    background: var(--pri);
}

.hh-hero2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 5vw, 56px);
    align-items: center;
}

@media (max-width: 900px) {
    .hh-hero2 {
        grid-template-columns: 1fr;
    }

    .hh-hero2-copy {
        order: -1;
    }
}

.hh-hero2-visual {
    display: grid;
    gap: 16px;
}

.hh-hero2-visual img:first-child {
    justify-self: center;
}

.hh-row-btn {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.hh-mini-card {
    margin-top: 22px;
    padding: 18px;
    border-radius: var(--radius);
    border: 1px solid var(--ter);
    background: #fff;
    box-shadow: 0 16px 44px rgba(18, 104, 251, 0.08);
}

.hh-pricing-sec {
    scroll-margin-top: 96px;
}

.hh-pricing-intro {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.hh-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(24px, 4vw, 36px);
    align-items: stretch;
    max-width: 920px;
    margin: 0 auto;
}

@media (max-width: 800px) {
    .hh-pricing-grid {
        grid-template-columns: 1fr;
    }
}

.hh-price-card {
    position: relative;
    padding: clamp(26px, 4vw, 36px);
    border-radius: var(--radius);
    border: 1px solid #e3ebfb;
    background: #fff;
    box-shadow: 0 18px 48px rgba(1, 14, 55, 0.07);
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hh-price-card--featured {
    border-color: rgba(18, 104, 251, 0.45);
    box-shadow: 0 26px 64px rgba(18, 104, 251, 0.14);
    transform: translateY(-6px);
}

@media (max-width: 800px) {
    .hh-price-card--featured {
        transform: none;
    }
}

.hh-price-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--pri);
    color: #fff;
}

.hh-price-tier {
    margin: 0 0 6px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--pri);
}

.hh-price-name {
    margin: 0 0 10px;
    font-size: clamp(1.35rem, 2.5vw, 1.6rem);
    color: var(--sec);
}

.hh-price-blurb {
    margin: 0 0 18px;
    font-size: 15px;
    color: var(--txt);
    line-height: 1.55;
}

.hh-price-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    margin-bottom: 6px;
}

.hh-price-currency {
    margin-top: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--sec);
}

.hh-price-value {
    font-size: clamp(2.5rem, 5vw, 3.25rem);
    font-weight: 700;
    line-height: 1;
    color: var(--sec);
}

.hh-price-period {
    align-self: flex-end;
    margin: 0 0 8px 6px;
    font-size: 14px;
    font-weight: 600;
    color: #6b738f;
    line-height: 1.3;
    text-align: left;
    max-width: 10em;
}

.hh-price-info-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    padding: 14px 16px;
    margin-bottom: 20px;
    border-radius: 12px;
    background: rgba(217, 241, 255, 0.55);
    border: 1px solid rgba(18, 104, 251, 0.12);
}

.hh-price-info-box strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--pri);
    margin-bottom: 2px;
}

.hh-price-info-box > div > span {
    display: block;
    font-size: 12px;
    color: #6b738f;
    line-height: 1.45;
}

.hh-price-info-box--foot {
    margin-top: auto;
    margin-bottom: 0;
}

.hh-price-info-box--foot strong {
    color: var(--sec);
}

.hh-price-info-ico {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pri);
}

.hh-price-info-ico svg {
    width: 24px;
    height: 24px;
}

.hh-price-info-ico--info {
    width: 22px;
    height: 22px;
    margin-top: 2px;
    border-radius: 50%;
    border: 2px solid var(--pri);
    font-size: 12px;
    font-weight: 700;
    font-style: normal;
    line-height: 1;
}

.hh-price-row--custom {
    margin-bottom: 6px;
}

.hh-price-custom {
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--sec);
}

.hh-price-foot {
    margin: 0 0 20px;
    font-size: 13px;
    color: #6b738f;
}

.hh-price-cta {
    width: 100%;
    justify-content: center;
    margin-bottom: 22px;
}

.hh-price-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    border-top: 1px solid #edf2fb;
    padding-top: 20px;
}

.hh-price-list li {
    position: relative;
    padding: 10px 0 10px 28px;
    font-size: 14px;
    color: var(--txt);
    border-bottom: 1px solid #f0f4fc;
}

.hh-price-list li:last-child {
    border-bottom: none;
}

.hh-price-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(18, 104, 251, 0.15);
    box-shadow: inset 0 0 0 2px var(--pri);
}

.hh-price-list li::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 17px;
    width: 6px;
    height: 10px;
    border: solid var(--pri);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.hh-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
}

.hh-car-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 8px 4px 18px;
    flex: 1;
    scrollbar-width: thin;
}

.hh-car-track::-webkit-scrollbar {
    height: 8px;
}

.hh-job-card {
    flex: 0 0 min(220px, 78vw);
    scroll-snap-align: start;
    background: #fff;
    padding: 22px;
    border-radius: var(--radius);
    border: 1px solid #e3ebfb;
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hh-job-card img {
    margin: 0 auto 12px;
}

.hh-job-meta {
    margin: 6px 0 0;
    font-weight: 600;
    color: var(--pri);
}

.hh-car-arrow {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid #d8e4fb;
    background: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.hh-car-arrow:hover {
    background: var(--ter);
    transform: scale(1.05);
}

.hh-onboard .hh-onboard-card {
    flex: 0 0 min(260px, 85vw);
    scroll-snap-align: start;
}

.hh-onboard-card {
    padding: 22px;
    border-radius: var(--radius);
    border: 1px solid #e7eef9;
    background: #fff;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hh-onboard-ico {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 12px;
    background: var(--ter);
}

.hh-onboard-ico img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hh-video-section-lead {
    max-width: 720px;
    margin: 18px auto 0;
    font-size: clamp(15px, 1.65vw, 17px);
    line-height: 1.65;
    color: var(--txt);
}

.hh-youtube-embed {
    margin-top: clamp(28px, 5vw, 44px);
    max-width: 920px;
    margin-inline: auto;
    width: 100%;
}

.hh-youtube-embed-ratio {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(15, 26, 58, 0.12);
    background: #0f172a;
}

.hh-youtube-embed-ratio iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.hh-split-img {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 5vw, 48px);
    align-items: center;
}

.hh-split-rev .hh-rounded:first-child {
    order: -1;
}

@media (max-width: 900px) {
    .hh-split-img {
        grid-template-columns: 1fr;
    }

    .hh-split-rev .hh-rounded:first-child {
        order: 0;
    }
}

.hh-rounded {
    border-radius: 22px;
    box-shadow: 0 22px 56px rgba(1, 14, 55, 0.1);
}

.hh-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 28px;
}

@media (max-width: 560px) {
    .hh-two-col {
        grid-template-columns: 1fr;
    }
}

.hh-quote-open {
    font-size: 56px;
    line-height: 1;
    color: var(--pri);
    margin: 0;
}

.hh-tile-grid {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.hh-tile-grid article {
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #e8eef8;
    background: #fff;
}

.hh-dark-tile {
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 10px;
}

#services {
    scroll-margin-top: 96px;
}

.hh-split-img.hh-split-services {
    grid-template-columns: minmax(180px, 34%) minmax(0, 1fr);
    gap: clamp(22px, 4vw, 48px);
    align-items: stretch;
}

.hh-split-services-dark .hh-services-visual {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    align-self: stretch;
    min-height: 0;
    background: transparent;
    isolation: isolate;
}

.hh-services-img {
    display: block;
    width: auto;
    max-width: min(100%, 420px);
    height: auto;
    max-height: min(100%, 88vh, 860px);
    object-fit: contain;
    object-position: bottom center;
    border-radius: 0;
    filter: none;
    box-shadow: none;
    background: transparent;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.hh-split-services-dark .hh-services-copy {
    min-width: 0;
}

.hh-dark-tiles-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.hh-dark-tiles-stack .hh-dark-tile {
    margin-bottom: 0;
}

.hh-services-lead {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    opacity: 0.95;
}

.hh-sec-dark .hh-dark-tile h5 {
    margin: 0 0 8px;
    color: #fff;
    font-weight: 600;
}

.hh-sec-dark .hh-dark-tile p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(223, 233, 255, 0.92);
}

@media (max-width: 900px) {
    .hh-split-img.hh-split-services {
        grid-template-columns: 1fr;
    }

    .hh-split-services-dark .hh-services-visual {
        order: -1;
        align-items: flex-end;
        justify-content: center;
        min-height: min(52vh, 460px);
    }

    .hh-services-img {
        max-height: min(50vh, 460px);
        max-width: min(88vw, 360px);
    }
}

@media (min-width: 992px) {
    .hh-split-services-dark .hh-dark-tiles-stack {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px 24px;
    }
}

.hh-testi {
    position: relative;
    min-height: 160px;
    max-width: 720px;
    margin: 28px auto 12px;
}

.hh-testi-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s ease, transform 0.55s ease;
    pointer-events: none;
}

.hh-testi-slide.is-active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.hh-testi-slide cite {
    display: block;
    margin-top: 14px;
    font-style: normal;
    font-weight: 600;
}

.hh-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.hh-dots button {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: none;
    background: #c8daf8;
    cursor: pointer;
    padding: 0;
}

.hh-dots button.is-on {
    background: var(--pri);
}

.hh-faq {
    max-width: 760px;
}

.hh-faq-q {
    width: 100%;
    text-align: left;
    padding: 16px 18px;
    border: 1px solid #e5ecf7;
    border-radius: 12px;
    background: #fff;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 10px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.hh-faq-num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--pri);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 13px;
}

.hh-faq-item.is-open .hh-faq-q {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin-bottom: 0;
}

.hh-faq-a {
    padding: 0 18px 16px;
    border: 1px solid #e5ecf7;
    border-top: none;
    border-radius: 0 0 12px 12px;
    margin-bottom: 12px;
    background: #fbfdff;
}

.hh-blog-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.hh-blog {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid #e9eff9;
    overflow: hidden;
}

.hh-blog-img img {
    width: 100%;
    aspect-ratio: 2 / 1;
    object-fit: cover;
}

.hh-blog-meta,
.hh-blog .hh-blog-meta {
    display: block;
    padding: 12px 18px 0;
    font-size: 13px;
    color: #7a8499;
}

.hh-blog h4,
.hh-blog p,
.hh-more {
    padding: 0 18px;
}

.hh-more {
    display: inline-block;
    padding-bottom: 18px;
    font-weight: 600;
    color: var(--pri);
}

.hh-subscribe {
    max-width: 640px;
    margin: 0 auto;
}

.hh-stack-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.hh-stack-form input {
    flex: 1 1 220px;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid #cfd9ee;
}

.hh-bullets {
    margin-top: 16px;
    padding-left: 1.2rem;
}

.hh-apps {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.hh-customer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: start;
}

@media (max-width: 900px) {
    .hh-customer {
        grid-template-columns: 1fr;
    }
}

.hh-qr {
    text-align: center;
}

.hh-qr h5 {
    margin-bottom: 10px;
}

.hh-qr img {
    margin: 0 auto;
    border-radius: var(--radius);
}

.hh-customer-form-feedback {
    display: none;
    margin: 0 0 20px;
    padding: 0;
    font-size: 12px;
    line-height: 1.45;
}

.hh-customer-form-feedback.hh-customer-form-feedback--ok,
.hh-customer-form-feedback.hh-customer-form-feedback--err {
    display: block;
}

.hh-customer-form-feedback--ok {
    background: transparent;
    border: none;
    color: #15803d;
}

.hh-customer-form-feedback--err {
    background: transparent;
    border: none;
    color: #b91c1c;
}

.hh-customer-form-feedback p {
    margin: 0;
}

.hh-customer-form input[type="text"],
.hh-customer-form input[type="email"],
.hh-customer-form select,
.hh-customer-form textarea {
    width: 100%;
    margin-top: 12px;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #d5deef;
    font-family: inherit;
}

.hh-customer-form input[type="text"]:first-of-type {
    margin-top: 0;
}

.hh-foot {
    --foot-accent: #86efac;
    --foot-accent-deep: #14532d;
    background: linear-gradient(165deg, #050a18 0%, #0c1738 42%, var(--sec) 72%, #051022 100%);
    color: #c8d7f0;
    position: relative;
    overflow: hidden;
}

.hh-foot::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(20, 83, 45, 0.22), transparent 55%);
    pointer-events: none;
}

.hh-foot-top {
    position: relative;
    z-index: 1;
    padding: clamp(48px, 8vw, 88px) 0 clamp(36px, 5vw, 52px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.hh-foot-brand-row {
    display: grid;
    grid-template-columns: minmax(220px, 1.35fr) minmax(0, 2fr);
    gap: clamp(32px, 6vw, 56px);
    align-items: start;
}

@media (max-width: 900px) {
    .hh-foot-brand-row {
        grid-template-columns: 1fr;
    }
}

.hh-foot-about {
    max-width: 360px;
}

.hh-foot-logo-wrap {
    display: inline-block;
    margin-bottom: 14px;
}

.hh-foot-logo-wrap img {
    height: 40px;
    width: auto;
    display: block;
    /* Readable on dark footer: soft rim + cyan/blue bloom around raster logo */
    filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.65))
        drop-shadow(0 0 10px rgba(186, 230, 253, 0.45))
        drop-shadow(0 0 22px rgba(59, 130, 246, 0.35));
}

.hh-foot-tag {
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(219, 230, 255, 0.82);
}

.hh-foot-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(24px, 4vw, 40px);
}

@media (max-width: 900px) {
    .hh-foot-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .hh-foot-nav {
        grid-template-columns: 1fr;
    }
}

.hh-foot-col h6 {
    margin: 0 0 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--foot-accent);
}

.hh-foot-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    line-height: 1.9;
}

.hh-foot-col a {
    color: rgba(235, 241, 255, 0.9);
}

.hh-foot-col a:hover {
    color: var(--foot-accent);
}

.hh-foot-contact-list li {
    color: rgba(219, 230, 255, 0.85);
}

.hh-soc {
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hh-soc a {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #eef4ff;
    font-size: 14px;
    font-weight: 700;
}

.hh-soc a:hover {
    background: var(--foot-accent-deep);
    border-color: rgba(134, 239, 172, 0.35);
    color: var(--foot-accent);
}

.hh-foot-bottom {
    position: relative;
    z-index: 1;
    padding: clamp(20px, 3vw, 26px) 0 clamp(28px, 4vw, 40px);
}

.hh-foot-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.hh-foot-meta {
    flex: 1 1 220px;
}

.hh-copy {
    margin: 0 0 6px;
    font-size: 14px;
    color: rgba(235, 241, 255, 0.92);
}

.hh-foot-legal {
    margin: 0;
    font-size: 11px;
    letter-spacing: 0.02em;
}

.hh-foot-legal a {
    color: rgba(200, 215, 240, 0.65);
}

.hh-foot-legal a:hover {
    color: var(--foot-accent);
}

.hh-foot-dot {
    margin: 0 6px;
    opacity: 0.4;
    font-size: 10px;
}

.hh-pay {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
    align-items: center;
}

.hh-pay-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hh-pay-chip img {
    display: block;
    opacity: 0.92;
}

.hh-totop {
    position: fixed;
    right: 18px;
    bottom: 22px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--pri);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 18px;
    z-index: 800;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    box-shadow: 0 10px 28px rgba(18, 104, 251, 0.35);
}

.hh-totop.is-on {
    opacity: 1;
    visibility: visible;
}

.hh-totop:hover {
    transform: translateY(-3px);
    color: #fff;
}

.hh-reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.hh-reveal.hh-inview {
    opacity: 1;
    transform: translateY(0);
}

.hh-reveal:not(.hh-inview) .hh-animate-left,
.hh-reveal:not(.hh-inview) .hh-animate-right,
.hh-reveal:not(.hh-inview) .hh-animate-up {
    opacity: 0;
}

.hh-reveal.hh-inview .hh-animate-left {
    animation: hh-fade-left 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hh-reveal.hh-inview .hh-animate-right {
    animation: hh-fade-right 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hh-reveal.hh-inview .hh-animate-up {
    animation: hh-fade-up 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes hh-fade-up {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hh-fade-left {
    from {
        opacity: 0;
        transform: translateX(-28px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes hh-fade-right {
    from {
        opacity: 0;
        transform: translateX(28px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hh-float-img {
    animation: hh-float 6s ease-in-out infinite;
}

.hh-float-delay {
    animation-delay: 1.2s;
}

@keyframes hh-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hh-animate-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(18, 104, 251, 0.12);
}

.hh-delay-2 {
    animation-delay: 0.15s;
}

@media (min-width: 1025px) {
    .hh-nav {
        width: auto;
        flex: 1;
    }

    .hh-head-row .hh-head-ctas {
        margin-left: 8px;
    }
}

@media (max-width: 1024px) {
    .hh-nav-root .hh-sub > ul {
        position: static;
        display: none;
        box-shadow: none;
        margin-left: 12px;
    }

    .hh-nav-root .hh-sub:hover > ul {
        display: block;
    }
}

/* --- Registration (customer signup) --- */
.hh-reg-page {
    --reg-teal: #3d9b87;
    --reg-teal-hover: #347f6f;
    --reg-coral: #ff7a59;
    --reg-border: #e2e8f0;
    --reg-muted: #64748b;
    min-height: 100vh;
    background: #fff;
}

.hh-reg-head {
    border-bottom: 1px solid var(--reg-border);
    background: rgba(255, 255, 255, 0.96);
}

.hh-reg-head-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    min-height: 68px;
}

.hh-reg-brand img {
    display: block;
    height: 36px;
    width: auto;
}

.hh-reg-head-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.5rem;
    font-size: 14px;
    font-weight: 600;
}

.hh-reg-head-nav a {
    color: var(--reg-teal);
}

.hh-reg-head-nav a:hover {
    color: var(--reg-teal-hover);
}

.hh-reg-signin {
    color: var(--reg-muted);
    font-weight: 500;
}

.hh-reg-signin a {
    font-weight: 600;
}

.hh-reg-main {
    padding: clamp(28px, 6vw, 56px) 16px 64px;
}

.hh-reg-card {
    max-width: 480px;
    margin: 0 auto;
}

.hh-reg-stepper {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 0 clamp(28px, 5vw, 40px);
    justify-content: space-between;
    gap: 8px;
}

.hh-reg-step {
    flex: 1;
    text-align: center;
    position: relative;
    font-size: 12px;
    color: var(--reg-muted);
}

.hh-reg-step::after {
    content: "";
    position: absolute;
    top: 18px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: var(--reg-border);
    z-index: 0;
}

.hh-reg-step:last-child::after {
    display: none;
}

.hh-reg-step-num {
    position: relative;
    z-index: 1;
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--reg-border);
    background: #fff;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--reg-muted);
}

.hh-reg-step.is-complete .hh-reg-step-num {
    background: var(--reg-coral);
    border-color: var(--reg-coral);
    color: #fff;
}

.hh-reg-step.is-current .hh-reg-step-num {
    border-color: var(--reg-coral);
    color: var(--reg-coral);
    box-shadow: 0 0 0 4px rgba(255, 122, 89, 0.2);
}

.hh-reg-step-label {
    display: block;
    font-weight: 600;
    max-width: 9em;
    margin: 0 auto;
    line-height: 1.3;
}

.hh-reg-title {
    margin: 0 0 10px;
    font-size: clamp(1.45rem, 3.5vw, 1.85rem);
    font-weight: 700;
    color: var(--sec);
    text-align: center;
}

.hh-reg-sub {
    margin: 0 0 28px;
    text-align: center;
    color: var(--reg-muted);
    font-size: 15px;
    line-height: 1.55;
}

.hh-reg-form {
    text-align: left;
}

.hh-reg-field {
    margin-bottom: 18px;
}

.hh-reg-field label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--reg-muted);
}

.hh-reg-field input,
.hh-reg-field select.hh-reg-select-full,
.hh-reg-cc {
    width: 100%;
    padding: 11px 14px;
    border-radius: 10px;
    border: 1px solid var(--reg-border);
    font-family: inherit;
    font-size: 15px;
    color: var(--sec);
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hh-reg-field input:focus,
.hh-reg-field select.hh-reg-select-full:focus,
.hh-reg-cc:focus {
    outline: none;
    border-color: var(--reg-teal);
    box-shadow: 0 0 0 3px rgba(61, 155, 135, 0.2);
}

.hh-reg-row2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

@media (max-width: 520px) {
    .hh-reg-row2 {
        grid-template-columns: 1fr;
    }
}

.hh-reg-phone {
    display: flex;
    gap: 10px;
}

.hh-reg-cc {
    flex: 0 0 min(42%, 160px);
    cursor: pointer;
}

.hh-reg-phone input {
    flex: 1;
}

.hh-reg-password-wrap {
    position: relative;
}

.hh-reg-password-wrap input {
    padding-right: 64px;
}

.hh-reg-pwd-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: var(--reg-teal);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
}

.hh-reg-pwd-toggle:hover {
    color: var(--reg-teal-hover);
}

.hh-reg-hint {
    margin: 6px 0 0;
    font-size: 12px;
    color: var(--reg-muted);
    line-height: 1.45;
}

.hh-reg-error {
    margin: 0 0 14px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.45;
    color: #8b1538;
    background: rgba(220, 53, 69, 0.08);
    border: 1px solid rgba(220, 53, 69, 0.25);
}

.hh-reg-error:empty,
.hh-reg-error ul:empty {
    display: none;
}

.hh-reg-field-error {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #8b1538;
}

.hh-reg-req {
    color: #c42525;
    font-weight: 700;
}

.hh-reg-field-label-subtle {
    margin: 0 0 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--reg-teal);
}

.hh-reg-btn-hint {
    font-weight: 500;
    font-size: 13px;
    opacity: 0.92;
}

.hh-reg-actions-back {
    margin-top: 10px;
}

.hh-reg-muted-action {
    margin-top: 12px;
    font-size: 13px;
    color: var(--reg-muted);
}

.hh-reg-secondary-link {
    color: var(--reg-teal);
    font-weight: 600;
    text-decoration: none;
}

.hh-reg-secondary-link:hover {
    text-decoration: underline;
}

.hh-reg-recaptcha-wrap {
    margin: 12px 0 8px;
}

.hh-reg-recaptcha-note {
    margin: 8px 0 22px;
    font-size: 11px;
    line-height: 1.5;
    color: var(--reg-muted);
}

.hh-reg-recaptcha-note a {
    color: var(--reg-teal);
}

.hh-reg-consent {
    margin-bottom: 18px;
}

.hh-reg-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--sec);
    cursor: pointer;
    font-weight: 500;
}

.hh-reg-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--reg-teal);
    cursor: pointer;
}

.hh-reg-checkbox-label a {
    color: var(--reg-teal);
    font-weight: 600;
}

.hh-reg-submit {
    width: 100%;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 12px;
    border: none;
    background: var(--reg-teal);
    color: #fff !important;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
}

.hh-reg-submit:hover {
    background: var(--reg-teal-hover);
    color: #fff !important;
    opacity: 1;
}

.hh-reg-submit-inline {
    display: inline-flex;
    width: auto;
    margin-top: 12px;
}

.hh-reg-recap {
    margin-bottom: 22px;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--reg-border);
    background: #fafbfc;
}

.hh-reg-recap-title {
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--reg-muted);
}

.hh-reg-recap-dl {
    margin: 0;
    display: grid;
    gap: 10px;
}

.hh-reg-recap-dl > div {
    display: grid;
    grid-template-columns: minmax(100px, 38%) 1fr;
    gap: 8px;
    font-size: 14px;
}

.hh-reg-recap-dl dt {
    margin: 0;
    color: var(--reg-muted);
    font-weight: 600;
}

.hh-reg-recap-dl dd {
    margin: 0;
    color: var(--sec);
    font-weight: 500;
}

.hh-reg-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.hh-reg-secondary {
    width: 100%;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid var(--reg-border);
    background: #fff;
    color: var(--sec) !important;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

.hh-reg-secondary:hover {
    border-color: var(--reg-teal);
    color: var(--reg-teal) !important;
}

.hh-reg-linkish {
    align-self: center;
    border: none;
    background: none;
    color: var(--reg-teal);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    font-family: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hh-reg-note-block {
    margin-top: 20px;
    padding: 14px;
    border-radius: 10px;
    background: var(--ter);
    border: 1px solid rgba(18, 104, 251, 0.12);
    font-size: 13px;
    color: var(--txt);
    line-height: 1.55;
}

.hh-reg-panel[data-reg-panel="3"] {
    text-align: center;
}

.hh-reg-panel[data-reg-panel="3"] .hh-reg-note-block {
    text-align: left;
}

.hh-reg-step3-login {
    display: flex;
    justify-content: center;
    margin-top: 22px;
}

.hh-reg-step3-login .hh-reg-submit {
    width: auto;
    min-width: min(100%, 280px);
}

/* Reach US / customer enquiry anchor */
#reach-us {
    scroll-margin-top: 96px;
}

/* --- HRMS Features (#hrms) --- */
.hh-hrms-wrap {
    scroll-margin-top: 96px;
    padding: 0;
    margin-top: clamp(48px, 7vw, 88px);
}

.hh-hrms-intro {
    max-width: 720px;
    margin-inline: auto;
    margin-bottom: 16px;
}

.hh-hrms-intro .hh-kicker {
    color: #6b738f;
}

.hh-hrms-title {
    font-size: clamp(1.85rem, 3.8vw, 2.85rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--sec);
    margin: 0 0 12px;
}

.hh-hrms-lead {
    font-size: 15px;
    line-height: 1.65;
    margin: 0 auto;
}

.hh-sec.hh-hrms-block {
    padding: clamp(16px, 3vw, 28px) 0;
}

.hh-hrms-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 56px);
    align-items: center;
}

.hh-hrms-block--rev .hh-hrms-visual {
    order: 2;
}

.hh-hrms-block--rev .hh-hrms-copy {
    order: 1;
}

@media (max-width: 900px) {
    .hh-hrms-split {
        grid-template-columns: 1fr;
    }

    .hh-hrms-block--rev .hh-hrms-visual,
    .hh-hrms-block--rev .hh-hrms-copy {
        order: 0;
    }
}

.hh-hrms-visual-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hh-hrms-copy {
    text-align: left;
}

.hh-hrms-heading {
    font-size: clamp(1.45rem, 3vw, 2.1rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--sec);
    margin: 0 0 14px;
    line-height: 1.15;
}

.hh-hrms-desc {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--txt);
}

.hh-hrms-cap-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--sec);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 12px;
}

.hh-hrms-caps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 28px;
}

.hh-hrms-caps ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.hh-hrms-caps li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.45;
    color: var(--txt);
}

.hh-hrms-caps li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--txt);
    opacity: 0.45;
}

@media (max-width: 560px) {
    .hh-hrms-caps {
        grid-template-columns: 1fr;
    }
}
