:root {
	--bg: #f4f7fb;
	--surface: #ffffff;
	--surface-alt: #f8fafc;
	--text: #101828;
	--muted: #667085;
	--line: #d7deea;
	--line-soft: #e5e7eb;
	--brand: #0d274d;
	--brand-2: #049fd9;
	--accent: #da9735;
	--success: #1d9d74;
	--shadow: 0 24px 80px rgba(13, 39, 77, 0.08);
	--radius-xl: 32px;
	--radius-lg: 24px;
	--radius-md: 16px;
	--max-width: 1280px;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	color: var(--text);
	background:#F9FAFB;
	line-height: 1.5;
	width: min(calc(100% - 2rem), var(--max-width));
	margin: 1rem auto 3rem;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
}

button,
input,
textarea,
select {
	font: inherit;
}

.skip-link {
	position: absolute;
	left: 1rem;
	top: -3rem;
	z-index: 100;
	padding: 0.75rem 1rem;
	color: #fff;
	background: var(--brand);
	border-radius: 999px;
	text-decoration: none;
	transition: top 0.2s ease;
}

.skip-link:focus {
	top: 1rem;
}

.hero {
	position: relative;
	overflow: hidden;
	padding: 2rem;
	border-radius: var(--radius-xl);
	color: #fff;
	box-shadow: var(--shadow);
	background-image: url(../assets/hero-bg.webp);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.hero__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.hero__media,
.hero__copy {
	position: relative;
	z-index: 2;
}

.hero__media {
	display: flex;
	gap: 1.75rem;
	margin-bottom: 1.25rem;
}

.hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
	padding: 0.875rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
	backdrop-filter: blur(10px);
}

.hero__logo-main {
	width: 150px;
}

.hero__logo-secondary {
	width: 64px;
}

.hero__divider {
	width: 1px;
	height: 1.75rem;
	background: rgba(255, 255, 255, 0.32);
}

.hero__screen-wrap {
	position: relative;
	max-width: 520px;
}

.hero__screen {
	position: relative;
	z-index: 2;
	width: 100%;
	filter: drop-shadow(0 26px 60px rgba(0, 0, 0, 0.22));
}

.hero h1 {
	margin: 0;
	font-size: clamp(2rem, 2.6vw, 3rem);
	text-wrap: balance;
	line-height: 1.05;
	background: linear-gradient(270deg, #EBAF56 0%, #D8862F 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 700;
	text-align: center;
}

.hero__lead {
	margin: 1rem 0 0;
	font-size: clamp(1rem, 1.5vw, 1.125rem);
	color: #ADB8C9;
	text-align: center;
}

.hero__decoration {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.hero__copy {
	max-width: 620px;
	margin: 0 auto;
}

.hero__finger {
	position: absolute;
	opacity: 0.88;
}

.hero__finger--one {
	top: 2rem;
	left: 1.5rem;
	width: 4.5rem;
}

.hero__finger--two {
	right: 2rem;
	top: 3rem;
	width: 6.5rem;
}

.hero__finger--three {
	left: 41%;
	top: 6rem;
	width: 5rem;
}

.solution-grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
	margin-top: 2rem;
}

.solution-card {
	height: 100%;
	padding: 2.5rem 1.5rem;
	border-radius: var(--radius-lg);
	background: #fff;
	color: var(--text);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
	text-align: center;
}

.solution-card h2 {
	margin: 0 0 0.35rem;
	color: var(--brand-2);
	font-size: 1.125rem;
}

.solution-card p {
	margin: 0;
	color: var(--muted);
	font-size: 0.875rem;
}

.form-card {
	margin-top: 2rem;
	padding: 3rem;
	border-radius: var(--radius-xl);
	border: 1px solid #C0C0C0;
	box-shadow: 0 0 40px -4px rgba(0, 0, 0, 0.05)
}

.section-heading {
	margin-bottom: 1.75rem;
}

.section-heading__eyebrow {
	margin: 0 0 0.35rem;
	color: var(--accent);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-size: 0.85rem;
}

.section-heading h2 {
	margin: 0;
	font-size: 1.5rem;
	line-height: 1.15;
}

.section-heading p {
	max-width: 52rem;
	margin: 0.6rem 0 0;
	font-weight: 400;
	color: var(--muted);
}

.form-layout {
	display: grid;
	grid-template-columns: 4px minmax(0, 1fr);
	gap: 2rem;
	align-items: start;
}

.form-rail {
	position: sticky;
	top: 1rem;
	min-height: 100%;
	border-radius: 999px;
	background: var(--line-soft);
}

.form-rail span {
	display: block;
	width: 100%;
	height: 14rem;
	border-radius: inherit;
	background: linear-gradient(180deg, var(--brand), var(--brand-2));
}

.form-step h3 {
	margin-bottom: 1.125rem;
	font-size: clamp(1.2rem, 1.8vw, 1.44rem);
	line-height: 1.25;
}

.step-number {
	color: var(--accent);
}

.question-group {
	margin: 0;
	padding: 1.15rem;
	border: none;
}

.question-group legend {
	padding: 0 0.25rem;
	font-weight: 700;
	color: #049FD9;
}

.choice {
	display: grid;
	grid-template-columns: 1.25rem minmax(0, 1fr);
	gap: 0.875rem;
	align-items: start;
	padding-bottom: 0.75rem;
	color: var(--text);
	cursor: pointer;
}

.choice input[type="radio"] {
	appearance: none;
	width: 1.25rem;
	height: 1.25rem;
	margin: 0.125rem 0 0;
	border: 2px solid #b6c0cc;
	border-radius: 50%;
	background: #fff;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background-size 0.2s ease;
	background-image: radial-gradient(circle at center, var(--brand) 0 45%, transparent 50%);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 0 0;
}

.choice input[type="radio"]:checked {
	border-color: var(--brand);
	background-size: 100% 100%;
}

.choice input[type="radio"]:focus-visible,
.checkbox-label input[type="checkbox"]:focus-visible,
.field input:focus-visible,
.submit-button:focus-visible,
.privacy-note a:focus-visible {
	outline: 3px solid rgba(4, 159, 217, 0.35);
	outline-offset: 3px;
}

.choice span {
	color: #344054;
}

.required-note {
	margin: -0.35rem 0 0;
	color: var(--muted);
	font-size: 0.95rem;
}

.field-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.field {
	display: grid;
	gap: 0.5rem;
}

.field--hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.field label {
	color: #364153;
	font-size: 0.95rem;
	font-weight: 700;
}

.field input {
	width: 100%;
	min-height: 3.5rem;
	padding: 0.95rem 1rem;
	border: 1px solid #d0d7e2;
	border-radius: 14px;
	background: #fff;
	color: var(--text);
}

.field input::placeholder {
	color: #98a2b3;
}

.field input:focus {
	border-color: var(--brand-2);
}

.consent-box {
	padding: 1.25rem;
	margin: 1.875rem 0;
	border: 1px solid var(--line-soft);
	border-radius: var(--radius-md);
	background: var(--surface-alt);
}

.checkbox-label {
	display: flex;
	gap: 0.875rem;
	align-items: start;
	cursor: pointer;
}

.checkbox-label span {
	color: #344054;
}

.privacy-note {
	margin: 0.75rem 0 0;
	padding-left: calc(1.35rem + 0.875rem);
	color: var(--muted);
}

.privacy-note a {
	color: var(--brand);
	font-weight: 700;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.15em;
}

.submit-button {
	justify-self: start;
	width: 100%;
	padding: 1rem 1.4rem;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--brand), var(--brand-2));
	color: #fff;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 12px 30px rgba(13, 39, 77, 0.18);
}

