*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:#ffffff;
  color:#16202a;
  line-height:1.6;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.container{width:min(1180px, calc(100% - 32px));margin:0 auto}

.header{
  position:sticky;top:0;z-index:100;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid #e8edf2;
  backdrop-filter:blur(8px);
}
.nav{
  min-height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.logo-wrap{
  display:flex;
  align-items:center;
  gap:14px;
}
.logo{
  width:60px;height:60px;object-fit:cover;
  border-radius:14px;
  border:1px solid #e3e7eb;
}
.logo-text h1{
  margin:0;
  font-size:1.6rem;
  color:#0c4f84;
}
.logo-text p{
  margin:0;
  color:#5d6a76;
  font-size:.95rem;
}
.menu{
  display:flex;
  align-items:center;
  gap:20px;
}
.menu a{
  font-weight:700;
  color:#394552;
}
.menu a:hover{color:#0c4f84}
.menu-btn{
  display:none;
  border:none;
  background:#0c4f84;
  color:#fff;
  width:46px;
  height:46px;
  border-radius:12px;
  font-size:1.2rem;
  cursor:pointer;
}

.hero{
  padding:48px 0 32px;
  background:
    radial-gradient(circle at top right, rgba(212,163,41,.16), transparent 30%),
    radial-gradient(circle at bottom left, rgba(12,79,132,.10), transparent 28%),
    #ffffff;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:30px;
  align-items:center;
}
.badge{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:#edf5fb;
  color:#0c4f84;
  font-weight:700;
  margin-bottom:14px;
}
.hero-text h2{
  margin:0 0 12px;
  font-size:clamp(2.5rem, 5vw, 4.8rem);
  line-height:.96;
}
.hero-text h2 span{color:#0c4f84}
.lead{
  margin:0 0 20px;
  color:#5d6a76;
  font-size:1.08rem;
  max-width:620px;
}
.hero-contact{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin-bottom:18px;
}
.info-card{
  background:#fff;
  border:1px solid #e6ebf0;
  border-radius:22px;
  padding:16px;
  box-shadow:0 10px 30px rgba(5,34,61,.06);
}
.info-card strong{
  display:block;
  margin-bottom:6px;
  color:#0c4f84;
}
.info-card span{
  word-break:break-word;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.btn{
  min-height:50px;
  padding:14px 20px;
  border-radius:999px;
  font-weight:700;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.btn-primary{
  background:linear-gradient(135deg,#d3a329,#b78610);
  color:#fff;
}
.btn-outline{
  background:#fff;
  border:1px solid #dfe5ea;
  color:#0c4f84;
}
.image-frame{
  background:#fff;
  border:1px solid #e5eaef;
  border-radius:28px;
  padding:16px;
  box-shadow:0 18px 44px rgba(5,34,61,.08);
}
.image-frame img{
  border-radius:20px;
}

.section{padding:28px 0 44px}
.section-soft{
  background:linear-gradient(180deg, rgba(12,79,132,.04), rgba(211,163,41,.05));
}
.section-title{
  margin-bottom:20px;
}
.section-title h3{
  margin:0 0 8px;
  font-size:clamp(2rem, 4vw, 3rem);
}
.section-title p{
  margin:0;
  color:#5d6a76;
}
.cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.card{
  background:#fff;
  border:1px solid #e6ebf0;
  border-radius:24px;
  padding:20px;
  box-shadow:0 12px 30px rgba(5,34,61,.06);
}
.card-featured{
  background:linear-gradient(180deg, rgba(12,79,132,.06), rgba(211,163,41,.08));
}
.icon{
  width:54px;height:54px;
  border-radius:16px;
  display:grid;place-items:center;
  background:#0c4f84;
  color:#fff;
  font-size:1.4rem;
  margin-bottom:14px;
}
.card h4{
  margin:0 0 8px;
  font-size:1.35rem;
}
.card p{
  margin:0;
  color:#5d6a76;
}

.contact-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}
.contact-item{
  background:#fff;
  border:1px solid #e6ebf0;
  border-radius:22px;
  padding:18px;
  box-shadow:0 12px 30px rgba(5,34,61,.06);
}
.contact-item small{
  display:block;
  margin-bottom:6px;
  color:#5d6a76;
}
.contact-item strong{
  font-size:1.08rem;
  word-break:break-word;
}

.address-box{
  background:#fff;
  border:1px solid #e6ebf0;
  border-radius:26px;
  padding:22px;
  box-shadow:0 12px 30px rgba(5,34,61,.06);
  font-size:1.05rem;
}
.address-box p{margin:0 0 8px}

.footer{
  background:#fafbfc;
  border-top:1px solid #e6ebf0;
  padding:28px 0;
}
.footer-grid{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:20px;
}
.footer h4{
  margin:0 0 10px;
  font-size:1.4rem;
}
.footer p,.footer a{
  margin:0 0 8px;
  color:#5d6a76;
}

.floating-btn{
  position:fixed;
  right:16px;
  bottom:16px;
  background:#0c4f84;
  color:#fff;
  padding:14px 18px;
  border-radius:999px;
  font-weight:700;
  box-shadow:0 16px 35px rgba(12,79,132,.25);
}

@media (max-width: 980px){
  .hero-grid,.cards,.footer-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width: 760px){
  .menu-btn{display:block}
  .menu{
    display:none;
    position:absolute;
    top:84px;
    left:16px;
    right:16px;
    background:#fff;
    border:1px solid #e6ebf0;
    border-radius:18px;
    padding:12px;
    box-shadow:0 16px 35px rgba(5,34,61,.08);
    flex-direction:column;
    align-items:flex-start;
  }
  .menu.show{display:flex}
  .hero-grid,.cards,.contact-grid,.hero-contact,.footer-grid{
    grid-template-columns:1fr;
  }
  .hero{padding-top:32px}
  .floating-btn{
    left:16px;
    right:16px;
    text-align:center;
  }
}
