:root {
	--srh-primary: #00509d;
	--srh-secondary: #0a2540;
	--srh-accent: #00c2a8;
	--srh-background: #ffffff;
	--srh-light: #f8fafc;
	--srh-text: #0f172a;
	--srh-muted: #64748b;
	--srh-success: #22c55e;
	--srh-warning: #f59e0b;
	--srh-border: #dbe4ef;
	--srh-soft-border: #edf2f7;
	--srh-shadow: 0 22px 70px rgba(10, 37, 64, 0.1);
	--srh-shadow-soft: 0 14px 42px rgba(15, 23, 42, 0.08);
	--srh-radius: 8px;
	--srh-max: 1180px;
	--srh-font: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--srh-background);
	color: var(--srh-text);
	font-family: var(--srh-font);
	font-size: 18px;
	line-height: 1.65;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body.nav-open {
	overflow: hidden;
}

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

a {
	color: var(--srh-primary);
	text-decoration: none;
	transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

a:hover,
a:focus-visible {
	color: var(--srh-secondary);
}

button,
input,
select,
textarea {
	font: inherit;
}

input,
select,
textarea {
	width: 100%;
	border: 1px solid var(--srh-border);
	border-radius: var(--srh-radius);
	background: #fff;
	color: var(--srh-text);
	padding: 13px 14px;
	outline: none;
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

input:focus,
select:focus,
textarea:focus {
	border-color: var(--srh-primary);
	box-shadow: 0 0 0 4px rgba(0, 80, 157, 0.12);
}

textarea {
	resize: vertical;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	top: 12px;
	left: 12px;
	z-index: 100000;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	background: #fff;
	border: 1px solid var(--srh-border);
	border-radius: var(--srh-radius);
}

.site-content {
	min-height: 60vh;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	border-bottom: 1px solid rgba(219, 228, 239, 0.8);
	background: rgba(255, 255, 255, 0.88);
	backdrop-filter: blur(18px);
	transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-compact {
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
}

.site-header__inner {
	display: flex;
	align-items: center;
	gap: 28px;
	width: min(var(--srh-max), calc(100% - 40px));
	min-height: 82px;
	margin: 0 auto;
	transition: min-height 180ms ease;
}

.site-header.is-compact .site-header__inner {
	min-height: 68px;
}

.site-branding {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	flex: 0 0 auto;
	color: var(--srh-secondary);
	font-weight: 800;
	letter-spacing: 0;
}

.site-branding img {
	width: auto;
	max-height: 42px;
}

.site-branding__mark {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 8px;
	background: var(--srh-primary);
	color: #fff;
	font-size: 14px;
	font-weight: 800;
}

.site-branding__text {
	font-size: 18px;
}

.site-navigation {
	flex: 1 1 auto;
}

.primary-menu {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-menu a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 8px 11px;
	border-radius: var(--srh-radius);
	color: var(--srh-secondary);
	font-size: 14px;
	font-weight: 650;
	white-space: nowrap;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a {
	background: rgba(0, 80, 157, 0.08);
	color: var(--srh-primary);
}

.site-header__cta,
.srh-link-button,
.srh-submit,
.srh-newsletter button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 18px;
	border: 0;
	border-radius: var(--srh-radius);
	background: var(--srh-secondary);
	color: #fff;
	font-size: 15px;
	font-weight: 750;
	line-height: 1.2;
	cursor: pointer;
	box-shadow: 0 12px 26px rgba(10, 37, 64, 0.16);
	transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.site-header__cta:hover,
.site-header__cta:focus-visible,
.srh-link-button:hover,
.srh-submit:hover,
.srh-newsletter button:hover {
	transform: translateY(-1px);
	background: var(--srh-primary);
	color: #fff;
	box-shadow: 0 16px 32px rgba(0, 80, 157, 0.22);
}

.site-nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--srh-border);
	border-radius: var(--srh-radius);
	background: #fff;
	cursor: pointer;
}

.site-nav-toggle span:not(.screen-reader-text) {
	display: block;
	width: 18px;
	height: 2px;
	margin: 4px auto;
	background: var(--srh-secondary);
	border-radius: 99px;
}

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

.srh-container--narrow {
	width: min(820px, calc(100% - 40px));
}

.srh-eyebrow,
.srh-section .srh-eyebrow {
	margin: 0 0 12px;
	color: var(--srh-primary);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.srh-section,
.elementor-section.srh-section {
	position: relative;
	overflow: hidden;
}

.elementor-section.srh-section > .elementor-container,
.elementor-section.srh-hero > .elementor-container {
	width: min(var(--srh-max), calc(100% - 40px));
	max-width: var(--srh-max);
}

.srh-section-light,
.elementor-section.srh-section-light {
	background: var(--srh-light);
}

.srh-section h1,
.srh-section h2,
.srh-section h3,
.srh-section .elementor-heading-title,
.srh-archive-hero h1,
.srh-single h1,
.srh-single h2 {
	margin: 0;
	color: var(--srh-text);
	font-family: var(--srh-font);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: 0;
}

.srh-section h1,
.srh-hero .elementor-heading-title {
	font-size: clamp(44px, 5.4vw, 64px);
}

.srh-section h2 {
	font-size: clamp(34px, 4.1vw, 48px);
}

.srh-section h3 {
	font-size: clamp(24px, 2.4vw, 32px);
}

.srh-section p,
.srh-section .elementor-widget-text-editor,
.srh-section .elementor-text-editor {
	color: var(--srh-muted);
	font-size: 18px;
	line-height: 1.65;
}

.srh-hero,
.elementor-section.srh-hero {
	background:
		linear-gradient(180deg, rgba(248, 250, 252, 0.88), rgba(255, 255, 255, 1)),
		radial-gradient(circle at 75% 22%, rgba(0, 194, 168, 0.14), transparent 32%),
		#fff;
}

.srh-hero .elementor-widget-button {
	display: inline-block;
	width: auto;
	margin: 8px 10px 0 0;
}

.srh-button-widget .elementor-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 15px 22px;
	border-radius: var(--srh-radius);
	background: var(--srh-primary);
	color: #fff;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.15;
	box-shadow: 0 16px 34px rgba(0, 80, 157, 0.18);
}

.srh-button-widget .elementor-button:hover {
	transform: translateY(-1px);
	background: var(--srh-secondary);
	color: #fff;
	box-shadow: 0 18px 38px rgba(10, 37, 64, 0.2);
}

.srh-button-secondary .elementor-button {
	background: #fff;
	color: var(--srh-secondary);
	border: 1px solid var(--srh-border);
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.srh-button-ghost .elementor-button {
	background: transparent;
	color: var(--srh-primary);
	border: 1px solid rgba(0, 80, 157, 0.24);
	box-shadow: none;
}

.srh-network-visual {
	position: relative;
	display: grid;
	gap: 16px;
	min-height: 480px;
	padding: 28px;
	border: 1px solid rgba(219, 228, 239, 0.9);
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.94)),
		linear-gradient(90deg, rgba(0, 80, 157, 0.08) 1px, transparent 1px),
		linear-gradient(0deg, rgba(0, 80, 157, 0.08) 1px, transparent 1px);
	background-size: auto, 48px 48px, 48px 48px;
	box-shadow: var(--srh-shadow);
	isolation: isolate;
}

.srh-network-visual::before {
	content: "";
	position: absolute;
	inset: 42px;
	z-index: -1;
	border: 1px solid rgba(0, 194, 168, 0.24);
	border-radius: 50%;
}

.srh-network-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	align-items: stretch;
}

