:root {
	--ri5-teal: #0a7d71;
	--ri5-teal-dark: #064e49;
	--ri5-teal-soft: #dff2ed;
	--ri5-orange: #f68b1f;
	--ri5-orange-dark: #d86d08;
	--ri5-navy: #102d3d;
	--ri5-ink: #18343f;
	--ri5-muted: #60737c;
	--ri5-bg: #f4f8f7;
	--ri5-white: #ffffff;
	--ri5-line: #d7e4e1;
	--ri5-shadow: 0 18px 48px rgba(16, 45, 61, 0.1);
	--ri5-radius: 22px;
	--ri5-shell: 1240px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body.ri5-theme {
	margin: 0;
	background: var(--ri5-white);
	color: var(--ri5-ink);
	font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

body.ri5-menu-open {
	overflow: hidden;
}

.ri5-theme img {
	max-width: 100%;
	height: auto;
}

.ri5-theme a {
	color: var(--ri5-teal);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.ri5-theme h1,
.ri5-theme h2,
.ri5-theme h3,
.ri5-theme h4 {
	margin: 0 0 0.65em;
	color: var(--ri5-navy);
	font-weight: 760;
	letter-spacing: -0.035em;
	line-height: 1.15;
}

.ri5-theme p {
	margin: 0 0 1.25em;
}

.ri5-shell {
	width: min(calc(100% - 48px), var(--ri5-shell));
	margin-inline: auto;
}

.ri5-site {
	min-height: 100vh;
	overflow: clip;
}

.ri5-skip {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 99999;
	transform: translateY(-160%);
	padding: 10px 16px;
	border-radius: 8px;
	background: var(--ri5-navy);
	color: white !important;
}

.ri5-skip:focus {
	transform: none;
}

.ri5-topbar {
	background: var(--ri5-navy);
	color: rgba(255, 255, 255, 0.86);
	font-size: 13px;
	letter-spacing: 0.02em;
}

.ri5-topbar-inner {
	display: flex;
	min-height: 37px;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.ri5-topbar p {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 0;
}

.ri5-topbar a {
	color: white;
	text-decoration: none;
}

.ri5-topbar a:hover {
	color: #ffc684;
}

.ri5-live-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #4ade80;
	box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.12);
}

.ri5-topbar-links {
	display: flex;
	align-items: center;
	gap: 11px;
}

.ri5-topbar-contact,
.ri5-whatsapp-link {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.ri5-topbar-contact strong {
	color: rgba(255, 255, 255, 0.72);
	font-weight: 600;
}

.ri5-whatsapp-link {
	gap: 6px;
}

.ri5-whatsapp-icon {
	width: 16px;
	height: 16px;
	flex: 0 0 16px;
	color: #25d366;
}

.ri5-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	border-bottom: 1px solid rgba(215, 228, 225, 0.8);
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(16px);
	transition: box-shadow 0.2s ease;
}

.admin-bar .ri5-header {
	top: 32px;
}

.ri5-header.is-scrolled {
	box-shadow: 0 12px 35px rgba(16, 45, 61, 0.09);
}

.ri5-header-inner {
	display: flex;
	min-height: 86px;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.ri5-branding {
	flex: 0 0 auto;
}

.ri5-brand,
.custom-logo-link {
	display: block;
	line-height: 0;
}

.ri5-brand img,
.custom-logo {
	display: block;
	width: auto;
	max-width: 205px;
	height: 60px;
	object-fit: contain;
}

.ri5-navigation {
	margin-left: auto;
}

.ri5-menu,
.ri5-menu ul,
.ri5-footer-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ri5-menu {
	display: flex;
	align-items: center;
	gap: 2px;
}

.ri5-menu > li {
	position: relative;
}

.ri5-menu > li > a {
	position: relative;
	display: flex;
	min-height: 48px;
	align-items: center;
	padding: 0 11px;
	border-radius: 10px;
	color: var(--ri5-ink);
	font-size: 14.5px;
	font-weight: 690;
	text-decoration: none;
	white-space: nowrap;
}

.ri5-menu > li > a:hover,
.ri5-menu > li:focus-within > a,
.ri5-menu > li.current-menu-item > a,
.ri5-menu > li.current-menu-ancestor > a,
.ri5-menu > li.current_page_parent > a {
	background: var(--ri5-teal-soft);
	color: var(--ri5-teal-dark);
}

.ri5-menu > li.current-menu-item > a::after,
.ri5-menu > li.current-menu-ancestor > a::after {
	position: absolute;
	right: 11px;
	bottom: 2px;
	left: 11px;
	height: 3px;
	border-radius: 3px;
	background: var(--ri5-orange);
	content: "";
}

.ri5-menu .sub-menu {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	min-width: 325px;
	padding: 10px;
	border: 1px solid var(--ri5-line);
	border-radius: 16px;
	background: white;
	box-shadow: var(--ri5-shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: 0.18s ease;
}

.ri5-menu li:hover > .sub-menu,
.ri5-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: none;
}

.ri5-menu .sub-menu::before {
	position: absolute;
	top: -10px;
	right: 0;
	left: 0;
	height: 12px;
	content: "";
}

.ri5-menu .sub-menu a {
	display: block;
	padding: 11px 13px;
	border-radius: 10px;
	color: var(--ri5-ink);
	font-size: 14px;
	font-weight: 620;
	line-height: 1.35;
	text-decoration: none;
}

.ri5-menu .sub-menu a:hover,
.ri5-menu .sub-menu .current-menu-item > a {
	background: var(--ri5-bg);
	color: var(--ri5-teal);
}

.ri5-submenu-toggle {
	position: absolute;
	top: 50%;
	right: -2px;
	display: none;
	width: 36px;
	height: 36px;
	align-items: center;
	justify-content: center;
	transform: translateY(-50%);
	border: 0;
	background: transparent;
	color: var(--ri5-teal);
	font-size: 20px;
}

.ri5-menu-toggle {
	display: none;
	width: 48px;
	height: 48px;
	align-content: center;
	justify-items: center;
	gap: 5px;
	border: 1px solid var(--ri5-line);
	border-radius: 12px;
	background: white;
	color: var(--ri5-navy);
	cursor: pointer;
}

.ri5-menu-toggle span {
	display: block;
	width: 21px;
	height: 2px;
	border-radius: 3px;
	background: currentColor;
}

.ri5-menu-toggle b {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
}

.ri5-main {
	display: block;
}

.ri5-eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 16px;
	color: var(--ri5-orange);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.14em;
	line-height: 1.4;
	text-transform: uppercase;
}

.ri5-eyebrow::before {
	width: 26px;
	height: 3px;
	border-radius: 3px;
	background: currentColor;
	content: "";
}

.ri5-home-hero {
	position: relative;
	display: grid;
	min-height: 650px;
	align-items: center;
	background: var(--ri5-navy);
	color: white;
	isolation: isolate;
}

.ri5-home-hero::before {
	position: absolute;
	inset: 0;
	z-index: -2;
	background: url("../images/hero-consulting.jpg") center/cover no-repeat;
	content: "";
}

.ri5-home-hero::after {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(90deg, rgba(6, 31, 39, 0.96) 0%, rgba(6, 53, 56, 0.86) 44%, rgba(6, 53, 56, 0.25) 78%, rgba(6, 53, 56, 0.18) 100%);
	content: "";
}

.ri5-home-hero-content {
	display: grid;
	grid-template-columns: minmax(0, 760px) 1fr;
	align-items: center;
	gap: 50px;
	padding-block: 90px;
}

.ri5-home-hero-copy h1 {
	max-width: 750px;
	margin-bottom: 22px;
	color: white;
	font-size: clamp(44px, 6vw, 78px);
	letter-spacing: -0.055em;
	line-height: 0.98;
}

.ri5-home-hero-copy > p:not(.ri5-eyebrow) {
	max-width: 660px;
	margin-bottom: 30px;
	color: rgba(255, 255, 255, 0.83);
	font-size: 19px;
	line-height: 1.65;
}

.ri5-hero-actions,
.ri5-section-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.ri5-button {
	display: inline-flex;
	min-height: 50px;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 12px 22px;
	border: 1px solid transparent;
	border-radius: 999px;
	background: var(--ri5-orange);
	box-shadow: 0 12px 26px rgba(246, 139, 31, 0.22);
	color: #1e2e32 !important;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.02em;
	text-decoration: none !important;
	transition: 0.18s ease;
}

.ri5-button:hover {
	transform: translateY(-2px);
	background: #ffa13f;
	box-shadow: 0 15px 32px rgba(246, 139, 31, 0.3);
}

.ri5-button-outline {
	border-color: rgba(255, 255, 255, 0.45);
	background: rgba(255, 255, 255, 0.06);
	box-shadow: none;
	color: white !important;
}

.ri5-button-outline:hover {
	border-color: white;
	background: white;
	color: var(--ri5-navy) !important;
}

.ri5-button-teal {
	background: var(--ri5-teal);
	box-shadow: 0 12px 28px rgba(10, 125, 113, 0.2);
	color: white !important;
}

.ri5-button-teal:hover {
	background: var(--ri5-teal-dark);
}

.ri5-hero-proof {
	justify-self: end;
	width: min(100%, 270px);
	padding: 28px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.12);
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
	backdrop-filter: blur(18px);
}

.ri5-hero-proof strong {
	display: block;
	margin-bottom: 16px;
	color: white;
	font-size: 17px;
}

.ri5-hero-proof ul {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ri5-hero-proof li {
	position: relative;
	padding-left: 23px;
	color: rgba(255, 255, 255, 0.84);
	font-size: 14.5px;
}

.ri5-hero-proof li::before {
	position: absolute;
	top: 0.48em;
	left: 0;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--ri5-orange);
	content: "";
}

.ri5-metrics {
	position: relative;
	z-index: 3;
	margin-top: -42px;
}

.ri5-metrics-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border: 1px solid var(--ri5-line);
	border-radius: 22px;
	background: white;
	box-shadow: var(--ri5-shadow);
}

