:root {
	--rf-white: #ffffff;
	--rf-ink: #0c1729;
	--rf-navy: #071a33;
	--rf-blue: #1267d8;
	--rf-blue-dark: #0d4fa8;
	--rf-sky: #e8f2ff;
	--rf-pale: #f5f8fc;
	--rf-line: #d9e2ef;
	--rf-muted: #5c6c80;
	--rf-green: #0f8b6f;
	--rf-shadow: 0 24px 70px rgba(7, 26, 51, 0.14);
	--rf-soft-shadow: 0 16px 42px rgba(7, 26, 51, 0.09);
	--rf-radius: 8px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--rf-white);
	color: var(--rf-ink);
	font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
	font-size: 16px;
	line-height: 1.8;
	letter-spacing: 0;
	overflow-x: hidden;
}

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

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

a:hover {
	color: var(--rf-blue);
}

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

:focus-visible {
	outline: 3px solid rgba(18, 103, 216, 0.45);
	outline-offset: 4px;
}

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

.rf-nowrap {
	white-space: nowrap;
}

.rf-skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 1000;
	padding: 10px 16px;
	background: var(--rf-white);
	color: var(--rf-navy);
	border: 2px solid var(--rf-blue);
	border-radius: var(--rf-radius);
	transform: translateY(-160%);
	transition: transform 0.18s ease;
}

.rf-skip-link:focus {
	transform: translateY(0);
}

.rf-container {
	width: min(100% - 48px, 1240px);
	margin-inline: auto;
}

.rf-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.94);
	border-bottom: 1px solid rgba(217, 226, 239, 0.78);
	backdrop-filter: blur(16px);
}

.rf-header.is-scrolled {
	box-shadow: 0 12px 34px rgba(7, 26, 51, 0.08);
}

.rf-header__inner {
	display: flex;
	align-items: center;
	gap: 28px;
	width: min(100% - 48px, 1240px);
	min-height: 78px;
	margin-inline: auto;
}

.rf-header__logo {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
}

.rf-header__logo img {
	width: 132px;
}

.rf-nav {
	margin-left: auto;
}

.rf-nav__list,
.rf-mobile-panel__list {
	display: flex;
	padding: 0;
	margin: 0;
	list-style: none;
}

.rf-nav__list {
	align-items: center;
	gap: 24px;
	font-size: 0.9rem;
	font-weight: 700;
	color: #263852;
}

.rf-header__cta,
.rf-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 22px;
	color: var(--rf-white);
	font-weight: 800;
	line-height: 1.35;
	background: var(--rf-blue);
	border: 1px solid var(--rf-blue);
	border-radius: var(--rf-radius);
	box-shadow: 0 12px 26px rgba(18, 103, 216, 0.22);
	transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.rf-header__cta:hover,
.rf-button:hover {
	color: var(--rf-white);
	background: var(--rf-blue-dark);
	transform: translateY(-1px);
	box-shadow: 0 16px 32px rgba(18, 103, 216, 0.26);
}

.rf-button--secondary {
	color: var(--rf-blue);
	background: var(--rf-white);
	border-color: var(--rf-line);
	box-shadow: none;
}

.rf-button--secondary:hover {
	color: var(--rf-blue);
	background: var(--rf-sky);
	box-shadow: none;
}

.rf-button--wide {
	width: 100%;
}

.rf-menu-button {
	display: none;
	width: 46px;
	height: 46px;
	margin-left: auto;
	background: var(--rf-white);
	border: 1px solid var(--rf-line);
	border-radius: var(--rf-radius);
}

.rf-menu-button__line,
.rf-menu-button__line::before,
.rf-menu-button__line::after {
	display: block;
	width: 20px;
	height: 2px;
	margin-inline: auto;
	background: var(--rf-navy);
	content: "";
	transition: transform 0.18s ease, opacity 0.18s ease;
}

.rf-menu-button__line::before {
	transform: translateY(-7px);
}

.rf-menu-button__line::after {
	transform: translateY(5px);
}

.rf-menu-button[aria-expanded="true"] .rf-menu-button__line {
	background: transparent;
}

.rf-menu-button[aria-expanded="true"] .rf-menu-button__line::before {
	transform: rotate(45deg);
}

.rf-menu-button[aria-expanded="true"] .rf-menu-button__line::after {
	transform: translateY(-2px) rotate(-45deg);
}

.rf-mobile-panel {
	position: absolute;
	right: 24px;
	left: 24px;
	top: calc(100% + 8px);
	padding: 22px;
	background: var(--rf-white);
	border: 1px solid var(--rf-line);
	border-radius: var(--rf-radius);
	box-shadow: var(--rf-shadow);
}

.rf-mobile-panel__list {
	display: grid;
	gap: 6px;
	margin-bottom: 18px;
}

.rf-mobile-panel__list a {
	display: block;
	padding: 12px 6px;
	font-weight: 800;
}

.rf-hero {
	padding: 78px 0 84px;
	background:
		linear-gradient(135deg, rgba(232, 242, 255, 0.95) 0%, rgba(255, 255, 255, 0.96) 48%, rgba(245, 248, 252, 1) 100%);
}

.rf-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(400px, 0.82fr);
	align-items: center;
	gap: 58px;
}

