        :root {
            --hhc-ink: #0f1728;
            --hhc-muted: #667085;
            --hhc-soft: #f5f8fc;
            --hhc-sage: #2d5ea8;
            --hhc-sage-dark: #123c73;
            --hhc-cream: #f8fbff;
            --hhc-line: rgba(23, 33, 28, .12);
            --hhc-shadow: 0 24px 70px rgba(23, 33, 28, .10);
        }

        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            background: var(--hhc-cream);
            color: var(--hhc-ink);
            font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            -webkit-font-smoothing: antialiased;
        }

        a {
            text-decoration: none;
        }

        .hhc-navbar {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(248, 251, 255, .88);
            backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(23, 33, 28, .08);
        }

        .navbar-brand img {
            height: 56px;
            width: auto;
        }

        .hhc-navbar .nav-link {
            color: rgba(23, 33, 28, .72);
            font-weight: 650;
            font-size: 14px;
            padding-left: 16px !important;
            padding-right: 16px !important;
        }

        .hhc-navbar .nav-link:hover,
        .hhc-navbar .nav-link.active {
            color: var(--hhc-sage-dark);
        }

        .hhc-mobile-icon {
            width: 42px;
            height: 42px;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(18, 60, 115, .08);
            color: var(--hhc-sage-dark);
            font-size: 18px;
            transition: all .25s ease;
        }

        .hhc-mobile-icon:hover {
            background: var(--hhc-sage-dark);
            color: #fff;
            transform: translateY(-1px);
        }

        .hhc-nav-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 11px 18px;
            border-radius: 999px;
            background: var(--hhc-sage-dark);
            color: #fff !important;
            font-size: 14px;
            font-weight: 750;
            box-shadow: 0 12px 28px rgba(52, 82, 65, .18);
        }
        .hhc-viber-btn {
            background: #7360F2;
            box-shadow: 0 14px 34px rgba(115,96,242,.22);
        }

        .hhc-premium-home {
            background: var(--hhc-cream);
            color: var(--hhc-ink);
            overflow: hidden;
        }
.hhc-mega-wrap {
    position: relative;
}

.hhc-mega-menu {
    width: min(1100px, 92vw);

    border: 0;

    border-radius: 28px;

    padding: 36px;

    background: #fff;

    box-shadow:
        0 30px 80px rgba(15, 23, 42, .12);

    position: absolute;

    top: 100%;

    left: 50%;

    z-index: 9999;

    display: block;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity .2s ease,
        transform .2s ease;

    transform:
        translateX(-50%)
        translateY(12px);
}

.hhc-mega-wrap:hover .dropdown-menu {
    display: block;

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform:
        translateX(-50%)
        translateY(0);
}

.hhc-mega-title {
    font-size: 13px;

    text-transform: uppercase;

    letter-spacing: .18em;

    font-weight: 800;

    color: #174a96;

    margin-bottom: 18px;
}

.hhc-mega-link {
    display: block;

    padding: 12px 0;

    color: #0f172a;

    text-decoration: none;

    font-weight: 600;

    transition:
        color .18s ease,
        transform .18s ease;
}