.ri5-metric {
	padding: 24px 28px;
}

.ri5-metric + .ri5-metric {
	border-left: 1px solid var(--ri5-line);
}

.ri5-metric strong {
	display: block;
	margin-bottom: 3px;
	color: var(--ri5-teal);
	font-size: 28px;
	line-height: 1.1;
}

.ri5-metric:nth-child(3) {
	padding-inline: 18px;
}

.ri5-metric:nth-child(3) strong {
	font-size: clamp(17px, 1.5vw, 24px);
	white-space: nowrap;
}

.ri5-metric span {
	color: var(--ri5-muted);
	font-size: 14.5px;
}

.ri5-section {
	padding-block: 96px;
}

.ri5-section-soft {
	background: var(--ri5-bg);
}

.ri5-section-dark {
	background: var(--ri5-navy);
	color: rgba(255, 255, 255, 0.82);
}

.ri5-section-dark h2,
.ri5-section-dark h3 {
	color: white;
}

.ri5-section-head {
	display: grid;
	grid-template-columns: minmax(0, 710px) minmax(220px, 1fr);
	align-items: end;
	gap: 50px;
	margin-bottom: 46px;
}

.ri5-section-head h2,
.ri5-centered-head h2 {
	font-size: clamp(34px, 4vw, 52px);
}

.ri5-section-head > p,
.ri5-centered-head > p:not(.ri5-eyebrow) {
	color: var(--ri5-muted);
	font-size: 17px;
}

.ri5-centered-head {
	max-width: 760px;
	margin: 0 auto 46px;
	text-align: center;
}

.ri5-centered-head .ri5-eyebrow {
	justify-content: center;
}

.ri5-card-grid,
.ri5-value-grid,
.ri5-news-grid,
.ri5-team-grid,
.ri5-detail-grid,
.ri5-benefit-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.ri5-card,
.ri5-value-card,
.ri5-detail-card,
.ri5-benefit-card {
	position: relative;
	padding: 30px;
	border: 1px solid var(--ri5-line);
	border-radius: var(--ri5-radius);
	background: white;
	box-shadow: 0 8px 28px rgba(16, 45, 61, 0.04);
}

.ri5-card {
	min-height: 280px;
	overflow: hidden;
	transition: 0.2s ease;
}

.ri5-card:hover {
	transform: translateY(-5px);
	border-color: rgba(10, 125, 113, 0.38);
	box-shadow: var(--ri5-shadow);
}

