/* Security and responsive hardening added for strict CSP. */
img, video { max-width: 100%; height: auto; }
.text-red { color: #c00000; }
#temp-images, .u-hidden { display: none !important; }
a[data-prevent-default="true"] { cursor: pointer; }
.map-frame-wrap { height: 60vh; }

/* Optional content protection layer. It is a deterrent, not a cryptographic protection. */
body.os-copy-protection img,
body.os-copy-protection video{
}
body.os-copy-protection .content,
body.os-copy-protection #navbar,
body.os-copy-protection #footer,
body.os-copy-protection #bottom{
  user-select:none;
}
body.os-copy-protection input,
body.os-copy-protection textarea,
body.os-copy-protection select,
body.os-copy-protection button,
body.os-copy-protection a,
body.os-copy-protection .copy-allow,
body.os-copy-protection .copy-allow *{
  user-select:text;
}
.os-copy-notice{
  position:fixed;
  left:50%;
  bottom:24px;
  transform:translateX(-50%);
  z-index:10050;
  max-width:calc(100% - 40px);
  padding:12px 18px;
  border-radius:999px;
  background:#132247;
  color:#fff;
  font-size:14px;
  line-height:1.35;
  text-align:center;
  box-shadow:0 10px 35px rgba(0,0,0,.24);
  opacity:0;
  pointer-events:none;
  transition:opacity .18s ease, bottom .18s ease;
}
.os-copy-notice.is-visible{
  opacity:1;
  bottom:34px;
}
body.contrast .os-copy-notice{
  background:#000 !important;
  color:#efff00 !important;
  border:2px solid #efff00 !important;
}

/* Security audits section. */
.security-audit-section{
  background:#f6f9ff;
}
.security-audit-section .lead{
  max-width:980px;
  margin:0 auto 26px auto;
  color:#25324f;
  font-size:1.08em;
  line-height:1.7;
}
.audit-tags{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  margin:0 0 30px 0;
}
.audit-tags span{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:7px 15px;
  border:1px solid rgba(37,125,227,.22);
  border-radius:999px;
  background:#fff;
  color:#257de3;
  font-weight:700;
  font-size:.92em;
}
.audit-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:24px;
  width:100%;
}
.audit-card{
  display:flex;
  flex-direction:column;
  min-height:260px;
  padding:30px 28px;
  background:#fff;
  border:1px solid rgba(37,125,227,.13);
  border-radius:18px;
  box-shadow:0 16px 44px rgba(21,48,94,.08);
}
.audit-card i{
  color:#257de3;
  font-size:34px;
  margin-bottom:18px;
}
.audit-card h3{
  margin:0 0 12px 0;
  color:#15264a;
  font-size:1.12em;
  line-height:1.3;
}
.audit-card p{
  margin:0;
  color:#33405f;
  font-size:.95em;
  line-height:1.65;
}
.audit-process{
  margin:34px auto 0 auto;
  padding:34px;
  background:#132247;
  color:#fff;
  border-radius:20px;
  box-shadow:0 18px 54px rgba(19,34,71,.18);
}
.audit-process h3{
  margin-top:0;
  color:#fff;
  text-align:left;
}
.audit-process ul{
  margin:0 0 18px 0;
  padding-left:22px;
}
.audit-process li{
  margin:8px 0;
  color:#eef4ff;
  line-height:1.55;
}
.audit-process strong{
  color:#fff;
}
.audit-process .btns{
  text-align:left;
}
@media only screen and (max-width: 1080px){
  .audit-grid{ grid-template-columns:repeat(2, minmax(0, 1fr)); }
}
@media only screen and (max-width: 680px){
  .audit-grid{ grid-template-columns:1fr; }
  .audit-card{ min-height:auto; padding:26px 22px; }
  .audit-process{ padding:28px 22px; }
}