.rf-kicker {
	margin: 0 0 14px;
	color: var(--rf-blue);
	font-size: 0.82rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.rf-hero h1,
.rf-section h2,
.rf-final-cta h2,
.rf-page h1 {
	margin: 0;
	color: var(--rf-navy);
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: 0;
	text-wrap: balance;
}

.rf-hero h1 {
	max-width: 820px;
	font-size: clamp(2.45rem, 4.35vw, 4rem);
	line-height: 1.24;
}

.rf-hero__lead {
	max-width: 690px;
	margin: 28px 0 0;
	color: #243753;
	font-size: 1.12rem;
	line-height: 2;
}

.rf-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.rf-hero__visual {
	position: relative;
}

.rf-hero-form {
	padding: 30px;
	background: var(--rf-white);
	border: 1px solid var(--rf-line);
	border-radius: 8px;
	box-shadow: var(--rf-shadow);
}

.rf-hero-form h2 {
	margin: 0;
	color: var(--rf-navy);
	font-size: clamp(1.45rem, 2vw, 2rem);
	line-height: 1.35;
}

.rf-hero-form > p:not(.rf-kicker) {
	margin: 10px 0 0;
	color: var(--rf-muted);
	font-size: 0.96rem;
	line-height: 1.75;
}

.rf-hero-form__body {
	margin-top: 18px;
}

.rf-hero-form .wpcf7-form {
	display: grid;
	gap: 12px;
}

@media (min-width: 900px) {
	.rf-hero-form .wpcf7-form {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.rf-hero-form .wpcf7-form > p:has(textarea),
	.rf-hero-form .wpcf7-form > p:has(input[type="checkbox"]),
	.rf-hero-form .wpcf7-form > p:has(input[type="submit"]),
	.rf-hero-form .wpcf7-form > p:has(button[type="submit"]) {
		grid-column: 1 / -1;
	}
}

.rf-hero-form .wpcf7-form p {
	margin: 0;
}

.rf-hero-form label,
.rf-hero-form .wpcf7-form-control-wrap {
	display: block;
}

.rf-hero-form label {
	color: var(--rf-navy);
	font-size: 0.88rem;
	font-weight: 900;
	line-height: 1.5;
}

.rf-hero-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
.rf-hero-form textarea,
.rf-hero-form select {
	width: 100%;
	min-height: 42px;
	padding: 10px 12px;
	margin-top: 6px;
	color: var(--rf-ink);
	background: var(--rf-white);
	border: 1px solid var(--rf-line);
	border-radius: 6px;
}

.rf-hero-form textarea {
	min-height: 150px;
	resize: vertical;
}

.rf-hero-form .rf-required-mark {
	margin-left: 0.2em;
	color: #d92d20;
	font-weight: 700;
}

.rf-hero-form .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;
}

.rf-hero-form .wpcf7-acceptance,
.rf-hero-form .wpcf7-list-item,
.rf-hero-form .wpcf7-list-item label {
	display: block;
	margin: 0;
}

.rf-hero-form .wpcf7-list-item label {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 8px;
	min-height: 28px;
	color: var(--rf-navy);
	text-align: left;
	cursor: pointer;
}

.rf-hero-form input[type="checkbox"] {
	flex: 0 0 17px;
	width: 17px;
	height: 17px;
	min-width: 17px;
	margin: 0.2em 0 0;
	accent-color: var(--rf-blue);
}

.rf-hero-form input[type="checkbox"]:focus-visible {
	outline: 3px solid rgba(18, 103, 216, 0.24);
	outline-offset: 2px;
}

.rf-hero-form input[type="submit"],
.rf-hero-form button[type="submit"] {
	width: 100%;
	min-height: 48px;
	padding: 12px 18px;
	color: var(--rf-white);
	font-weight: 900;
	background: var(--rf-blue);
	border: 0;
	border-radius: 6px;
	cursor: pointer;
}

.rf-hero-form input[type="submit"]:hover,
.rf-hero-form input[type="submit"]:focus-visible,
.rf-hero-form button[type="submit"]:hover,
.rf-hero-form button[type="submit"]:focus-visible {
	background: #0e56b6;
	outline: 3px solid rgba(18, 103, 216, 0.24);
	outline-offset: 2px;
}

.rf-form-notice {
	margin: 0;
	padding: 14px 16px;
	color: var(--rf-navy);
	font-weight: 900;
	background: var(--rf-sky);
	border-radius: 8px;
}

.rf-dashboard {
	position: absolute;
	inset: 0 0 auto;
	padding: 28px;
	background: var(--rf-white);
	border: 1px solid var(--rf-line);
	border-radius: 8px;
	box-shadow: var(--rf-shadow);
}

.rf-dashboard::before {
	position: absolute;
	right: -16px;
	bottom: -30px;
	width: 70%;
	height: 150px;
	background: var(--rf-navy);
	border-radius: 8px;
	content: "";
	z-index: -1;
}

.rf-dashboard__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.rf-dashboard__head {
	padding-bottom: 18px;
	border-bottom: 1px solid var(--rf-line);
	font-weight: 900;
}

.rf-dashboard__head strong {
	color: var(--rf-green);
}

.rf-dashboard__flow {
	position: relative;
	display: grid;
	gap: 12px;
	padding: 20px 0 0;
	margin: 0;
	list-style: none;
}

.rf-dashboard__flow::before {
	position: absolute;
	top: 34px;
	bottom: 20px;
	left: 20px;
	width: 2px;
	background: linear-gradient(180deg, var(--rf-blue), var(--rf-green));
	content: "";
}

.rf-dashboard__flow li {
	position: relative;
	display: grid;
	grid-template-columns: 42px 1fr;
	align-items: center;
	gap: 12px;
	min-height: 46px;
	padding: 8px 12px 8px 0;
}

.rf-dashboard__flow li::after {
	position: absolute;
	bottom: -9px;
	left: 16px;
	width: 10px;
	height: 10px;
	border-right: 2px solid var(--rf-green);
	border-bottom: 2px solid var(--rf-green);
	content: "";
	transform: rotate(45deg);
}

.rf-dashboard__flow li:last-child::after {
	display: none;
}

.rf-dashboard__flow span {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	color: var(--rf-white);
	font-size: 0.78rem;
	font-weight: 900;
	background: var(--rf-navy);
	border-radius: 50%;
}

.rf-dashboard__flow strong {
	display: block;
	font-size: 1rem;
}

.rf-dashboard__loop {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-top: 18px;
	padding: 16px 18px;
	background: var(--rf-pale);
	border: 1px solid var(--rf-line);
	border-radius: 8px;
}

.rf-dashboard__loop strong {
	color: var(--rf-green);
}

.rf-dashboard__kpis {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 14px;
}

.rf-dashboard__kpis span {
	padding: 8px 10px;
	color: var(--rf-blue);
	font-size: 0.85rem;
	font-weight: 900;
	background: var(--rf-sky);
	border-radius: 999px;
}

.rf-section {
	padding: 86px 0;
}

.rf-section--white {
	background: var(--rf-white);
}

.rf-section--pale {
	background: var(--rf-pale);
}

.rf-section--navy {
	color: var(--rf-white);
	background: var(--rf-navy);
}

.rf-section--blue {
	color: var(--rf-white);
	background: var(--rf-blue);
}

.rf-section--reasons {
	color: var(--rf-white);
	background:
		linear-gradient(135deg, rgba(7, 26, 51, 0.98), rgba(10, 38, 73, 0.98));
}

.rf-section--paper {
	background: linear-gradient(135deg, var(--rf-sky), var(--rf-white));
}

.rf-section__split,
.rf-cycle-layout,
.rf-message {
	display: grid;
	grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
	align-items: center;
	gap: 62px;
}

.rf-section__split p,
.rf-cycle-layout p,
.rf-message p,
.rf-paper p {
	margin: 22px 0 0;
	color: var(--rf-muted);
	font-size: 1.04rem;
}

.rf-section--navy p,
.rf-section--blue p,
.rf-section--reasons p,
.rf-section__head--light h2 {
	color: var(--rf-white);
}

.rf-section h2,
.rf-final-cta h2,
.rf-page h1 {
	font-size: clamp(1.95rem, 2.55vw, 3rem);
	line-height: 1.26;
}

.rf-section__head p:not(.rf-kicker) {
	margin: 18px 0 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 1.05rem;
}

.rf-problem-points {
	display: grid;
	gap: 10px;
	padding: 0;
	margin: 26px 0 0;
	list-style: none;
}

.rf-problem-points li {
	position: relative;
	padding-left: 30px;
	color: var(--rf-navy);
	font-weight: 900;
}

.rf-problem-points li::before {
	position: absolute;
	top: 0.76em;
	left: 0;
	width: 14px;
	height: 2px;
	background: var(--rf-blue);
	content: "";
}

.rf-process-map {
	position: relative;
	padding: 38px 34px 30px;
	background: var(--rf-white);
	border: 1px solid var(--rf-line);
	border-radius: 8px;
	box-shadow: var(--rf-soft-shadow);
}

.rf-process-map::before {
	position: absolute;
	top: 82px;
	right: 66px;
	left: 66px;
	height: 3px;
	background: linear-gradient(90deg, var(--rf-blue), var(--rf-green));
	content: "";
}

.rf-process-map ol {
	position: relative;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 0;
	padding: 0;
	margin: 0;
	list-style: none;
}

.rf-process-map li {
	position: relative;
	display: grid;
	align-content: center;
	justify-items: center;
	min-height: 130px;
	padding: 18px 8px;
	text-align: center;
	background: transparent;
	border: 0;
}

.rf-process-map li span {
	display: inline-grid;
	place-items: center;
	width: 48px;
	height: 48px;
	color: var(--rf-blue);
	font-size: 0.78rem;
	font-weight: 900;
	background: var(--rf-white);
	border: 3px solid var(--rf-blue);
	border-radius: 50%;
}

.rf-process-map li strong {
	margin-top: 14px;
	font-size: 1.02rem;
	line-height: 1.45;
}

.rf-process-map li:not(:last-child)::after {
	position: absolute;
	top: 40px;
	right: -7px;
	width: 14px;
	height: 14px;
	border-top: 3px solid var(--rf-green);
	border-right: 3px solid var(--rf-green);
	content: "";
	transform: rotate(45deg);
}

.rf-process-map p {
	margin: 12px 0 0;
	padding: 14px 18px;
	color: var(--rf-navy);
	font-weight: 900;
	text-align: center;
	background: var(--rf-sky);
	border-radius: 8px;
	text-wrap: balance;
}

.rf-diagram-card {
	display: grid;
	place-items: center;
	padding: 26px;
	margin: 0;
	background: var(--rf-white);
	border: 1px solid var(--rf-line);
	border-radius: 8px;
	box-shadow: var(--rf-soft-shadow);
}

.rf-diagram-card picture {
	display: block;
	width: 100%;
}

.rf-diagram-card img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 6px;
}