.hhc-mega-link:hover {
    color: #174a96;

    transform: translateX(4px);
}
        .hhc-section {
            padding: 96px 0;
        }

        .hhc-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 12px;
            letter-spacing: .18em;
            text-transform: uppercase;
            color: var(--hhc-sage-dark);
            font-weight: 800;
            margin-bottom: 18px;
        }

        .hhc-eyebrow:before {
            content: "";
            width: 34px;
            height: 1px;
            background: var(--hhc-sage);
            display: inline-block;
        }

        .hhc-display {
            font-size: clamp(42px, 6vw, 82px);
            line-height: .98;
            letter-spacing: -.055em;
            font-weight: 760;
            color: var(--hhc-ink);
            margin-bottom: 24px;
        }

        .hhc-lead {
            font-size: clamp(17px, 1.8vw, 22px);
            line-height: 1.65;
            color: var(--hhc-muted);
            max-width: 680px;
        }

        .hhc-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 15px 24px;
            border-radius: 999px;
            font-weight: 750;
            font-size: 14px;
            transition: all .25s ease;
        }

        .hhc-btn-primary {
            background: var(--hhc-sage-dark);
            color: #fff !important;
            box-shadow: 0 14px 34px rgba(52, 82, 65, .22);
        }

        .hhc-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 18px 44px rgba(52, 82, 65, .28);
        }

        .hhc-btn-ghost {
            color: var(--hhc-sage-dark) !important;
            border: 1px solid rgba(52, 82, 65, .22);
            background: rgba(255, 255, 255, .55);
        }

        .hhc-btn-ghost:hover {
            transform: translateY(-2px);
            background: #fff;
            border-color: rgba(52, 82, 65, .38);
        }

        .hhc-hero {
            position: relative;
            min-height: calc(100vh - 82px);
            display: flex;
            align-items: center;
            padding: 90px 0;
            background:
                linear-gradient(90deg, rgba(248, 251, 255, .97) 0%, rgba(248, 251, 255, .92) 42%, rgba(15, 23, 40, .08) 100%),
                url('../img/hero.webp') center right / cover no-repeat;
        }

        .hhc-hero-card {
            max-width: 760px;
            position: relative;
            z-index: 2;
        }

        .hhc-hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: 34px;
        }

        .hhc-trust-strip {
            margin-top: 52px;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 14px;
            max-width: 760px;
        }

        .hhc-trust-item {
            background: rgba(255, 255, 255, .72);
            border: 1px solid rgba(23, 33, 28, .10);
            backdrop-filter: blur(12px);
            padding: 18px;
            border-radius: 24px;
            min-height: 112px;
        }

        .hhc-trust-item strong {
            display: block;
            font-size: 22px;
            color: var(--hhc-sage-dark);
            margin-bottom: 6px;
        }

        .hhc-trust-item span {
            color: var(--hhc-muted);
            font-size: 14px;
            line-height: 1.45;
        }

        .hhc-intro {
            background: #fff;
            border-bottom: 1px solid var(--hhc-line);
        }

        .hhc-intro-grid {
            display: grid;
            grid-template-columns: .9fr 1.1fr;
            gap: 60px;
            align-items: end;
        }

        .hhc-section-title {
            font-size: clamp(34px, 4vw, 58px);
            line-height: 1.02;
            letter-spacing: -.045em;
            font-weight: 760;
            margin-bottom: 20px;
        }

        .hhc-copy {
            color: var(--hhc-muted);
            line-height: 1.8;
            font-size: 16px;
        }

        .hhc-featured {
            background: var(--hhc-soft);
        }

        .hhc-service-story {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 54px;
            align-items: center;
            margin-bottom: 90px;
        }

        .hhc-service-story:last-child {
            margin-bottom: 0;
        }

        .hhc-service-story:nth-child(even) .hhc-service-image {
            order: 2;
        }

        .hhc-service-image {
            position: relative;
            border-radius: 34px;
            overflow: hidden;
            min-height: 520px;
            box-shadow: var(--hhc-shadow);
            background: #e9eee9;
        }

        .hhc-service-image img {
            width: 100%;
            height: 100%;
            min-height: 520px;
            object-fit: cover;
            display: block;
            transform: scale(1.02);
        }

        .hhc-service-content {
            padding: 22px 0;
        }

        .hhc-service-number {
            font-size: 13px;
            color: var(--hhc-sage);
            letter-spacing: .18em;
            text-transform: uppercase;
            font-weight: 850;
            margin-bottom: 22px;
        }

        .hhc-service-content h2 {
            font-size: clamp(32px, 4vw, 54px);
            line-height: 1.05;
            letter-spacing: -.045em;
            margin-bottom: 22px;
            color: var(--hhc-ink);
            font-weight: 760;
        }

        .hhc-service-content p {
            font-size: 17px;
            color: var(--hhc-muted);
            line-height: 1.75;
            max-width: 560px;
            margin-bottom: 28px;
        }

        .hhc-checks {
            display: grid;
            gap: 12px;
            margin: 0 0 32px;
            padding: 0;
            list-style: none;
        }

        .hhc-checks li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            color: var(--hhc-ink);
            font-weight: 650;
        }

        .hhc-checks i {
            color: var(--hhc-sage-dark);
            margin-top: 2px;
        }

        .hhc-services-panel {
            background: #fff;
        }

        .hhc-mini-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 18px;
            margin-top: 42px;
        }

        .hhc-mini-card {
            background: var(--hhc-cream);
            border: 1px solid var(--hhc-line);
            border-radius: 26px;
            overflow: hidden;
            transition: all .25s ease;
            height: 100%;
            color: inherit;
            display: block;
        }

        .hhc-mini-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 18px 45px rgba(23, 33, 28, .08);
            color: inherit;
        }

        .hhc-mini-card img {
            width: 100%;
            height: 170px;
            object-fit: cover;
            display: block;
        }

        .hhc-mini-card-body {
            padding: 20px;
        }

        .hhc-mini-card h3 {
            font-size: 18px;
            line-height: 1.25;
            margin: 0 0 8px;
            color: var(--hhc-ink);
            font-weight: 760;
        }

        .hhc-mini-card p {
            font-size: 14px;
            line-height: 1.55;
            color: var(--hhc-muted);
            margin: 0;
        }

        .hhc-proof {
            position: relative;
            background:
                linear-gradient(90deg, rgba(11, 31, 58, .92), rgba(18, 60, 115, .76)),
                url('../img/why-choose-us.webp') center / cover no-repeat;
            color: #fff;
        }

        .hhc-proof .hhc-eyebrow,
        .hhc-proof .hhc-section-title,
        .hhc-proof .hhc-copy {
            color: #fff;
        }

        .hhc-proof .hhc-eyebrow:before {
            background: rgba(255, 255, 255, .55);
        }

        .hhc-proof-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
            margin-top: 44px;
        }

        .hhc-proof-card {
            border: 1px solid rgba(255, 255, 255, .18);
            background: rgba(255, 255, 255, .08);
            backdrop-filter: blur(12px);
            border-radius: 28px;
            padding: 30px;
        }

        .hhc-proof-card i {
            font-size: 32px;
            margin-bottom: 22px;
            display: inline-block;
            color: #d7e7ff;
        }

        .hhc-proof-card h3 {
            color: #fff;
            font-size: 21px;
            margin-bottom: 12px;
            font-weight: 760;
        }

        .hhc-proof-card p {
            color: rgba(255, 255, 255, .76);
            line-height: 1.7;
            margin: 0;
        }

        .hhc-clients {
            background: #fff;
            padding: 70px 0;
            border-top: 1px solid var(--hhc-line);
            border-bottom: 1px solid var(--hhc-line);
        }

        .hhc-client-row {
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            gap: 48px;
            margin-top: 42px;
            align-items: center;
        }

        .hhc-client-logo {
            min-height: 90px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
        }

        .hhc-client-logo img {
            max-width: 100%;
            max-height: 200px;
            object-fit: contain;
            filter: grayscale(1);
            opacity: .65;
            transition: all .25s ease;
        }

        .hhc-client-logo:hover img {
            opacity: 1;
            transform: translateY(-2px);
        }

        .hhc-final-cta {
            background: var(--hhc-soft);
            text-align: center;
        }

        .hhc-final-box {
            background: #fff;
            border: 1px solid var(--hhc-line);
            border-radius: 38px;
            padding: clamp(38px, 6vw, 72px);
            box-shadow: var(--hhc-shadow);
        }

        .hhc-final-box .hhc-lead {
            margin-left: auto;
            margin-right: auto;
        }

        .hhc-footer {
    background: #0f172a;

    color: rgba(255,255,255,.78);

    margin-top: 120px;
}

