@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-variable.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-italic-variable.woff2') format('woff2');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

:root {
    --navy: #112640;
    --navy-deep: #0a1b30;
    --blue: #36557a;
    --blue-strong: #213a5a;
    --sky: #eef4fa;
    --white: #ffffff;
    --text: #26384b;
    --muted: #6d7b8b;
    --gold: #ffb305;
    --line: rgba(17, 38, 64, 0.12);
    --shadow: 0 22px 60px rgba(17, 38, 64, 0.14);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --container: 1220px;
}



* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: #f7f9fc;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }


h1, h2, h3, h4 {
    font-weight: 700;
}

.container { width: min(calc(100% - 32px), var(--container)); margin: 0 auto; }

.no-link{
    pointer-events: none;
}

.reset-disclaimer {
    display: grid;
    padding: 30px 36px 16px 36px;
}
.reset-disclaimer p,
.rst-employer-stats-disclaimer p{
    font-size:14px !important;
}


.benefits-intro {
    max-width: 760px;
}

.benefit-list {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.benefit-item {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    padding: 22px;
    border-radius: var(--radius-md);
    background: #f7f9fc;
    border: 1px solid rgba(17, 38, 64, 0.08);
}

.benefit-item > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #ffb305;
    color: var(--navy);
    font-weight: 800;
}

.benefit-item h3 {
    margin: 0 0 8px;
    color: var(--navy);
    font-size: 21px;
}

.benefit-item p {
    margin: 0;
    font-size: 15.5px;
    line-height: 1.7;
}

@media (max-width: 1100px) {
    .consolidation-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .consolidation-copy,
    .consolidation-benefits {
        padding: 24px;
    }

    .benefit-item {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 992px) {
.benefit-list {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}
}


.site-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.site-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.site-loader__circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #f5f7f8;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: loaderPulse 1.6s ease-in-out infinite;
}

.site-loader__circle::before {
    content: "";
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    animation: loaderRipple 1.6s ease-in-out infinite;
}

.site-loader__logo {
    position: relative;
    z-index: 2;
    max-width: 86px;
    max-height: 86px;
    width: auto;
    height: auto;
}

@keyframes loaderPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes loaderRipple {
    0% {
        transform: scale(0.92);
        opacity: 0.45;
    }

    70% {
        transform: scale(1.22);
        opacity: 0;
    }

    100% {
        transform: scale(1.22);
        opacity: 0;
    }
}

.reset-back-to-top {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(12px);
	transition: none;
}

.reset-back-to-top.is-ready {
	transition:
		opacity 0.35s ease,
		transform 0.35s ease,
		visibility 0s linear 0.35s,
		box-shadow 0.25s ease;
}

.reset-back-to-top.is-ready.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
	transition:
		opacity 0.35s ease,
		transform 0.35s ease,
		visibility 0s linear 0s,
		box-shadow 0.25s ease;
}

.reset-back-to-top.is-ready.is-visible:hover,
.reset-back-to-top.is-ready.is-visible:focus {
	color: #ffffff;
	transform: translateY(-4px);
	box-shadow: 0 22px 46px rgba(17, 38, 64, 0.28);
	text-decoration: none;
}


.home .cta-panel h2 {
    margin: 0px !important;
}

.reset-back-to-top {
	position: fixed;
	right: 26px;
	bottom: 26px;
	z-index: 999;
	width: 52px;
	height: 52px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: linear-gradient(135deg, #213a5a 0%, #36557a 100%);
	color: #ffffff;
	font-size: 26px;
	font-weight: 700;
	line-height: 1;
	box-shadow: 0 16px 34px rgba(17, 38, 64, 0.22);
	border: 1px solid rgba(255, 255, 255, 0.18);
	text-decoration: none;
	transition: transform 1.25s ease, box-shadow 1.25s ease, background 1.25s ease;
}

.reset-back-to-top:hover,
.reset-back-to-top:focus {
	color: #ffffff;
	transform: translateY(-4px);
	box-shadow: 0 22px 46px rgba(17, 38, 64, 0.28);
	text-decoration: none;
}

.reset-back-to-top span {
	transform: translateY(-1px);
}

@media (max-width: 640px) {
	.reset-back-to-top {
		right: 18px;
		bottom: 18px;
		width: 46px;
		height: 46px;
		font-size: 23px;
	}
}


.top-bar {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.78);
    font-size: 14px;
}
.top-bar-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.top-bar a { color: #fff; font-weight: 700; }

.nav-shell {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(12px);
    background: rgba(255,255,255,0.9);
    border-bottom: 1px solid rgba(17, 38, 64, 0.08);
}
.nav-inner {
    min-height: 86px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
}
.brand img { width: 180px; height: auto; }
.desktop-nav {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}
.desktop-nav a {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}
.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    background: var(--blue);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(54, 85, 122, 0.25);
}