.rf-diagram-card--dark {
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16);
}

.rf-diagram-card--cycle {
	padding: 28px;
	background: var(--rf-pale);
}

.rf-support-layout {
	display: grid;
	grid-template-columns: minmax(300px, 0.55fr) minmax(0, 1fr);
	align-items: start;
	gap: 54px;
}

.rf-section__head {
	max-width: 900px;
}

.rf-operating-model {
	padding: 26px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
}

.rf-operating-model ol {
	display: grid;
	gap: 0;
	padding: 0;
	margin: 0;
	list-style: none;
}

.rf-operating-model li {
	position: relative;
	display: grid;
	grid-template-columns: 180px 1fr;
	gap: 22px;
	padding: 22px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.rf-operating-model li:last-child {
	border-bottom: 0;
}

.rf-operating-model li::before {
	position: absolute;
	top: 50%;
	left: 152px;
	width: 10px;
	height: 10px;
	background: #9dccff;
	border-radius: 50%;
	content: "";
	transform: translateY(-50%);
}

.rf-operating-model span {
	display: block;
	color: #9dccff;
	font-weight: 900;
}

.rf-operating-model p {
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
}

.rf-services {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: stretch;
	gap: 22px;
	margin-top: 34px;
}

.rf-services a {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 386px;
	padding: 32px;
	background: var(--rf-white);
	border: 1px solid var(--rf-line);
	border-radius: 8px;
	box-shadow: 0 12px 34px rgba(7, 26, 51, 0.06);
	transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.rf-services a::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--rf-blue), var(--rf-green));
	border-radius: 8px 8px 0 0;
	content: "";
	opacity: 0.82;
}

.rf-services a:hover,
.rf-services a:focus-visible {
	color: inherit;
	border-color: rgba(18, 103, 216, 0.45);
	box-shadow: 0 20px 44px rgba(7, 26, 51, 0.12);
	transform: translateY(-4px);
}

.rf-services span {
	color: var(--rf-blue);
	font-weight: 900;
}

.rf-services strong {
	display: block;
	margin-top: 30px;
	font-size: 1.55rem;
	line-height: 1.35;
}

.rf-services em {
	display: block;
	margin-top: 12px;
	color: var(--rf-blue);
	font-style: normal;
	font-weight: 900;
}

.rf-services p {
	margin: 20px 0 0;
	color: var(--rf-muted);
	flex-grow: 1;
}

.rf-services small {
	display: block;
	margin-top: 18px;
	color: var(--rf-muted);
	font-size: 0.92rem;
	font-weight: 800;
	line-height: 1.7;
}

.rf-services b {
	display: inline-flex;
	align-items: center;
	margin-top: 22px;
	color: var(--rf-blue);
	font-size: 0.95rem;
}

.rf-services b::after {
	margin-left: 8px;
	content: "→";
}

.rf-cycle-layout {
	grid-template-columns: minmax(340px, 0.62fr) minmax(0, 1fr);
}