.hhc-footer-cta {
    padding: 70px 0;

    border-bottom: 1px solid rgba(255,255,255,.08);
}

.hhc-footer-cta h2 {
    color: #fff;

    font-size: clamp(32px, 4vw, 48px);

    font-weight: 800;

    letter-spacing: -.04em;

    margin-bottom: 16px;
}

.hhc-footer-cta p {
    margin: 0;

    font-size: 17px;

    line-height: 1.8;

    color: rgba(255,255,255,.72);
}

.hhc-footer-actions {
    display: flex;

    justify-content: flex-end;

    gap: 14px;

    flex-wrap: wrap;
}

.hhc-footer-main {
    padding: 80px 0;
}

.hhc-footer-logo {
    height: 48px;

    margin-bottom: 28px;
}

.hhc-footer-copy {
    line-height: 1.9;

    max-width: 340px;

    color: rgba(255,255,255,.72);
}

.hhc-footer-title {
    color: #fff;

    font-size: 16px;

    font-weight: 800;

    margin-bottom: 24px;
}

.hhc-footer-links {
    list-style: none;

    padding: 0;

    margin: 0;
}

.hhc-footer-links li {
    margin-bottom: 14px;
}

.hhc-footer-links a {
    color: rgba(255,255,255,.72);

    text-decoration: none;

    transition: .2s ease;
}