.hero-section {
    position: relative;
    overflow: hidden;
    padding: 92px 0 130px;
    background: #0a1b30;
    isolation: isolate;
}

.hero-parallax-bg {
    position: absolute;
    inset: -20% 0;
    z-index: -2;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: translateY(0) scale(1.12);
    will-change: transform;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(
        90deg,
        rgba(10, 27, 48, 0.92) 0%,
        rgba(10, 27, 48, 0.52) 48%,
        rgba(10, 27, 48, 0.2) 100%
    );
    pointer-events: none;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 12% 18%, rgba(255,255,255,0.14), transparent 22%),
        radial-gradient(circle at 88% 12%, rgba(114,156,210,0.28), transparent 20%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 2;
}



.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 42px;
    align-items: center;
}
.eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: .22em;
    font-size: 12px;
    font-weight: 800;
    color: #ffb305;
}
.eyebrow.light { color: rgba(255,255,255,0.72); }
.hero-copy-block h1 {
    margin: 0 0 20px;
    font-size: clamp(42px, 6vw, 74px);
    line-height: .98;
    letter-spacing: -.05em;
    color: #fff;
}
.hero-copy-block .lead {
    max-width: 800px;
    margin: 0 0 28px;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.82);
}
.copy {
    max-width: 800px;
    margin: 0 0 28px;
    font-size: 14px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.765);
    border-left:2px solid var(--gold);
    padding-left: 15px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.hero-card {
    padding: 32px;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    color: #fff;
}
.hero-card .card-kicker {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.hero-card h2 {
    margin: 0 0 14px;
    font-size: 28px;
    line-height: 1.18;
}
.hero-card p, .hero-card li {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}
.hero-card ul { margin: 18px 0 0; padding-left: 18px; }

.card-cta {
    display: block;
    padding-top: 20px;
    font-weight: 600;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
    background: linear-gradient(135deg, #3e5d84, #27466d) !important;
    color: #fff !important;
    box-shadow: 0 14px 36px rgba(39,70,109,0.32);
    border:0px !important;
}
.btn-secondary {
    background: #fff !important;
    color: var(--navy) !important;
}
.btn-secondary:hover {
    background: #fff !important;
    color: var(--navy) !important;
}
.btn-ghost {
    color: #fff;
    border: 1px solid rgba(255,255,255,0.24);
    background: rgba(255,255,255,0.06);
}
.btn-light {
    background: #fff !important;
    color: var(--navy) !important;
}
.btn-light:hover {
    background: #fff !important;
    color: var(--navy) !important;
}
.btn-outline-light {
    color: #fff;
    border: 1px solid rgba(255,255,255,0.24);
}
.btn-outline-light:hover {
    color: #fff;
    border: 1px solid rgba(255,255,255,0.24);
    background:transparent;
}

.stats-overlap { margin-top: -58px; position: relative; z-index: 3; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.stat-card {
    padding: 28px;
    border-radius: var(--radius-md);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.stat-card strong {
    display: block;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1;
    color: var(--navy);
}
.stat-card span {
    display: block;
    margin-top: 10px;
    font-weight: 600;
    color: var(--muted);
}

.section { padding: 100px 0; }
.section-soft { background: var(--sky); }
.section-heading { max-width: 100%; margin-bottom: 40px; }
.section-heading.split {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 24px;
    align-items: end;
}
.section-heading h2 {
    margin: 0;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.04;
    letter-spacing: -.04em;
    color: var(--navy);
}
.section-heading p {
    margin: 0 0;
    color: var(--muted);
    line-height: 1.8;
    font-size: 17px;
    text-align: right;
}
.reset-way-section .section-heading p {
    text-align: center;
    margin-top: 20px;
}
.card-grid {
    display: grid;
    gap: 22px;
}
.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.four-up { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.work-card,
.audience-card,
.step-card,
.solution-card {
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    box-shadow: 0 16px 34px rgba(17,38,64,0.06);
}


.featured .audience-card a,
.featured .text-link{
    color: #fff !important;
}

.audience-card {
    padding: 30px;
}
.audience-card.featured {
    background: linear-gradient(180deg, #16314f 0%, #0e243c 100%);
    border-color: rgba(255,255,255,0.08);
}
.audience-card a,
.text-link {
    display: inline-flex;
    margin-top: 22px;
    font-weight: 700;
    color: var(--blue-strong);
}
.audience-card.featured h3,
.audience-card.featured p,
.audience-card.featured .mini-tag,
.audience-card.featured a { color: #fff; }
.mini-tag {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-weight: 800;
    color: var(--blue);
}
.audience-card h3,
.step-card h3,
.solution-content h3 {
    margin: 0 0 14px;
    font-size: 26px;
    line-height: 1.2;
    color: var(--navy);
}
.audience-card p,
.step-card p,
.solution-content p,
.platform-copy p,
.trust-copy p,
.cta-panel p,
.site-footer p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}


a.audience-card.featured.reveal.is-visible {
    color: #fff;
}

.step-card {
    position: relative;
    padding: 28px;
}
.step-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
    border-radius: 50%;
    background: var(--sky);
    color: var(--blue-strong);
    font-weight: 800;
}

.trust-section { background:linear-gradient(180deg, #fff 0%, #e9edf2 100%); }
.trust-grid,
.platform-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 34px;
    align-items: center;
}
.trust-copy h2,
.platform-copy h2,
.cta-panel h2 {
    margin: 0 0 20px;
    font-size: clamp(34px, 4vw, 42px);
    line-height: 1.05;
    letter-spacing: -.04em;
    color: var(--navy);
}
.trust-image,
.platform-visual,
.about-main,
.about-side {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.trust-image img,
.platform-visual img,
.about-main img,
.about-side img,
.solution-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.logo-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0;
}
.logo-row span {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
}
blockquote {
    margin: 0;
    padding: 24px;
    border-left: 4px solid var(--blue);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    background: #fff;
    color: var(--navy);
    font-size: 18px;
    line-height: 1.7;
    box-shadow: 0 14px 32px rgba(17,38,64,0.06);
}

.solution-card { overflow: hidden; }
.solution-image-wrap { height: 220px; }
.solution-content { padding: 28px; }

.platform-section .light{
    color: #fff !important;
}
.platform-section .lighter{
    color: #c4c4c4 !important
}

.platform-section {
    background: linear-gradient(135deg, #10253e 0%, #17365a 100%);
}
.platform-section .eyebrow,
.platform-section .platform-copy h2,
.platform-section .platform-copy p,
.platform-section .feature-list li {
    color: #fff;
}
.platform-visual { min-height: 520px; }
.platform-copy {
    padding: 12px 8px 12px 12px;
}
.feature-list {
    margin: 26px 0 34px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
}
.feature-list li {
    position: relative;
    padding-left: 26px;
    line-height: 1.8;
    color: rgba(255,255,255,0.82);
}
.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffb305;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    gap: 22px;
}
.about-main { min-height: 520px; }
.about-grid .about-side:first-of-type { margin-bottom: 22px; }

.cta-section {
    padding-top: 90px;
    padding-bottom: 90px;
    background: #eef4fa;
}
.cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    padding: 42px;
    border-radius: 34px;
    background: linear-gradient(135deg, #213a5a 0%, #36557a 100%);
    box-shadow: var(--shadow);
}
.cta-panel h2,
.cta-panel p { color: #fff; }
.cta-panel p { color: rgba(255,255,255,0.82); }
.cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.site-footer {
    padding: 72px 0;
    background: var(--navy-deep);
    color: rgba(255,255,255,0.72);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 30px;
}
.footer-logo {
    width: 190px;
    margin-bottom: 18px;
}
.site-footer h3 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 18px;
}
.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}
.site-footer a { color: rgba(255,255,255,0.76); }

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
.section-heading p {
    text-align: left !important;
}

    .hero-grid,
    .trust-grid,
    .platform-grid,
    .cta-panel,
    .footer-grid,
    .section-heading.split,
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-main,
    .platform-visual { min-height: auto; }
}

@media (max-width: 900px) {
    .three-up,
    .four-up,
    .stats-grid { grid-template-columns: 1fr; }
    .nav-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        padding: 18px 0;
    }
    .desktop-nav { gap: 18px; }
    .hero-section { padding-top: 72px; }
    .section,
    .cta-section { padding: 74px 0; }
}

@media (max-width: 640px) {
    .top-bar-inner,
    .hero-actions,
    .cta-actions { flex-direction: column; align-items: stretch; }
    .desktop-nav { justify-content: center; }
    .hero-card,
    .audience-card,
    .step-card,
    .solution-content,
    .cta-panel { padding: 24px; }
    .trust-copy h2,
    .platform-copy h2,
    .cta-panel h2,
    .section-heading h2 { font-size: 32px; }
}


.brand .custom-logo-link {
    display: inline-flex;
    align-items: center;
}

.brand .custom-logo {
    width: 180px;
    height: auto;
}

.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.navbar-toggler {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 10px 12px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

@media (max-width: 991px) {
.footer-text-right{
    text-align: left !important;
}


.top-bar-inner {
    text-align: center;
    padding: 10px;
}

    .nav-inner {
        display: flex;
        flex-wrap: wrap;
    }

    #resetMainNav {
        width: 100%;
    }

    .desktop-nav {
        align-items: center;
        padding: 18px 0;
    }

    .nav-actions {
        justify-content: center;
        padding-bottom: 18px;
    }
}

.img-fluid{
  max-width:180px !important;
}

.footer-brand .img-fluid {
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}


.site-footer .custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.site-footer .custom-logo {
	width: 190px;
	height: auto;
}

.footer-brand p {
	max-width: 420px;
}

.footer-widget {
	margin: 0;
}

.footer-widget-title,
.site-footer h3 {
	margin: 0 0 16px;
	color: #fff;
	font-size: 18px;
}

.site-footer .wp-block-list,
.site-footer ul,
.footer-widget ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 12px;
}

.site-footer a,
.footer-widget a {
	color: rgba(255, 255, 255, 0.76);
	text-decoration: none;
}

.site-footer a:hover,
.footer-widget a:hover {
	color: #fff;
}

.footer-bottom {
	margin-top: 48px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
	margin: 0;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.58);
}

.desktop-nav .menu-item {
	position: relative;
}

.desktop-nav .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 100;
	min-width: 220px;
	margin: 0;
	padding: 12px;
	list-style: none;
	background: #ffffff;
	border: 1px solid var(--line);
	border-radius: 16px;
	box-shadow: 0 18px 40px rgba(17, 38, 64, 0.14);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.desktop-nav .menu-item:hover > .sub-menu,
.desktop-nav .menu-item:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.desktop-nav .sub-menu .menu-item {
	width: 100%;
}

.desktop-nav .sub-menu a {
	display: block;
	width: 100%;
	padding: 10px 12px;
	border-radius: 10px;
	color: var(--text);
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
}

.desktop-nav .sub-menu a:hover {
	background: var(--sky);
	color: var(--navy);
}

@media (max-width: 991px) {
	.desktop-nav {
		width: 100%;
		gap: 8px;
	}

	.desktop-nav .menu-item {
		width: 100%;
		position: relative;
	}

	.desktop-nav .menu-item > a {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 12px 16px;
		border-radius: 14px;
	}

	.desktop-nav .menu-item-has-children > a {
		justify-content: center;
		gap: 8px;
	}

	.desktop-nav .menu-item-has-children > a::after {
		content: "";
		width: 8px;
		height: 8px;
		border-right: 2px solid currentColor;
		border-bottom: 2px solid currentColor;
		transform: rotate(45deg) translateY(-2px);
		transition: transform 0.25s ease;
	}

	.desktop-nav .sub-menu {
		position: static;
		z-index: auto;
		min-width: 100%;
		max-height: 0;
		margin: 0;
		padding: 0;
		list-style: none;
		overflow: hidden;
		background: rgba(238, 244, 250, 0.9);
		border: 0 !important;
		border-radius: 16px;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		transition: max-height 0.35s ease, padding 0.25s ease, margin 0.25s ease;
	}

	.desktop-nav .menu-item-has-children:hover > .sub-menu,
	.desktop-nav .menu-item-has-children:focus-within > .sub-menu {
		max-height: 500px;
		margin-top: 6px;
		padding: 8px;
	}

	.desktop-nav .menu-item-has-children:hover > a,
	.desktop-nav .menu-item-has-children:focus-within > a {
		background: var(--sky);
		color: var(--navy);
	}

	.desktop-nav .menu-item-has-children:hover > a::after,
	.desktop-nav .menu-item-has-children:focus-within > a::after {
		transform: rotate(225deg) translateY(-2px);
	}

	.desktop-nav .sub-menu .menu-item {
		width: 100%;
	}

	.desktop-nav .sub-menu a {
		display: flex;
		justify-content: center;
		width: 100%;
		padding: 11px 14px;
		border-radius: 12px;
		text-align: center;
		font-size: 14px;
		font-weight: 600;
		color: var(--text);
	}

	.desktop-nav .sub-menu a:hover,
	.desktop-nav .sub-menu a:focus {
		background: #ffffff;
		color: var(--navy);
	}
}

.desktop-nav .menu-item-has-children > a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.desktop-nav .menu-item-has-children > a::after {
	content: "";
	width: 8px;
	height: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
	transition: transform 0.2s ease;
	flex-shrink: 0;
}

@media (max-width: 991px) {
	.desktop-nav .menu-item-has-children > a {
		justify-content: center;
	}

	.desktop-nav .menu-item-has-children > a::after {
		margin-left: 8px;
	}
}

.cta-panel {
	position: relative;
	overflow: hidden;
}

.cta-panel::after {
	content: "";
	position: absolute;
	top: -40%;
	left: -30%;
	width: 40%;
	height: 180%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.16),
		transparent
	);
	transform: rotate(18deg);
	animation: ctaShine 6s ease-in-out infinite;
	pointer-events: none;
}

