:root {
	--diag24-navy: #071a33;
	--diag24-navy-2: #0b2749;
	--diag24-blue: #1268e8;
	--diag24-blue-soft: #eaf3ff;
	--diag24-orange: #ff7a00;
	--diag24-orange-dark: #d95e00;
	--diag24-green: #138a57;
	--diag24-bg: #f4f7fb;
	--diag24-border: #dce5f0;
	--diag24-text: #14243a;
	--diag24-muted: #617087;
	--diag24-white: #fff;
	--diag24-radius: 18px;
	--diag24-shadow: 0 24px 70px rgba(7, 26, 51, .12);
}

.diag24-rh,
.diag24-rh * {
	box-sizing: border-box;
}

.diag24-rh {
	width: min(1180px, calc(100% - 28px));
	margin: 34px auto;
	color: var(--diag24-text);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.55;
}

.diag24-rh button,
.diag24-rh input,
.diag24-rh select,
.diag24-rh textarea {
	font: inherit;
}

.diag24-hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 260px;
	gap: 38px;
	align-items: center;
	padding: 45px 48px;
	overflow: hidden;
	color: #fff;
	border-radius: 24px 24px 0 0;
	background:
		radial-gradient(circle at 85% 15%, rgba(18, 104, 232, .75), transparent 28%),
		linear-gradient(125deg, #06172e 0%, #0a2a52 60%, #0b3a70 100%);
}

.diag24-hero::after {
	position: absolute;
	right: -95px;
	bottom: -135px;
	width: 330px;
	height: 330px;
	content: "";
	border: 46px solid rgba(255, 122, 0, .13);
	border-radius: 50%;
}

.diag24-hero__copy,
.diag24-hero__contact {
	position: relative;
	z-index: 1;
}

.diag24-eyebrow {
	margin: 0 0 10px !important;
	color: var(--diag24-orange);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.diag24-hero h2 {
	max-width: 760px;
	margin: 0 0 14px;
	color: #fff;
	font-size: clamp(28px, 4vw, 47px);
	font-weight: 850;
	letter-spacing: -.045em;
	line-height: 1.06;
}

.diag24-hero p:not(.diag24-eyebrow) {
	max-width: 760px;
	margin: 0;
	color: #d9e8f9;
	font-size: 17px;
}

.diag24-hero__contact {
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 18px;
	background: rgba(255, 255, 255, .09);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
	backdrop-filter: blur(8px);
}

.diag24-hero__contact span,
.diag24-hero__contact small {
	display: block;
	color: #b9cee7;
	font-size: 12px;
}

.diag24-hero__contact a {
	display: block;
	margin: 5px 0;
	color: #fff;
	font-size: 25px;
	font-weight: 850;
	letter-spacing: -.03em;
	text-decoration: none;
}

.diag24-flow {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	padding: 0 28px;
	color: #fff;
	background: var(--diag24-orange);
}

.diag24-flow span {
	position: relative;
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
	min-height: 64px;
	font-size: 13px;
	font-weight: 750;
}

.diag24-flow span:not(:last-child)::after {
	position: absolute;
	right: 0;
	width: 1px;
	height: 23px;
	content: "";
	background: rgba(255, 255, 255, .38);
}

.diag24-flow b {
	display: inline-grid;
	place-items: center;
	width: 26px;
	height: 26px;
	border: 1px solid rgba(255, 255, 255, .55);
	border-radius: 50%;
	font-size: 11px;
}

.diag24-form {
	padding: 34px 42px 46px;
	border: 1px solid var(--diag24-border);
	border-top: 0;
	border-radius: 0 0 24px 24px;
	background: #fff;
	box-shadow: var(--diag24-shadow);
}

.diag24-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin: 0 0 38px;
	padding: 0;
}

.diag24-step {
	position: relative;
	display: flex;
	gap: 11px;
	align-items: center;
	justify-content: center;
	min-height: 53px;
	padding: 8px 14px;
	cursor: pointer;
	color: #78869a;
	border: 0;
	border-bottom: 3px solid #e7edf5;
	background: transparent;
}

.diag24-step span {
	display: grid;
	place-items: center;
	width: 29px;
	height: 29px;
	border: 1px solid #cdd7e4;
	border-radius: 50%;
	font-size: 12px;
	font-weight: 800;
}

.diag24-step em {
	font-size: 13px;
	font-style: normal;
	font-weight: 800;
}

.diag24-step.is-active {
	color: var(--diag24-navy);
	border-bottom-color: var(--diag24-orange);
}

