:root{
  --brand:#0f4c81;
  --accent:#1e9b61;
  --ink:#0f172a;
  --muted:#475569;
  --bg:#f8fafc;
  --card:#ffffff;
  --line:#e2e8f0;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{font-family:system-ui,Segoe UI,Roboto,Arial,sans-serif;background:var(--bg);color:var(--ink);line-height:1.65}
a{color:var(--brand);text-decoration:none}
a:hover{text-decoration:underline}

/* NAV + HERO */
.hero{background:linear-gradient(135deg,#0f4c81 0%,#164b6e 60%);color:#fff}
.navwrap{background:transparent}
.nav{display:flex;justify-content:space-between;align-items:center;gap:1rem;padding:14px 18px;max-width:1100px;margin:0 auto}
.logo{font-weight:800;color:#fff;letter-spacing:.2px}
/* Burger */
#nav-toggle{display:none}
.burger{display:none;gap:6px;flex-direction:column;cursor:pointer}
.burger span{width:24px;height:2px;background:#fff;display:block}
/* Menu list */
.nav ul{display:flex;gap:14px;list-style:none;margin:0;padding:0}
.nav a{color:#fff} /* menu text white */
.nav a.active{font-weight:400;text-decoration:underline} /* underline active, not bold */
.nav a:hover{text-decoration:underline}

section#faq summary{
	cursor: pointer;
}

@media(max-width:1260px){
.content, section{
	margin:0 auto;
	padding:24px 15px}
}

@media(max-width:960px){
section{padding:0px 18px}
section#migration{display: none;}
}


/* Responsive menu */
@media(max-width:860px){
  .burger{display:flex}
  .nav ul{position:absolute;top:56px;right:12px;background:#0f4c81;border:1px solid rgba(255,255,255,.2);border-radius:10px;display:none;flex-direction:column;min-width:220px;padding:10px}
  #nav-toggle:checked + label + ul{display:flex; z-index: 9999;}
}

.hero-inner{max-width:1100px;margin:0 auto;padding:40px 18px 30px}
.hero h1{margin:0 0 6px;font-size:clamp(1.6rem,3vw,2.4rem)}
.subtitle{opacity:.95;max-width:98%;margin:0 0 14px}
.btn{
	display:inline-block;
	background:var(--accent);
	color:#fff;
	padding:10px 16px;
	border-radius:10px;
	font-weight:700;
	text-align: center;
}

/* MAIN CONTENT */
.content{margin:0 auto;padding:24px 0px}
.grid{display:grid;gap:16px}
.grid-2{grid-template-columns:1fr}
.grid-3{grid-template-columns:1fr}
@media(min-width:860px){
  .grid-2{grid-template-columns:1fr 1fr}
  .grid-3{grid-template-columns:1fr 1fr 1fr}
}
.card{background:var(--card);border:1px solid var(--line);border-radius:14px;padding:16px}
.card h3{margin-top:0;color:var(--brand)}
.list{margin:0px 0 0 -1rem}
.kicker{display:inline-block;font-size:.78rem;font-weight:700;color:var(--brand);background:#e8f0f7;padding:4px 8px;border-radius:999px;margin-bottom:6px}

/* FOOTER white background */
.footer{background:#0f4c81 ;color:var(--ink);padding:22px 18px;text-align:center;border-top:1px solid var(--line);margin-top:30px}
.footer .cols{display:grid;gap:16px;max-width:1100px;margin:0 auto}
@media(min-width:860px){
.footer .cols{grid-template-columns:2fr 1fr 1fr}
}
.footer h4{margin:0 0 8px;color:#fff}
.footer p,.footer li{margin:.2rem 0}
.footer ul{list-style:none;margin:0;padding:0}
.footer a,.footer{color: #fff;}
.small{color:#fff;font-size:.92rem}
hr.sep{border:0;border-top:1px solid var(--line);margin:16px 0}
address{font-style:normal}

/* Utility */
.badge{display:inline-block;background:#e8f0f7;color:#0f4c81;padding:2px 8px;border-radius:999px;font-size:.78rem;font-weight:700}

.projects{display:grid; grid-template-columns:repeat(3,1fr); gap:1rem}
.project{display:flex; flex-direction:column; gap:.6rem}
.project img{width:100%; height:160px; object-fit:cover; border-radius:.7rem;}

@media (max-width:799px){
  .projects{grid-template-columns:1fr}
}

h3.slogan{
	text-align: center;
	margin-top: 50px;
	margin-bottom: 50px;
	color: #0f4c81 ;
}

h3.slogan.buttondown{
	margin-bottom: 25px;
}

section{
	max-width: 1100px;
	margin-right: auto;
	margin-left: auto;
}

section.full{
	margin-top: 50px;
	margin-bottom: 50px;
	max-width: 100%;
	background-color: #ddd;
	padding-top: 15px;
	padding-bottom: 15px;
}