*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0
}

:root {
	--green: #00B87C
}

html {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased
}

body {
	background: var(--bg);
	color: var(--text);
	font-family: 'DM Sans', sans-serif;
	font-size: 16px;
	line-height: 1.65;
	overflow-x: hidden
}

.nav-logo {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 1.55rem;
	font-weight: 800;
	color: var(--navy);
	text-decoration: none;
	letter-spacing: .02em
}

.nav-logo span {
	color: var(--red)
}

.nav-links {
	display: flex;
	align-items: center;
	list-style: none
}

.nav-links a {
	color: var(--muted);
	font-size: .83rem;
	font-weight: 500;
	text-decoration: none;
	padding: .4rem .7rem;
	border-radius: 6px;
	transition: color .2s, background .2s
}

.nav-links a:hover, .nav-links a.active {
	color: var(--navy);
	background: rgba(11, 35, 112, .05)
}

.nav-links a.active {
	font-weight: 600
}

.btn-login {
	border: 1px solid var(--navy);
	color: var(--navy);
	background: transparent;
	padding: .4rem 1.1rem;
	border-radius: 8px;
	font-size: .83rem;
	font-weight: 600;
	text-decoration: none;
	transition: all .2s
}

.btn-login:hover {
	background: var(--navy);
	color: white
}

.nav-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	flex-direction: column;
	gap: 5px;
	padding: .25rem
}

.nav-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--navy);
	border-radius: 2px
}

.mobile-menu {
	display: none;
	position: fixed;
	top: 64px;
	left: 0;
	right: 0;
	background: white;
	border-bottom: 1px solid var(--border);
	padding: 1rem 5%;
	z-index: 999
}

.mobile-menu.open {
	display: block
}

.mobile-menu a {
	display: block;
	padding: .7rem 0;
	color: var(--text);
	text-decoration: none;
	font-weight: 500;
	border-bottom: 1px solid var(--border)
}

.mobile-menu a:last-child {
	border-bottom: none
}

.hero-band {
	background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy2) 100%);
	color: white;
	padding: 4.5rem 5% 3.5rem;
	margin-top: 64px;
	text-align: center;
	position: relative;
	overflow: hidden
}

.hero-band::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 60% 70% at 50% 40%, rgba(230, 57, 70, .1) 0%, transparent 65%)
}

.hero-band h1 {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: clamp(2.2rem, 5vw, 3.2rem);
	font-weight: 800;
	letter-spacing: -.02em;
	position: relative;
	z-index: 1
}

.hero-band p {
	color: rgba(255, 255, 255, .72);
	margin-top: .5rem;
	position: relative;
	z-index: 1
}

.form-page {
	max-width: 940px;
	margin: 0 auto;
	padding: 3rem 5% 5rem
}

.info-banner {
	display: flex;
	align-items: flex-start;
	gap: .85rem;
	background: rgba(0, 184, 124, .08);
	border: 1px solid rgba(0, 184, 124, .25);
	border-radius: 10px;
	padding: 1rem 1.25rem;
	margin-bottom: 2.5rem;
	font-size: .9rem;
	color: #1a5c41
}

.info-ico {
	width: 22px;
	height: 22px;
	background: var(--green);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .7rem;
	color: white;
	flex-shrink: 0;
	margin-top: .1rem
}

.progress-steps {
	display: flex;
	gap: 0;
	margin-bottom: 2.5rem;
	background: white;
	border: 1px solid var(--border);
	border-radius: 10px;
	overflow: hidden
}

.prog-step {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	padding: .85rem .5rem;
	font-size: .8rem;
	font-weight: 600;
	color: var(--muted);
	position: relative;
	cursor: default
}

.prog-step.active {
	background: var(--navy);
	color: white
}

.prog-step.done {
	background: rgba(0, 184, 124, .08);
	color: var(--green)
}

.prog-step:not(:last-child)::after {
	content: '›';
	position: absolute;
	right: 0;
	color: var(--border);
	font-size: 1.1rem
}

.prog-step.active:not(:last-child)::after {
	color: rgba(255, 255, 255, .4)
}

.prog-num {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .75rem;
	font-weight: 800;
	background: rgba(255, 255, 255, .2);
	flex-shrink: 0
}

.prog-step:not(.active) .prog-num {
	background: rgba(11, 35, 112, .07);
	color: var(--muted)
}

.prog-step.done .prog-num {
	background: var(--green);
	color: white
}

.form-section {
	background: white;
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 2rem;
	margin-bottom: 1.25rem
}

.form-section-title {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 1.15rem;
	font-weight: 800;
	color: var(--navy);
	margin-bottom: 1.5rem;
	padding-bottom: .75rem;
	border-bottom: 1px solid var(--border);
	display: flex;
	align-items: center;
	gap: .6rem
}

.form-section-title .sec-ico {
	font-size: 1rem
}

.form-row {
	display: grid;
	gap: 1rem;
	margin-bottom: 1rem
}