.diag24-step.is-active span {
	color: #fff;
	border-color: var(--diag24-orange);
	background: var(--diag24-orange);
}

.diag24-step.is-complete span {
	color: #fff;
	border-color: var(--diag24-green);
	background: var(--diag24-green);
}

.diag24-form-panel {
	display: none;
	animation: diag24Fade .25s ease-out;
}

.diag24-form-panel.is-active {
	display: block;
}

@keyframes diag24Fade {
	from { opacity: .25; transform: translateY(8px); }
	to { opacity: 1; transform: translateY(0); }
}

.diag24-panel-heading {
	max-width: 780px;
	margin-bottom: 28px;
}

.diag24-panel-heading h3 {
	margin: 0 0 7px;
	color: var(--diag24-navy);
	font-size: clamp(25px, 3.2vw, 35px);
	font-weight: 850;
	letter-spacing: -.035em;
	line-height: 1.13;
}

.diag24-panel-heading > p:last-child {
	margin: 0;
	color: var(--diag24-muted);
}

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

.diag24-service-card {
	position: relative;
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr) 28px;
	gap: 13px;
	align-items: center;
	min-height: 106px;
	padding: 18px;
	cursor: pointer;
	border: 1px solid var(--diag24-border);
	border-radius: 15px;
	background: #fff;
	transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.diag24-service-card:hover {
	transform: translateY(-2px);
	border-color: #9ec4fb;
	box-shadow: 0 12px 28px rgba(18, 104, 232, .1);
}

.diag24-service-card:has(input:checked) {
	border-color: var(--diag24-blue);
	background: linear-gradient(135deg, #f2f7ff, #fff);
	box-shadow: 0 0 0 2px rgba(18, 104, 232, .11);
}

.diag24-service-card input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.diag24-service-card__number {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	color: var(--diag24-blue);
	border-radius: 13px;
	background: var(--diag24-blue-soft);
	font-size: 14px;
	font-weight: 900;
}

.diag24-service-card:has(input:checked) .diag24-service-card__number {
	color: #fff;
	background: var(--diag24-blue);
}

.diag24-service-card__content strong,
.diag24-service-card__content small {
	display: block;
}

.diag24-service-card__content strong {
	color: var(--diag24-navy);
	font-size: 15px;
	font-weight: 820;
	line-height: 1.3;
}

.diag24-service-card__content small {
	margin-top: 5px;
	color: var(--diag24-muted);
	font-size: 12px;
	line-height: 1.35;
}

.diag24-service-card__check {
	display: grid;
	place-items: center;
	width: 25px;
	height: 25px;
	color: transparent;
	border: 1px solid #cfdae7;
	border-radius: 50%;
	font-size: 12px;
	font-weight: 900;
}

.diag24-service-card:has(input:checked) .diag24-service-card__check {
	color: #fff;
	border-color: var(--diag24-green);
	background: var(--diag24-green);
}

.diag24-section-title {
	display: flex;
	gap: 13px;
	align-items: center;
	margin: 34px 0 16px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--diag24-border);
}

.diag24-section-title > span {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	flex: 0 0 36px;
	color: #fff;
	border-radius: 10px;
	background: var(--diag24-navy);
	font-size: 11px;
	font-weight: 900;
}

.diag24-section-title strong,
.diag24-section-title small {
	display: block;
}

.diag24-section-title strong {
	color: var(--diag24-navy);
	font-size: 16px;
}

.diag24-section-title small {
	color: var(--diag24-muted);
	font-size: 12px;
}

.diag24-fields {
	display: grid;
	gap: 16px;
}

.diag24-fields--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.diag24-fields--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.diag24-fields label,
.diag24-label-block,
.diag24-settings-form label {
	display: block;
	color: var(--diag24-navy);
	font-size: 13px;
	font-weight: 800;
}

.diag24-fields label b,
.diag24-label-block b,
.diag24-consent b {
	color: #d84129;
}

.diag24-fields label > span {
	color: var(--diag24-muted);
	font-size: 11px;
	font-weight: 500;
}

.diag24-rh input[type="text"],
.diag24-rh input[type="tel"],
.diag24-rh input[type="email"],
.diag24-rh input[type="number"],
.diag24-rh select,
.diag24-rh textarea {
	display: block;
	width: 100%;
	margin-top: 7px;
	color: var(--diag24-text);
	border: 1px solid #cbd7e5;
	border-radius: 10px;
	outline: none;
	background: #fff;
	box-shadow: 0 1px 2px rgba(7, 26, 51, .03);
	transition: border-color .16s ease, box-shadow .16s ease;
}