.hhc-footer-links a:hover {
    color: #fff;

    padding-left: 4px;
}

.hhc-footer-contact p {
    margin-bottom: 18px;

    line-height: 1.7;
}

.hhc-footer-contact strong {
    color: #fff;
}

.hhc-footer-bottom {
    padding: 26px 0;

    border-top: 1px solid rgba(255,255,255,.08);

    font-size: 14px;
}

.hhc-footer-socials {
    display: flex;

    justify-content: flex-end;

    gap: 14px;
}

.hhc-footer-socials a {
    width: 42px;

    height: 42px;

    border-radius: 50%;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    background: rgba(255,255,255,.08);

    color: #fff;

    text-decoration: none;

    transition: .2s ease;
}

.hhc-footer-socials a:hover {
    background: #174a96;

    transform: translateY(-2px);
}

.hhc-contact-card {
    background: #fff;

    border-radius: 28px;

    padding: 40px 34px;

    height: 100%;

    border: 1px solid rgba(18,60,115,.08);

    box-shadow:
        0 20px 45px rgba(18,60,115,.04);
}

.hhc-contact-icon {
    width: 68px;

    height: 68px;

    border-radius: 20px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(135deg, #174a96, #2d6fd2);

    color: #fff;

    font-size: 26px;

    margin-bottom: 24px;
}

.hhc-contact-card h3 {
    font-size: 24px;

    font-weight: 800;

    margin-bottom: 18px;

    color: var(--hhc-ink);
}

.hhc-contact-card p {
    margin: 0;

    line-height: 1.9;

    color: var(--hhc-muted);
}

.hhc-input {
    border-radius: 18px;

    border: 1px solid rgba(18,60,115,.12);

    padding: 16px 18px;

    min-height: 58px;

    box-shadow: none !important;
}

textarea.hhc-input {
    min-height: 160px;

    resize: vertical;
}

.hhc-input:focus {
    border-color: #174a96;

    box-shadow:
        0 0 0 4px rgba(23,74,150,.08) !important;
}
.hhc-alert-success,
.hhc-alert-error {
    border: 0;

    border-radius: 20px;

    padding: 18px 22px;

    font-weight: 600;

    display: flex;

    align-items: center;

    gap: 12px;
}

.hhc-alert-success {
    background: rgba(34, 197, 94, .08);

    color: #15803d;
}

.hhc-alert-error {
    background: rgba(239, 68, 68, .08);

    color: #b91c1c;
}

.hhc-alert-success i,
.hhc-alert-error i {
    font-size: 20px;
}
@media (max-width: 991px) {

    .hhc-footer-actions {
        justify-content: flex-start;
    }

    .hhc-footer-socials {
        justify-content: flex-start;
    }

}
        .hhc-industry-card {
            background: linear-gradient(180deg, #ffffff, #f7faff);
            border: 1px solid rgba(18, 60, 115, .08);
            border-radius: 24px;

            min-height: 120px;

            display: flex;
            align-items: center;
            justify-content: center;

            text-align: center;

            padding: 24px;

            font-size: 18px;
            font-weight: 650;
            letter-spacing: -0.02em;

            color: var(--hhc-ink);

            box-shadow: 0 18px 40px rgba(18, 60, 115, .05);

            transition: all .25s ease;
        }

        .hhc-industry-card:hover {
            transform: translateY(-4px);

            border-color: rgba(18, 60, 115, .16);

            box-shadow: 0 24px 50px rgba(18, 60, 115, .10);
        }
        .hhc-service-hero-image {
            position: relative;
            border-radius: 36px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(18, 60, 115, .14);
            background: #f7faff;
            height: 520px;
        }

        .hhc-service-hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
.hhc-service-highlight {
    position: relative;
    overflow: hidden;

    background-position: center center;
    background-size: 1400px auto;
    background-repeat: no-repeat;
}
.hhc-service-highlight-card {
    border: 1px solid rgba(18, 60, 115, .08);

    background: rgba(255, 255, 255, .72);

    backdrop-filter: blur(10px);

    border-radius: 28px;

    padding: 30px;

    box-shadow:
        0 18px 40px rgba(18, 60, 115, .05);
}

.hhc-service-highlight-card i {
    font-size: 32px;
    margin-bottom: 22px;
    display: inline-block;

    color: var(--hhc-sage-dark);
}

.hhc-service-highlight-card h3 {
    color: var(--hhc-ink);

    font-size: 21px;

    margin-bottom: 12px;

    font-weight: 760;
}

.hhc-service-highlight-card p {
    color: var(--hhc-muted);

    line-height: 1.7;

    margin: 0;
}
.hhc-service-highlight-copy {
    display: inline-block;

    background: rgba(255, 255, 255, .58);

    backdrop-filter: blur(10px);

    border: 1px solid rgba(255,255,255,.35);

    padding: 22px 26px;

    border-radius: 22px;

    box-shadow:
        0 12px 30px rgba(18,60,115,.06);
}
.hhc-service-highlight {
    position: relative;
    overflow: hidden;
}

.hhc-service-highlight::before {
    content: '';

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(247,250,255,.94) 0%,
            rgba(247,250,255,.88) 34%,
            rgba(247,250,255,.24) 62%,
            rgba(247,250,255,0) 100%
        );

    z-index: 1;
}

.hhc-service-highlight .container {
    position: relative;
    z-index: 2;
}
.hhc-service-region-links {
    margin: 42px 0 54px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 16px;

    font-size: 28px;
    line-height: 1.3;
    letter-spacing: -.03em;

    color: var(--hhc-muted);
}

.hhc-service-region-links a {
    color: var(--hhc-ink);

    text-decoration: none;

    font-weight: 800;

    position: relative;

    transition: all .25s ease;
}

.hhc-service-region-links a::after {
    content: '';

    position: absolute;
    left: 0;
    bottom: -6px;

    width: 100%;
    height: 2px;

    background: rgba(18,60,115,.16);

    transition: all .25s ease;
}

.hhc-service-region-links a:hover {
    color: var(--hhc-sage-dark);
}

.hhc-service-region-links a:hover::after {
    background: var(--hhc-sage-dark);
}

.hhc-service-region-links span {
    color: rgba(18,60,115,.34);

    font-weight: 500;
}

.hhc-service-card {
    height: 100%;

    background: linear-gradient(
        180deg,
        #ffffff,
        #f8fbff
    );

    border: 1px solid rgba(18,60,115,.08);

    border-radius: 30px;

    padding: 38px;

    box-shadow:
        0 20px 45px rgba(18,60,115,.05);

    transition: all .28s ease;
}

.hhc-service-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 28px 60px rgba(18,60,115,.10);

    border-color: rgba(18,60,115,.14);
}