.rf-cycle {
	display: grid;
	place-items: center;
	min-height: 500px;
	background: var(--rf-pale);
	border: 1px solid var(--rf-line);
	border-radius: 8px;
}

.rf-cycle__ring {
	position: relative;
	width: min(78vw, 430px);
	aspect-ratio: 1;
	border: 3px solid rgba(18, 103, 216, 0.65);
	border-radius: 50%;
}

.rf-cycle__ring::before {
	position: absolute;
	inset: 15%;
	border: 2px dashed rgba(15, 139, 111, 0.45);
	border-radius: 50%;
	content: "";
}

.rf-cycle__ring::after {
	position: absolute;
	top: 16px;
	right: 58px;
	width: 18px;
	height: 18px;
	border-top: 4px solid var(--rf-green);
	border-right: 4px solid var(--rf-green);
	content: "";
	transform: rotate(48deg);
}

.rf-cycle__center {
	position: absolute;
	inset: 28%;
	z-index: 2;
	display: grid;
	place-items: center;
	padding: 18px;
	text-align: center;
	background: var(--rf-white);
	border: 1px solid var(--rf-line);
	border-radius: 50%;
	box-shadow: var(--rf-soft-shadow);
}

.rf-cycle__center strong {
	font-size: 1rem;
	line-height: 1.45;
}

.rf-cycle__center small {
	margin-top: 8px;
	color: var(--rf-muted);
	font-size: 0.74rem;
	line-height: 1.55;
}

.rf-cycle__ring span {
	position: absolute;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 104px;
	min-height: 54px;
	padding: 8px;
	color: var(--rf-white);
	font-weight: 900;
	text-align: center;
	line-height: 1.3;
	background: var(--rf-navy);
	border-radius: 8px;
}

.rf-cycle__ring span:nth-child(1) { top: -20px; left: 50%; transform: translateX(-50%); }
.rf-cycle__ring span:nth-child(2) { top: 28%; right: -38px; }
.rf-cycle__ring span:nth-child(3) { right: 8%; bottom: 4px; }
.rf-cycle__ring span:nth-child(4) { bottom: 4px; left: 8%; }
.rf-cycle__ring span:nth-child(5) { top: 28%; left: -38px; }

.rf-cycle p {
	margin: 22px 0 0;
	color: var(--rf-navy);
	font-weight: 900;
}

.rf-reasons {
	display: grid;
	grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
	align-items: start;
	gap: 64px;
}

.rf-reasons__list {
	display: grid;
	gap: 12px;
}

.rf-reasons__list article {
	display: grid;
	grid-template-columns: 86px 1fr;
	align-items: center;
	gap: 20px;
	padding: 22px 24px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 8px;
}

.rf-reasons__list article:nth-child(2),
.rf-reasons__list article:nth-child(4) {
	margin-left: 54px;
}

.rf-reasons__list span {
	color: #9dccff;
	font-size: 1.5rem;
	font-weight: 900;
}

.rf-reasons__list strong {
	display: block;
	font-size: 1.18rem;
}

.rf-reasons__list p {
	margin: 6px 0 0;
	color: rgba(255, 255, 255, 0.82);
}

.rf-results {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	margin-top: 42px;
}

.rf-results article {
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding: clamp(28px, 2.4vw, 34px);
	background: var(--rf-white);
	border-top: 6px solid var(--rf-blue);
	border-radius: 8px;
	box-shadow: 0 18px 42px rgba(0, 32, 76, 0.08);
}

.rf-results article p {
	margin: 0;
	color: var(--rf-muted);
	font-weight: 700;
}

.rf-result-flow {
	display: flex;
	align-items: center;
	gap: clamp(10px, 1vw, 14px);
	margin: 20px 0 18px;
	min-width: 0;
}

.rf-results span {
	color: var(--rf-muted);
	font-size: clamp(1.25rem, 1.6vw, 1.65rem);
	font-weight: 900;
	white-space: nowrap;
	text-decoration: line-through;
	text-decoration-thickness: 2px;
}

.rf-results strong {
	display: block;
	color: var(--rf-blue);
	font-size: clamp(3rem, 5vw, 5rem);
	font-weight: 900;
	line-height: 1;
	white-space: nowrap;
}

.rf-results small {
	display: block;
	margin-bottom: 6px;
	color: var(--rf-muted);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
}

.rf-results strong small {
	color: var(--rf-blue);
}

.rf-result-flow i {
	display: inline-grid;
	flex: 0 0 36px;
	place-items: center;
	width: 36px;
	height: 36px;
	color: var(--rf-white);
	font-size: 0.88rem;
	font-style: normal;
	font-weight: 900;
	background: var(--rf-navy);
	border-radius: 50%;
}

.rf-result-flow strong {
	flex: 1 1 auto;
	min-width: 0;
	font-size: clamp(2.65rem, 4.2vw, 4.15rem);
}

.rf-result-single {
	display: flex;
	align-items: center;
	min-height: 82px;
	margin: 14px 0;
}

.rf-result-single strong {
	font-size: clamp(3rem, 4.4vw, 4.45rem);
}

.rf-result-card--single {
	grid-column: 1 / -1;
	justify-self: center;
	width: min(100%, 680px);
}

.rf-section__head p.rf-results__lead {
	max-width: 720px;
	margin: 14px 0 0;
	color: var(--rf-navy);
	font-size: 1.02rem;
	font-weight: 700;
	line-height: 1.8;
}

.rf-results__note {
	max-width: 980px;
	margin: 24px 0 0;
	color: var(--rf-muted);
	font-size: 0.98rem;
	line-height: 1.8;
}

.rf-paper {
	display: grid;
	grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
	align-items: center;
	gap: 44px;
	padding: 48px;
	background: var(--rf-white);
	border: 1px solid var(--rf-line);
	border-radius: 8px;
	box-shadow: 0 18px 48px rgba(7, 26, 51, 0.08);
}

.rf-paper h2 {
	max-width: 760px;
}

.rf-paper ul {
	display: grid;
	gap: 10px;
	padding: 0;
	margin: 24px 0 0;
	list-style: none;
}

.rf-paper li {
	position: relative;
	padding-left: 28px;
	color: var(--rf-navy);
	font-weight: 900;
}

.rf-paper li::before {
	position: absolute;
	top: 0.55em;
	left: 0;
	width: 16px;
	height: 16px;
	background: var(--rf-blue);
	border-radius: 50%;
	content: "";
}

