*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  background:linear-gradient(180deg,#06111f 0%,#0b1f38 45%,#08111f 100%);
  color:#eef5ff;
  line-height:1.6;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.container{width:min(1180px,92%);margin:0 auto}

.topbar{
  position:sticky;
  top:0;
  z-index:999;
  background:rgba(7,20,35,.97);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.navwrap{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  padding:4px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:20px;
  flex-shrink:0;
  min-width:0;
}

.brand a{
  display:flex;
  align-items:center;
}

.brand img{
  width:300px;
  height:300px;
  object-fit:contain;
  background:#fff;
  padding:0;
  border-radius:100px;
  flex-shrink:0;
}

.brand-info{
  display:flex;
  flex-direction:column;
  line-height:1;
}

.brand-name{
  font-size:100px;
  font-weight:700;
  color:#eef5ff;
  white-space:nowrap;
}

.brand-phone{
  font-size:100px;
  font-weight:700;
  color:#24c26b;
  white-space:nowrap;
}

.topbar nav{
  display:flex;
  flex-wrap:wrap;
  gap:5px;
  align-items:center;
  justify-content:flex-end;
}

.topbar nav a{
  padding:4px 7px;
  border-radius:7px;
  font-size:11px;
  color:#d7e4f5;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  white-space:nowrap;
}

.topbar nav a:hover{
  background:rgba(255,255,255,.1);
}

.hero{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:18px;
  padding:18px 0 14px;
}

.card{
  background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.05));
  border:1px solid rgba(255,255,255,.09);
  border-radius:18px;
  box-shadow:0 18px 50px rgba(0,0,0,.22);
}

.hero-copy{
  padding:22px;
}

.hero-copy h1{
  margin:8px 0 10px;
  font-size:38px;
  line-height:1.05;
}

.hero-copy p{
  font-size:16px;
  color:#c5d4e8;
  margin:0 0 14px;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 10px;
  border-radius:999px;
  background:#163a66;
  color:#d7ebff;
  font-size:11px;
}
.buttons{
  display:flex;
  flex-direction:row;
  flex-wrap:wrap;
  align-items:center;
  justify-content:flex-start;
  gap:10px;
  width:100%;
  max-width:100%;
  margin-top:16px;
  overflow:visible;
}

.buttons .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:auto;
  max-width:100%;
  min-width:0;
  flex:0 1 auto;
  white-space:normal;
  overflow-wrap:anywhere;
  text-align:center;
}

.card,
.hero-copy,
.formbox,
.service,
.service .body{
  min-width:0;
  max-width:100%;
  overflow-wrap:anywhere;
}

img{
  max-width:100%;
  height:auto;
}

.primary{
  background:#24c26b;
  color:#04111f;
}

.secondary{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  color:#eef5ff;
}

.full{
  width:100%;
  border:none;
  cursor:pointer;
}

.formbox{
  padding:20px;
}

.formbox h1,.formbox h2{
  margin:0 0 8px;
}

.formbox p{
  margin:0 0 10px;
  color:#c5d4e8;
  font-size:13px;
}

.formbox label{
  display:block;
  margin:8px 0 5px;
  color:#d9e6f8;
  font-size:12px;
}

.formbox input,
.formbox select,
.formbox textarea{
  width:100%;
  padding:11px 12px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.14);
  background:#f8fbff;
  color:#08111f;
  font-size:13px;
  outline:none;
}

.formbox textarea{
  min-height:80px;
  resize:vertical;
}

.grid3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  padding:4px 0 18px;
}

.grid2{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}

.section{
  padding:12px 0 18px;
}

.section h2{
  margin:0 0 10px;
  font-size:26px;
}

.section p.lead{
  margin:0 0 12px;
  color:#c5d4e8;
  max-width:760px;
  font-size:14px;
}

.service{
  overflow:hidden;
}

.service .media{
  aspect-ratio:16/10;
  background:#11233b;
}

.service .media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.service .body{
  padding:14px;
}

.service h3{
  margin:0 0 6px;
  font-size:18px;
}

.service p{
  margin:0;
  color:#c5d4e8;
  font-size:13px;
}

.list{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  margin-top:12px;
}

.list .item{
  padding:12px;
  border-radius:13px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  font-size:13px;
}

.item strong{
  display:block;
  margin-bottom:4px;
}

.notice{
  background:#163a66;
  padding:10px 12px;
  border-radius:11px;
  margin:12px 0;
  border:1px solid rgba(255,255,255,.08);
  color:#eef5ff;
  font-size:12px;
}

.notice a{
  color:#fff;
  text-decoration:underline;
  font-weight:700;
}

.faq details{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  border-radius:13px;
  padding:11px 13px;
  margin-bottom:9px;
}

.faq summary{
  cursor:pointer;
  font-weight:700;
  font-size:13px;
}

.footer{
  padding:14px 0 24px;
  color:#bfd0ea;
  font-size:11px;
}

.footer a{
  color:#fff;
  text-decoration:underline;
  font-weight:700;
}

.wide{
  max-width:760px;
}

.center{
  text-align:center;
}

.callbar{
  position:fixed;
  right:12px;
  bottom:12px;
  z-index:9999;
  background:#24c26b;
  color:#04111f;
  padding:10px 12px;
  border-radius:999px;
  font-weight:800;
  box-shadow:0 12px 26px rgba(0,0,0,.28);
  font-size:12px;
}

.badges{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
  margin:12px 0 0;
}

.badge{
  padding:6px 9px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  font-size:11px;
  color:#dbe7f8;
}

.spacer{
  height:10px;
}

@media (max-width: 980px){
  .hero,.grid3,.grid2,.list{
    grid-template-columns:1fr;
  }
  .hero-copy h1{
    font-size:30px;
  }
  .topbar nav{
    justify-content:flex-start;
  }
  @media (max-width:600px){
  .buttons{
    display:flex;
    flex-direction:column;
    align-items:stretch;
    width:100%;
    gap:8px;
  }

  .buttons .btn{
    display:flex;
    width:100%;
    max-width:100%;
    min-height:44px;
    padding:11px 12px;
    white-space:normal;
    overflow-wrap:anywhere;
  }
}
