: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: 5px 1.75rem;
	margin-bottom: 1.25rem;
	flex-wrap: wrap;
	justify-content: center;
}

.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-1 {
	width: 150px;
	object-fit: contain;
}

.hero__logo-2 {
	width: 195px;
	object-fit: contain;
}

.hero__logo-3 {
	width: 64px;
	object-fit: contain;
}

.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(1.938rem, 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;
}

h2 {
	margin: 0;
	font-size: clamp(1.5rem, 2vw, 2.375rem);
	font-weight: 700;
	line-height: 113%;
	color: #112949;
}

.text-balance {
	text-wrap: balance;
}

.thank-you-text {
	color: #97A3B4;
	text-align: center;
	font-size: 21px;
	font-weight: 400;
	line-height: 157%;
}

.section-heading p {
	max-width: 52rem;
	margin: 0.6rem 0 0;
	font-weight: 400;
	font-size: 1rem;
	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: 1.44rem;
	line-height: 1.21;
}

.step-number {
	color: var(--accent);
}

.question-group {
	margin: 0;
	padding: 1.15rem;
	border: none;
	position: relative;
}

.question-group legend {
	padding: 0 0.25rem;
	font-weight: 700;
	color: #049FD9;
	font-size: 17px;
	line-height: 20px;
}

.question-group legend>span {
	color: #A4ABB8;
}

.choice {
	display: grid;
	grid-template-columns: 1.25rem minmax(0, 1fr);
	gap: 0.75rem;
	align-items: start;
	padding-bottom: 0.75rem;
	align-items: center;
	color: var(--text);
	cursor: pointer;
}

.choice:last-child {
	padding-bottom: 0;
}

.form-grid {
	display: grid;
	grid-template-columns: 35px 1fr;
}

.form-progress {
	width: 4px;
	height: 100%;
	background-color: #E5E7EB;
	position: relative;
	border-radius: 22px;
	overflow: hidden;
}

.progress-fill {
	width: 100%;
	height: 0%;
	background: linear-gradient(to bottom, #00bceb, #01507d);
	position: absolute;
	top: 0;
	left: 0;
	transition: height 0.4s ease-out;
}

.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;
}

.question-group.input-error {
	background-color: #dc35450f;
}

.form-status.is-error {
	margin-bottom: 15px;
	padding: 20px;
	background-color: #dc35450f;
	border-left: 2px solid #DC3544;
}

.choice span {
	color: #344054;
	font-weight: 400;
	font-size: 1rem;
	line-height: 22px;
}

.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.input-error {
	border-color: #dc3545;
}

.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);
}

.consent-box.input-error {
	background-color: #dc35450f;
	border-color: #DC3544;
}

.checkbox-label {
	display: flex;
	gap: 0.875rem;
	align-items: start;
	cursor: pointer;
}

.checkbox-label span {
	color: #101828;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px; 
	cursor: auto;
}

.privacy-note {
	margin: 0.75rem 0 0;
	padding-left: 58px;
	color: #4A5565;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px; 
}

.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: 400;
	cursor: pointer;
	font-size: 1rem;
}

.submit-button.disabled {
	background: #D1D5DC;
	color: #FFF;
}


.submit-button:disabled {
	cursor: default;
}

.submit-button:hover {
	transform: translateY(-1px);
}

.btn-download {
    width: fit-content;
    padding: 0.75rem 1.4rem;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand) 0%, var(--brand-2) 50%, var(--brand) 100%);
    background-size: 200% 100%;
    background-position: 0% 50%;
    color: #fff;
    font-weight: 400;
    cursor: pointer;
    font-size: 0.875rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}

.btn-download:hover{
	background-position: 100% 50%;
}

.thank-you-download{
	font-size: 1rem;
    font-weight: 600;
    color: #112949;
	line-height: 1.5;
}

.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 {
	cursor: pointer;
	position: relative;
	transition: .4s;
	display: inline-block;
	height: 24px;
	position: relative;
	width: 44px;
	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%;
}

.thank-you {
	padding: 2.5rem 0;
}

.thank-you-content {
	max-width: 840px;
	margin: 0 auto;
	border-radius: 20px;
	background: #ECEEF1;
	box-shadow: -46px -2px 74.8px 0 rgba(0, 0, 0, 0.05) inset;
	text-align: center;
	padding: 80px 0 60px 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.thank-you-content-wrapper {
	max-width: 592px;
	margin: 0 auto;
	display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

@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 262px;
	}

	.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 {
		padding: 1.25rem;
		border-radius: 24px;
	}

	.form-card {
		padding: 1rem;
		border-radius: 24px;
	}

	.hero__eyebrow {
		gap: 0.75rem;
	}

	.hero__logo-1 {
		width: 126px;
	}

	.hero__logo-3 {
		width: 54px;
	}

	.consent-box {
		padding: 1rem;
	}

	.question-group {
		padding: 0;
		margin: 15px 0;
	}

	.choice,
	.checkbox-label {
		gap: 0.75rem;
	}

	.submit-button {
		width: 100%;
		justify-self: stretch;
	}

	.brand-footer {
		flex-direction: column;
		gap: 1rem;
	}

	.form-grid {
		grid-template-columns: 15px 1fr;
	}

	.field input {
		padding: 0.75rem 1rem;
		min-height: 50px;
	}

	.thank-you-content-wrapper {
		padding: 0 1rem;
	}

	.thank-you-text {
		font-size: 18px;
	}

	.question-group legend {
		margin-bottom: 12px;
	}
}

@media (max-width: 520px) {
	.hero {
		height: 534px;
		padding: 32px;
		background-image: url(../assets/hero-mobile.webp);
	}

	.hero__content {
		justify-content: space-between;
		height: 100%;
	}

	.hero__media {
		gap: 5px 15px;
	}

	.hero__logo-1 {
		width: 44%;
	}

	.hero__logo-2 {
		width: 39.5%;
	}

	.hero__logo-3 {
		width: 37px;
	}

	.field label{
		font-size: 14px;
	}

	.checkbox-label {
		flex-direction: column;
	}

	.privacy-note {
		padding-left: 0;
	}

	.hero h1{
		text-wrap: unset;
	}
}

@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;
	}
}