
:root{
	--bg:#f6f8fb;
	--surface:#ffffff;
	--text:#1f2937;
	--muted:#6b7280;
	--primary:#0b3d91;
	--accent:#0b7fa6;
}

*{box-sizing:border-box}
html,body{height:100%;}
body{
	display:flex;
	align-items:center;
	justify-content:center;
	min-height:100vh;
	font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
	margin:0;
	background:linear-gradient(135deg, #0b3d91 0%, #051f47 50%, #0b7fa6 100%);
	color:var(--text);
	line-height:1.5;
	padding:1rem;
}

.wrap{max-width:1100px;margin:0 auto;padding:0.8rem;}

.site-header{background:linear-gradient(90deg,var(--primary),#0a2f6f);color:#fff}
.site-header .wrap{display:flex;justify-content:space-between;align-items:center}
.brand{font-weight:700;font-size:1.25rem}
.brand span{color:var(--accent)}
.brand{display:flex;align-items:center;gap:0.75rem}
.logo{height:68px;display:block;object-fit:contain;filter:drop-shadow(0 1px 0 rgba(0,0,0,0.12));opacity:0.98}
.site-header a{color:#fff;text-decoration:none}
.contact{font-size:0.9rem;text-align:right}

.hero{background:linear-gradient(90deg,var(--primary),#0a2f6f);color:#fff;padding:0.8rem 0}
.hero .wrap{display:flex;flex-direction:column;align-items:flex-start}
.hero h1{margin:0 0 0.1rem;font-size:1.5rem}
.hero .lead{margin:0 0 0.4rem;color:rgba(255,255,255,0.9);font-size:0.95rem}
.btn{display:inline-block;background:#fff;color:var(--primary);padding:0.6rem 1rem;border-radius:6px;text-decoration:none;font-weight:600}

.services{padding:0.5rem 0;background:transparent}
.services h2{color:var(--primary);margin-top:0;margin-bottom:0.3rem}
.services p{color:var(--muted);margin-bottom:0.5rem;font-size:0.9rem}

.grid{display:grid;grid-template-columns:repeat(2,1fr);gap:0.75rem;margin-top:0.75rem}
.card{background:var(--surface);padding:0.75rem;border-radius:8px;box-shadow:0 1px 4px rgba(16,24,40,0.06)}
.card h3{margin-top:0;margin-bottom:0.3rem;color:#0b3d91;font-size:0.95rem}
.card ul{margin:0.1rem 0 0 1rem;color:var(--text);font-size:0.9rem}
.company-number{color:var(--muted);font-size:0.9rem}

/* framed page */
.page-frame{width:100%;max-width:min(95vw, 920px);max-height:90vh;border:1px solid rgba(16,24,40,0.06);background:var(--surface);border-radius:10px;box-shadow:0 10px 30px rgba(16,24,40,0.06);padding:0;position:relative;overflow-y:auto;overflow-x:hidden;scrollbar-width:none}.page-frame::-webkit-scrollbar{display:none}
.page-frame .wrap{padding:1rem 1.25rem}

.corner-info{position:absolute;top:1rem;right:1.25rem;text-align:right;color:#fff;font-weight:600;line-height:1.25;text-shadow:0 1px 2px rgba(0,0,0,0.35)}
.corner-info p{margin:0;font-weight:600}
.corner-info a{color:inherit;text-decoration:none;cursor:pointer}.corner-info a:hover{text-decoration:underline}

/* footer removed - no styles needed */

@media (max-width:800px){
	.grid{grid-template-columns:1fr}
	.hero h1{font-size:1.4rem}
	.hero{padding:2rem 0}
	.site-header .wrap{flex-direction:column;align-items:flex-start;gap:0.5rem}
	.contact{text-align:left}
	.logo{height:56px}
	.page-frame{border-radius:6px}
	.corner-info{right:0.75rem;top:0.8rem;font-size:0.95rem}
}