.ri5-card-number,
.ri5-step-number {
	display: inline-flex;
	width: 46px;
	height: 46px;
	align-items: center;
	justify-content: center;
	margin-bottom: 35px;
	border-radius: 14px;
	background: var(--ri5-teal-soft);
	color: var(--ri5-teal-dark);
	font-size: 14px;
	font-weight: 850;
}

.ri5-card h3,
.ri5-value-card h3,
.ri5-benefit-card h3,
.ri5-detail-card h3 {
	font-size: 22px;
}

.ri5-card p,
.ri5-value-card p,
.ri5-benefit-card p,
.ri5-detail-card p {
	color: var(--ri5-muted);
	font-size: 15.5px;
}

.ri5-text-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--ri5-teal) !important;
	font-size: 14px;
	font-weight: 800;
	text-decoration: none !important;
}

.ri5-text-link:hover span {
	transform: translateX(4px);
}

.ri5-text-link span {
	transition: transform 0.18s ease;
}

.ri5-value-grid {
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

.ri5-value-card {
	padding: 23px;
}

.ri5-value-icon {
	display: flex;
	width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	margin-bottom: 22px;
	border-radius: 13px;
	background: var(--ri5-orange);
	color: var(--ri5-navy);
	font-size: 18px;
	font-weight: 850;
}

.ri5-value-card h3 {
	font-size: 17px;
}

.ri5-value-card p {
	margin-bottom: 0;
	font-size: 14.5px;
}

.ri5-split {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	align-items: center;
	gap: 70px;
}

.ri5-split-image {
	position: relative;
	min-height: 520px;
	overflow: hidden;
	border-radius: 28px;
	box-shadow: var(--ri5-shadow);
}

.ri5-split-image img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ri5-split-copy h2 {
	font-size: clamp(34px, 4vw, 52px);
}

.ri5-check-list,
.ri5-service-list,
.ri5-clean-list {
	margin: 24px 0 32px;
	padding: 0;
	list-style: none;
}

.ri5-check-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px 22px;
}

.ri5-check-list li,
.ri5-clean-list li {
	position: relative;
	padding-left: 27px;
	font-size: 15px;
}

.ri5-check-list li::before,
.ri5-clean-list li::before {
	position: absolute;
	left: 0;
	color: var(--ri5-orange);
	content: "✓";
	font-weight: 900;
}

.ri5-page-hero {
	position: relative;
	display: grid;
	min-height: 430px;
	align-items: end;
	background: var(--ri5-navy);
	color: white;
	isolation: isolate;
}

.ri5-page-hero::before {
	position: absolute;
	inset: 0;
	z-index: -2;
	background: var(--ri5-hero-image) center/cover no-repeat;
	content: "";
}

/* Keep the top of the Staff featured image visible, especially for portraits. */
.ri5-page-staff .ri5-page-hero::before {
	background-position: center top;
}

.ri5-page-hero::after {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(90deg, rgba(8, 38, 49, 0.95), rgba(6, 78, 73, 0.78) 55%, rgba(6, 78, 73, 0.24));
	content: "";
}

.ri5-page-hero-inner {
	padding-block: 95px 72px;
}

.ri5-page-hero h1 {
	max-width: 850px;
	margin-bottom: 18px;
	color: white;
	font-size: clamp(44px, 6vw, 72px);
}

.ri5-page-lead {
	max-width: 720px;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 18px;
}

.ri5-intro {
	display: grid;
	grid-template-columns: 0.7fr 1.3fr;
	gap: 70px;
	padding-block: 85px;
}

.ri5-intro h2 {
	font-size: clamp(34px, 4vw, 50px);
}

.ri5-intro-copy {
	color: var(--ri5-muted);
	font-size: 18px;
}

.ri5-quote {
	position: relative;
	padding: 55px 60px;
	overflow: hidden;
	border-radius: 28px;
	background: linear-gradient(135deg, var(--ri5-teal-dark), var(--ri5-teal));
	color: white;
}

.ri5-quote::after {
	position: absolute;
	right: -15px;
	bottom: -85px;
	color: rgba(255, 255, 255, 0.08);
	content: "“";
	font-family: Georgia, serif;
	font-size: 320px;
	line-height: 1;
}

.ri5-quote blockquote {
	position: relative;
	z-index: 1;
	max-width: 900px;
	margin: 0;
	font-size: clamp(26px, 3vw, 40px);
	font-weight: 700;
	line-height: 1.35;
}

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

.ri5-team-card {
	overflow: hidden;
	border: 1px solid var(--ri5-line);
	border-radius: var(--ri5-radius);
	background: white;
	box-shadow: 0 8px 26px rgba(16, 45, 61, 0.05);
	transition: 0.2s ease;
}

.ri5-team-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--ri5-shadow);
}

.ri5-team-photo {
	position: relative;
	display: grid;
	height: 340px;
	place-items: start center;
	overflow: hidden;
	background: linear-gradient(180deg, #edf7f4 0%, #dceee9 100%);
}

.ri5-team-photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center top;
	transform-origin: center top;
	transition: transform 0.3s ease;
}

.ri5-team-card:hover .ri5-team-photo img {
	transform: scale(1.025);
}

.ri5-team-body {
	padding: 23px;
}

.ri5-team-body h2 {
	margin-bottom: 5px;
	font-size: 20px;
}

.ri5-team-role {
	margin-bottom: 13px !important;
	color: var(--ri5-orange-dark);
	font-size: 13.5px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.ri5-team-bio {
	margin-bottom: 0 !important;
	color: var(--ri5-muted);
	font-size: 14.5px;
}

.ri5-service-featured {
	margin-top: -60px;
	position: relative;
	z-index: 3;
}

.ri5-featured-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.ri5-featured-card {
	padding: 28px;
	border: 1px solid var(--ri5-line);
	border-radius: 20px;
	background: white;
	box-shadow: var(--ri5-shadow);
}

.ri5-featured-card span {
	display: block;
	margin-bottom: 14px;
	color: var(--ri5-orange-dark);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.ri5-featured-card h2 {
	font-size: 21px;
}

.ri5-service-catalog {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.ri5-service-block {
	padding: 30px;
	border: 1px solid var(--ri5-line);
	border-radius: var(--ri5-radius);
	background: white;
}

.ri5-service-block h3 {
	display: flex;
	align-items: center;
	gap: 13px;
	font-size: 21px;
}

.ri5-service-block h3 span {
	display: inline-flex;
	width: 34px;
	height: 34px;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: var(--ri5-teal-soft);
	color: var(--ri5-teal);
	font-size: 12px;
}

.ri5-service-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px 22px;
	margin-bottom: 0;
}

.ri5-service-list li {
	position: relative;
	padding-left: 17px;
	color: var(--ri5-muted);
	font-size: 13.5px;
}

.ri5-service-list li::before {
	position: absolute;
	top: 0.72em;
	left: 0;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--ri5-orange);
	content: "";
}

.ri5-detail-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	align-items: start;
	gap: 55px;
	padding-block: 85px;
}