.diag24-rh input[type="text"],
.diag24-rh input[type="tel"],
.diag24-rh input[type="email"],
.diag24-rh input[type="number"],
.diag24-rh select {
	height: 48px;
	padding: 0 13px;
}

.diag24-rh textarea {
	min-height: 145px;
	padding: 13px;
	resize: vertical;
}

.diag24-rh input:focus,
.diag24-rh select:focus,
.diag24-rh textarea:focus {
	border-color: var(--diag24-blue);
	box-shadow: 0 0 0 3px rgba(18, 104, 232, .12);
}

.diag24-rh .diag24-is-invalid {
	border-color: #d84129 !important;
	box-shadow: 0 0 0 3px rgba(216, 65, 41, .1) !important;
}

.diag24-dynamic-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 15px;
}

.diag24-dynamic-tags label {
	position: relative;
	cursor: pointer;
}

.diag24-dynamic-tags input {
	position: absolute;
	opacity: 0;
}

.diag24-dynamic-tags span {
	display: block;
	padding: 8px 12px;
	color: #405169;
	border: 1px solid #d2dce8;
	border-radius: 100px;
	background: #f8fafc;
	font-size: 12px;
	font-weight: 700;
}

.diag24-dynamic-tags input:checked + span {
	color: #fff;
	border-color: var(--diag24-blue);
	background: var(--diag24-blue);
}

.diag24-upload {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 6px 18px;
	align-items: center;
	margin-top: 18px;
	padding: 20px;
	border: 1px dashed #9bb4d2;
	border-radius: 13px;
	background: #f7faff;
}

.diag24-upload strong,
.diag24-upload small {
	display: block;
}

.diag24-upload strong { color: var(--diag24-navy); }
.diag24-upload small { margin-top: 3px; color: var(--diag24-muted); font-size: 12px; }

.diag24-upload__button {
	position: relative;
	grid-row: 1 / span 2;
	grid-column: 2;
	padding: 11px 16px;
	cursor: pointer;
	color: var(--diag24-blue);
	border: 1px solid #a7c8f8;
	border-radius: 9px;
	background: #fff;
	font-size: 12px;
	font-weight: 850;
}

.diag24-upload__button input {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
}