.hhc-service-card-icon {
    width: 62px;
    height: 62px;

    border-radius: 18px;

    background: rgba(20,63,122,.06);

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 28px;
}

.hhc-service-card-icon i {
    font-size: 28px;

    color: var(--hhc-sage-dark);
}

.hhc-service-card h3 {
    font-size: 34px;

    line-height: 1.08;

    letter-spacing: -.03em;

    margin-bottom: 22px;

    color: var(--hhc-ink);

    font-weight: 800;
}

.hhc-service-card p {
    color: var(--hhc-muted);

    line-height: 1.85;

    margin-bottom: 18px;
}

.hhc-service-price {
    margin-top: 28px;

    font-size: 18px;

    font-weight: 800;

    color: var(--hhc-sage-dark);
}
.hhc-lab-category {
    background: #fff;

    border: 1px solid rgba(18,60,115,.08);

    border-radius: 30px;

    padding: 34px;

    margin-bottom: 34px;

    box-shadow:
        0 20px 45px rgba(18,60,115,.04);
}

.hhc-lab-header {
    font-size: 28px;

    font-weight: 800;

    letter-spacing: -.03em;

    color: var(--hhc-ink);

    margin-bottom: 28px;
}

.hhc-pricing-table {
    margin-bottom: 0;
}