.ri5-detail-content h2 {
	margin-top: 1.55em;
	font-size: 32px;
}

.ri5-detail-content h2:first-child {
	margin-top: 0;
}

.ri5-detail-content h3 {
	margin-top: 1.5em;
	font-size: 23px;
}

.ri5-detail-content p,
.ri5-detail-content li {
	color: #4d646e;
}

.ri5-detail-content ul,
.ri5-detail-content ol {
	padding-left: 22px;
}

.ri5-detail-content li {
	margin-bottom: 8px;
}

.ri5-detail-sidebar {
	position: sticky;
	top: 125px;
	padding: 26px;
	border-radius: 22px;
	background: var(--ri5-bg);
}

.ri5-detail-sidebar h2 {
	font-size: 20px;
}

.ri5-detail-sidebar a:not(.ri5-button) {
	display: block;
	padding: 9px 0;
	border-bottom: 1px solid var(--ri5-line);
	color: var(--ri5-ink);
	font-size: 14px;
	font-weight: 650;
	text-decoration: none;
}

.ri5-detail-sidebar a:not(.ri5-button):hover,
.ri5-detail-sidebar a.is-current {
	color: var(--ri5-teal);
}

.ri5-detail-sidebar .ri5-button {
	width: 100%;
	margin-top: 22px;
}

.ri5-process {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.ri5-process-step {
	padding: 25px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 19px;
	background: rgba(255, 255, 255, 0.06);
}

.ri5-process-step h3 {
	font-size: 18px;
}

.ri5-process-step p {
	margin-bottom: 0;
	font-size: 13.5px;
}

.ri5-news-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 35px;
}

.ri5-news-toolbar .search-form {
	display: flex;
	max-width: 450px;
	flex: 1;
}

.ri5-news-toolbar .search-field {
	width: 100%;
	min-height: 48px;
	padding: 10px 16px;
	border: 1px solid var(--ri5-line);
	border-radius: 999px 0 0 999px;
	font: inherit;
}

.ri5-news-toolbar .search-submit {
	padding: 10px 18px;
	border: 0;
	border-radius: 0 999px 999px 0;
	background: var(--ri5-teal);
	color: white;
	font-weight: 750;
	cursor: pointer;
}

.ri5-news-count {
	margin: 0;
	color: var(--ri5-muted);
	font-size: 14px;
}

.ri5-post-card {
	overflow: hidden;
	border: 1px solid var(--ri5-line);
	border-radius: var(--ri5-radius);
	background: white;
	box-shadow: 0 8px 28px rgba(16, 45, 61, 0.04);
}

.ri5-post-image {
	display: block;
	height: 215px;
	overflow: hidden;
	background: var(--ri5-teal-soft);
}

.ri5-post-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.28s ease;
}

.ri5-post-card:hover .ri5-post-image img {
	transform: scale(1.035);
}

.ri5-post-body {
	padding: 25px;
}

