
:root{
  --navy:#031832;
  --navy2:#062a55;
  --red:#e30613;
  --blue:#0a4f9e;
  --text:#071832;
  --muted:#5d6b80;
  --line:#dce5f2;
  --light:#f5f8fc;
  --white:#fff;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:#fff;
}
a{text-decoration:none;color:inherit}
.top{
  background:linear-gradient(135deg,var(--navy),var(--navy2));
  color:#fff;
  position:sticky;
  top:0;
  z-index:10;
  box-shadow:0 10px 30px rgba(0,0,0,.15);
}
.nav{
  max-width:1180px;
  margin:0 auto;
  height:108px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 22px;
  gap:24px;
}
.logoBox{
  background:#fff;
  padding:14px 34px 18px 20px;
  border-radius:0 0 42px 0;
  align-self:stretch;
  display:flex;
  align-items:center;
  box-shadow:0 10px 30px rgba(0,0,0,.18);
}
.logoBox img{height:82px;width:auto;display:block}
.links{
  display:flex;
  gap:28px;
  align-items:center;
  font-weight:800;
  text-transform:uppercase;
  font-size:14px;
}
.links a.active,.links a:hover{color:#fff;border-bottom:3px solid var(--red);padding-bottom:8px}
.phone{font-size:18px;font-weight:900;color:#fff;white-space:nowrap}
.hero{
  min-height:430px;
  background:
    linear-gradient(90deg,rgba(3,24,50,.96),rgba(3,24,50,.78),rgba(3,24,50,.56)),
    radial-gradient(circle at 75% 45%,rgba(0,115,255,.55),transparent 32%),
    linear-gradient(135deg,#05172d,#092e5b 60%,#041324);
  color:#fff;
  border-bottom:4px solid var(--red);
}
.heroInner{
  max-width:1180px;
  margin:0 auto;
  padding:70px 22px;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:40px;
  align-items:center;
}
.eyebrow{
  color:var(--red);
  font-weight:900;
  letter-spacing:.05em;
  text-transform:uppercase;
  margin-bottom:10px;
}
h1{
  font-size:clamp(36px,5vw,58px);
  line-height:1.04;
  margin:0 0 14px;
  text-transform:uppercase;
}
h2{
  font-size:clamp(28px,3.4vw,42px);
  line-height:1.1;
  margin:0 0 12px;
  text-transform:uppercase;
  color:var(--navy);
}
h3{margin:0 0 10px;color:var(--navy);text-transform:uppercase}
.lead{font-size:20px;line-height:1.55;max-width:650px}
.redDot{color:var(--red);font-weight:900;padding:0 8px}
.btn{
  display:inline-block;
  background:var(--red);
  color:#fff;
  font-weight:900;
  text-transform:uppercase;
  padding:14px 26px;
  border-radius:5px;
  border:0;
  cursor:pointer;
  box-shadow:0 10px 22px rgba(227,6,19,.22);
}
.btn.outline{background:transparent;border:1px solid rgba(255,255,255,.8);box-shadow:none;margin-left:12px}
.ownerCard{
  background:rgba(3,24,50,.78);
  border:1px solid rgba(255,255,255,.22);
  border-radius:15px;
  padding:26px;
  max-width:380px;
  margin-left:auto;
  box-shadow:0 20px 50px rgba(0,0,0,.25);
}
.ownerCard .name{font-size:24px;font-weight:900;text-transform:uppercase}
.ownerCard .role{color:var(--red);font-weight:900}
.section{padding:56px 22px}
.container{max-width:1180px;margin:0 auto}
.center{text-align:center}
.cards{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
  margin-top:28px;
}
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:10px;
  padding:24px 18px;
  text-align:center;
  box-shadow:0 12px 28px rgba(7,24,50,.08);
}
.icon{
  width:56px;height:56px;border:3px solid var(--navy);
  border-radius:16px;
  margin:0 auto 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  color:var(--red);
  font-size:24px;
}
.card p{font-size:14px;color:#26364d;line-height:1.5}
.darkBand{
  background:
    linear-gradient(90deg,rgba(3,24,50,.98),rgba(3,24,50,.82)),
    radial-gradient(circle at 80% 50%,rgba(0,115,255,.45),transparent 35%),
    #031832;
  color:#fff;
  padding:56px 22px;
}
.darkBand h2{color:#fff}
.split{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:36px;
  align-items:center;
}
.contact{
  background:linear-gradient(180deg,#f3f6fb,#fff);
  border-radius:24px 24px 0 0;
  padding:54px 22px;
}
.formPanel{
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  padding:24px;
  box-shadow:0 16px 45px rgba(7,24,50,.12);
}
.formGrid{display:grid;grid-template-columns:1fr 1fr;gap:12px}
input,textarea{
  width:100%;
  border:1px solid #cfd8e6;
  border-radius:4px;
  padding:13px;
  font-size:15px;
  font-family:inherit;
}
textarea{min-height:110px;resize:vertical}
.full{grid-column:1/-1}
.note{font-size:13px;color:var(--muted)}
.error{color:var(--red);font-weight:900}
.success{color:#087443;font-weight:900}
.footer{
  background:var(--navy);
  color:#fff;
  padding:22px;
  font-size:14px;
}
.footer .container{display:flex;justify-content:space-between;gap:20px;flex-wrap:wrap}
@media(max-width:980px){
  .cards{grid-template-columns:repeat(2,1fr)}
  .heroInner,.split{grid-template-columns:1fr}
  .ownerCard{margin-left:0}
  .nav{height:auto;flex-direction:column;align-items:flex-start;padding:0 22px 18px}
  .logoBox{align-self:flex-start}
  .links{flex-wrap:wrap;gap:16px}
}
@media(max-width:560px){
  .cards,.formGrid{grid-template-columns:1fr}
  .btn.outline{margin:10px 0 0}
  .logoBox img{height:62px}
}