.srh-network-card {
	padding: 18px;
	border: 1px solid var(--srh-soft-border);
	border-radius: var(--srh-radius);
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
	transition: transform 240ms ease, box-shadow 240ms ease;
}

.srh-network-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 46px rgba(15, 23, 42, 0.12);
}

.srh-network-card strong {
	display: block;
	color: var(--srh-secondary);
	font-size: 15px;
	line-height: 1.3;
}

.srh-network-card span {
	display: block;
	margin-top: 4px;
	color: var(--srh-muted);
	font-size: 13px;
	line-height: 1.4;
}

.srh-network-card--main {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 126px;
	background: var(--srh-secondary);
	color: #fff;
}

.srh-network-card--main strong,
.srh-network-card--main span {
	color: #fff;
}

.srh-status-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--srh-success);
	box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.14);
}

.srh-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 34px;
}

.srh-card-grid--2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.srh-card-grid--4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.srh-card,
.srh-metric-card,
.srh-case-card,
.srh-testimonial-card {
	min-width: 0;
	padding: 24px;
	border: 1px solid var(--srh-soft-border);
	border-radius: var(--srh-radius);
	background: #fff;
	box-shadow: 0 2px 0 rgba(15, 23, 42, 0.02);
	transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.srh-card:hover,
.srh-metric-card:hover,
.srh-case-card:hover,
.srh-testimonial-card:hover {
	transform: translateY(-4px);
	border-color: rgba(0, 80, 157, 0.22);
	box-shadow: var(--srh-shadow-soft);
}

.srh-card__icon,
.srh-metric-card__icon {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	margin-bottom: 18px;
	border-radius: var(--srh-radius);
	background: rgba(0, 194, 168, 0.12);
	color: var(--srh-primary);
	font-weight: 800;
}

.srh-card h3,
.srh-case-card h3,
.srh-testimonial-card h3 {
	margin: 0 0 10px;
	color: var(--srh-secondary);
	font-size: 22px;
	line-height: 1.2;
}

.srh-card p,
.srh-case-card p,
.srh-testimonial-card p {
	margin: 0;
	color: var(--srh-muted);
	font-size: 16px;
	line-height: 1.55;
}

.srh-card a,
.srh-case-card a {
	display: inline-flex;
	margin-top: 18px;
	font-size: 15px;
	font-weight: 800;
}

.srh-metrics {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
	margin-top: 30px;
}

.srh-metric-card {
	padding: 22px;
}

.srh-metric-card strong {
	display: block;
	color: var(--srh-secondary);
	font-size: 34px;
	font-weight: 850;
	line-height: 1;
}

.srh-metric-card span {
	display: block;
	margin-top: 8px;
	color: var(--srh-muted);
	font-size: 14px;
	line-height: 1.4;
}

.srh-logo-strip {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 28px;
}

.srh-logo-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 9px 16px;
	border: 1px solid var(--srh-soft-border);
	border-radius: var(--srh-radius);
	background: #fff;
	color: var(--srh-muted);
	font-size: 13px;
	font-weight: 800;
}

.srh-roi-table {
	overflow-x: auto;
	margin-top: 34px;
	border: 1px solid var(--srh-soft-border);
	border-radius: var(--srh-radius);
	background: #fff;
	box-shadow: var(--srh-shadow-soft);
}

.srh-roi-table table {
	width: 100%;
	min-width: 760px;
	border-collapse: collapse;
}

.srh-roi-table th,
.srh-roi-table td {
	padding: 18px;
	border-bottom: 1px solid var(--srh-soft-border);
	text-align: left;
	vertical-align: top;
}

.srh-roi-table tr:last-child td {
	border-bottom: 0;
}

.srh-roi-table th {
	background: var(--srh-secondary);
	color: #fff;
	font-size: 14px;
	font-weight: 800;
}

.srh-roi-table td {
	color: var(--srh-muted);
	font-size: 15px;
}

.srh-roi-table td strong {
	color: var(--srh-secondary);
}

.srh-roi-table .is-best {
	background: rgba(0, 194, 168, 0.08);
	color: var(--srh-secondary);
	font-weight: 750;
}

.srh-role-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin-top: 34px;
}

.srh-role-group {
	min-width: 0;
	padding: 18px;
	border: 1px solid var(--srh-soft-border);
	border-radius: var(--srh-radius);
	background: #fff;
}

.srh-role-group h3 {
	margin: 0 0 12px;
	color: var(--srh-secondary);
	font-size: 18px;
}

.srh-role-group a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	min-height: 38px;
	padding: 8px 0;
	border-top: 1px solid var(--srh-soft-border);
	color: var(--srh-text);
	font-size: 15px;
	font-weight: 650;
}

.srh-role-group a::after {
	content: ">";
	color: var(--srh-accent);
	font-weight: 900;
}

.srh-timeline {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	margin-top: 34px;
	counter-reset: srh-step;
}

.srh-timeline__item {
	position: relative;
	padding: 26px;
	border: 1px solid var(--srh-soft-border);
	border-radius: var(--srh-radius);
	background: #fff;
}

.srh-timeline__item::before {
	counter-increment: srh-step;
	content: counter(srh-step);
	display: inline-grid;
	place-items: center;
	width: 38px;
	height: 38px;
	margin-bottom: 18px;
	border-radius: 50%;
	background: var(--srh-primary);
	color: #fff;
	font-weight: 850;
}

.srh-timeline__item h3 {
	margin: 0 0 8px;
	color: var(--srh-secondary);
	font-size: 20px;
}

.srh-timeline__item p {
	margin: 0;
	color: var(--srh-muted);
	font-size: 15px;
	line-height: 1.55;
}

.srh-tools {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
}

.srh-tool-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 38px;
	padding: 8px 13px;
	border: 1px solid var(--srh-soft-border);
	border-radius: var(--srh-radius);
	background: #fff;
	color: var(--srh-secondary);
	font-size: 14px;
	font-weight: 750;
}

.srh-tool-pill::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--srh-accent);
}

.srh-case-card ul,
.srh-card ul {
	margin: 16px 0 0;
	padding-left: 18px;
	color: var(--srh-muted);
	font-size: 15px;
}

.srh-testimonial-card {
	display: grid;
	gap: 16px;
}

.srh-stars {
	color: var(--srh-warning);
	font-size: 18px;
	letter-spacing: 0;
}

.srh-testimonial-card blockquote {
	margin: 0;
	color: var(--srh-secondary);
	font-size: 18px;
	font-weight: 650;
	line-height: 1.5;
}

.srh-testimonial-card cite {
	color: var(--srh-muted);
	font-size: 14px;
	font-style: normal;
}

.srh-section .elementor-accordion .elementor-accordion-item {
	margin-bottom: 12px;
	border: 1px solid var(--srh-soft-border);
	border-radius: var(--srh-radius);
	background: #fff;
	overflow: hidden;
}

.srh-section .elementor-accordion .elementor-tab-title {
	padding: 18px 20px;
	color: var(--srh-secondary);
	font-size: 17px;
	font-weight: 800;
	line-height: 1.35;
}

.srh-section .elementor-accordion .elementor-tab-content {
	padding: 0 20px 20px;
	border-top: 0;
	color: var(--srh-muted);
	font-size: 16px;
	line-height: 1.6;
}

.srh-final-cta,
.elementor-section.srh-final-cta {
	background: var(--srh-secondary);
	color: #fff;
}