.ri5-post-meta {
	margin-bottom: 10px !important;
	color: var(--ri5-orange-dark);
	font-size: 12.5px;
	font-weight: 800;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.ri5-post-body h2 {
	font-size: 20px;
}

.ri5-post-body h2 a {
	color: var(--ri5-navy);
	text-decoration: none;
}

.ri5-post-body > p:not(.ri5-post-meta) {
	color: var(--ri5-muted);
	font-size: 15px;
}

.navigation.pagination {
	margin-top: 42px;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.page-numbers {
	display: inline-flex;
	min-width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	padding: 0 12px;
	border: 1px solid var(--ri5-line);
	border-radius: 10px;
	background: white;
	color: var(--ri5-ink) !important;
	font-weight: 700;
	text-decoration: none !important;
}

.page-numbers.current,
.page-numbers:hover {
	border-color: var(--ri5-teal);
	background: var(--ri5-teal);
	color: white !important;
}

.ri5-contact-grid {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 42px;
}

.ri5-contact-panel,
.ri5-form-panel {
	padding: 38px;
	border: 1px solid var(--ri5-line);
	border-radius: 26px;
	background: white;
	box-shadow: 0 12px 40px rgba(16, 45, 61, 0.06);
}

.ri5-contact-panel {
	background: var(--ri5-navy);
	color: rgba(255, 255, 255, 0.78);
}

.ri5-contact-panel h2,
.ri5-contact-panel h3 {
	color: white;
}

.ri5-contact-item {
	padding: 20px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.ri5-contact-item:first-of-type {
	border-top: 0;
}

.ri5-contact-item h3 {
	margin-bottom: 5px;
	font-size: 14px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.ri5-contact-item p {
	margin: 0;
	font-size: 14px;
}

.ri5-contact-item a {
	color: #ffd19e;
}

.ri5-contact-primary-whatsapp .ri5-whatsapp-link,
.ri5-contact-pics .ri5-whatsapp-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.ri5-contact-pics {
	display: grid;
	gap: 9px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ri5-contact-pics li {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 3px 6px;
	font-size: 14px;
	line-height: 1.55;
}

.ri5-contact-panel .ri5-whatsapp-icon {
	width: 16px;
	height: 16px;
	flex: 0 0 16px;
	color: #25d366;
}

.ri5-form-panel h2 {
	font-size: 30px;
}

.ri5-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.ri5-field-full {
	grid-column: 1 / -1;
}

.ri5-field label {
	display: block;
	margin-bottom: 6px;
	color: var(--ri5-ink);
	font-size: 13px;
	font-weight: 750;
}

.ri5-field input,
.ri5-field select,
.ri5-field textarea {
	width: 100%;
	min-height: 48px;
	padding: 11px 13px;
	border: 1px solid var(--ri5-line);
	border-radius: 11px;
	background: white;
	color: var(--ri5-ink);
	font: inherit;
	font-size: 14px;
}

.ri5-field textarea {
	min-height: 135px;
	resize: vertical;
}

.ri5-field input:focus,
.ri5-field select:focus,
.ri5-field textarea:focus {
	outline: 3px solid rgba(10, 125, 113, 0.14);
	border-color: var(--ri5-teal);
}

.ri5-field small {
	display: block;
	margin-top: 5px;
	color: var(--ri5-muted);
	font-size: 11px;
}

.ri5-honeypot {
	position: absolute !important;
	left: -9999px !important;
}

.ri5-notice {
	margin-bottom: 22px;
	padding: 14px 17px;
	border-radius: 12px;
	font-size: 14px;
}

.ri5-notice-success {
	background: #dff7e8;
	color: #176039;
}

.ri5-notice-error {
	background: #fff0ed;
	color: #9d3329;
}

.ri5-download-card {
	display: grid;
	grid-template-columns: 1fr 0.85fr;
	align-items: start;
	gap: 60px;
	padding: 55px;
	border: 1px solid var(--ri5-line);
	border-radius: 28px;
	background: white;
	box-shadow: var(--ri5-shadow);
}

.ri5-download-gate {
	margin-top: 32px;
	padding-top: 28px;
	border-top: 1px solid var(--ri5-line);
}

.ri5-download-gate h3 {
	margin-bottom: 8px;
	font-size: 24px;
}

.ri5-download-gate-intro {
	margin-bottom: 22px;
	color: var(--ri5-muted);
	font-size: 14px;
}

body.ri5-download-modal-open {
	overflow: hidden;
}

.ri5-download-modal[hidden] {
	display: none !important;
}

.ri5-download-modal {
	position: fixed;
	z-index: 5000;
	inset: 0;
	display: grid;
	place-items: center;
	padding: 24px;
	overflow-y: auto;
	background: rgba(7, 31, 43, 0.76);
	backdrop-filter: blur(7px);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.18s ease, visibility 0.18s ease;
}

.ri5-download-modal.is-open {
	opacity: 1;
	visibility: visible;
}

.ri5-download-modal-panel {
	position: relative;
	width: min(100%, 720px);
	max-height: min(90vh, 820px);
	padding: 40px;
	overflow-y: auto;
	border: 1px solid rgba(215, 228, 225, 0.9);
	border-radius: 24px;
	background: white;
	box-shadow: 0 30px 90px rgba(7, 31, 43, 0.32);
	transform: translateY(18px) scale(0.985);
	transition: transform 0.18s ease;
}

.ri5-download-modal.is-open .ri5-download-modal-panel {
	transform: none;
}

.ri5-download-modal-panel h2 {
	margin: 0 45px 10px 0;
	font-size: clamp(28px, 4vw, 38px);
}

.ri5-download-modal-intro {
	margin-bottom: 24px;
	color: var(--ri5-muted);
	font-size: 15px;
}

.ri5-download-modal-close {
	position: absolute;
	top: 18px;
	right: 18px;
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	padding: 0;
	border: 1px solid var(--ri5-line);
	border-radius: 50%;
	background: var(--ri5-bg);
	color: var(--ri5-navy);
	cursor: pointer;
	font: inherit;
	font-size: 27px;
	line-height: 1;
}

.ri5-download-modal-close:hover,
.ri5-download-modal-close:focus-visible {
	border-color: var(--ri5-teal);
	background: var(--ri5-teal-soft);
	outline: none;
}

.ri5-download-form .ri5-form-grid {
	gap: 16px;
}

.ri5-download-form .ri5-field input {
	min-height: 50px;
}

.ri5-download-form .ri5-button {
	width: 100%;
}

.ri5-download-privacy {
	margin: 13px 0 0;
	color: var(--ri5-muted);
	font-size: 11.5px;
	line-height: 1.55;
}

.ri5-document-preview {
	position: relative;
	display: grid;
	min-height: 390px;
	margin-top: 10px;
	place-items: center;
	overflow: hidden;
	border-radius: 23px;
	background: linear-gradient(145deg, var(--ri5-teal-dark), var(--ri5-teal));
	color: white;
}

.ri5-document-preview::before,
.ri5-document-preview::after {
	position: absolute;
	width: 220px;
	height: 220px;
	border: 38px solid rgba(255, 255, 255, 0.07);
	border-radius: 50%;
	content: "";
}

.ri5-document-preview::before {
	top: -100px;
	right: -80px;
}

.ri5-document-preview::after {
	bottom: -120px;
	left: -90px;
}

.ri5-document-sheet {
	position: relative;
	z-index: 1;
	width: 205px;
	padding: 28px;
	border-radius: 8px;
	background: white;
	box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
	color: var(--ri5-navy);
	transform: rotate(-4deg);
}

.ri5-document-sheet img {
	display: block;
	width: 150px;
	margin: 0 auto 30px;
}

.ri5-document-sheet strong {
	display: block;
	font-size: 21px;
	line-height: 1.2;
}

.ri5-document-sheet span {
	color: var(--ri5-orange-dark);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.ri5-editor-section {
	padding-block: 72px 92px;
	background: #ffffff;
}

.ri5-editor-section-append {
	border-top: 1px solid var(--ri5-line);
	background: linear-gradient(180deg, #f7faf9 0%, #ffffff 100%);
}

.ri5-editor-content {
	max-width: 920px;
	padding: clamp(26px, 5vw, 52px);
	border: 1px solid #dce8e5;
	border-radius: 22px;
	background: #ffffff;
	box-shadow: 0 18px 55px rgba(16, 45, 61, 0.08);
}

.ri5-editor-content > :first-child {
	margin-top: 0;
}

.ri5-editor-content > :last-child {
	margin-bottom: 0;
}

.ri5-editor-content img {
	height: auto;
	border-radius: 12px;
}

.ri5-article-wrap,
.ri5-generic-page {
	width: min(calc(100% - 48px), 880px);
	margin-inline: auto;
	padding-block: 75px 95px;
}

.ri5-article-header {
	margin-bottom: 36px;
}

.ri5-article-back {
	display: inline-flex;
	margin-bottom: 26px;
	color: var(--ri5-teal) !important;
	font-size: 13px;
	font-weight: 800;
	text-decoration: none !important;
}

.ri5-article-back:hover {
	color: var(--ri5-orange-dark) !important;
}

.ri5-breadcrumb {
	display: flex;
	align-items: center;
	gap: 9px;
	min-width: 0;
	margin-bottom: 26px;
	color: #6a7c83;
	font-size: 13px;
}

.ri5-breadcrumb a {
	flex: 0 0 auto;
	color: var(--ri5-teal) !important;
	font-weight: 750;
	text-decoration: none !important;
}

.ri5-breadcrumb [aria-current="page"] {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ri5-article-header .ri5-eyebrow a {
	color: inherit !important;
	text-decoration: none !important;
}

.ri5-article-header h1 {
	font-size: clamp(38px, 5vw, 60px);
}

.ri5-article-meta {
	color: var(--ri5-muted);
	font-size: 13px;
}

.ri5-article-image {
	margin: 0 0 38px;
	overflow: hidden;
	border-radius: 10px;
	background: #f3f6f5;
	box-shadow: 0 12px 34px rgba(16, 45, 61, 0.1);
}

.ri5-article-image img {
	display: block;
	width: 100%;
	height: auto;
	max-height: none;
	object-fit: contain;
}

.ri5-entry-content {
	font-size: 17px;
}

.ri5-entry-content h2 {
	margin-top: 1.6em;
	font-size: 32px;
}

.ri5-entry-content h3 {
	margin-top: 1.5em;
	font-size: 24px;
}

.ri5-entry-content blockquote {
	margin: 32px 0;
	padding: 24px 30px;
	border-left: 5px solid var(--ri5-orange);
	border-radius: 0 14px 14px 0;
	background: var(--ri5-bg);
	font-size: 19px;
}

.ri5-entry-content table {
	display: block;
	max-width: 100%;
	overflow-x: auto;
	border-collapse: collapse;
}

.ri5-article-footer {
	margin-top: 50px;
	padding-top: 30px;
	border-top: 1px solid var(--ri5-line);
}

.ri5-related-news {
	margin-top: 68px;
	padding: 38px;
	border: 1px solid #dbe7e4;
	border-radius: 24px;
	background: linear-gradient(145deg, #f4f9f7 0%, #eef6f4 100%);
}

.ri5-related-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 24px;
}

.ri5-related-head h2 {
	margin: 4px 0 0;
	font-size: clamp(28px, 4vw, 38px);
}

.ri5-related-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.ri5-related-card {
	overflow: hidden;
	border: 1px solid #dce8e5;
	border-radius: 16px;
	background: #ffffff;
	box-shadow: 0 10px 26px rgba(16, 45, 61, 0.08);
}

.ri5-related-image {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #dfe9e7;
}

.ri5-related-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.ri5-related-card:hover .ri5-related-image img {
	transform: scale(1.04);
}

.ri5-related-body {
	padding: 20px;
}

.ri5-related-meta {
	margin: 0 0 10px;
	color: var(--ri5-orange-dark) !important;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.ri5-related-body h3 {
	margin: 0 0 10px;
	font-size: 19px;
	line-height: 1.25;
}

.ri5-related-body h3 a {
	color: #102d3d !important;
	text-decoration: none !important;
}

.ri5-related-body > p:not(.ri5-related-meta) {
	margin-bottom: 16px;
	color: #506870 !important;
	font-size: 14px;
}

.ri5-entry-content th,
.ri5-entry-content td {
	padding: 10px 12px;
	border: 1px solid var(--ri5-line);
}

.ri5-empty {
	padding-block: 100px;
	text-align: center;
}

.ri5-empty h1 {
	font-size: clamp(48px, 10vw, 100px);
}

.ri5-footer-cta {
	background: var(--ri5-teal);
	color: white;
}

.ri5-footer-cta-inner {
	display: flex;
	min-height: 230px;
	align-items: center;
	justify-content: space-between;
	gap: 50px;
}

.ri5-footer-cta h2 {
	max-width: 780px;
	margin-bottom: 0;
	color: white;
	font-size: clamp(30px, 4vw, 46px);
}

.ri5-button-light {
	flex: 0 0 auto;
	background: white;
	box-shadow: none;
	color: var(--ri5-teal-dark) !important;
}

.ri5-footer {
	background: #0b2533;
	color: rgba(255, 255, 255, 0.68);
}

.ri5-footer-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.8fr 1.1fr;
	gap: 70px;
	padding-block: 70px 52px;
}

.ri5-footer h2 {
	margin-bottom: 20px;
	color: white;
	font-size: 16px;
	letter-spacing: 0.03em;
}

.ri5-footer-brand .ri5-brand,
.ri5-footer-brand .custom-logo-link {
	display: inline-block;
	margin-bottom: 23px;
	padding: 10px 14px;
	border-radius: 12px;
	background: white;
}

.ri5-footer-brand .ri5-brand img,
.ri5-footer-brand .custom-logo {
	height: 48px;
}

.ri5-footer-brand p {
	max-width: 370px;
	font-size: 14px;
}

.ri5-footer-menu {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px 18px;
}

.ri5-footer-menu a,
.ri5-footer-contact a,
.ri5-footer-bottom a {
	color: rgba(255, 255, 255, 0.74);
	font-size: 13.5px;
	text-decoration: none;
}

.ri5-footer-menu a:hover,
.ri5-footer-contact a:hover,
.ri5-footer-bottom a:hover {
	color: #ffbc73;
}

.ri5-footer-contact p {
	font-size: 13.5px;
}

.ri5-footer-contact strong {
	color: white;
}

.ri5-footer-primary-contact,
.ri5-footer-pics {
	margin-bottom: 18px;
	font-size: 13.5px;
}

.ri5-footer-primary-contact > strong,
.ri5-footer-pics > strong {
	display: block;
	margin-bottom: 5px;
}

.ri5-footer-primary-contact .ri5-whatsapp-link {
	display: inline-flex;
}

.ri5-footer-email {
	margin-bottom: 18px !important;
}

.ri5-footer-pics ul {
	display: grid;
	gap: 5px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ri5-footer-pics li {
	font-size: 13.5px;
}

.ri5-footer-pics a {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.ri5-footer-pics .ri5-whatsapp-icon {
	width: 14px;
	height: 14px;
	flex-basis: 14px;
}

.ri5-footer-bottom {
	display: flex;
	min-height: 70px;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ri5-footer-bottom p {
	margin: 0;
	font-size: 12px;
}

@media (max-width: 1080px) {
	.ri5-header {
		-webkit-backdrop-filter: none;
		backdrop-filter: none;
	}

	.ri5-topbar-inner > p {
		display: none;
	}

	.ri5-topbar-inner {
		justify-content: center;
	}

	.ri5-header-inner {
		min-height: 78px;
	}

	.ri5-brand img,
	.custom-logo {
		height: 54px;
	}

	.ri5-menu-toggle {
		position: relative;
		z-index: 1002;
		display: grid;
	}

	.ri5-navigation {
		position: fixed;
		top: var(--ri5-mobile-nav-top, 115px);
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 1001;
		padding: 18px 24px 50px;
		overflow-y: auto;
		overscroll-behavior: contain;
		background: white;
		opacity: 0;
		visibility: hidden;
		transform: translateY(-12px);
		transition: 0.2s ease;
	}

	.admin-bar .ri5-navigation {
		top: var(--ri5-mobile-nav-top, 147px);
	}

	.ri5-navigation.is-open {
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.ri5-menu {
		display: block;
		max-width: 760px;
		margin: 0 auto;
	}

	.ri5-menu > li {
		border-bottom: 1px solid var(--ri5-line);
	}

	.ri5-menu > li > a {
		min-height: 58px;
		padding-inline: 8px 46px;
		font-size: 16px;
	}

	.ri5-menu > li.current-menu-item > a::after,
	.ri5-menu > li.current-menu-ancestor > a::after {
		display: none;
	}

	.ri5-submenu-toggle {
		display: flex;
	}

	.ri5-menu .sub-menu {
		position: static;
		display: none;
		min-width: 0;
		padding: 0 0 12px 16px;
		border: 0;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.ri5-menu .is-submenu-open > .sub-menu {
		display: block;
	}

	.ri5-menu .sub-menu a {
		font-size: 14px;
	}

	.ri5-home-hero-content {
		grid-template-columns: 1fr;
	}

	.ri5-hero-proof {
		display: none;
	}

	.ri5-value-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.ri5-team-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 782px) {
	.admin-bar .ri5-header {
		top: 46px;
	}

	.admin-bar .ri5-navigation {
		top: var(--ri5-mobile-nav-top, 161px);
	}

	.ri5-topbar-inner {
		justify-content: center;
	}

	.ri5-topbar-inner > p {
		display: none;
	}

	.ri5-topbar-links {
		flex-wrap: wrap;
		justify-content: center;
		min-height: 37px;
		padding-block: 5px;
	}

	.ri5-section {
		padding-block: 72px;
	}

	.ri5-home-hero {
		min-height: 580px;
	}

	.ri5-home-hero-content {
		padding-block: 75px 90px;
	}

	.ri5-metrics-grid {
		grid-template-columns: 1fr 1fr;
	}

	.ri5-metric:nth-child(3) {
		border-left: 0;
	}

	.ri5-metric:nth-child(n+3) {
		border-top: 1px solid var(--ri5-line);
	}

	.ri5-section-head,
	.ri5-split,
	.ri5-intro,
	.ri5-detail-layout,
	.ri5-contact-grid,
	.ri5-download-card {
		grid-template-columns: 1fr;
	}

	.ri5-section-head,
	.ri5-intro,
	.ri5-split {
		gap: 32px;
	}

	.ri5-card-grid,
	.ri5-news-grid,
	.ri5-detail-grid,
	.ri5-benefit-grid,
	.ri5-featured-grid {
		grid-template-columns: 1fr 1fr;
	}

	.ri5-team-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.ri5-service-catalog {
		grid-template-columns: 1fr;
	}

	.ri5-process {
		grid-template-columns: 1fr 1fr;
	}

	.ri5-detail-sidebar {
		position: static;
	}

	.ri5-footer-cta-inner {
		align-items: flex-start;
		flex-direction: column;
		justify-content: center;
		padding-block: 55px;
	}

	.ri5-footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 45px;
	}

	.ri5-footer-brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 560px) {
	.ri5-shell,
	.ri5-article-wrap,
	.ri5-generic-page {
		width: min(calc(100% - 30px), var(--ri5-shell));
	}

	.ri5-topbar-links {
		align-items: center;
		flex-direction: column;
		gap: 1px;
		padding-block: 7px;
		font-size: 12.5px;
	}

	.ri5-topbar-divider {
		display: none;
	}

	.ri5-topbar-contact {
		justify-content: center;
	}

	.ri5-download-modal {
		align-items: start;
		padding: 12px;
	}

	.ri5-download-modal-panel {
		max-height: calc(100vh - 24px);
		padding: 30px 20px 24px;
		border-radius: 18px;
	}

	.ri5-download-modal-panel h2 {
		margin-right: 38px;
		font-size: 28px;
	}

	.ri5-download-modal-close {
		top: 13px;
		right: 13px;
		width: 38px;
		height: 38px;
	}

	.ri5-header-inner {
		min-height: 72px;
	}

	.ri5-brand img,
	.custom-logo {
		max-width: 165px;
		height: 47px;
	}

	.ri5-navigation {
		top: var(--ri5-mobile-nav-top, 128px);
		padding-inline: 15px;
	}

	.admin-bar .ri5-navigation {
		top: var(--ri5-mobile-nav-top, 174px);
	}

	.ri5-home-hero-copy h1 {
		font-size: 42px;
	}

	.ri5-home-hero-copy > p:not(.ri5-eyebrow),
	.ri5-page-lead {
		font-size: 17px;
	}

	.ri5-hero-actions,
	.ri5-section-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.ri5-button {
		width: 100%;
	}

	.ri5-metrics {
		margin-top: -28px;
	}

	.ri5-metric {
		padding: 20px;
	}

	.ri5-metric strong {
		font-size: 24px;
	}

	.ri5-metric:nth-child(3) strong {
		font-size: 18px;
		white-space: normal;
	}

	.ri5-card-grid,
	.ri5-news-grid,
	.ri5-team-grid,
	.ri5-detail-grid,
	.ri5-benefit-grid,
	.ri5-featured-grid,
	.ri5-value-grid,
	.ri5-process,
	.ri5-form-grid {
		grid-template-columns: 1fr;
	}

	.ri5-service-list,
	.ri5-check-list {
		grid-template-columns: 1fr;
	}

	.ri5-page-hero {
		min-height: 390px;
	}

	.ri5-page-hero-inner {
		padding-block: 76px 55px;
	}

	.ri5-page-hero h1 {
		font-size: 42px;
	}

	.ri5-card,
	.ri5-value-card,
	.ri5-service-block,
	.ri5-contact-panel,
	.ri5-form-panel,
	.ri5-download-card,
	.ri5-quote {
		padding: 24px;
	}

	.ri5-split-image {
		min-height: 390px;
	}

	.ri5-team-photo {
		height: 400px;
	}

	.ri5-news-toolbar {
		align-items: stretch;
		flex-direction: column;
	}

	.ri5-document-preview {
		min-height: 330px;
	}

	.ri5-footer-grid {
		grid-template-columns: 1fr;
		gap: 35px;
	}

	.ri5-footer-brand {
		grid-column: auto;
	}

	.ri5-footer-bottom {
		align-items: flex-start;
		flex-direction: column;
		justify-content: center;
		padding-block: 20px;
	}
}

@media (max-width: 820px) {
	.ri5-related-news {
		padding: 26px;
	}

	.ri5-related-head {
		align-items: flex-start;
		flex-direction: column;
	}

	.ri5-related-grid {
		grid-template-columns: 1fr;
	}
}

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

/*
 * Final readability guards. These rules intentionally load after legacy
 * builder styles and use stronger specificity so Avada/Fusion cannot turn
 * Contact or service-page text white on a white background.
 */
body.ri5-theme .ri5-contact-panel {
	background: #102d3d !important;
	color: #e8f1f0 !important;
}

body.ri5-theme .ri5-contact-panel h1,
body.ri5-theme .ri5-contact-panel h2,
body.ri5-theme .ri5-contact-panel h3,
body.ri5-theme .ri5-contact-panel strong {
	color: #ffffff !important;
}

body.ri5-theme .ri5-contact-panel p,
body.ri5-theme .ri5-contact-panel li,
body.ri5-theme .ri5-contact-panel address {
	color: #e8f1f0 !important;
}

body.ri5-theme .ri5-contact-panel a {
	color: #ffd19e !important;
}

body.ri5-theme .ri5-form-panel,
body.ri5-theme .ri5-form-panel form,
body.ri5-theme .ri5-form-panel .ri5-field {
	background: #ffffff !important;
}

body.ri5-theme .ri5-form-panel h1,
body.ri5-theme .ri5-form-panel h2,
body.ri5-theme .ri5-form-panel h3,
body.ri5-theme .ri5-form-panel label {
	color: #18343f !important;
}

body.ri5-theme .ri5-form-panel p,
body.ri5-theme .ri5-form-panel small {
	color: #60737c !important;
}

body.ri5-theme .ri5-form-panel input,
body.ri5-theme .ri5-form-panel select,
body.ri5-theme .ri5-form-panel textarea {
	border-color: #c9d9d5 !important;
	background: #ffffff !important;
	color: #18343f !important;
}

body.ri5-theme .ri5-form-panel input::placeholder,
body.ri5-theme .ri5-form-panel textarea::placeholder {
	color: #72858c !important;
}

body.ri5-theme .ri5-detail-content,
body.ri5-theme .ri5-entry-content,
body.ri5-theme .ri5-generic-page {
	background: #ffffff;
	color: #344e58 !important;
}

body.ri5-theme .ri5-detail-content p,
body.ri5-theme .ri5-detail-content li,
body.ri5-theme .ri5-entry-content p,
body.ri5-theme .ri5-entry-content li,
body.ri5-theme .ri5-generic-page p,
body.ri5-theme .ri5-generic-page li {
	color: #415d67 !important;
}

body.ri5-theme .ri5-detail-content h1,
body.ri5-theme .ri5-detail-content h2,
body.ri5-theme .ri5-detail-content h3,
body.ri5-theme .ri5-entry-content h1,
body.ri5-theme .ri5-entry-content h2,
body.ri5-theme .ri5-entry-content h3,
body.ri5-theme .ri5-generic-page h1,
body.ri5-theme .ri5-generic-page h2,
body.ri5-theme .ri5-generic-page h3 {
	color: #102d3d !important;
}

/* Our Client: ordered logo wall with an admin-managed collection override. */
.ri5-clients-section {
	background: #ffffff;
}

.ri5-clients-section .ri5-shell {
	width: min(calc(100% - 48px), 1500px);
}

.ri5-clients-head {
	max-width: 800px;
	margin: 0 auto 44px;
	text-align: center;
}

.ri5-clients-head p:last-child {
	max-width: 680px;
	margin: 16px auto 0;
	color: var(--ri5-muted);
	font-size: 17px;
}

.ri5-client-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
	gap: 18px;
}

.ri5-client-card {
	display: grid;
	min-width: 0;
	margin: 0;
	padding: 8px;
	place-items: center;
	overflow: hidden;
	border: 1px solid #dce8e5;
	border-radius: 14px;
	background: #ffffff;
	box-shadow: 0 7px 22px rgba(16, 45, 61, 0.05);
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.ri5-client-card:hover {
	border-color: rgba(7, 136, 122, 0.32);
	box-shadow: 0 12px 28px rgba(16, 45, 61, 0.1);
	transform: translateY(-3px);
}

.ri5-client-logo {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 5 / 3;
	object-fit: contain;
	filter: saturate(1.03) contrast(1.04);
}

.ri5-client-card-custom {
	aspect-ratio: 1.67 / 1;
	background: #ffffff;
}

.ri5-client-card-custom img {
	display: block;
	width: 100%;
	height: 100%;
	max-height: 105px;
	object-fit: contain;
}

.ri5-clients-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 36px;
}

.ri5-clients-cta h2 {
	max-width: 720px;
	margin: 0;
	color: #ffffff;
	font-size: clamp(32px, 4vw, 50px);
}

.ri5-visually-hidden {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

@media (max-width: 1080px) {
	.ri5-client-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 782px) {
	.ri5-client-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.ri5-clients-cta {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 560px) {
	.ri5-clients-head {
		margin-bottom: 32px;
	}

	.ri5-client-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.ri5-clients-section .ri5-shell {
		width: min(calc(100% - 30px), 1500px);
	}

	.ri5-client-card {
		padding: 7px;
		border-radius: 11px;
	}
}
