:root {
	--page: #f6f7f8;
	--surface: #ffffff;
	--text: #101828;
	--muted: #8b9bb4;
	--line: #cfd6df;
	--line-soft: #e4e8ee;
	--navy: #0b2f5c;
	--blue: #00358a;
	--red: #d00000;
	--error: #c62828;
	--success: #147a56;
	--shadow: 0 20px 45px rgba(13, 32, 61, 0.07);
	--radius-xl: 28px;
	--radius-lg: 20px;
	--max-width: 1340px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	width: min(calc(100% - 40px), var(--max-width));
	margin: 50px auto 70px;
	color: var(--text);
	background: var(--page);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.45;
	-webkit-font-smoothing: antialiased;
}

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

button,
input,
textarea {
	font: inherit;
}

button,
label,
input[type="radio"],
input[type="checkbox"] {
	cursor: pointer;
}

a {
	color: inherit;
}

.skip-link {
	position: fixed;
	top: -100px;
	left: 20px;
	z-index: 1000;
	padding: 12px 18px;
	border-radius: 8px;
	color: #fff;
	background: var(--navy);
	text-decoration: none;
}

.skip-link:focus {
	top: 20px;
}

.sr-only {
	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;
}

.honeypot {
	position: absolute;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.hero {
	height: 390px;
	padding: 44px 40px;
	border-radius: var(--radius-xl);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #fff;
	background-color: #061b3f;
	background-image: url("../assets/banner.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	overflow: hidden;
    position: relative;
}
header.hero::after {
    content: '';
    display: block;
    position: absolute;
    right: 30px;
    bottom: 30px;
    background-image: url("../assets/ai-tool-voucher.svg");
    width: 125px;
    height: 125px;
    background-size:contain; 
    background-repeat: no-repeat;
}
.hero__logo {
	width: 224px;
	height: auto;
	margin-bottom: 26px;
}

.hero h1 {
	margin: 0;
	font-size: clamp(40px, 3vw, 52px);
	font-weight: 700;
	line-height: 0.99;
	letter-spacing: -1.2px;
	text-align: center;
}

.hero p {
	margin: 22px 0 0;
	color: #b9c6d8;
	font-size: 18px;
	line-height: 1.35;
	text-align: center;
}

.benefit-grid {
	width: min(100%, 900px);
	margin: 40px auto 50px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px;
}

.benefit-card {
	min-height: 154px;
	padding: 30px 24px;
	border-radius: 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: var(--surface);
	box-shadow: var(--shadow);
	text-align: center;
}

.benefit-card h2 {
	margin: 0 0 10px;
	color: var(--blue);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
}

.benefit-card p {
	max-width: 225px;
	margin: 0;
	color: #5f6f86;
	font-size: 14px;
	line-height: 1.4;
}

.form-card {
	width: min(100%, 1140px);
	margin: 0 auto;
	padding: 48px 48px 30px;
	border: 1px solid #b9bec5;
	border-radius: var(--radius-xl);
	background: rgba(255, 255, 255, 0.08);
}

.form-heading h2 {
	margin: 0;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.2;
}

.form-heading p {
	margin: 14px 0 0;
	color: var(--muted);
	font-size: 16px;
}

.introduction {
	margin-top: 32px;
	padding: 24px;
	border-radius: var(--radius-lg);
	background: var(--surface);
}

.introduction h3 {
	margin: 0 0 14px;
	color: var(--blue);
	font-size: 16px;
	font-weight: 700;
}

.introduction p {
	margin: 0;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.5;
}

.campaign-form {
	margin-top: 32px;
}

.questionnaire-layout {
	display: grid;
	grid-template-columns: 4px minmax(0, 1fr);
	gap: 32px;
}

.questionnaire-rail {
	width: 4px;
	min-height: 100%;
	border-radius: 999px;
	background: var(--navy);
}

.questions {
	min-width: 0;
}

.question {
	min-width: 0;
	margin: 0 0 36px;
	padding: 0;
	border: 0;
}

.question:last-child {
	margin-bottom: 0;
}

.question h3,
.question legend {
	display: block;
	width: 100%;
	margin: 0 0 24px;
	padding: 0;
	color: var(--text);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.2;
}

.question legend {
	margin-bottom: 32px;
}

.question h3 > span,
.question legend > span {
	color: var(--red);
}

.question-prompt {
	display: block;
	margin: -2px 0 12px;
	color: var(--blue);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.25;
}

.selection-hint {
	margin: -4px 0 12px;
	color: #3f4c5e;
	font-size: 13px;
}

.question input[type="text"],
.question input[type="email"],
.question textarea,
.contact-box input {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: 9px;
	color: var(--text);
	background: transparent;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.question input[type="text"],
.question input[type="email"],
.contact-box input {
	min-height: 50px;
	padding: 12px 15px;
}

.question textarea {
	min-height: 152px;
	padding: 14px 15px;
	resize: vertical;
}

.question input::placeholder,
.question textarea::placeholder,
.contact-box input::placeholder {
	color: #7f7f7f;
	opacity: 1;
}

.question input[type="text"]:focus,
.question input[type="email"]:focus,
.question textarea:focus,
.contact-box input:focus {
	border-color: var(--blue);
	background: #fff;
	box-shadow: 0 0 0 3px rgba(0, 53, 138, 0.12);
}

.choice-list {
	display: grid;
	gap: 11px;
}

.choice {
	width: fit-content;
	display: grid;
	grid-template-columns: 20px minmax(0, 1fr);
	gap: 10px;
	align-items: start;
	color: var(--text);
	font-size: 15px;
	line-height: 20px;
}

.choice input[type="radio"],
.choice input[type="checkbox"] {
	appearance: none;
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	margin: 0;
	border: 2px solid #cfd6df;
	border-radius: 50%;
	background: transparent;
	display: grid;
	place-content: center;
	transition: border-color 0.15s ease, background-color 0.15s ease;
}

.choice input[type="radio"]::before,
.choice input[type="checkbox"]::before {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--blue);
	content: "";
	transform: scale(0);
	transition: transform 0.12s ease-in-out;
}

.choice input[type="radio"]:checked,
.choice input[type="checkbox"]:checked {
	border-color: var(--blue);
}

.choice input[type="radio"]:checked::before,
.choice input[type="checkbox"]:checked::before {
	transform: scale(1);
}

.choice input:focus-visible,
.switch input:focus-visible + .switch__control {
	outline: 3px solid rgba(0, 53, 138, 0.2);
	outline-offset: 2px;
}

.choice.is-disabled {
	cursor: not-allowed;
	opacity: 0.45;
}

.choice.is-disabled input {
	cursor: not-allowed;
}

.other-choice {
	display: grid;
	grid-template-columns: 74px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
}

.other-choice .choice {
	width: 100%;
}

.other-choice input[type="text"] {
	min-height: 46px;
}

.other-choice input[type="text"]:disabled {
	cursor: not-allowed;
	opacity: 0.62;
}

.scale-options {
	display: flex;
	align-items: center;
	gap: 28px;
	min-height: 24px;
}

.scale-choice {
	grid-template-columns: 20px auto;
	gap: 9px;
}

.follow-up-label {
	margin-top: 24px;
}

.contact-box {
	margin-top: 32px;
	padding: 24px;
	border-radius: var(--radius-lg);
	background: var(--surface);
}

.contact-box label {
	display: block;
	margin-bottom: 16px;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.5;
}

.consent-box {
	margin-top: 32px;
	padding: 28px 24px;
	border: 1px solid var(--line-soft);
	border-radius: 14px;
}

.switch {
	position: relative;
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr);
	gap: 18px;
	align-items: start;
}

.switch input {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
}

.switch__control {
	position: relative;
	width: 44px;
	height: 24px;
	border-radius: 999px;
	background: #d3dae4;
	transition: background-color 0.2s ease;
}

.switch__control::before {
	position: absolute;
	top: 4px;
	left: 4px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
	content: "";
	transition: transform 0.2s ease;
}

.switch input:checked + .switch__control {
	background: var(--navy);
}

.switch input:checked + .switch__control::before {
	transform: translateX(20px);
}

.switch__text {
	color: var(--text);
	font-size: 13px;
	line-height: 1.55;
}

.switch__text a {
	font-weight: 700;
	text-decoration: none;
}

.switch__text a:hover,
.switch__text a:focus-visible {
	text-decoration: underline;
}

.form-status {
	display: none;
	margin: 22px 0 0;
	padding: 13px 16px;
	border-radius: 8px;
	font-size: 14px;
}

.form-status.is-error,
.form-status.is-success {
	display: block;
}

.form-status.is-error {
	border: 1px solid #efb3b3;
	color: #8d1818;
	background: #fff1f1;
}

.form-status.is-success {
	border: 1px solid #9cd8c1;
	color: #0d5f43;
	background: #eefaf5;
}

.input-error input[type="text"],
.input-error input[type="email"],
.input-error textarea,
input[aria-invalid="true"] {
	border-color: var(--error) !important;
}

.input-error .choice input,
.choice input[aria-invalid="true"] {
	border-color: var(--error) !important;
}

.input-error.consent-box {
	border-color: var(--error);
	background: #fff7f7;
}

.submit-button {
	width: 100%;
	min-height: 52px;
	margin-top: 30px;
	padding: 13px 24px;
	border: 0;
	border-radius: 999px;
	color: #fff;
	background: var(--navy);
	font-size: 15px;
	font-weight: 400;
	transition: transform 0.15s ease, background-color 0.15s ease, opacity 0.15s ease;
}

.submit-button:hover:not(:disabled) {
	background: #123f75;
	transform: translateY(-1px);
}

.submit-button:focus-visible {
	outline: 3px solid rgba(0, 53, 138, 0.25);
	outline-offset: 3px;
}

.submit-button:disabled {
	cursor: wait;
	opacity: 0.72;
}
.note{
	display: block;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;

}
.brand-footer {
	margin-top: 54px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 42px;
}

.brand-footer img:first-child {
	width: 179px;
}

.brand-footer img:last-child {
	width: 278px;
}

.thank-you {
	width: min(100%, 900px);
	margin: 50px auto 0;
}

.thank-you-content {
	padding: 70px 30px;
	border: 1px solid #b9bec5;
	border-radius: var(--radius-xl);
	background: #fff;
	box-shadow: var(--shadow);
	text-align: center;
}

.thank-you-content-wrapper {
	max-width: 650px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

.thank-you-content h2 {
	margin: 0;
	font-size: 32px;
	line-height: 1.2;
}

.thank-you-text {
	margin: 0;
	color: #66758b;
	font-size: 18px;
	line-height: 1.55;
}

.thank-you-download {
	margin-top: 10px;
	font-weight: 700;
}

.btn-download {
	min-width: 300px;
	padding: 13px 20px;
	border-radius: 999px;
	color: #fff;
	background: var(--navy);
	text-decoration: none;
	transition: background-color 0.15s ease, transform 0.15s ease;
}

.btn-download:hover,
.btn-download:focus-visible {
	background: #123f75;
	transform: translateY(-1px);
}

@media (max-width: 960px) {
	body {
		margin-top: 24px;
	}

	.hero {
		height: 360px;
	}

	.form-card {
		padding: 38px 32px 28px;
	}
	header.hero::after {
	    content: '';
	    display: block;
	    position: absolute;
	    right: 15px;
	    bottom: auto;
	    background-image: url(../assets/ai-tool-voucher.svg);
	    width: 80px;
	    height: 80px;
	    background-size: contain;
	    background-repeat: no-repeat;
	    z-index: 11111111;
	    top: 8px;
	}	
}

@media (max-width: 760px) {
	.benefit-grid {
		grid-template-columns: 1fr;
		gap: 16px;
		max-width: 520px;
	}

	.benefit-card {
		min-height: 125px;
	}

	.form-card {
		padding: 30px 24px 24px;
		border-radius: 22px;
	}

	.questionnaire-layout {
		gap: 20px;
	}

	.question h3,
	.question legend {
		font-size: 20px;
	}

	.other-choice {
		grid-template-columns: 1fr;
		gap: 9px;
	}

	.scale-options {
		gap: 18px;
		flex-wrap: wrap;
	}
	.hero__logo{
		max-width: 130px;
	}
}

@media (max-width: 520px) {
	body {
		width: min(calc(100% - 24px), var(--max-width));
		margin: 12px auto 36px;
	}

	.hero {
		height: 320px;
		padding: 28px 20px;
		border-radius: 20px;
		background-position: center;
	}

	.hero__logo {
		width: 186px;
		margin-bottom: 22px;
	}

	.hero h1 {
		font-size: 32px;
		letter-spacing: -0.7px;
	}

	.hero p {
		font-size: 13px;
	}

	.hero p br {
		display: none;
	}

	.benefit-grid {
		margin: 24px auto 30px;
	}

	.form-card {
		padding: 24px 16px 18px;
	}

	.form-heading h2 {
		font-size: 23px;
	}

	.form-heading p {
		font-size: 14px;
	}

	.introduction {
		padding: 18px;
	}

	.introduction p {
		font-size: 14px;
	}

	.questionnaire-layout {
		grid-template-columns: 3px minmax(0, 1fr);
		gap: 14px;
	}

	.question {
		margin-bottom: 28px;
	}

	.question h3,
	.question legend {
		margin-bottom: 16px;
		font-size: 19px;
	}

	.question-prompt {
		font-size: 14px;
		line-height: 1.35;
	}

	.choice {
		font-size: 14px;
	}

	.scale-options {
		gap: 12px;
	}

	.contact-box,
	.consent-box {
		padding: 18px;
	}

	.switch {
		grid-template-columns: 44px minmax(0, 1fr);
		gap: 12px;
	}

	.brand-footer {
		margin-top: 36px;
		gap: 22px;
		flex-wrap: wrap;
	}

	.brand-footer img:first-child {
		width: 145px;
	}

	.brand-footer img:last-child {
		width: 225px;
	}

	.thank-you-content {
		padding: 48px 20px;
	}

	.thank-you-content h2 {
		font-size: 27px;
	}

	.btn-download {
		width: 100%;
		min-width: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}