.srh-final-cta h2,
.srh-final-cta p,
.srh-final-cta .elementor-heading-title,
.srh-final-cta .elementor-widget-text-editor {
	color: #fff;
}

.srh-final-cta .srh-button-secondary .elementor-button {
	background: #fff;
	color: var(--srh-secondary);
}

.srh-form {
	display: grid;
	gap: 18px;
	padding: 28px;
	border: 1px solid var(--srh-soft-border);
	border-radius: var(--srh-radius);
	background: #fff;
	box-shadow: var(--srh-shadow-soft);
}

.srh-form h3 {
	margin: 0;
	color: var(--srh-secondary);
	font-size: 24px;
	line-height: 1.2;
}

.srh-form label {
	display: grid;
	gap: 7px;
	color: var(--srh-secondary);
	font-size: 14px;
	font-weight: 750;
}

.srh-form__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.srh-form__hidden {
	position: absolute;
	left: -10000px;
}

.srh-form__note {
	margin: 0;
	color: var(--srh-muted);
	font-size: 13px;
}

.srh-newsletter {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px;
	align-items: end;
}

.srh-newsletter label {
	display: grid;
	gap: 8px;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
}

.srh-newsletter input {
	border-color: rgba(255, 255, 255, 0.22);
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}

.srh-newsletter input::placeholder {
	color: rgba(255, 255, 255, 0.72);
}

.site-footer {
	background: var(--srh-secondary);
	color: rgba(255, 255, 255, 0.82);
}

.site-footer a {
	color: rgba(255, 255, 255, 0.88);
}

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

.srh-footer-grid {
	display: grid;
	grid-template-columns: 1.35fr 0.8fr 0.8fr 0.8fr 1.15fr;
	gap: 34px;
}

.srh-footer-grid h3 {
	margin: 0 0 14px;
	color: #fff;
	font-size: 16px;
}

.srh-footer-grid p,
.srh-footer-grid a {
	font-size: 14px;
	line-height: 1.6;
}

.srh-footer-links {
	display: grid;
	gap: 8px;
}

.site-footer__fallback {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: min(var(--srh-max), calc(100% - 40px));
	margin: 0 auto;
	padding: 52px 0;
}

.srh-breadcrumbs {
	margin-bottom: 22px;
	color: var(--srh-muted);
	font-size: 13px;
}

.srh-breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.srh-breadcrumbs li:not(:last-child)::after {
	content: "/";
	margin-left: 8px;
	color: #94a3b8;
}

.srh-archive-hero {
	padding: 78px 0 54px;
	background: var(--srh-light);
}

.srh-archive-hero h1,
.srh-single__header h1 {
	max-width: 860px;
	margin: 0;
	color: var(--srh-text);
	font-size: clamp(38px, 5vw, 58px);
	line-height: 1.08;
	letter-spacing: 0;
}

.srh-archive-hero p,
.srh-archive-description {
	max-width: 720px;
	color: var(--srh-muted);
}

.srh-archive-body,
.srh-related {
	padding: 74px 0;
}

.srh-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.srh-post-card {
	overflow: hidden;
	border: 1px solid var(--srh-soft-border);
	border-radius: var(--srh-radius);
	background: #fff;
	box-shadow: 0 2px 0 rgba(15, 23, 42, 0.02);
	transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.srh-post-card:hover {
	transform: translateY(-4px);
	border-color: rgba(0, 80, 157, 0.18);
	box-shadow: var(--srh-shadow-soft);
}

.srh-post-card__media {
	display: grid;
	place-items: center;
	aspect-ratio: 1.52;
	background: linear-gradient(135deg, rgba(0, 80, 157, 0.14), rgba(0, 194, 168, 0.14));
}

.srh-post-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.srh-post-card__placeholder {
	display: inline-grid;
	place-items: center;
	width: 64px;
	height: 64px;
	border-radius: var(--srh-radius);
	background: var(--srh-primary);
	color: #fff;
	font-weight: 850;
}

.srh-post-card__body {
	padding: 22px;
}

.srh-post-card__category {
	display: inline-flex;
	margin-bottom: 12px;
	color: var(--srh-primary);
	font-size: 12px;
	font-weight: 850;
	text-transform: uppercase;
}

.srh-post-card h3 {
	margin: 0 0 10px;
	font-size: 22px;
	line-height: 1.22;
}

.srh-post-card h3 a {
	color: var(--srh-secondary);
}

.srh-post-card p {
	margin: 0;
	color: var(--srh-muted);
	font-size: 15px;
	line-height: 1.55;
}

.srh-post-card__meta,
.srh-single__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 16px;
	color: var(--srh-muted);
	font-size: 13px;
}

.srh-single__header {
	padding: 76px 0 36px;
	background: var(--srh-light);
}

.srh-single__image {
	margin-top: 46px;
}

.srh-single__image img {
	width: 100%;
	border-radius: var(--srh-radius);
}

.srh-single__content {
	padding: 56px 0;
}

.srh-single__content h2,
.srh-single__content h3 {
	margin-top: 1.6em;
}

.srh-single__content p,
.srh-single__content li {
	color: #334155;
}

.srh-author-box {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 18px;
	padding: 24px;
	margin-bottom: 64px;
	border: 1px solid var(--srh-soft-border);
	border-radius: var(--srh-radius);
	background: #fff;
}

.srh-author-box img {
	border-radius: 50%;
}

.srh-author-box h2 {
	margin: 0 0 6px;
	font-size: 22px;
}

.srh-author-box p {
	margin: 0;
}

.pagination,
.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	margin-top: 34px;
}

.page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border: 1px solid var(--srh-border);
	border-radius: var(--srh-radius);
	color: var(--srh-secondary);
	font-size: 14px;
	font-weight: 750;
}

.page-numbers.current,
.page-numbers:hover {
	background: var(--srh-primary);
	color: #fff;
	border-color: var(--srh-primary);
}

.srh-empty-state {
	padding: 28px;
	border: 1px solid var(--srh-soft-border);
	border-radius: var(--srh-radius);
	background: #fff;
	color: var(--srh-muted);
}

.srh-reveal {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 520ms ease, transform 520ms ease;
}