.hhc-pricing-table td,
.hhc-pricing-table th {
    padding: 18px 8px;

    border-color: rgba(18,60,115,.08);
}

.hhc-pricing-table td:last-child,
.hhc-pricing-table th:last-child {
    text-align: right;

    font-weight: 700;
}
        @media (max-width: 991px) {
            .hhc-hero {
                min-height: auto;
                padding: 80px 0;
                background:
                    linear-gradient(180deg, rgba(248, 251, 255, .96), rgba(248, 251, 255, .82)),
                    url('../assets/img/hero.webp') center / cover no-repeat;
            }
            .hhc-service-hero-image {
                height: 380px;
            }
                    .hhc-intro-grid,
            .hhc-service-story {
                grid-template-columns: 1fr;
            }

            .hhc-service-story:nth-child(even) .hhc-service-image {
                order: 0;
            }

            .hhc-mini-grid,
            .hhc-proof-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .hhc-client-row {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }

        @media (max-width: 575px) {
            .navbar-brand img {
                height: 46px;
            }

            .hhc-section {
                padding: 68px 0;
            }

            .hhc-trust-strip,
            .hhc-mini-grid,
            .hhc-proof-grid,
            .hhc-client-row {
                grid-template-columns: 1fr;
            }

            .hhc-service-image,
            .hhc-service-image img {
                min-height: 340px;
            }

            .hhc-hero-actions {
                flex-direction: column;
            }

            .hhc-btn {
                width: 100%;
            }
        }

.hhc-jobs-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 28px;
}

.hhc-job-card {
    background: #fff;

    border-radius: 28px;

    overflow: hidden;

    border: 1px solid rgba(18,60,115,.08);

    box-shadow:
        0 20px 45px rgba(18,60,115,.05);

    transition:
        transform .22s ease,
        box-shadow .22s ease;
}

.hhc-job-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 28px 60px rgba(18,60,115,.12);
}

.hhc-job-card img {
    width: 100%;

    aspect-ratio: 1 / 1;

    object-fit: cover;

    display: block;
}

