:root {
	--bg: #f8fafc;
	--panel: #ffffff;
	--ink: #0f172a;
	--muted: #475569;
	--line: #e2e8f0;
	--brand: #0189c5;
	--brand-dark: #016e9d;
	--soft: #e8f7fd;
	--accent: #d8f1fb;
	--warn: #fef3c7;
	--shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-family: 'Inter', Arial, Helvetica, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background: var(--bg);
	color: var(--ink);
	line-height: 1.5;
}

a {
	color: var(--brand-dark);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.container {
	width: min(1120px, calc(100% - 32px));
	margin: 0 auto;
}

header {
	background: linear-gradient(135deg, #0f172a 0%, var(--brand) 100%);
	color: #fff;
	padding: 20px 0 72px;
}

.topbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding-bottom: 28px;
}

.brand {
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.hero {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 28px;
	align-items: start;
}

.hero-image {
	width: 100%;
	max-width: 640px;
	height: auto;
	display: block;
	border-radius: 18px;
	margin: 0 0 22px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.hero-copy h1 {
	font-size: clamp(2rem, 4vw, 3.5rem);
	line-height: 1.05;
	margin: 0 0 16px;
}

.hero-copy p {
	font-size: 1.08rem;
	max-width: 700px;
	color: rgba(255,255,255,0.9);
	margin: 0 0 18px;
}

.hero-points {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-top: 22px;
}

.point {
	background: rgba(255,255,255,0.1);
	border: 1px solid rgba(255,255,255,0.14);
	border-radius: 16px;
	padding: 14px;
	font-size: 0.95rem;
}

.form-card {
	background: var(--panel);
	color: var(--ink);
	border-radius: 22px;
	padding: 22px;
	box-shadow: var(--shadow);
}

.form-card h2 {
	margin: 0 0 10px;
	font-size: 1.35rem;
}

.form-card p {
	margin: 0 0 18px;
	color: var(--muted);
	font-size: 0.96rem;
}

label {
	display: block;
	font-size: 0.92rem;
	font-weight: 700;
	margin: 12px 0 6px;
}

input,
select,
textarea,
button {
	font: inherit;
}

input,
select,
textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: #fff;
	color: var(--ink);
}

textarea {
	min-height: 96px;
	resize: vertical;
}

button,
.btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 13px 18px;
	border-radius: 12px;
	border: 0;
	background: var(--brand);
	color: #fff;
	font-weight: 700;
	cursor: pointer;
}

button:hover,
.btn:hover {
	background: var(--brand-dark);
	text-decoration: none;
}

.small-note {
	font-size: 0.8rem;
	color: var(--muted);
	margin-top: 10px;
}

main {
	padding: 36px 0 72px;
}

.grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.card {
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: 18px;
	padding: 22px;
	box-shadow: var(--shadow);
}

.card h3 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 1.1rem;
}

.card p,
.card li {
	color: var(--muted);
}

.section {
	margin-top: 28px;
}

.section h2 {
	font-size: 1.7rem;
	margin: 0 0 10px;
}

.section > p {
	margin: 0 0 18px;
	color: var(--muted);
	max-width: 860px;
}

.steps {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.step-number {
	width: 34px;
	height: 34px;
	border-radius: 999px;
	background: var(--soft);
	color: var(--brand-dark);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	margin-bottom: 12px;
}

.highlight {
	background: linear-gradient(135deg, var(--soft), #ffffff);
	border: 1px solid #bae6fd;
}

.warning {
	background: var(--warn);
	border: 1px solid #fcd34d;
}

.cta-band {
	margin-top: 32px;
	background: #0f172a;
	color: #fff;
	border-radius: 22px;
	padding: 28px;
	display: flex;
	justify-content: space-between;
	gap: 18px;
	align-items: center;
}

.cta-band p {
	margin: 8px 0 0;
	color: rgba(255,255,255,0.82);
}

.faq {
	display: grid;
	gap: 14px;
}

details {
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: 16px 18px;
}

summary {
	font-weight: 700;
	cursor: pointer;
}

details p {
	margin: 12px 0 0;
	color: var(--muted);
}

footer {
	padding: 26px 0 52px;
	color: var(--muted);
	font-size: 0.92rem;
}

.badge-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 16px;
}

.badge {
	padding: 8px 12px;
	border-radius: 999px;
	background: var(--accent);
	color: #015b82;
	font-size: 0.9rem;
	font-weight: 700;
}

@media (max-width: 980px) {
	.hero,
	.grid,
	.steps,
	.hero-points {
		grid-template-columns: 1fr;
	}

	.cta-band {
		flex-direction: column;
		align-items: flex-start;
	}
}
h1, h2, h3 {
	font-weight: 600;
	letter-spacing: -0.01em;
}

.form-card {
	border-radius: 16px;
	border: 1px solid #e5e7eb;
	box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