.srh-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1080px) {
	.site-header__inner {
		gap: 14px;
		width: min(100% - 28px, var(--srh-max));
	}

	.primary-menu a {
		padding-inline: 8px;
		font-size: 13px;
	}

	.srh-card-grid--4,
	.srh-role-grid,
	.srh-metrics {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.srh-footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	body {
		font-size: 16px;
	}

	.site-header__inner {
		min-height: 72px;
	}

	.site-nav-toggle {
		display: inline-block;
		margin-left: auto;
	}

	.site-navigation {
		position: fixed;
		top: 72px;
		right: 14px;
		left: 14px;
		display: none;
		padding: 16px;
		border: 1px solid var(--srh-border);
		border-radius: var(--srh-radius);
		background: #fff;
		box-shadow: var(--srh-shadow);
	}

	body.nav-open .site-navigation {
		display: block;
	}

	.primary-menu {
		display: grid;
		justify-content: stretch;
		gap: 4px;
	}

	.primary-menu a {
		justify-content: space-between;
		width: 100%;
		padding: 12px;
		font-size: 15px;
	}

	.site-header__cta {
		display: none;
	}

	.elementor-section.srh-section > .elementor-container,
	.elementor-section.srh-hero > .elementor-container {
		width: min(100% - 28px, var(--srh-max));
	}

	.srh-card-grid,
	.srh-card-grid--2,
	.srh-blog-grid,
	.srh-timeline {
		grid-template-columns: 1fr;
	}

	.srh-network-visual {
		min-height: 0;
		margin-top: 32px;
	}
}

@media (max-width: 680px) {
	.srh-container,
	.srh-container--narrow {
		width: calc(100% - 28px);
	}

	.site-branding__mark {
		width: 38px;
		height: 38px;
	}

	.site-branding__text {
		font-size: 16px;
	}

	.srh-section h1,
	.srh-hero .elementor-heading-title {
		font-size: 42px;
	}

	.srh-section h2 {
		font-size: 32px;
	}

	.srh-hero .elementor-widget-button {
		display: block;
		margin-right: 0;
	}

	.srh-button-widget .elementor-button {
		width: 100%;
	}

	.srh-network-row,
	.srh-metrics,
	.srh-role-grid,
	.srh-footer-grid,
	.srh-form__grid,
	.srh-newsletter {
		grid-template-columns: 1fr;
	}

	.srh-card-grid--4 {
		grid-template-columns: 1fr;
	}

	.srh-network-visual {
		padding: 18px;
	}

	.srh-metric-card strong {
		font-size: 30px;
	}

	.srh-archive-hero,
	.srh-single__header {
		padding-top: 54px;
	}

	.srh-blog-grid {
		gap: 16px;
	}

	.srh-author-box {
		grid-template-columns: 1fr;
	}

	.site-footer__fallback {
		display: grid;
	}
}

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

/* Premium SRH Digital design pass. These rules intentionally carry higher specificity
   because Elementor's generated styles often load after theme styles. */
:root {
	--srh-ink: #06182d;
	--srh-ink-2: #102a43;
	--srh-blue: #00509d;
	--srh-blue-2: #0074d9;
	--srh-teal: #00c2a8;
	--srh-violet: #635bff;
	--srh-lime: #d7ff67;
	--srh-warm: #fff6e5;
	--srh-panel: #ffffff;
	--srh-panel-soft: #f6f9fc;
	--srh-line: rgba(7, 24, 45, 0.11);
	--srh-ease-standard: cubic-bezier(0.2, 0.8, 0.2, 1);
	--srh-ease-emphasized: cubic-bezier(0.16, 1, 0.3, 1);
	--srh-duration-fast: 140ms;
	--srh-duration-normal: 260ms;
	--srh-duration-slow: 520ms;
}

body.srh-digital-theme {
	background:
		linear-gradient(90deg, rgba(0, 80, 157, 0.035) 1px, transparent 1px),
		linear-gradient(180deg, rgba(0, 80, 157, 0.035) 1px, transparent 1px),
		#fff;
	background-size: 96px 96px;
	color: var(--srh-ink);
}

body.srh-digital-theme .site-header {
	border-bottom: 1px solid rgba(7, 24, 45, 0.08);
	background: rgba(255, 255, 255, 0.84);
}

body.srh-digital-theme.admin-bar .site-header {
	top: 32px;
}

body.srh-digital-theme .site-header__inner {
	min-height: 76px;
}

body.srh-digital-theme .site-header.is-compact .site-header__inner {
	min-height: 62px;
}

body.srh-digital-theme .site-branding__mark {
	background: linear-gradient(135deg, var(--srh-blue), #083d77);
	box-shadow: 0 14px 34px rgba(0, 80, 157, 0.22);
}

body.srh-digital-theme .primary-menu a {
	color: #132f4c;
	font-weight: 750;
}

body.srh-digital-theme .primary-menu a:hover,
body.srh-digital-theme .primary-menu .current-menu-item > a {
	background: rgba(0, 80, 157, 0.08);
	color: var(--srh-blue);
}

body.srh-digital-theme .site-header__cta {
	background: #07182d;
	box-shadow: 0 18px 44px rgba(7, 24, 45, 0.2);
}

body.srh-digital-theme .site-header__cta:hover {
	background: var(--srh-blue);
}

body.srh-digital-theme .elementor-section.srh-section > .elementor-container,
body.srh-digital-theme .elementor-section.srh-hero > .elementor-container {
	width: min(1180px, calc(100% - 48px));
}

body.srh-digital-theme .srh-section,
body.srh-digital-theme .elementor-section.srh-section {
	overflow: clip;
}

body.srh-digital-theme .srh-section .elementor-widget-heading .elementor-heading-title,
body.srh-digital-theme .srh-section h1.elementor-heading-title,
body.srh-digital-theme .srh-section h2.elementor-heading-title,
body.srh-digital-theme .srh-section h3.elementor-heading-title {
	color: var(--srh-ink) !important;
	font-family: var(--srh-font) !important;
	font-weight: 850 !important;
	letter-spacing: 0 !important;
}

body.srh-digital-theme .srh-hero .elementor-widget-heading h1.elementor-heading-title,
body.srh-digital-theme .srh-hero h1.elementor-heading-title {
	max-width: 760px;
	color: var(--srh-ink) !important;
	font-size: clamp(48px, 5.35vw, 76px) !important;
	line-height: 0.98 !important;
	letter-spacing: 0 !important;
}

body.srh-digital-theme .srh-section .elementor-widget-heading h2.elementor-heading-title,
body.srh-digital-theme .srh-section h2.elementor-heading-title {
	max-width: 880px;
	font-size: clamp(36px, 4vw, 56px) !important;
	line-height: 1.02 !important;
}

body.srh-digital-theme .srh-section .elementor-widget-text-editor,
body.srh-digital-theme .srh-section .elementor-widget-text-editor p,
body.srh-digital-theme .srh-section .elementor-text-editor,
body.srh-digital-theme .srh-section p {
	color: #52677f !important;
	font-size: 18px;
	line-height: 1.7;
}

body.srh-digital-theme .srh-hero .elementor-widget-text-editor p {
	max-width: 650px;
	color: #31475f !important;
	font-size: 20px;
	line-height: 1.65;
}

body.srh-digital-theme .srh-eyebrow .elementor-heading-title,
body.srh-digital-theme .srh-eyebrow,
body.srh-digital-theme .srh-section .srh-eyebrow {
	color: var(--srh-blue) !important;
	font-size: 12px !important;
	font-weight: 850 !important;
	letter-spacing: 0.08em !important;
	text-transform: uppercase !important;
}

body.srh-digital-theme .srh-button-widget .elementor-button,
body.srh-digital-theme .srh-section .elementor-button {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	min-height: 52px;
	padding: 15px 22px !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: linear-gradient(135deg, var(--srh-blue), var(--srh-violet)) !important;
	color: #fff !important;
	font-size: 16px !important;
	font-weight: 850 !important;
	line-height: 1 !important;
	box-shadow: 0 18px 46px rgba(0, 80, 157, 0.24) !important;
	transition: transform var(--srh-duration-normal) var(--srh-ease-standard), box-shadow var(--srh-duration-normal) var(--srh-ease-standard), background var(--srh-duration-normal) var(--srh-ease-standard) !important;
}

body.srh-digital-theme .srh-button-widget .elementor-button::after,
body.srh-digital-theme .srh-section .elementor-button::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.28) 42%, transparent 72%);
	transform: translateX(-115%);
	transition: transform 620ms var(--srh-ease-emphasized);
}

body.srh-digital-theme .srh-button-widget .elementor-button:hover,
body.srh-digital-theme .srh-section .elementor-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 24px 56px rgba(0, 80, 157, 0.28) !important;
}

body.srh-digital-theme .srh-button-widget .elementor-button:hover::after,
body.srh-digital-theme .srh-section .elementor-button:hover::after {
	transform: translateX(115%);
}

