:root {
	--primary: #1e40af;
	--primary-dark: #1e3a8a;
	--primary-light: #3b82f6;
	--accent: #f59e0b;
	--dark: #0f172a;
	--gray-900: #1e293b;
	--gray-700: #334155;
	--gray-500: #64748b;
	--gray-300: #cbd5e1;
	--gray-100: #f1f5f9;
	--white: #ffffff;
	--success: #10b981;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
.skip-link{position:absolute;top:-40px;left:0;background:#1e40af;color:#fff;padding:8px 16px;z-index:200;font-size:14px;font-weight:600;transition:top .2s;text-decoration:none}.skip-link:focus{top:0}
*:focus-visible{outline:2px solid #3b82f6;outline-offset:2px}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, sans-serif; color: var(--gray-700); line-height: 1.6; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── NAV ─────────────────────────────────── */
nav {
	position: fixed; top: 0; left: 0; right: 0; z-index: 100;
	background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--gray-300); padding: 0 24px; height: 70px;
}
.nav-inner {
	max-width: 1140px; margin: 0 auto; height: 100%;
	display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { height: 56px; }
.nav-links { display: flex; gap: 24px; align-items: center; list-style: none; }
.nav-links a {
	text-decoration: none; color: var(--gray-700); font-size: 14px;
	font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary); text-decoration: none; }
.nav-cta {
	background: var(--primary); color: var(--white) !important; padding: 10px 24px;
	border-radius: 8px; font-weight: 600 !important; transition: background 0.2s !important;
	white-space: nowrap;
}
.nav-cta:hover { background: var(--primary-dark); text-decoration: none !important; }
.mobile-toggle { display: none; background: none; border: none; font-size: 28px; cursor: pointer; color: var(--gray-700); }

/* ── PAGE HERO ──────────────────────────── */
.hero {
	padding: 140px 24px 80px; background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #1e40af 100%);
	color: var(--white); position: relative; overflow: hidden;
}
.hero::after {
	content: ''; position: absolute; inset: 0;
	background: radial-gradient(ellipse at 70% 50%, rgba(59,130,246,0.15) 0%, transparent 60%);
}
.hero .container { position: relative; z-index: 1; display: flex; align-items: center; gap: 60px; }
.hero-text { flex: 1; }
.hero-text h1 {
	font-size: clamp(32px, 4.5vw, 50px); font-weight: 800; line-height: 1.15;
	margin-bottom: 20px; letter-spacing: -0.5px;
}
.hero-text h1 span { color: var(--accent); }
.hero-text p { font-size: 18px; color: rgba(255,255,255,0.8); max-width: 540px; margin-bottom: 32px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image { flex: 0 0 480px; }
.hero-image img {
	width: 100%; max-height: 480px; object-fit: contain;
}

/* ── PAGE HERO (subpages) ─────────────── */
.page-hero {
	padding: 140px 24px 60px;
	background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #1e40af 100%);
	color: var(--white); text-align: center;
}
.page-hero h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin-bottom: 12px; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.85); max-width: 640px; margin: 0 auto; line-height: 1.7; }

/* ── SECTIONS ────────────────────────────── */
section { padding: 80px 24px; }

/* ── BUTTONS ────────────────────────────── */
.btn {
	display: inline-block; padding: 14px 32px; border-radius: 10px;
	font-size: 16px; font-weight: 600; text-decoration: none; transition: all 0.2s;
}
.btn:hover { text-decoration: none; }
.btn-accent { background: var(--accent); color: var(--dark); }
.btn-accent:hover { background: #d97706; transform: translateY(-2px); }
.btn-outline-white { border: 2px solid rgba(255,255,255,0.4); color: var(--white); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-primary-full { background: var(--primary); color: var(--white); width: 100%; text-align: center; }
.btn-primary-full:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: #eff6ff; }

/* ── CTA BANNER ─────────────────────────── */
.cta-banner {
	padding: 90px 24px; text-align: center;
	background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #1e40af 100%); color: var(--white);
}
.cta-banner h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 800; margin-bottom: 16px; max-width: 700px; margin-left: auto; margin-right: auto; }
.cta-banner p { font-size: 17px; color: rgba(255,255,255,0.85); margin-bottom: 32px; }

/* ── FOOTER ──────────────────────────────── */
footer {
	background: var(--dark); color: rgba(255,255,255,0.5); padding: 48px 24px;
	text-align: center; font-size: 14px;
}
footer a { color: rgba(255,255,255,0.7); text-decoration: none; }
footer a:hover { color: var(--white); }
footer .footer-links { margin-bottom: 16px; display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 960px) {
	.hero .container { flex-direction: column; text-align: center; }
	.hero-text p { margin-left: auto; margin-right: auto; }
	.hero-buttons { justify-content: center; }
	.hero-image { flex: 0 0 auto; max-width: 500px; width: 100%; }
}
@media (max-width: 980px) {
	.nav-links { display: none; position: absolute; top: 70px; left: 0; right: 0;
		background: var(--white); flex-direction: column; padding: 20px; gap: 16px;
		border-bottom: 1px solid var(--gray-300); box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	}
	.nav-links.open { display: flex; }
	.mobile-toggle { display: block; }
}