.rf-paper .rf-button {
	margin-top: 30px;
}

.rf-paper__cover {
	margin: 0;
	overflow: hidden;
	border: 1px solid var(--rf-line);
	border-radius: 8px;
	box-shadow: var(--rf-soft-shadow);
}

.rf-paper__cover img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.rf-message {
	grid-template-columns: minmax(320px, 0.45fr) minmax(0, 0.55fr);
	gap: 54px;
}

.rf-message__photo {
	overflow: hidden;
	border-radius: 8px;
	box-shadow: var(--rf-shadow);
}

.rf-message__photo img {
	width: 100%;
	aspect-ratio: 9 / 10;
	object-fit: cover;
}

.rf-message__name {
	margin: 22px 0 0;
	color: var(--rf-navy);
	font-weight: 900;
}

.rf-message__name strong {
	font-size: 1.45rem;
}

.rf-message .rf-button {
	margin-top: 28px;
	width: auto;
}

.rf-message--text {
	display: block;
	max-width: 880px;
	padding: 44px;
	background: linear-gradient(135deg, var(--rf-white), var(--rf-pale));
	border: 1px solid var(--rf-line);
	border-radius: 8px;
	box-shadow: var(--rf-soft-shadow);
}

.rf-message--text p {
	max-width: 760px;
}

.rf-text-link {
	display: inline-flex;
	margin-top: 24px;
	color: var(--rf-blue);
	font-weight: 900;
	text-decoration: underline;
	text-underline-offset: 5px;
}

.rf-page-hero {
	padding: 86px 0 92px;
	background:
		linear-gradient(135deg, rgba(232, 242, 255, 0.95) 0%, rgba(255, 255, 255, 0.96) 54%, rgba(245, 248, 252, 1) 100%);
}

.rf-page-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
	align-items: center;
	gap: 58px;
}

.rf-page-hero h1 {
	max-width: 780px;
	margin: 0;
	color: var(--rf-navy);
	font-size: clamp(2.25rem, 4vw, 3.75rem);
	font-weight: 900;
	line-height: 1.22;
	text-wrap: balance;
}

.rf-page-hero p:not(.rf-kicker) {
	max-width: 720px;
	margin: 24px 0 0;
	color: #243753;
	font-size: 1.08rem;
	line-height: 2;
}

.rf-page-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 32px;
}

.rf-page-hero__panel {
	display: grid;
	gap: 12px;
	padding: 30px;
	background: var(--rf-white);
	border: 1px solid var(--rf-line);
	border-radius: 8px;
	box-shadow: var(--rf-soft-shadow);
}

.rf-page-hero__panel div {
	padding: 18px 0;
	border-bottom: 1px solid var(--rf-line);
}

.rf-page-hero__panel div:last-child {
	border-bottom: 0;
}

.rf-page-hero__panel span {
	display: block;
	color: var(--rf-blue);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.rf-page-hero__panel strong {
	display: block;
	margin-top: 5px;
	color: var(--rf-navy);
	font-size: 1.05rem;
	line-height: 1.65;
}

.rf-page-hero--contact {
	align-items: start;
}

.rf-profile-photo {
	margin: 0;
	overflow: hidden;
	background: var(--rf-white);
	border: 1px solid var(--rf-line);
	border-radius: 8px;
	box-shadow: var(--rf-shadow);
}

.rf-profile-photo img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
}

.rf-page-split {
	display: grid;
	grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
	gap: 64px;
	align-items: start;
}

.rf-sticky-label {
	position: sticky;
	top: 120px;
}

.rf-prose {
	display: grid;
	gap: 24px;
	color: var(--rf-muted);
	font-size: 1.05rem;
}

.rf-prose p {
	margin: 0;
}

.rf-feature-grid,
.rf-phase-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	margin-top: 38px;
}

.rf-feature-grid--three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rf-feature-grid article,
.rf-phase-grid article {
	display: flex;
	flex-direction: column;
	min-height: 260px;
	padding: 28px;
	background: var(--rf-white);
	border: 1px solid var(--rf-line);
	border-radius: 8px;
	box-shadow: var(--rf-soft-shadow);
}

.rf-section--navy .rf-phase-grid article {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.18);
	box-shadow: none;
}