body.srh-digital-theme .srh-button-secondary .elementor-button {
	background: #fff !important;
	color: var(--srh-ink) !important;
	border: 1px solid rgba(7, 24, 45, 0.12) !important;
	box-shadow: 0 16px 38px rgba(7, 24, 45, 0.09) !important;
}

body.srh-digital-theme .srh-button-ghost .elementor-button {
	background: rgba(255, 255, 255, 0.64) !important;
	color: var(--srh-blue) !important;
	border: 1px solid rgba(0, 80, 157, 0.18) !important;
	box-shadow: none !important;
	backdrop-filter: blur(12px);
}

body.srh-digital-theme .srh-hero,
body.srh-digital-theme .elementor-section.srh-hero {
	background:
		radial-gradient(circle at 78% 14%, rgba(0, 194, 168, 0.18), transparent 26%),
		radial-gradient(circle at 10% 20%, rgba(99, 91, 255, 0.12), transparent 28%),
		linear-gradient(110deg, #ffffff 0%, #f7fbff 54%, #eef7ff 100%);
}

body.srh-digital-theme .srh-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		linear-gradient(90deg, rgba(7, 24, 45, 0.055) 1px, transparent 1px),
		linear-gradient(180deg, rgba(7, 24, 45, 0.04) 1px, transparent 1px);
	background-size: 112px 112px;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 88%);
}

body.srh-digital-theme .srh-hero::after {
	content: "";
	position: absolute;
	right: -10%;
	bottom: -82px;
	width: 68%;
	height: 190px;
	background: #fff;
	transform: rotate(-5deg);
	transform-origin: left bottom;
}

body.srh-digital-theme .srh-hero .elementor-container {
	position: relative;
	z-index: 2;
	align-items: center;
}

.srh-proof-mini {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 22px 0 8px;
}

.srh-proof-mini span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 36px;
	padding: 8px 12px;
	border: 1px solid rgba(7, 24, 45, 0.09);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.72);
	color: #31475f;
	font-size: 13px;
	font-weight: 800;
	box-shadow: 0 10px 28px rgba(7, 24, 45, 0.06);
	backdrop-filter: blur(12px);
}

.srh-proof-mini span::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 99px;
	background: var(--srh-teal);
	box-shadow: 0 0 0 5px rgba(0, 194, 168, 0.12);
}

.srh-product-stage,
.srh-talent-stage,
.srh-model-stage,
.srh-industry-stage,
.srh-trust-stage,
.srh-about-stage,
.srh-contact-stage {
	position: relative;
	min-height: 520px;
	perspective: 1300px;
}

.srh-dashboard-window,
.srh-command-window,
.srh-market-window,
.srh-model-window,
.srh-trust-window,
.srh-about-window,
.srh-contact-window {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(7, 24, 45, 0.11);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.82);
	box-shadow: 0 34px 90px rgba(7, 24, 45, 0.16);
	backdrop-filter: blur(18px);
	transform: rotateY(-5deg) rotateX(4deg);
	transform-style: preserve-3d;
}

.srh-dashboard-window::before,
.srh-command-window::before,
.srh-market-window::before,
.srh-model-window::before,
.srh-trust-window::before,
.srh-about-window::before,
.srh-contact-window::before {
	content: "";
	display: block;
	height: 38px;
	border-bottom: 1px solid rgba(7, 24, 45, 0.08);
	background:
		radial-gradient(circle at 22px 19px, #ff6464 0 4px, transparent 5px),
		radial-gradient(circle at 39px 19px, #ffbf3f 0 4px, transparent 5px),
		radial-gradient(circle at 56px 19px, #22c55e 0 4px, transparent 5px),
		linear-gradient(90deg, rgba(246, 249, 252, 0.92), rgba(255, 255, 255, 0.78));
}

.srh-dashboard-body,
.srh-command-body,
.srh-market-body,
.srh-model-body,
.srh-trust-body,
.srh-about-body,
.srh-contact-body {
	padding: 22px;
}

.srh-window-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 14px;
	color: var(--srh-blue);
	font-size: 13px;
	font-weight: 850;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.srh-window-label::before {
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 99px;
	background: var(--srh-teal);
	box-shadow: 0 0 0 7px rgba(0, 194, 168, 0.12);
}

.srh-dash-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 16px;
}

.srh-dash-panel,
.srh-mini-panel,
.srh-profile-card,
.srh-pipeline-card,
.srh-model-card,
.srh-industry-tile,
.srh-trust-step,
.srh-story-card,
.srh-contact-method {
	border: 1px solid rgba(7, 24, 45, 0.09);
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 14px 38px rgba(7, 24, 45, 0.08);
}

.srh-dash-panel {
	padding: 18px;
	background: linear-gradient(135deg, #081f3a, #103f71);
	color: #fff;
}

.srh-dash-panel h3,
.srh-dash-panel p {
	color: #fff !important;
}

.srh-dash-panel h3,
.srh-mini-panel h3,
.srh-profile-card h3,
.srh-pipeline-card h3,
.srh-model-card h3,
.srh-industry-tile h3,
.srh-trust-step h3,
.srh-story-card h3,
.srh-contact-method h3 {
	margin: 0 0 8px;
	color: var(--srh-ink);
	font-size: 17px;
	line-height: 1.2;
}

.srh-dash-panel p,
.srh-mini-panel p,
.srh-profile-card p,
.srh-pipeline-card p,
.srh-model-card p,
.srh-industry-tile p,
.srh-trust-step p,
.srh-story-card p,
.srh-contact-method p {
	margin: 0;
	color: #60738a !important;
	font-size: 13px;
	line-height: 1.45;
}

.srh-dash-panel p {
	color: rgba(255, 255, 255, 0.76) !important;
}

.srh-dash-stat-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin-top: 18px;
}

.srh-dash-stat {
	padding: 12px;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.08);
}

.srh-dash-stat strong {
	display: block;
	color: #fff;
	font-size: 22px;
	line-height: 1;
}

.srh-dash-stat span {
	display: block;
	margin-top: 5px;
	color: rgba(255, 255, 255, 0.68);
	font-size: 11px;
}

.srh-mini-panel {
	padding: 16px;
}

.srh-mini-panel + .srh-mini-panel {
	margin-top: 12px;
}

.srh-skill-line {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 12px;
	color: #203952;
	font-size: 12px;
	font-weight: 800;
}

.srh-skill-line i {
	display: block;
	flex: 1;
	height: 8px;
	overflow: hidden;
	border-radius: 999px;
	background: #e7eef7;
}

.srh-skill-line i::before {
	content: "";
	display: block;
	width: var(--fill, 72%);
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--srh-teal), var(--srh-blue));
	animation: srh-fill 1100ms var(--srh-ease-emphasized) both;
}

.srh-floating-card {
	position: absolute;
	z-index: 2;
	padding: 14px 16px;
	border: 1px solid rgba(7, 24, 45, 0.09);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.86);
	box-shadow: 0 24px 60px rgba(7, 24, 45, 0.14);
	backdrop-filter: blur(14px);
	animation: srh-float 5.8s var(--srh-ease-standard) infinite;
}

.srh-floating-card strong {
	display: block;
	color: var(--srh-ink);
	font-size: 14px;
}

.srh-floating-card span {
	display: block;
	margin-top: 3px;
	color: #64748b;
	font-size: 12px;
}

.srh-floating-card--top {
	top: 4%;
	right: -2%;
}

