:root{
  --blue-900:#0b2545;
  --blue-800:#10325c;
  --blue-700:#154074;
  --blue-600:#1b4f8f;
  --blue-100:#e9f2ff;
  --blue-50:#f6faff;
  --white:#ffffff;
  --text:#0b2545;
  --muted:#4a6487;
  --line:rgba(11,37,69,.12);
  --shadow:0 14px 34px rgba(11,37,69,.12);
  --radius:18px;
  --max:1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(900px 400px at 20% 0%, rgba(27,79,143,.12), transparent 60%),
    radial-gradient(700px 380px at 80% 20%, rgba(21,64,116,.10), transparent 60%),
    linear-gradient(180deg, var(--blue-50) 0%, var(--white) 35%, var(--blue-50) 100%);
}

a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}
.topbar{
  position:sticky; top:0; z-index:30;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0; gap:14px;
}
.brand{
  display:flex; align-items:center; gap:12px;
  font-weight:900; letter-spacing:.2px;
}
.brand small{display:block; font-weight:700; color:var(--muted)}
.brandmark{
  width:54px; height:54px;
  border-radius:14px;
  border:1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  display:grid; place-items:center;
  overflow:hidden;
}
.brandmark img{width:100%; height:100%; object-fit:contain; padding:8px}
.menu{display:flex; align-items:center; gap:10px; flex-wrap:wrap}
.menu a{
  color:var(--muted);
  font-weight:800;
  padding:8px 10px;
  border-radius:12px;
}
.menu a:hover{background:rgba(27,79,143,.08); color:var(--text)}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:14px;
  font-weight:900;
  border:1px solid rgba(27,79,143,.22);
  background: linear-gradient(135deg, rgba(27,79,143,.14), rgba(21,64,116,.06));
  color:var(--text);
  box-shadow: var(--shadow);
}
.btn:hover{transform: translateY(-1px)}
.btn:active{transform:none}
.ghost{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:14px;
  font-weight:900;
  border:1px solid var(--line);
  background: var(--white);
}
.ghost:hover{background:rgba(27,79,143,.06)}
.hero{padding:56px 0 22px}
.hero-grid{display:grid; grid-template-columns:1.2fr .8fr; gap:16px; align-items:stretch}
@media (max-width:980px){ .hero-grid{grid-template-columns:1fr} }
.panel, .card{
  border:1px solid var(--line);
  background: rgba(255,255,255,.92);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.panel{padding:22px}
.card{padding:18px}
.kicker{
  display:inline-flex; gap:10px; align-items:center;
  padding:7px 12px;
  border-radius:999px;
  border:1px solid rgba(27,79,143,.22);
  background: rgba(27,79,143,.08);
  color: var(--blue-800);
  font-weight:900;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.35px;
}
h1{margin:14px 0 10px; font-size:42px; line-height:1.08; letter-spacing:-.7px}
@media (max-width:560px){ h1{font-size:34px} }
.lead{margin:0; color:var(--muted); font-size:16px; line-height:1.65; max-width:62ch}
.cta-row{display:flex; gap:10px; flex-wrap:wrap; margin-top:16px}
.stats{display:grid; grid-template-columns:repeat(2,1fr); gap:10px; margin-top:16px}
.stat{
  border:1px solid var(--line);
  border-radius:16px;
  padding:14px;
  background: rgba(246,250,255,.9);
}
.stat b{display:block; font-size:18px}
.stat span{color:var(--muted); font-weight:800}
section{padding:30px 0}
.section-title{display:flex; justify-content:space-between; gap:12px; align-items:flex-end; margin-bottom:12px}
.section-title h2, .section-title h3{margin:0}
.section-title p{margin:0; color:var(--muted)}
.grid3{display:grid; grid-template-columns:repeat(3,1fr); gap:12px}
@media (max-width:980px){ .grid3{grid-template-columns:1fr} }
.tags{display:grid; grid-template-columns:1fr 1fr; gap:10px}
@media (max-width:520px){ .tags{grid-template-columns:1fr} }
.tag{
  border:1px solid rgba(27,79,143,.18);
  background: rgba(27,79,143,.06);
  padding:10px 12px;
  border-radius:14px;
  font-weight:900;
}
.breadcrumbs{
  font-size:13px;
  color:var(--muted);
  font-weight:800;
  margin:12px 0 0;
}
.breadcrumbs a{color:var(--blue-700)}
.breadcrumbs a:hover{text-decoration:underline}
.list{
  margin:10px 0 0;
  padding-left:18px;
  color:var(--muted);
  line-height:1.75;
  font-weight:700;
}
hr{border:none; border-top:1px solid var(--line); margin:18px 0}
.contact-grid{display:grid; grid-template-columns:1fr 1fr; gap:12px}
@media (max-width:980px){ .contact-grid{grid-template-columns:1fr} }
label{display:block; font-weight:900; margin:10px 0 6px}
input, textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:14px;
  padding:12px 12px;
  font-size:14px;
  outline:none;
  background: var(--white);
}
textarea{min-height:130px; resize:vertical}
small.note{display:block; color:var(--muted); font-weight:700; line-height:1.5; margin-top:10px}
footer{
  border-top:1px solid var(--line);
  padding:22px 0 40px;
  color:var(--muted);
  font-size:13px;
  font-weight:700;
}
.wa-float{
  position:fixed; right:18px; bottom:18px; z-index:40;
  border-radius:999px;
  padding:12px 14px;
  font-weight:900;
  border:1px solid rgba(27,79,143,.22);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
}
.wa-float:hover{transform:translateY(-1px)}