.hhc-job-card-body {
    padding: 28px;
}

.hhc-job-card-body h3 {
    font-size: 22px;

    font-weight: 800;

    color: var(--hhc-ink);

    margin-bottom: 14px;
}

.hhc-job-card-body p {
    margin: 0;

    color: var(--hhc-muted);

    line-height: 1.8;
}

@media (max-width: 1199px) {

    .hhc-jobs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 767px) {

    .hhc-jobs-grid {
        grid-template-columns: 1fr;
    }

}
.hhc-proof-section {
    position: relative;

    overflow: hidden;

    color: #fff;

    background-image:
        linear-gradient(
            135deg,
            rgba(11, 31, 58, .88),
            rgba(18, 60, 115, .72)
        ),
        var(--hhc-proof-bg);

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;
}
.hhc-proof-section .hhc-section-title,
.hhc-proof-section .hhc-copy,
.hhc-proof-section .hhc-eyebrow {
    color: #fff;
}

.hhc-proof-section .hhc-eyebrow:before {
    background: rgba(255,255,255,.5);
}



.hhc-core-value {
    background: #fff;

    border-radius: 28px;

    padding: 34px 28px;

    text-align: left;

    border: 1px solid rgba(18,60,115,.08);

    box-shadow:
        0 20px 45px rgba(18,60,115,.05);
}

.hhc-core-value span {
    display: inline-flex;

    width: 74px;

    height: 74px;

    border-radius: 50%;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(135deg, #174a96, #2d6fd2);

    color: #fff;

    font-size: 32px;

    font-weight: 800;

    margin-bottom: 22px;
}

.hhc-core-value h3 {
    font-size: 14px;

    font-weight: 800;

    color: var(--hhc-ink);

    margin-bottom: 10px;

    line-height: 1.35;

    word-break: normal;

    overflow-wrap: break-word;
}
.hhc-core-value p {
    margin: 0;

    color: var(--hhc-muted);

    line-height: 1.7;
}

.hhc-value-card {
    background: #fff;

    border-radius: 28px;

    padding: 38px 32px;

    height: 100%;

    border: 1px solid rgba(18,60,115,.08);

    box-shadow:
        0 20px 45px rgba(18,60,115,.05);

    text-align: center;
}

.hhc-value-icon {
    width: 78px;

    height: 78px;

    border-radius: 24px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(135deg, #174a96, #2d6fd2);

    color: #fff;

    font-size: 32px;

    margin-bottom: 24px;
}

.hhc-value-card h3 {
    font-size: 24px;

    font-weight: 800;

    margin-bottom: 16px;

    color: var(--hhc-ink);
}

.hhc-value-card p {
    margin: 0;

    color: var(--hhc-muted);

    line-height: 1.8;
}

.hhc-service-values {
    max-width: 640px;

    margin: 0 auto;

    display: flex;

    flex-direction: column;

    gap: 14px;
}

.hhc-service-letter {
    display: flex;

    align-items: center;

    gap: 18px;

    background: #fff;

    border-radius: 22px;

    padding: 18px 22px;

    border: 1px solid rgba(18,60,115,.08);

    box-shadow:
        0 12px 30px rgba(18,60,115,.04);
}

.hhc-service-letter span {
    width: 52px;

    height: 52px;

    flex-shrink: 0;

    border-radius: 16px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(135deg, #174a96, #2d6fd2);

    color: #fff;

    font-size: 22px;

    font-weight: 800;
}

.hhc-service-letter h3 {
    margin: 0;

    font-size: 18px;

    font-weight: 760;

    color: var(--hhc-ink);

    line-height: 1.35;
}

.hhc-service-letter p {
    margin: 4px 0 0;

    color: var(--hhc-muted);

    font-size: 14px;

    line-height: 1.6;
}

@media (max-width: 767px) {

    .hhc-service-letter {
        align-items: flex-start;
    }

}