.srh-floating-card--bottom {
	bottom: 8%;
	left: -3%;
	animation-delay: -2.1s;
}

.srh-talent-board {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.srh-profile-card,
.srh-pipeline-card,
.srh-model-card,
.srh-industry-tile,
.srh-trust-step,
.srh-story-card,
.srh-contact-method {
	padding: 16px;
}

.srh-profile-card {
	position: relative;
	min-height: 142px;
}

.srh-profile-card::before {
	content: attr(data-score);
	position: absolute;
	top: 14px;
	right: 14px;
	display: inline-grid;
	place-items: center;
	min-width: 42px;
	height: 26px;
	border-radius: 999px;
	background: rgba(34, 197, 94, 0.12);
	color: #16864d;
	font-size: 12px;
	font-weight: 900;
}

.srh-avatar-row {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 14px;
}

.srh-avatar {
	display: inline-grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--srh-blue), var(--srh-teal));
	color: #fff;
	font-size: 13px;
	font-weight: 900;
}

.srh-chip-list {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-top: 12px;
}

.srh-chip-list span {
	display: inline-flex;
	align-items: center;
	min-height: 26px;
	padding: 6px 9px;
	border-radius: 999px;
	background: #f1f6fb;
	color: #35516c;
	font-size: 11px;
	font-weight: 800;
}

.srh-pipeline {
	display: grid;
	gap: 10px;
	margin-top: 16px;
}

.srh-pipeline-card {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 10px;
}

.srh-pipeline-card span:first-child {
	display: inline-grid;
	place-items: center;
	width: 28px;
	height: 28px;
	border-radius: 99px;
	background: var(--srh-blue);
	color: #fff;
	font-size: 12px;
	font-weight: 900;
}

.srh-pipeline-card em {
	color: var(--srh-teal);
	font-size: 12px;
	font-style: normal;
	font-weight: 900;
}

.srh-model-grid,
.srh-industry-grid,
.srh-trust-grid,
.srh-story-grid,
.srh-contact-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.srh-model-card {
	min-height: 146px;
}