.diag24-upload__name {
	grid-column: 1 / -1;
	overflow: hidden;
	color: #7a8798;
	font-size: 11px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.diag24-upload__name.has-file { color: var(--diag24-green); font-weight: 750; }

.diag24-readiness {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px 16px;
	margin-top: 18px;
	padding: 18px;
	border-radius: 13px;
	background: #f6f8fb;
}

.diag24-readiness > strong {
	grid-column: 1 / -1;
	color: var(--diag24-navy);
	font-size: 13px;
}

.diag24-readiness label,
.diag24-consent {
	display: flex;
	gap: 9px;
	align-items: flex-start;
	color: #43536a;
	font-size: 12px;
	font-weight: 650;
}

.diag24-readiness input,
.diag24-consent input {
	width: 17px;
	height: 17px;
	margin: 1px 0 0;
	accent-color: var(--diag24-blue);
	flex: 0 0 17px;
}

.diag24-summary {
	margin: 24px 0 18px;
	padding: 22px 24px;
	color: #fff;
	border-left: 5px solid var(--diag24-orange);
	border-radius: 13px;
	background: var(--diag24-navy);
}

.diag24-summary span,
.diag24-summary strong {
	display: block;
}

.diag24-summary span {
	color: #9fb8d7;
	font-size: 10px;
	font-weight: 850;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.diag24-summary strong {
	margin: 5px 0 7px;
	font-size: 19px;
}

.diag24-summary p {
	margin: 0;
	color: #d3e2f3;
	font-size: 13px;
}

.diag24-consent {
	padding: 16px;
	border: 1px solid var(--diag24-border);
	border-radius: 11px;
}

.diag24-consent a { color: var(--diag24-blue); }

.diag24-actions {
	display: flex;
	gap: 12px;
	align-items: center;
	justify-content: space-between;
	margin-top: 30px;
}

.diag24-actions--end { justify-content: flex-end; }

.diag24-button {
	display: inline-flex;
	gap: 11px;
	align-items: center;
	justify-content: center;
	min-height: 49px;
	padding: 0 21px;
	cursor: pointer;
	border: 0;
	border-radius: 10px;
	font-size: 13px;
	font-weight: 850;
	line-height: 1;
	text-decoration: none !important;
	transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.diag24-button:hover { transform: translateY(-1px); }
.diag24-button--primary { color: #fff !important; background: var(--diag24-blue); box-shadow: 0 9px 20px rgba(18, 104, 232, .22); }
.diag24-button--primary:hover { background: #0758c9; }
.diag24-button--ghost { color: var(--diag24-navy) !important; border: 1px solid #cbd7e4; background: #fff; }
.diag24-button--submit { min-width: 260px; color: #fff; background: var(--diag24-orange); box-shadow: 0 9px 22px rgba(255, 122, 0, .23); }
.diag24-button--submit:hover { background: var(--diag24-orange-dark); }
.diag24-button:disabled { cursor: wait; opacity: .65; transform: none; }

.diag24-form-footnote {
	margin: 13px 0 0;
	color: var(--diag24-muted);
	font-size: 11px;
	text-align: right;
}

.diag24-form-error {
	margin: -18px 0 26px;
	padding: 13px 16px;
	color: #8c271a;
	border: 1px solid #efb0a8;
	border-radius: 10px;
	background: #fff1ef;
	font-size: 13px;
	font-weight: 750;
}

.diag24-hp {
	position: absolute !important;
	left: -99999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.diag24-success {
	padding: 65px 45px;
	border: 1px solid var(--diag24-border);
	border-top: 8px solid var(--diag24-green);
	border-radius: 22px;
	background: #fff;
	box-shadow: var(--diag24-shadow);
	text-align: center;
}

.diag24-success__icon {
	display: grid;
	place-items: center;
	width: 72px;
	height: 72px;
	margin: 0 auto 20px;
	color: #fff;
	border-radius: 50%;
	background: var(--diag24-green);
	box-shadow: 0 12px 28px rgba(19, 138, 87, .25);
	font-size: 33px;
	font-weight: 900;
}

.diag24-success h2 {
	margin: 0 0 10px;
	color: var(--diag24-navy);
	font-size: clamp(26px, 4vw, 40px);
	letter-spacing: -.04em;
}

.diag24-success > p:not(.diag24-eyebrow):not(.diag24-success__ticket) {
	max-width: 680px;
	margin: 16px auto;
	color: var(--diag24-muted);
}

.diag24-success__ticket {
	display: inline-block;
	margin: 8px 0;
	padding: 9px 15px;
	color: var(--diag24-navy);
	border-radius: 100px;
	background: var(--diag24-blue-soft);
	font-size: 13px;
}

.diag24-success__actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	margin-top: 25px;
}

.diag24-noscript {
	padding: 12px;
	color: #734700;
	background: #fff3d9;
}

@media (max-width: 900px) {
	.diag24-hero { grid-template-columns: 1fr; padding: 36px 30px; }
	.diag24-hero__contact { max-width: 300px; }
	.diag24-form { padding: 30px 26px 38px; }
	.diag24-fields--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.diag24-readiness { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
	.diag24-rh { width: min(100% - 18px, 1180px); margin: 16px auto; }
	.diag24-hero { padding: 30px 22px; border-radius: 17px 17px 0 0; }
	.diag24-hero h2 { font-size: 31px; }
	.diag24-flow { grid-template-columns: repeat(2, 1fr); padding: 5px 10px; }
	.diag24-flow span { min-height: 48px; font-size: 11px; }
	.diag24-flow span:nth-child(2)::after { display: none; }
	.diag24-form { padding: 24px 16px 30px; border-radius: 0 0 17px 17px; }
	.diag24-steps { margin-bottom: 28px; }
	.diag24-step { min-height: 50px; padding: 5px; }
	.diag24-step em { display: none; }
	.diag24-service-grid,
	.diag24-fields--3,
	.diag24-fields--2 { grid-template-columns: 1fr; }
	.diag24-service-card { min-height: 96px; padding: 15px; }
	.diag24-upload { grid-template-columns: 1fr; }
	.diag24-upload__button { grid-row: auto; grid-column: 1; width: max-content; }
	.diag24-actions { align-items: stretch; flex-direction: column-reverse; }
	.diag24-actions--end { align-items: stretch; }
	.diag24-button { width: 100%; }
	.diag24-form-footnote { text-align: left; }
	.diag24-success { padding: 45px 20px; }
	.diag24-success__actions { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
	.diag24-form-panel { animation: none; }
	.diag24-service-card,
	.diag24-button { transition: none; }
}
