:root {
	--bg: #f4fbfb;
	--bg2: #eaf6f7;
	--card: #ffffff;
	--text: #0b2a3a;
	--muted: #5d6f7a;
	--accent: #1fb6c9;
	--border: rgba(11, 42, 58, 0.10);
	--max: 1160px;
	--radius: 18px;
	--shadow: 0 18px 44px rgba(11, 42, 58, 0.10);
	--home-wordmark-size: 410px;
}

* { box-sizing: border-box; }

body {
	margin: 0;
	font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
	color: var(--text);
	background:
		radial-gradient(1000px 520px at 15% 0%, rgba(31, 182, 201, 0.18), transparent 58%),
		radial-gradient(900px 520px at 85% 10%, rgba(10, 161, 180, 0.14), transparent 58%),
		linear-gradient(180deg, var(--bg2), var(--bg));
	line-height: 1.55;
}

a { color: inherit; text-decoration: none; }

.wrap {
	width: min(var(--max), 100% - 32px);
	margin: 0 auto;
}

header {
	position: sticky;
	top: 0;
	z-index: 30;
	backdrop-filter: blur(10px);
	background: rgba(244, 251, 251, 0.72);
	border-bottom: 1px solid rgba(11, 42, 58, 0.06);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 12px 0;
}

.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: auto;
}

.brand-mark {
	width: 46px;
	height: 46px;
	border-radius: 14px;
	border: 1px solid var(--border);
	background: rgba(255, 255, 255, 0.80);
	display: grid;
	place-items: center;
	box-shadow: 0 10px 18px rgba(11, 42, 58, 0.08);
}

.brand-mark img {
	width: 34px;
	height: 34px;
	object-fit: contain;
	display: block;
}

nav {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: nowrap;
	justify-content: center;
}

nav a {
	padding: 8px 10px;
	border-radius: 12px;
	color: var(--muted);
	font-size: 13px;
	font-weight: 600;
}

nav a:hover {
	background: rgba(11, 42, 58, 0.04);
	color: var(--text);
}

.lang-switch {
	display: flex;
	gap: 8px;
}

.lang-switch button {
	border: 1px solid var(--border);
	background: #fff;
	color: var(--muted);
	border-radius: 12px;
	padding: 8px 10px;
	font-weight: 800;
	font-size: 12px;
	box-shadow: 0 10px 18px rgba(11, 42, 58, 0.06);
	cursor: pointer;
}

.lang-switch button.active {
	border-color: rgba(31, 182, 201, 0.45);
	background: rgba(31, 182, 201, 0.12);
	color: var(--text);
}

main { padding: 24px 0 54px; }

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

.hero {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 14px;
	align-items: stretch;
}

.hero-copy {
	padding: 26px 24px;
	display: flex;
	flex-direction: column;
}

.hero-title {
	margin: 4px 0 10px;
	line-height: 1;
}

.hero-title img {
	display: block;
	width: min(var(--home-wordmark-size), 100%);
	height: auto;
}

.hero-sub {
	margin: 0 0 10px;
	color: var(--muted);
	font-size: 18px;
	font-weight: 700;
}

.hero-text {
	margin: 0;
	color: var(--muted);
	max-width: 54ch;
}

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

.hero .cta-row {
	margin-top: auto;
	justify-content: center;
	padding-top: 18px;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 170px;
	border-radius: 14px;
	border: 1px solid var(--border);
	background: #fff;
	color: var(--text);
	font-size: 13px;
	font-weight: 800;
	padding: 11px 14px;
	box-shadow: 0 10px 18px rgba(11, 42, 58, 0.06);
}

.btn.primary {
	border-color: rgba(31, 182, 201, 0.35);
	background: linear-gradient(135deg, rgba(31, 182, 201, 0.95), rgba(10, 161, 180, 0.78));
	color: #fff;
	box-shadow: 0 12px 22px rgba(31, 182, 201, 0.22);
}

.hero-media {
	overflow: hidden;
	position: relative;
	min-height: 360px;
}

.hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hero-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(11, 42, 58, 0.25));
}

section { margin-top: 22px; }

.section-kicker {
	margin: 0 0 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.16em;
	color: var(--muted);
	text-transform: uppercase;
}

.section-title {
	margin: 0 0 10px;
	font-size: clamp(28px, 3.4vw, 36px);
	letter-spacing: -0.02em;
	line-height: 1.1;
}

.section-text {
	margin: 0;
	color: var(--muted);
	max-width: 68ch;
}

.problem-card {
	padding: 20px;
}

.problem-subline {
	margin-top: 12px;
	font-weight: 800;
	color: var(--text);
}

.program-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.program-card {
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.program-card h3 {
	margin: 0;
	font-size: 18px;
	letter-spacing: -0.01em;
}

.program-card p {
	margin: 0;
	color: var(--muted);
	flex: 1;
}

.contact-panel {
	padding: 20px;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 12px;
	align-items: center;
}

footer {
	margin-top: 30px;
	padding-top: 16px;
	border-top: 1px solid rgba(15, 42, 56, 0.10);
	padding-bottom: 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	font-size: 13px;
	color: var(--muted);
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(11, 42, 58, 0.10);
	border-radius: 14px;
	padding-inline: 14px;
	box-shadow: 0 10px 20px rgba(11, 42, 58, 0.08);
}

footer .legal-links {
	margin-left: auto;
}

@media (max-width: 980px) {
	nav { display: none; }
	.hero { grid-template-columns: 1fr; }
	.program-grid { grid-template-columns: 1fr; }
	.contact-panel { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
	footer {
		align-items: flex-start;
	}

	footer .legal-links {
		width: 100%;
		margin-left: 0;
		justify-content: flex-start;
	}
}
	