.form-row.cols-2 {
	grid-template-columns:1fr 1fr
}

.form-row.cols-3 {
	grid-template-columns:1fr 1fr 1fr
}

.form-row.cols-1 {
	grid-template-columns:1fr
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: .4rem
}

.form-label {
	font-size: .82rem;
	font-weight: 600;
	color: var(--navy);
	letter-spacing: .01em
}

.form-label .req {
	color: var(--red);
	margin-left: .2rem
}

.form-input, .form-select {
	padding: .7rem .95rem;
	border: 1px solid var(--border);
	border-radius: 9px;
	font-family: 'DM Sans', sans-serif;
	font-size: .93rem;
	color: var(--text);
	background: var(--bg);
	transition: border-color .2s, background .2s;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
}

.form-input:focus, .form-select:focus {
	border-color: var(--navy);
	background: white;
	box-shadow: 0 0 0 3px rgba(11, 35, 112, .07)
}

.form-input::placeholder {
	color: #b0bcc8
}

.select-wrap {
	position: relative
}

.select-wrap::after {
	content: '▾';
	position: absolute;
	right: .9rem;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	color: var(--muted);
	font-size: .85rem
}

.input-prefix {
	display: flex;
	border: 1px solid var(--border);
	border-radius: 9px;
	overflow: hidden;
	background: var(--bg);
	transition: border-color .2s
}

.input-prefix:focus-within {
	border-color: var(--navy);
	background: white;
	box-shadow: 0 0 0 3px rgba(11, 35, 112, .07)
}

.prefix-label {
	background: rgba(11, 35, 112, .05);
	color: var(--muted);
	padding: .7rem .85rem;
	font-size: .85rem;
	font-weight: 600;
	border-right: 1px solid var(--border);
	white-space: nowrap
}

.input-prefix input {
	border: none;
	background: transparent;
	padding: .7rem .85rem;
	font-family: 'DM Sans', sans-serif;
	font-size: .93rem;
	color: var(--text);
	outline: none;
	flex: 1;
	min-width: 0
}

.hint-box {
	display: flex;
	align-items: flex-start;
	gap: .65rem;
	background: rgba(11, 35, 112, .04);
	border: 1px solid rgba(11, 35, 112, .1);
	border-left: 3px solid var(--navy2);
	border-radius: 8px;
	padding: .85rem 1rem;
	font-size: .83rem;
	color: var(--muted);
	margin-top: .25rem
}

.hint-box a {
	color: var(--navy);
	font-weight: 600;
	text-decoration: none
}

.hint-box a:hover {
	text-decoration: underline
}

.disabled-field {
	background: #f0f0f0;
	color: #b0bcc8;
	cursor: not-allowed
}

.submit-area {
	background: white;
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 2rem
}

.btn-submit {
	display: block;
	width: 100%;
	background: var(--navy);
	color: white;
	padding: 1rem;
	border: none;
	border-radius: 10px;
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 1.15rem;
	font-weight: 800;
	letter-spacing: .04em;
	text-transform: uppercase;
	cursor: pointer;
	transition: all .2s;
}

.btn-submit:hover {
	background: var(--navy3);
	box-shadow: 0 4px 20px rgba(11, 35, 112, .3);
	transform: translateY(-1px)
}

.secure-badge {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .4rem;
	margin-top: .65rem;
	font-size: .75rem;
	color: var(--muted);
	letter-spacing: .06em;
	text-transform: uppercase
}

.contact-note {
	background: rgba(230, 57, 70, .05);
	border: 1px solid rgba(230, 57, 70, .15);
	border-left: 3px solid var(--red);
	border-radius: 8px;
	padding: 1rem 1.25rem;
	margin-top: 1.25rem;
	font-size: .84rem;
	color: var(--muted)
}

.contact-note strong {
	color: var(--text);
	font-weight: 700
}

footer {
	background: var(--navy-dark);
	color: rgba(255, 255, 255, .55);
	padding: 2.5rem 5%
}

.footer-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.25rem
}

.footer-logo {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 1.8rem;
	font-weight: 800;
	color: white;
	text-decoration: none
}

.footer-logo span {
	color: #FF8C94
}

.footer-links {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
	justify-content: center
}

.footer-links a {
	color: rgba(255, 255, 255, .45);
	text-decoration: none;
	font-size: .83rem;
	transition: color .2s
}

.footer-links a:hover {
	color: white
}

.footer-copy {
	font-size: .78rem;
	color: rgba(255, 255, 255, .3);
	text-align: center
}

.scroll-top.show {
	opacity: 1;
	transform: scale(1);
	pointer-events: all
}

@media (max-width: 900px) {
	.nav-links, .btn-login {
		display: none
	}

	.nav-toggle {
		display: flex
	}
}

@media (max-width: 640px) {
	.form-row.cols-2, .form-row.cols-3 {
		grid-template-columns:1fr
	}

	.progress-steps {
		display: none
	}

	.form-page {
		padding: 2rem 1.25rem 4rem
	}
}