.submit-button.disabled {
	background: #D1D5DC;
	color: #FFF;
}

.submit-button:hover {
	transform: translateY(-1px);
}

.brand-footer {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	margin-top: 1.75rem;
	padding: 1rem;
}

.brand-footer img:first-child {
	width: 108px;
}

.brand-footer img:last-child {
	width: 278px;
}

.solution-container {
	max-width: 900px;
	margin: 0 auto;
}

.switch input {
	display: none;
}

.slider {
	background-color: #D1D5DC;
	cursor: pointer;
	position: relative;
	transition: .4s;
	display: inline-block;
	height: 24px;
	position: relative;
	width: 44px;
	flex: 0 0 auto;
	background: #D1D5DC;
	border-radius: 15px;
}

.slider:before {
	background-color: #fff;
	bottom: 4px;
	content: "";
	height: 16px;
	width: 16px;
	top: 4px;
	left: 4px;
	position: absolute;
	transition: .4s;
}

input:checked+.slider {
	background-color: var(--brand);
}

input:checked+.slider:before {
	transform: translateX(20px);
}

.slider.round {
	border-radius: 34px;
}

.slider.round:before {
	border-radius: 50%;
}

@media (max-width: 960px) {

	.hero__content,
	.field-grid {
		grid-template-columns: 1fr;
	}

	.hero__screen-wrap {
		max-width: 430px;
	}

	.hero__finger--three {
		left: auto;
		right: 8rem;
		top: 9rem;
	}

	.form-layout {
		grid-template-columns: 1fr;
	}

	.form-rail {
		display: none;
	}
}

@media (max-width: 820px) {
	.solution-grid {
		display: flex;
		overflow-x: auto;
	}

	.solution-container {
		margin: 0 -1rem;
	}

	.solution-card {
		flex: 0 0 280px;
	}

	.solution-card:first-child {
		margin-left: 1rem;
	}

	.solution-card:last-child {
		margin-right: 1rem;
	}
}

@media (max-width: 640px) {
	.body {
		width: min(calc(100% - 1rem), var(--max-width));
		margin-top: 0.5rem;
	}

	.hero,
	.form-card {
		padding: 1.25rem;
		border-radius: 24px;
	}

	.hero__eyebrow {
		gap: 0.75rem;
	}

	.hero__logo-main {
		width: 126px;
	}

	.hero__logo-secondary {
		width: 54px;
	}

	.question-group,
	.consent-box {
		padding: 1rem;
	}

	.choice,
	.checkbox-label {
		gap: 0.75rem;
	}

	.submit-button {
		width: 100%;
		justify-self: stretch;
	}

	.brand-footer {
		flex-direction: column;
		gap: 1rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}