*{box-sizing:border-box}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:#071a36;
  color:#fff;
}
a{color:inherit}
.container{width:min(1100px,92%);margin:0 auto}
.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 0;
}
.logo-wrap{
  display:flex;
  align-items:center;
  gap:12px;
}
.logo{
  width:54px;
  height:54px;
  object-fit:cover;
  border-radius:12px;
}
.brand{
  font-weight:700;
  letter-spacing:.5px;
}
.menu a{
  text-decoration:none;
  margin-left:18px;
  opacity:.95;
}
.hero{
  padding:24px 0 40px;
  background:linear-gradient(rgba(7,26,54,.68),rgba(7,26,54,.8)), url("../images/banner.jpg") center/cover no-repeat;
}
.hero-inner{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:28px;
  align-items:center;
  min-height:520px;
}
.hero h1{
  font-size:54px;
  line-height:1.05;
  margin:0 0 12px;
}
.hero p{
  font-size:20px;
  opacity:.92;
  max-width:620px;
}
.badge{
  display:inline-block;
  background:#12305d;
  padding:8px 12px;
  border-radius:999px;
  margin-bottom:12px;
}
.cta{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:24px;
}
.btn{
  display:inline-block;
  padding:14px 22px;
  border-radius:12px;
  text-decoration:none;
  background:#1f7bff;
  color:#fff;
  font-weight:700;
}
.btn.alt{
  background:#1faa59;
}
.hero-card{
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.08);
  border-radius:22px;
  padding:24px;
}
.hero-card img{
  width:100%;
  border-radius:18px;
  display:block;
}
.section{
  padding:54px 0;
}
.section h2{
  text-align:center;
  font-size:36px;
  margin:0 0 28px;
}
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:22px;
}
.card{
  background:#0c2448;
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  overflow:hidden;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.product-card{
  cursor:pointer;
}
.product-card:hover,
.product-card:focus-visible{
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(0,0,0,.28);
  border-color:rgba(31,123,255,.55);
  outline:none;
}
.card img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
}
.card-body{
  padding:16px;
}
.card h3{
  margin:0 0 8px;
  font-size:24px;
}
.card p{
  margin:0 0 14px;
  opacity:.88;
}
.card .btn{
  position:relative;
  z-index:1;
}
.modal{
  position:fixed;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .2s ease;
  z-index:30;
}
.modal.is-open{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}
.modal-overlay{
  position:absolute;
  inset:0;
  background:rgba(3,10,24,.72);
  backdrop-filter:blur(5px);
}
.modal-dialog{
  position:relative;
  width:min(760px,100%);
  max-height:min(88vh,920px);
  overflow:auto;
  background:linear-gradient(180deg,#103260 0%,#091b36 100%);
  border:1px solid rgba(255,255,255,.12);
  border-radius:24px;
  box-shadow:0 28px 60px rgba(0,0,0,.42);
  z-index:1;
}
.modal-content{
  padding:32px;
}
.modal-close{
  position:absolute;
  top:14px;
  right:14px;
  width:42px;
  height:42px;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.1);
  color:#fff;
  font-size:26px;
  cursor:pointer;
}
.modal-eyebrow{
  margin:0 0 10px;
  color:#8ec5ff;
  font-size:13px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.modal h2{
  margin:0 0 18px;
  font-size:34px;
  line-height:1.1;
}
#modal-body p{
  margin:0 0 16px;
  color:rgba(255,255,255,.9);
  line-height:1.7;
}
#modal-body h3{
  margin:28px 0 12px;
  font-size:18px;
}
#modal-body ul{
  margin:0;
  padding-left:18px;
}
#modal-body li{
  margin-bottom:10px;
  color:rgba(255,255,255,.92);
  line-height:1.6;
}
body.modal-open{
  overflow:hidden;
}
.footer{
  padding:28px 0;
  text-align:center;
  opacity:.9;
  border-top:1px solid rgba(255,255,255,.08);
}
@media (max-width:800px){
  .hero-inner{grid-template-columns:1fr}
  .hero h1{font-size:40px}
  .menu{display:none}
  .modal{padding:16px}
  .modal-content{padding:22px}
  .modal h2{font-size:28px}
}