.rf-feature-grid span,
.rf-phase-grid span,
.rf-stacked-list span,
.rf-roadmap span {
	color: var(--rf-blue);
	font-size: 0.82rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.rf-section--navy .rf-phase-grid span,
.rf-section--navy .rf-roadmap span {
	color: #7eb6ff;
}

.rf-feature-grid h3,
.rf-phase-grid h3 {
	margin: 18px 0 0;
	color: var(--rf-navy);
	font-size: 1.24rem;
	line-height: 1.45;
}

.rf-section--navy .rf-phase-grid h3 {
	color: var(--rf-white);
}

.rf-feature-grid p,
.rf-phase-grid p {
	margin: 14px 0 0;
	color: var(--rf-muted);
	line-height: 1.85;
}

.rf-section--navy .rf-phase-grid p {
	color: rgba(255, 255, 255, 0.78);
}

.rf-stacked-list {
	display: grid;
	gap: 12px;
}

.rf-stacked-list article {
	display: grid;
	grid-template-columns: 58px 1fr;
	gap: 18px;
	align-items: start;
	padding: 22px;
	background: var(--rf-white);
	border: 1px solid var(--rf-line);
	border-radius: 8px;
	box-shadow: var(--rf-soft-shadow);
}

.rf-stacked-list p {
	margin: 0;
	color: var(--rf-navy);
	font-weight: 900;
	line-height: 1.7;
}

.rf-scope-band {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	margin-top: 36px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 8px;
}

.rf-scope-band div {
	padding: 30px;
	background: rgba(255, 255, 255, 0.08);
	border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.rf-scope-band div:last-child {
	border-right: 0;
}

.rf-scope-band strong,
.rf-scope-band span {
	display: block;
}

.rf-scope-band strong {
	color: var(--rf-white);
	font-size: 1.26rem;
}

.rf-scope-band span {
	margin-top: 10px;
	color: rgba(255, 255, 255, 0.78);
}

.rf-roadmap {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 14px;
	padding: 0;
	margin: 38px 0 0;
	list-style: none;
}

.rf-roadmap li {
	position: relative;
	min-height: 250px;
	padding: 28px 24px;
	background: var(--rf-white);
	border: 1px solid var(--rf-line);
	border-radius: 8px;
	box-shadow: var(--rf-soft-shadow);
}

.rf-roadmap--dark li {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.18);
	box-shadow: none;
}

.rf-roadmap h3 {
	margin: 18px 0 0;
	color: var(--rf-navy);
	font-size: 1.18rem;
}

.rf-roadmap--dark h3 {
	color: var(--rf-white);
}

.rf-roadmap p {
	margin: 12px 0 0;
	color: var(--rf-muted);
	line-height: 1.75;
}

.rf-roadmap--dark p {
	color: rgba(255, 255, 255, 0.78);
}

.rf-deliverables {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	margin-top: 38px;
}

.rf-deliverables div {
	padding: 24px;
	background: var(--rf-pale);
	border: 1px solid var(--rf-line);
	border-radius: 8px;
}

.rf-deliverables strong {
	color: var(--rf-navy);
	font-size: 1.14rem;
}

.rf-deliverables p {
	margin: 10px 0 0;
	color: var(--rf-muted);
}

.rf-check-list {
	display: grid;
	gap: 12px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.rf-check-list li {
	position: relative;
	padding: 18px 18px 18px 46px;
	color: var(--rf-navy);
	font-weight: 900;
	background: var(--rf-white);
	border: 1px solid var(--rf-line);
	border-radius: 8px;
}

.rf-check-list li::before {
	position: absolute;
	top: 1.28em;
	left: 20px;
	width: 12px;
	height: 12px;
	background: var(--rf-blue);
	border-radius: 50%;
	content: "";
}

.rf-faq-list {
	display: grid;
	gap: 12px;
	margin-top: 34px;
}

.rf-faq-list details {
	background: var(--rf-white);
	border: 1px solid var(--rf-line);
	border-radius: 8px;
	box-shadow: var(--rf-soft-shadow);
}

.rf-faq-list summary {
	padding: 20px 24px;
	color: var(--rf-navy);
	font-weight: 900;
	cursor: pointer;
}

.rf-faq-list p {
	margin: 0;
	padding: 0 24px 22px;
	color: var(--rf-muted);
}

.rf-profile-block {
	display: grid;
	grid-template-columns: minmax(0, 0.68fr) minmax(320px, 0.42fr);
	gap: 54px;
	align-items: start;
}

.rf-profile-block p {
	margin: 20px 0 0;
	color: var(--rf-muted);
	font-size: 1.05rem;
}

.rf-profile-block dl,
.rf-contact-summary {
	display: grid;
	gap: 0;
	padding: 24px;
	margin: 0;
	background: var(--rf-white);
	border: 1px solid var(--rf-line);
	border-radius: 8px;
	box-shadow: var(--rf-soft-shadow);
}

.rf-profile-block dl div,
.rf-contact-summary div {
	display: grid;
	gap: 4px;
	padding: 16px 0;
	border-bottom: 1px solid var(--rf-line);
}

.rf-profile-block dl div:last-child,
.rf-contact-summary div:last-child {
	border-bottom: 0;
}

.rf-profile-block dt,
.rf-contact-summary span {
	color: var(--rf-blue);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.rf-profile-block dd {
	margin: 0;
	color: var(--rf-navy);
	font-weight: 800;
}

.rf-contact-summary {
	max-width: 560px;
	margin-top: 30px;
}

.rf-contact-summary a {
	color: var(--rf-navy);
	font-weight: 900;
}

.rf-contact-form-card {
	align-self: start;
}

.rf-final-cta {
	padding: 94px 0;
	color: var(--rf-white);
	text-align: center;
	background: var(--rf-navy);
}

.rf-final-cta h2 {
	max-width: 880px;
	margin-inline: auto;
	color: var(--rf-white);
}

.rf-final-cta .rf-button {
	margin-top: 32px;
}

.rf-company dl,
.rf-footer__info {
	display: grid;
	margin: 36px 0 0;
	border-top: 1px solid var(--rf-line);
}

.rf-company dl div,
.rf-footer__info div {
	display: grid;
	grid-template-columns: 170px 1fr;
	gap: 20px;
	padding: 18px 0;
	border-bottom: 1px solid var(--rf-line);
}

.rf-company dt,
.rf-footer__info dt {
	color: var(--rf-muted);
	font-weight: 900;
}

.rf-company dd,
.rf-footer__info dd {
	margin: 0;
}

.rf-page {
	padding: 86px 0 120px;
}

.rf-page--center {
	text-align: center;
}

.rf-page__inner {
	max-width: 900px;
}

.rf-page__eyebrow {
	margin: 0 0 10px;
	color: var(--rf-blue);
	font-weight: 900;
}

.rf-entry__content {
	margin-top: 30px;
}

.rf-entry__content a {
	color: var(--rf-blue);
	text-decoration: underline;
	text-underline-offset: 4px;
}

.rf-footer {
	color: var(--rf-white);
	background: #061427;
}

.rf-footer__inner {
	display: grid;
	grid-template-columns: 0.9fr 0.7fr 1fr;
	gap: 52px;
	width: min(100% - 48px, 1240px);
	margin-inline: auto;
	padding: 64px 0;
}

.rf-footer__logo {
	display: inline-flex;
	padding: 8px 12px;
	background: var(--rf-white);
	border-radius: 8px;
}

.rf-footer__logo img {
	width: 132px;
}

.rf-footer__brand p {
	margin: 22px 0 0;
	color: rgba(255, 255, 255, 0.75);
}

.rf-footer__nav {
	display: grid;
	gap: 10px;
	align-content: start;
}

.rf-footer__nav a,
.rf-footer a {
	color: rgba(255, 255, 255, 0.86);
}

.rf-footer__nav a:hover,
.rf-footer a:hover {
	color: var(--rf-white);
}

.rf-footer__info {
	margin-top: 0;
	border-color: rgba(255, 255, 255, 0.16);
}

.rf-footer__info div {
	grid-template-columns: 92px 1fr;
	border-color: rgba(255, 255, 255, 0.16);
}

.rf-footer__info dt {
	color: rgba(255, 255, 255, 0.58);
}

.rf-footer__bottom {
	width: min(100% - 48px, 1240px);
	margin-inline: auto;
	padding: 22px 0;
	color: rgba(255, 255, 255, 0.62);
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.rf-footer__bottom p {
	margin: 0;
}

.rf-page-top {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 90;
	width: 48px;
	height: 48px;
	color: var(--rf-white);
	background: var(--rf-blue);
	border: 0;
	border-radius: 50%;
	box-shadow: var(--rf-shadow);
	opacity: 0;
	pointer-events: none;
	transform: translateY(12px);
	transition: opacity 0.18s ease, transform 0.18s ease;
}

.rf-page-top.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

@media (max-width: 1240px) {
	.rf-results {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 1100px) {
	.rf-nav,
	.rf-header__cta {
		display: none;
	}

	.rf-menu-button {
		display: inline-grid;
		place-items: center;
	}

	.rf-hero__grid,
	.rf-section__split,
	.rf-cycle-layout,
		.rf-message,
		.rf-reasons,
		.rf-support-layout,
		.rf-paper,
		.rf-footer__inner {
			grid-template-columns: 1fr;
		}

		.rf-hero__visual {
			min-height: 0;
		}

		.rf-page-hero__grid,
		.rf-page-split,
		.rf-profile-block {
			grid-template-columns: 1fr;
		}

		.rf-sticky-label {
			position: static;
		}

		.rf-feature-grid,
		.rf-feature-grid--three,
		.rf-feature-grid--four,
		.rf-phase-grid,
		.rf-deliverables {
			grid-template-columns: repeat(2, minmax(0, 1fr));
		}

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

		.rf-scope-band {
			grid-template-columns: 1fr;
		}

		.rf-scope-band div {
			border-right: 0;
			border-bottom: 1px solid rgba(255, 255, 255, 0.16);
		}

		.rf-scope-band div:last-child {
			border-bottom: 0;
		}

		.rf-footer__inner {
			gap: 36px;
	}
}

@media (max-width: 820px) {
	.rf-container,
	.rf-header__inner,
	.rf-footer__inner,
	.rf-footer__bottom {
		width: min(100% - 32px, 1240px);
	}

	.rf-header__inner {
		min-height: 68px;
	}

	.rf-header__logo img {
		width: 112px;
	}

	.rf-hero {
		padding: 58px 0 70px;
	}

	.rf-section {
		padding: 74px 0;
	}

	.rf-hero__grid,
	.rf-section__split,
	.rf-cycle-layout,
	.rf-message,
	.rf-page-hero__grid,
	.rf-page-split,
	.rf-profile-block {
		gap: 42px;
	}

	.rf-page-hero {
		padding: 64px 0 74px;
	}

	.rf-page-hero h1 {
		font-size: clamp(2rem, 9vw, 2.65rem);
	}

	.rf-page-hero__actions {
		display: grid;
	}

	.rf-page-hero__panel,
	.rf-message--text {
		padding: 26px;
	}

	.rf-profile-photo img {
		aspect-ratio: 16 / 11;
	}

	.rf-hero h1 {
		font-size: clamp(2rem, 10vw, 2.55rem);
	}

	.rf-hero__lead {
		font-size: 1rem;
		line-height: 1.9;
	}

		.rf-hero__actions {
			display: grid;
		}

	.rf-button {
		width: 100%;
		min-height: 52px;
	}

		.rf-hero-form {
			max-width: 680px;
			margin-inline: auto;
		}

		.rf-diagram-card {
			padding: 22px;
		}

			.rf-dashboard {
				position: relative;
			inset: auto;
			padding: 22px;
		}

	.rf-dashboard::before {
		right: -10px;
		bottom: -24px;
		width: 64%;
		height: 110px;
	}

		.rf-process-map {
			padding: 24px 22px;
		}

		.rf-process-map::before {
			top: 50px;
			bottom: 92px;
			left: 45px;
			width: 3px;
			height: auto;
			right: auto;
			background: linear-gradient(180deg, var(--rf-blue), var(--rf-green));
		}

		.rf-process-map ol {
			grid-template-columns: 1fr;
			gap: 10px;
		}

		.rf-process-map li {
			grid-template-columns: 58px 1fr;
			justify-items: start;
			min-height: auto;
			padding: 8px 0;
			text-align: left;
		}

		.rf-services,
		.rf-results {
			grid-template-columns: 1fr;
		}

		.rf-process-map li:not(:last-child)::after {
			top: auto;
			right: auto;
			bottom: -8px;
			left: 18px;
			transform: rotate(135deg);
		}

		.rf-process-map li strong {
			margin-top: 0;
			align-self: center;
		}

	.rf-services a,
	.rf-services a:nth-child(2) {
			min-height: auto;
			margin-top: 0;
		}

		.rf-feature-grid,
		.rf-feature-grid--three,
		.rf-feature-grid--four,
		.rf-phase-grid,
		.rf-roadmap,
		.rf-deliverables {
			grid-template-columns: 1fr;
		}

		.rf-feature-grid article,
		.rf-phase-grid article,
		.rf-roadmap li {
			min-height: auto;
		}

		.rf-cycle {
			min-height: 430px;
			padding: 26px 0;
		}

		.rf-cycle__ring {
			width: min(76vw, 320px);
		}

	.rf-cycle__ring span {
		width: 82px;
		min-height: 48px;
		font-size: 0.88rem;
	}

		.rf-cycle__ring span:nth-child(2) { right: -26px; }
		.rf-cycle__ring span:nth-child(5) { left: -26px; }

		.rf-cycle__center {
			inset: 26%;
			padding: 14px;
		}

		.rf-cycle__center small {
			display: none;
		}

		.rf-reasons__list article {
			grid-template-columns: 1fr;
		}

		.rf-reasons__list article:nth-child(2),
		.rf-reasons__list article:nth-child(4) {
			margin-left: 0;
		}

		.rf-results article {
			padding: 28px;
		}

		.rf-result-card--single {
			grid-column: auto;
			justify-self: stretch;
			width: auto;
		}

		.rf-result-flow {
			display: grid;
			gap: 8px;
			justify-items: start;
		}

		.rf-paper {
			padding: 30px;
		}

	.rf-company dl div,
	.rf-footer__info div {
		grid-template-columns: 1fr;
		gap: 4px;
	}

	.rf-footer__logo img {
		width: 118px;
	}
}

@media (max-width: 640px) {
	.rf-hero__visual {
		min-height: auto;
	}

	.rf-hero-form {
		padding: 22px;
	}

	.rf-hero-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
	.rf-hero-form textarea,
	.rf-hero-form select {
		min-height: 40px;
	}

	.rf-hero-form textarea {
		min-height: 130px;
	}

	.rf-page-hero__panel,
	.rf-message--text,
	.rf-profile-block dl,
	.rf-contact-summary {
		padding: 22px;
	}

	.rf-stacked-list article {
		grid-template-columns: 44px 1fr;
		padding: 18px;
	}

	.rf-roadmap li,
	.rf-feature-grid article,
	.rf-phase-grid article,
	.rf-deliverables div {
		padding: 22px;
	}

	.rf-faq-list summary {
		padding: 18px 20px;
	}

	.rf-faq-list p {
		padding: 0 20px 20px;
	}

	.rf-diagram-card {
		padding: 14px;
	}

	.rf-diagram-card img {
		border-radius: 4px;
	}

	.rf-services a {
		padding: 26px;
	}

	.rf-dashboard {
		padding: 20px;
	}

	.rf-dashboard::before {
		display: none;
	}

	.rf-dashboard__head {
		align-items: flex-start;
	}

	.rf-dashboard__flow {
		gap: 0;
		padding-top: 18px;
	}

	.rf-dashboard__flow::before {
		display: none;
	}

	.rf-dashboard__flow li {
		grid-template-columns: 44px 1fr;
		align-items: start;
		gap: 14px;
		min-height: auto;
		padding: 0 0 24px;
	}

	.rf-dashboard__flow li::before {
		position: absolute;
		top: 44px;
		bottom: 4px;
		left: 21px;
		width: 2px;
		background: linear-gradient(180deg, var(--rf-blue), var(--rf-green));
		content: "";
	}

	.rf-dashboard__flow li::after {
		right: auto;
		bottom: 2px;
		left: 17px;
		width: 10px;
		height: 10px;
		border-top: 0;
		border-right: 2px solid var(--rf-green);
		border-bottom: 2px solid var(--rf-green);
		transform: rotate(45deg);
	}

	.rf-dashboard__flow li:last-child {
		padding-bottom: 0;
	}

	.rf-dashboard__flow li:last-child::before,
	.rf-dashboard__flow li:last-child::after {
		display: none;
	}

	.rf-dashboard__flow span {
		width: 44px;
		height: 44px;
	}

	.rf-dashboard__flow strong {
		padding-top: 7px;
		line-height: 1.55;
	}

	.rf-dashboard__loop {
		display: grid;
		gap: 6px;
		margin-top: 18px;
	}

	.rf-dashboard__kpis {
		display: grid;
		grid-template-columns: 1fr;
	}

	.rf-process-map {
		padding: 22px 20px;
	}

	.rf-process-map::before {
		display: none;
	}

	.rf-process-map ol {
		gap: 0;
	}

	.rf-process-map li {
		grid-template-columns: 54px 1fr;
		align-items: start;
		gap: 14px;
		padding: 0 0 24px;
	}

	.rf-process-map li::before {
		position: absolute;
		top: 48px;
		bottom: 4px;
		left: 24px;
		width: 2px;
		background: linear-gradient(180deg, var(--rf-blue), var(--rf-green));
		content: "";
	}

	.rf-process-map li:not(:last-child)::after {
		top: auto;
		right: auto;
		bottom: 2px;
		left: 20px;
		width: 10px;
		height: 10px;
		border-top: 0;
		border-right: 2px solid var(--rf-green);
		border-bottom: 2px solid var(--rf-green);
		transform: rotate(45deg);
	}

	.rf-process-map li:last-child {
		padding-bottom: 0;
	}

	.rf-process-map li:last-child::before {
		display: none;
	}

	.rf-process-map li span {
		width: 48px;
		height: 48px;
	}

	.rf-process-map li strong {
		padding-top: 9px;
		line-height: 1.5;
	}

	.rf-cycle {
		display: block;
		min-height: auto;
		padding: 22px;
	}

	.rf-cycle__ring {
		display: grid;
		width: 100%;
		aspect-ratio: auto;
		gap: 14px;
		border: 0;
		border-radius: 0;
	}

	.rf-cycle__ring::before,
	.rf-cycle__ring::after {
		display: none;
	}

	.rf-cycle__center {
		position: relative;
		inset: auto;
		display: block;
		padding: 16px;
		text-align: left;
		border-radius: 8px;
		box-shadow: none;
	}

	.rf-cycle__center small {
		display: block;
	}

	.rf-cycle__ring span {
		position: relative;
		inset: auto !important;
		display: block;
		width: 100%;
		min-height: auto;
		padding: 14px 18px;
		color: var(--rf-navy);
		text-align: center;
		background: var(--rf-white);
		border: 1px solid rgba(18, 103, 216, 0.24);
		transform: none !important;
	}

	.rf-cycle__ring span:not(:last-of-type) {
		margin-bottom: 18px;
	}

	.rf-cycle__ring span:not(:last-of-type)::before {
		position: absolute;
		bottom: -20px;
		left: 50%;
		width: 2px;
		height: 20px;
		background: var(--rf-blue);
		content: "";
		transform: translateX(-50%);
	}

	.rf-cycle__ring span:not(:last-of-type)::after {
		position: absolute;
		bottom: -22px;
		left: 50%;
		width: 9px;
		height: 9px;
		border-right: 2px solid var(--rf-blue);
		border-bottom: 2px solid var(--rf-blue);
		content: "";
		transform: translateX(-50%) rotate(45deg);
	}

	.rf-cycle::after {
		display: block;
		margin-top: 16px;
		padding: 12px 14px;
		color: var(--rf-navy);
		font-size: 0.92rem;
		font-weight: 900;
		text-align: center;
		background: var(--rf-sky);
		border-radius: 8px;
		content: "仕組み化した内容を次の設計へ戻し、改善サイクルを継続します。";
	}

	.rf-page-top {
		display: none;
	}
}

@media (max-width: 430px) {
	body {
		font-size: 15px;
	}

	.rf-mobile-panel {
		right: 16px;
		left: 16px;
	}

	.rf-section h2,
	.rf-final-cta h2,
	.rf-page h1 {
		font-size: 2rem;
	}

		.rf-operating-model {
			padding: 18px;
		}

		.rf-operating-model li {
			grid-template-columns: 1fr;
			gap: 6px;
			padding: 18px 0;
		}

		.rf-operating-model li::before {
			display: none;
		}

		.rf-services a {
			padding: 24px;
		}

}

@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;
	}
}