@keyframes ctaShine {
	0% {
		left: -40%;
		opacity: 0;
	}

	35% {
		opacity: 1;
	}

	60% {
		left: 120%;
		opacity: 0;
	}

	100% {
		left: 120%;
		opacity: 0;
	}
}


.card-grid .reveal:nth-child(1),
.reset-team-grid .reveal:nth-child(1),
.hiw-timeline .reveal:nth-child(1) {
	transition-delay: 0.05s;
}

.card-grid .reveal:nth-child(2),
.reset-team-grid .reveal:nth-child(2),
.hiw-timeline .reveal:nth-child(2) {
	transition-delay: 0.12s;
}

.card-grid .reveal:nth-child(3),
.reset-team-grid .reveal:nth-child(3),
.hiw-timeline .reveal:nth-child(3) {
	transition-delay: 0.19s;
}

.card-grid .reveal:nth-child(4),
.reset-team-grid .reveal:nth-child(4),
.hiw-timeline .reveal:nth-child(4) {
	transition-delay: 0.26s;
}



.audience-card,
.step-card,
.solution-card,
.hiw-info-card,
.hiw-journey-card,
.stat-card {
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.audience-card:hover,
.step-card:hover,
.solution-card:hover,
.hiw-info-card:hover,
.hiw-journey-card:hover,
.stat-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 46px rgba(17, 38, 64, 0.12);
}