.srh-model-card.featured {
	background: linear-gradient(135deg, #081f3a, #0a4b89);
	color: #fff;
}

.srh-model-card.featured h3,
.srh-model-card.featured p {
	color: #fff !important;
}

.srh-price-tag {
	display: inline-flex;
	margin-bottom: 12px;
	padding: 6px 9px;
	border-radius: 999px;
	background: rgba(0, 194, 168, 0.13);
	color: #008573;
	font-size: 11px;
	font-weight: 900;
}

.srh-model-card.featured .srh-price-tag {
	background: rgba(255, 255, 255, 0.12);
	color: #d7ff67;
}

.srh-industry-tile {
	display: grid;
	gap: 10px;
	min-height: 130px;
}

.srh-industry-tile strong {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 12px;
	background: #eef7ff;
	color: var(--srh-blue);
}

.srh-trust-step {
	position: relative;
	padding-left: 48px;
}

.srh-trust-step::before {
	content: attr(data-step);
	position: absolute;
	top: 16px;
	left: 16px;
	display: inline-grid;
	place-items: center;
	width: 24px;
	height: 24px;
	border-radius: 99px;
	background: var(--srh-teal);
	color: var(--srh-ink);
	font-size: 11px;
	font-weight: 950;
}

.srh-story-card {
	min-height: 122px;
}

.srh-contact-method {
	display: grid;
	gap: 10px;
}

.srh-contact-method a {
	color: var(--srh-blue);
	font-weight: 850;
}

.srh-card,
.srh-metric-card,
.srh-case-card,
.srh-testimonial-card,
.srh-role-group,
.srh-timeline__item {
	border-color: rgba(7, 24, 45, 0.09);
	border-radius: 14px;
	box-shadow: 0 18px 50px rgba(7, 24, 45, 0.06);
}

.srh-card:hover,
.srh-metric-card:hover,
.srh-case-card:hover,
.srh-testimonial-card:hover,
.srh-role-group:hover,
.srh-timeline__item:hover {
	transform: translateY(-5px);
	box-shadow: 0 28px 70px rgba(7, 24, 45, 0.12);
}

.srh-card__icon,
.srh-metric-card__icon {
	background: linear-gradient(135deg, rgba(0, 80, 157, 0.1), rgba(0, 194, 168, 0.16));
	color: var(--srh-blue);
}

.srh-role-grid {
	gap: 18px;
}

.srh-role-group {
	background: linear-gradient(180deg, #fff, #fbfdff);
}

.srh-role-group a {
	min-height: 42px;
	color: #102a43;
}

.srh-timeline__item::before {
	background: linear-gradient(135deg, var(--srh-blue), var(--srh-teal));
	box-shadow: 0 12px 28px rgba(0, 80, 157, 0.18);
}

.srh-roi-table {
	border-radius: 18px;
}

.srh-roi-table th {
	background: #081f3a;
}

.srh-roi-table .is-best {
	background: linear-gradient(90deg, rgba(0, 194, 168, 0.12), rgba(0, 80, 157, 0.06));
}

.srh-section-light,
.elementor-section.srh-section-light {
	background:
		linear-gradient(90deg, rgba(7, 24, 45, 0.035) 1px, transparent 1px),
		linear-gradient(180deg, rgba(7, 24, 45, 0.028) 1px, transparent 1px),
		#f7fafc;
	background-size: 88px 88px;
}

.srh-final-cta,
.elementor-section.srh-final-cta {
	background:
		radial-gradient(circle at 15% 20%, rgba(0, 194, 168, 0.16), transparent 26%),
		radial-gradient(circle at 85% 20%, rgba(99, 91, 255, 0.2), transparent 28%),
		#06182d;
}

.srh-final-cta .srh-button-ghost .elementor-button {
	color: #fff !important;
	border-color: rgba(255, 255, 255, 0.24) !important;
	background: rgba(255, 255, 255, 0.1) !important;
}

.srh-form {
	border-radius: 18px;
	box-shadow: 0 28px 80px rgba(7, 24, 45, 0.1);
}

.srh-form h3 {
	color: var(--srh-ink);
}

.srh-submit {
	border-radius: 999px;
	background: linear-gradient(135deg, var(--srh-blue), var(--srh-violet));
}

body.srh-digital-theme .site-footer {
	background:
		radial-gradient(circle at 10% 0%, rgba(0, 194, 168, 0.13), transparent 28%),
		#06182d;
}

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

@keyframes srh-fill {
	from {
		transform: scaleX(0);
		transform-origin: left center;
	}
	to {
		transform: scaleX(1);
		transform-origin: left center;
	}
}

@media (max-width: 1080px) {
	.srh-product-stage,
	.srh-talent-stage,
	.srh-model-stage,
	.srh-industry-stage,
	.srh-trust-stage,
	.srh-about-stage,
	.srh-contact-stage {
		min-height: 440px;
	}

	.srh-dashboard-window,
	.srh-command-window,
	.srh-market-window,
	.srh-model-window,
	.srh-trust-window,
	.srh-about-window,
	.srh-contact-window {
		transform: none;
	}
}

@media (max-width: 900px) {
	body.srh-digital-theme.admin-bar .site-header {
		top: 46px;
	}

	body.srh-digital-theme .srh-hero::after {
		display: none;
	}

	body.srh-digital-theme .srh-hero .elementor-widget-heading h1.elementor-heading-title,
	body.srh-digital-theme .srh-hero h1.elementor-heading-title {
		font-size: 44px !important;
	}

	.srh-product-stage,
	.srh-talent-stage,
	.srh-model-stage,
	.srh-industry-stage,
	.srh-trust-stage,
	.srh-about-stage,
	.srh-contact-stage {
		min-height: 0;
		margin-top: 36px;
	}

	.srh-floating-card {
		position: static;
		margin-top: 12px;
		animation: none;
	}
}

@media (max-width: 680px) {
	body.srh-digital-theme .elementor-section.srh-section > .elementor-container,
	body.srh-digital-theme .elementor-section.srh-hero > .elementor-container {
		width: calc(100% - 28px);
	}

	body.srh-digital-theme .srh-hero .elementor-widget-heading h1.elementor-heading-title,
	body.srh-digital-theme .srh-hero h1.elementor-heading-title {
		font-size: 40px !important;
		line-height: 1.03 !important;
	}

	.srh-dash-grid,
	.srh-talent-board,
	.srh-model-grid,
	.srh-industry-grid,
	.srh-trust-grid,
	.srh-story-grid,
	.srh-contact-grid,
	.srh-dash-stat-row {
		grid-template-columns: 1fr;
	}

	.srh-dashboard-body,
	.srh-command-body,
	.srh-market-body,
	.srh-model-body,
	.srh-trust-body,
	.srh-about-body,
	.srh-contact-body {
		padding: 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.srh-floating-card,
	.srh-skill-line i::before {
		animation: none !important;
	}
}

/* Landing-page cohesion pass: colorful connected bands, stronger gutters, fewer
   "stitched together" white blocks. */
:root {
	--srh-stripe-purple: #635bff;
	--srh-stripe-cyan: #00d4ff;
	--srh-monday-yellow: #ffcb00;
	--srh-monday-green: #00ca72;
	--srh-monday-pink: #ff3d57;
	--srh-monday-purple: #6161ff;
}

body.srh-digital-theme .site-content {
	background:
		linear-gradient(90deg, rgba(99, 91, 255, 0.06) 1px, transparent 1px),
		linear-gradient(180deg, rgba(0, 212, 255, 0.05) 1px, transparent 1px),
		linear-gradient(180deg, #f4f8ff 0%, #ffffff 18%, #eff7ff 42%, #fff8df 64%, #f4fbf8 82%, #ffffff 100%);
	background-size: 112px 112px, 112px 112px, auto;
}

body.srh-digital-theme .elementor-top-section.srh-section,
body.srh-digital-theme .elementor-section.srh-section {
	position: relative;
	margin: 0 !important;
	padding: clamp(74px, 7.5vw, 112px) 0 !important;
	background: transparent !important;
}

body.srh-digital-theme .elementor-top-section.srh-section > .elementor-container,
body.srh-digital-theme .elementor-section.srh-section > .elementor-container,
body.srh-digital-theme .elementor-section.srh-hero > .elementor-container {
	width: min(1180px, calc(100% - 96px)) !important;
	max-width: 1180px !important;
	margin-inline: auto !important;
}

body.srh-digital-theme .srh-hero,
body.srh-digital-theme .elementor-section.srh-hero {
	min-height: calc(100vh - 92px);
	display: flex;
	align-items: center;
	padding-top: clamp(82px, 7vw, 118px) !important;
	padding-bottom: clamp(76px, 8vw, 124px) !important;
	background:
		linear-gradient(132deg, rgba(99, 91, 255, 0.18) 0%, rgba(0, 212, 255, 0.18) 33%, rgba(255, 203, 0, 0.18) 67%, rgba(0, 202, 114, 0.14) 100%),
		linear-gradient(110deg, #f7fbff 0%, #eef6ff 52%, #f9fff7 100%) !important;
}

body.srh-digital-theme .srh-hero::before {
	opacity: 0.9;
	background:
		linear-gradient(90deg, rgba(99, 91, 255, 0.12) 1px, transparent 1px),
		linear-gradient(180deg, rgba(0, 80, 157, 0.08) 1px, transparent 1px),
		linear-gradient(120deg, transparent 0 42%, rgba(99, 91, 255, 0.11) 42% 56%, transparent 56%);
	background-size: 112px 112px, 112px 112px, 100% 100%;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.14));
}

body.srh-digital-theme .srh-hero::after {
	display: none;
}

body.srh-digital-theme .srh-hero .elementor-column:first-child {
	padding: 0 20px 0 0;
}

body.srh-digital-theme .srh-hero .elementor-column:last-child {
	padding: 0 0 0 20px;
}

body.srh-digital-theme .srh-hero .elementor-widget-heading h1.elementor-heading-title,
body.srh-digital-theme .srh-hero h1.elementor-heading-title {
	max-width: 780px;
	color: #07182d !important;
	text-wrap: balance;
}

body.srh-digital-theme .srh-hero .elementor-widget-heading h1.elementor-heading-title::after {
	content: "";
	display: block;
	width: min(310px, 48%);
	height: 8px;
	margin-top: 18px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--srh-stripe-purple), var(--srh-stripe-cyan), var(--srh-monday-yellow), var(--srh-monday-green));
}

body.srh-digital-theme .srh-hero .elementor-widget-button {
	margin-top: 18px;
	margin-right: 10px;
}

body.srh-digital-theme .srh-section-light,
body.srh-digital-theme .elementor-section.srh-section-light {
	background:
		linear-gradient(120deg, rgba(99, 91, 255, 0.12), rgba(0, 212, 255, 0.08) 42%, rgba(0, 202, 114, 0.08)),
		#eef6ff !important;
}

body.srh-digital-theme .elementor-top-section.srh-section:nth-of-type(3n + 2):not(.srh-hero):not(.srh-final-cta) {
	background:
		linear-gradient(135deg, rgba(255, 203, 0, 0.18), rgba(255, 255, 255, 0.46) 34%, rgba(0, 212, 255, 0.14)),
		#fffaf0 !important;
}

body.srh-digital-theme .elementor-top-section.srh-section:nth-of-type(4n + 3):not(.srh-hero):not(.srh-final-cta) {
	background:
		linear-gradient(135deg, rgba(0, 202, 114, 0.16), rgba(255, 255, 255, 0.42) 44%, rgba(99, 91, 255, 0.14)),
		#f1fff8 !important;
}

body.srh-digital-theme .elementor-top-section.srh-section:nth-of-type(5n + 4):not(.srh-hero):not(.srh-final-cta) {
	background:
		linear-gradient(135deg, rgba(255, 61, 87, 0.12), rgba(255, 255, 255, 0.48) 42%, rgba(255, 203, 0, 0.16)),
		#fff6f7 !important;
}

body.srh-digital-theme .elementor-top-section.srh-section:nth-of-type(7n + 5):not(.srh-hero):not(.srh-final-cta) {
	background:
		linear-gradient(135deg, rgba(7, 24, 45, 0.97), rgba(10, 37, 64, 0.95)) !important;
	color: #fff;
}

body.srh-digital-theme .elementor-top-section.srh-section:nth-of-type(7n + 5):not(.srh-hero):not(.srh-final-cta) .elementor-heading-title,
body.srh-digital-theme .elementor-top-section.srh-section:nth-of-type(7n + 5):not(.srh-hero):not(.srh-final-cta) p,
body.srh-digital-theme .elementor-top-section.srh-section:nth-of-type(7n + 5):not(.srh-hero):not(.srh-final-cta) .elementor-widget-text-editor {
	color: #fff !important;
}

body.srh-digital-theme .elementor-top-section.srh-section:nth-of-type(7n + 5):not(.srh-hero):not(.srh-final-cta) .srh-card,
body.srh-digital-theme .elementor-top-section.srh-section:nth-of-type(7n + 5):not(.srh-hero):not(.srh-final-cta) .srh-role-group,
body.srh-digital-theme .elementor-top-section.srh-section:nth-of-type(7n + 5):not(.srh-hero):not(.srh-final-cta) .srh-timeline__item {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.16);
	box-shadow: none;
	backdrop-filter: blur(14px);
}

