:root{
  --navy:#0B1F6D;
  --navy2:#08164A;
  --red:#E31837;
  --teal:#0E8A8A;
  --ink:#0b1220;
  --muted:#5c6475;
  --bg:#f6f8fc;
  --card:#ffffff;
  --border:rgba(10,20,60,.12);
  --shadow: 0 12px 30px rgba(6, 16, 54, .10);
  --radius: 18px;
  --radius2: 26px;
  --max: 1180px;
}

*{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;
  color:var(--ink);
  background:linear-gradient(180deg,#ffffff 0%, var(--bg) 40%, var(--bg) 100%);
  line-height:1.55;
}
a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
.wrap{max-width:var(--max); margin:auto; padding:0 16px}

.topbar{
  background:linear-gradient(90deg, var(--navy2), var(--navy));
  color:#fff; font-size:14px;
}
.topbar .wrap{
  padding:10px 16px;
  display:flex; gap:12px; align-items:center; justify-content:space-between; flex-wrap:wrap;
}
.pill{
  display:inline-flex; gap:10px; align-items:center;
  padding:6px 10px; border:1px solid rgba(255,255,255,.18);
  border-radius:999px; background:rgba(255,255,255,.06);
  white-space:nowrap;
}
.linkpill{
  opacity:.95; padding:6px 10px; border-radius:999px;
  border:1px solid rgba(255,255,255,.18); background:rgba(255,255,255,.06);
}
.linkpill:hover{background:rgba(255,255,255,.12)}
.topbar .right{display:flex; gap:10px; flex-wrap:wrap}

header{
  position:sticky; top:0; z-index:50;
  backdrop-filter:saturate(180%) blur(10px);
  background:rgba(255,255,255,.86);
  border-bottom:1px solid var(--border);
}
.nav{
  padding:12px 0;
  display:flex; align-items:center; justify-content:space-between; gap:14px;
}
.brand{
  display:flex; align-items:center; gap:12px;
  min-width:300px;
}
.brand .logoStrip{
  height:72px; width:auto;
  border-radius:12px;
  border:1px solid var(--border);
  background:#fff;
  padding:6px 10px;
  box-shadow: 0 10px 20px rgba(6,16,54,.06);
}
.brand .logoStrip img{height:100%; width:auto; object-fit:contain}

.brand .txt{line-height:1.1}
.brand .txt .name{font-weight:950; letter-spacing:.2px; font-size:14px; color:#0d1530}
.brand .txt .sub{color:var(--muted); font-size:12px; font-weight:700}

nav ul{list-style:none; display:flex; gap:10px; padding:0; margin:0; align-items:center; flex-wrap:wrap}
nav a{
  font-size:14px; font-weight:850; color:#0d1530;
  padding:10px 12px; border-radius:999px; border:1px solid transparent;
}
nav a:hover{border-color:var(--border); background:#fff; box-shadow: 0 10px 20px rgba(6,16,54,.06)}

.cta{display:flex; gap:10px; align-items:center; justify-content:flex-end}
.btn{
  border:0; cursor:pointer;
  padding:10px 14px;
  border-radius:999px;
  font-weight:900;
  font-size:14px;
  display:inline-flex; gap:10px; align-items:center;
  transition:transform .12s ease, box-shadow .12s ease;
  white-space:nowrap;
}
.btn.primary{
  color:#fff;
  background:linear-gradient(90deg, var(--red), #ff3652);
  box-shadow: 0 14px 30px rgba(227,24,55,.18);
}
.btn.primary:hover{transform:translateY(-1px); box-shadow: 0 18px 38px rgba(227,24,55,.24)}
.btn.outline{
  background:#fff;
  border:1px solid var(--border);
  color:#0d1530;
  box-shadow: 0 12px 26px rgba(6,16,54,.08);
}
.btn.outline:hover{transform:translateY(-1px)}

.hero{
  padding:32px 0 18px;
  background:
    radial-gradient(900px 420px at 18% 14%, rgba(11,31,109,.14), transparent 55%),
    radial-gradient(900px 420px at 88% 12%, rgba(227,24,55,.12), transparent 55%);
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:22px;
  align-items:center;
}
.badge{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px; border-radius:999px;
  border:1px solid var(--border);
  background:#fff; box-shadow: 0 14px 28px rgba(6,16,54,.06);
  width:fit-content;
  font-weight:900; color:#0d1530; font-size:13px;
}
.dot{width:10px; height:10px; border-radius:50%; background:var(--red); box-shadow:0 0 0 5px rgba(227,24,55,.12)}
h1{
  margin:12px 0 10px;
  font-size:46px; line-height:1.05; letter-spacing:-.8px;
  color:#081035;
}
.lead{
  margin:0 0 16px;
  color:var(--muted); font-size:16px; font-weight:700; max-width:62ch;
}
.heroActions{display:flex; gap:12px; flex-wrap:wrap; align-items:center; margin:14px 0 16px}
.meta{display:flex; gap:10px; flex-wrap:wrap; align-items:center; font-weight:800; font-size:13px}
.meta .tag{
  display:inline-flex; gap:8px; align-items:center;
  padding:8px 10px; border-radius:999px;
  border:1px solid var(--border); background:#fff;
  box-shadow: 0 12px 24px rgba(6,16,54,.05);
}

.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius2);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.media{
  position:relative;
}
.media img{
  width:100%;
  height:420px;
  object-fit:cover;
}
.media::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(6,12,36,.00) 40%, rgba(6,12,36,.62) 100%);
}
.media .cap{
  position:absolute; left:16px; right:16px; bottom:14px;
  color:#fff;
  display:flex; align-items:flex-end; justify-content:space-between; gap:12px; flex-wrap:wrap;
}
.cap .t1{font-size:12px; opacity:.9; font-weight:800}
.cap .t2{font-size:16px; font-weight:950; letter-spacing:.2px}
.kpis{
  padding:14px 16px 16px;
  display:grid; grid-template-columns:1fr 1fr; gap:12px;
}
.kpi{
  padding:12px; border-radius:16px;
  border:1px solid var(--border);
  background:#fff;
}
.kpi .k{font-size:12px; color:var(--muted); font-weight:900; margin-bottom:4px}
.kpi .v{font-size:14px; font-weight:950; color:#0d1530}

section{padding:44px 0}
.sectionTitle{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:14px; flex-wrap:wrap; margin-bottom:18px;
}
.sectionTitle h2{margin:0; font-size:30px; letter-spacing:-.3px; color:#081035}
.sectionTitle p{margin:0; color:var(--muted); font-weight:700; max-width:70ch}

.cards{
  display:grid; grid-template-columns: repeat(12, 1fr); gap:14px;
}
.service{
  grid-column: span 4;
  padding:16px;
  border-radius:var(--radius);
  background:#fff;
  border:1px solid var(--border);
  box-shadow: 0 14px 28px rgba(6,16,54,.07);
}
.service .icon{
  width:44px; height:44px; border-radius:14px;
  background:linear-gradient(135deg, rgba(11,31,109,.12), rgba(227,24,55,.10));
  border:1px solid var(--border);
  display:grid; place-items:center;
  font-weight:950;
  margin-bottom:12px;
}
.service h3{margin:0 0 6px; font-size:16px; color:#0d1530; font-weight:950}
.service p{margin:0; color:var(--muted); font-weight:700; font-size:14px}

.split{
  display:grid; grid-template-columns: 1.05fr .95fr; gap:16px; align-items:stretch;
}
.panel{padding:18px}
.bullets{margin:12px 0 0; padding:0; list-style:none; display:grid; gap:10px}
.bullets li{
  display:flex; gap:10px; align-items:flex-start;
  padding:10px 12px;
  border-radius:16px;
  border:1px solid var(--border);
  background:#fff;
}
.tick{
  width:22px; height:22px; border-radius:8px;
  background:rgba(14,138,138,.14);
  border:1px solid rgba(14,138,138,.25);
  display:grid; place-items:center;
  color:var(--teal);
  font-weight:1000;
  flex:0 0 auto;
  margin-top:1px;
}
.gallery{
  display:grid; grid-template-columns: repeat(12, 1fr); gap:12px;
}
.gItem{
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--border);
  background:#fff;
  box-shadow: 0 14px 26px rgba(6,16,54,.06);
  position:relative;
}
.gItem img{width:100%; height:100%; object-fit:cover}
.g1{grid-column: span 7; height:360px}
.g2{grid-column: span 5; height:360px}
.g3{grid-column: span 4; height:260px}
.g4{grid-column: span 4; height:260px}
.g5{grid-column: span 4; height:260px}
.g6{grid-column: span 6; height:300px}
.g7{grid-column: span 6; height:300px}

.contactGrid{
  display:grid; grid-template-columns: 1fr 1fr; gap:14px;
}
.row{
  display:flex; gap:10px; align-items:flex-start;
  padding:12px 12px; border-radius:16px;
  border:1px solid var(--border); background:#fff;
}
.row .label{font-size:12px; color:var(--muted); font-weight:900; margin-bottom:2px}
.row .val{font-size:14px; font-weight:950; color:#0d1530}
.row .mini{font-size:12px; color:var(--muted); font-weight:750; margin-top:2px}

input, textarea{
  width:100%;
  border:1px solid var(--border);
  border-radius:14px;
  padding:12px 12px;
  font:inherit;
  background:#fff;
  outline:none;
}
input:focus, textarea:focus{
  border-color: rgba(11,31,109,.35);
  box-shadow: 0 0 0 4px rgba(11,31,109,.10);
}
textarea{min-height:120px; resize:vertical}

.map{
  border-radius:16px; overflow:hidden;
  border:1px solid var(--border);
  background:#fff;
  box-shadow: 0 14px 26px rgba(6,16,54,.06);
}
.map iframe{width:100%; height:320px; border:0}

footer{
  padding:26px 0;
  background:#fff;
  border-top:1px solid var(--border);
}
.footerInner{
  display:flex; gap:12px; justify-content:space-between; align-items:center;
  flex-wrap:wrap; color:var(--muted); font-weight:750; font-size:13px;
}

.float{
  position:fixed; right:16px; bottom:16px; z-index:60;
  display:flex; gap:10px; flex-direction:column; align-items:flex-end;
}
.fab{
  border-radius:999px;
  padding:12px 14px;
  border:0;
  cursor:pointer;
  font-weight:950;
  color:#fff;
  background:linear-gradient(90deg, var(--navy), #2236b7);
  box-shadow: 0 18px 40px rgba(11,31,109,.22);
}
.fab.secondary{
  background:linear-gradient(90deg, var(--teal), #20bcbc);
  box-shadow: 0 18px 40px rgba(14,138,138,.20);
}

@media (max-width: 980px){
  .heroGrid{grid-template-columns:1fr}
  .service{grid-column: span 6}
  .split{grid-template-columns:1fr}
  .contactGrid{grid-template-columns:1fr}
  h1{font-size:40px}
  .media img{height:380px}
}
@media (max-width: 560px){
  nav ul{display:none}
  .service{grid-column: span 12}
  h1{font-size:34px}
  .g1,.g2{grid-column: span 12; height:280px}
  .g3,.g4,.g5{grid-column: span 12; height:240px}
  .g6,.g7{grid-column: span 12; height:260px}
}