.section-soft,
.reset-team-section,
.hiw-journeys-section {
	position: relative;
	overflow: hidden;
}

.section-soft::before,
.reset-team-section::before,
.hiw-journeys-section::before {
	content: "";
	position: absolute;
	width: 360px;
	height: 360px;
	right: -140px;
	top: 80px;
	border-radius: 50%;
	background: rgba(54, 85, 122, 0.07);
	animation: softFloat 9s ease-in-out infinite;
	pointer-events: none;
}

@keyframes softFloat {
	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-22px);
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}

.hero-copy-block .eyebrow,
.hero-copy-block h1,
.hero-copy-block .lead,
.hero-actions,
.hero-card,
.hiw-hero-card {
	opacity: 0;
	animation: heroIntro 0.8s ease forwards;
}

.hero-copy-block .eyebrow {
	animation-delay: 0.1s;
}

.hero-copy-block h1 {
	animation-delay: 0.22s;
}

.hero-copy-block .lead {
	animation-delay: 0.34s;
}

.hero-actions {
	animation-delay: 0.46s;
}

.hero-card,
.hiw-hero-card {
	animation-delay: 0.58s;
}

@keyframes heroIntro {
	from {
		opacity: 0;
		transform: translateY(22px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.consolidation-section {
    background: linear-gradient(180deg, #ffffff 0%, #eef4fa 100%);
}

.consolidation-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 34px;
    align-items: stretch;
}

.consolidation-copy,
.consolidation-benefits {
    padding: 42px;
    border-radius: var(--radius-lg);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 16px 34px rgba(17, 38, 64, 0.06);
}

.consolidation-copy h2,
.consolidation-benefits h2 {
    margin: 0 0 18px;
    color: var(--navy);
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.consolidation-copy p,
.consolidation-benefits p {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.8;
    font-size: 17px;
}

.consolidation-example {
    margin-top: 28px;
    padding: 26px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #112640 0%, #213a5a 100%);
}

.consolidation-example h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 22px;
}

.consolidation-example p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
}

.rst-employee-cta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

@media (max-width: 900px) {
    .rst-employee-cta-grid {
        grid-template-columns: 1fr !important;
    }
}

#primary-menu a:hover,
#colophon .footer-grid a:hover{
    color: var(--gold);
    transition-duration: 0.5s;
}

.consolidation-image-wrap {
    overflow: hidden;
    border-radius: var(--radius-lg);
    min-height: 100%;
}

.consolidation-image-wrap img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {
    .consolidation-image-wrap img {
        min-height: 320px;
    }
}