body.srh-digital-theme .elementor-top-section.srh-section:nth-of-type(7n + 5):not(.srh-hero):not(.srh-final-cta) .srh-card h3,
body.srh-digital-theme .elementor-top-section.srh-section:nth-of-type(7n + 5):not(.srh-hero):not(.srh-final-cta) .srh-card p,
body.srh-digital-theme .elementor-top-section.srh-section:nth-of-type(7n + 5):not(.srh-hero):not(.srh-final-cta) .srh-timeline__item h3,
body.srh-digital-theme .elementor-top-section.srh-section:nth-of-type(7n + 5):not(.srh-hero):not(.srh-final-cta) .srh-timeline__item p {
	color: #fff !important;
}

body.srh-digital-theme .elementor-top-section.srh-section::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(7, 24, 45, 0.12), transparent);
	pointer-events: none;
}

body.srh-digital-theme .srh-card-grid,
body.srh-digital-theme .srh-metrics,
body.srh-digital-theme .srh-role-grid,
body.srh-digital-theme .srh-timeline,
body.srh-digital-theme .srh-tools,
body.srh-digital-theme .srh-roi-table,
body.srh-digital-theme .srh-talent-board,
body.srh-digital-theme .srh-model-grid,
body.srh-digital-theme .srh-industry-grid {
	margin-top: 34px;
}

body.srh-digital-theme .srh-card,
body.srh-digital-theme .srh-metric-card,
body.srh-digital-theme .srh-role-group,
body.srh-digital-theme .srh-case-card,
body.srh-digital-theme .srh-testimonial-card,
body.srh-digital-theme .srh-timeline__item {
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(7, 24, 45, 0.1);
	backdrop-filter: blur(16px);
}

body.srh-digital-theme .srh-card:nth-child(5n + 1),
body.srh-digital-theme .srh-metric-card:nth-child(5n + 1),
body.srh-digital-theme .srh-role-group:nth-child(5n + 1) {
	border-top: 4px solid var(--srh-stripe-purple);
}

body.srh-digital-theme .srh-card:nth-child(5n + 2),
body.srh-digital-theme .srh-metric-card:nth-child(5n + 2),
body.srh-digital-theme .srh-role-group:nth-child(5n + 2) {
	border-top: 4px solid var(--srh-stripe-cyan);
}

body.srh-digital-theme .srh-card:nth-child(5n + 3),
body.srh-digital-theme .srh-metric-card:nth-child(5n + 3),
body.srh-digital-theme .srh-role-group:nth-child(5n + 3) {
	border-top: 4px solid var(--srh-monday-yellow);
}

body.srh-digital-theme .srh-card:nth-child(5n + 4),
body.srh-digital-theme .srh-metric-card:nth-child(5n + 4),
body.srh-digital-theme .srh-role-group:nth-child(5n + 4) {
	border-top: 4px solid var(--srh-monday-green);
}

body.srh-digital-theme .srh-card:nth-child(5n),
body.srh-digital-theme .srh-metric-card:nth-child(5n),
body.srh-digital-theme .srh-role-group:nth-child(5n) {
	border-top: 4px solid var(--srh-monday-pink);
}

body.srh-digital-theme .srh-dashboard-window,
body.srh-digital-theme .srh-command-window,
body.srh-digital-theme .srh-market-window,
body.srh-digital-theme .srh-model-window,
body.srh-digital-theme .srh-trust-window,
body.srh-digital-theme .srh-about-window,
body.srh-digital-theme .srh-contact-window {
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(246, 249, 252, 0.86)),
		linear-gradient(120deg, rgba(99, 91, 255, 0.18), rgba(0, 212, 255, 0.14), rgba(255, 203, 0, 0.1));
	border: 1px solid rgba(99, 91, 255, 0.18);
}

body.srh-digital-theme .srh-dash-panel {
	background:
		linear-gradient(135deg, #06182d, #173a80 58%, #635bff);
}

body.srh-digital-theme .srh-dashboard-window::before,
body.srh-digital-theme .srh-command-window::before,
body.srh-digital-theme .srh-market-window::before,
body.srh-digital-theme .srh-model-window::before,
body.srh-digital-theme .srh-trust-window::before,
body.srh-digital-theme .srh-about-window::before,
body.srh-digital-theme .srh-contact-window::before {
	background:
		radial-gradient(circle at 22px 19px, var(--srh-monday-pink) 0 4px, transparent 5px),
		radial-gradient(circle at 39px 19px, var(--srh-monday-yellow) 0 4px, transparent 5px),
		radial-gradient(circle at 56px 19px, var(--srh-monday-green) 0 4px, transparent 5px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.88), rgba(246, 249, 252, 0.72));
}

body.srh-digital-theme .srh-proof-mini span:nth-child(1)::before {
	background: var(--srh-stripe-purple);
	box-shadow: 0 0 0 5px rgba(99, 91, 255, 0.14);
}

body.srh-digital-theme .srh-proof-mini span:nth-child(2)::before {
	background: var(--srh-monday-yellow);
	box-shadow: 0 0 0 5px rgba(255, 203, 0, 0.16);
}

body.srh-digital-theme .srh-proof-mini span:nth-child(3)::before {
	background: var(--srh-monday-green);
	box-shadow: 0 0 0 5px rgba(0, 202, 114, 0.14);
}

body.srh-digital-theme .srh-final-cta,
body.srh-digital-theme .elementor-section.srh-final-cta {
	background:
		linear-gradient(135deg, rgba(99, 91, 255, 0.82), rgba(0, 80, 157, 0.94) 42%, rgba(0, 202, 114, 0.76)),
		#06182d !important;
}

@media (min-width: 901px) {
	body.srh-digital-theme .elementor-top-section.srh-section:not(.srh-hero):not(.srh-final-cta) .elementor-widget-heading:first-child {
		max-width: 760px;
	}

	body.srh-digital-theme .elementor-top-section.srh-section:not(.srh-hero):not(.srh-final-cta) .elementor-widget-text-editor:first-of-type {
		max-width: 760px;
	}
}

@media (max-width: 900px) {
	body.srh-digital-theme .elementor-top-section.srh-section,
	body.srh-digital-theme .elementor-section.srh-section {
		padding: 64px 0 !important;
	}

	body.srh-digital-theme .elementor-top-section.srh-section > .elementor-container,
	body.srh-digital-theme .elementor-section.srh-section > .elementor-container,
	body.srh-digital-theme .elementor-section.srh-hero > .elementor-container {
		width: calc(100% - 32px) !important;
	}

	body.srh-digital-theme .srh-hero {
		min-height: auto;
	}

	body.srh-digital-theme .srh-hero .elementor-column:first-child,
	body.srh-digital-theme .srh-hero .elementor-column:last-child {
		padding: 0;
	}

	body.srh-digital-theme .srh-hero .elementor-widget-button {
		width: 100%;
		margin-right: 0;
	}

	body.srh-digital-theme .srh-hero .elementor-widget-button .elementor-button {
		width: 100%;
	}
}
