:root{
  --bg: #eef5ff;          /* light blue wash */
  --panel: #ffffff;
  --text: #0b1b2b;
  --muted: #475569;
  --line: #d7e3f3;
  --brand: #1f5fa7;       /* logo blue */
  --brand2: #0b3d78;      /* deep blue */
  --accent: #16a34a;      /* green CTA accent */
  --shadow: 0 16px 40px rgba(2,6,23,.10);
  --radius: 18px;
  --max: 1120px;
}

*{ box-sizing:border-box; }
html,body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--text);
  background: radial-gradient(1000px 560px at 15% 0%, rgba(31,95,167,.20), transparent 58%),
              radial-gradient(900px 520px at 85% 10%, rgba(11,61,120,.14), transparent 58%),
              linear-gradient(180deg, #f7fbff 0%, var(--bg) 40%, #f3f7ff 100%);
  line-height: 1.55;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{ width:100%; max-width: var(--max); margin: 0 auto; padding: 0 20px; }

.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 251, 255, .90);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(31,95,167,.16);
}
.nav{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 240px;
}
.brand img{
  height: 88px;
  width: auto;
  display:block;
}
.menu{
  display:flex;
  align-items:center;
  gap: 10px;
}
.menu a{
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 750;
  color: var(--brand2);
}
.menu a[aria-current="page"]{
  background: rgba(31,95,167,.10);
  border: 1px solid rgba(31,95,167,.18);
}
.topContact{
  display:flex;
  align-items:center;
  gap: 14px;
  color: var(--brand2);
  font-weight: 800;
  flex-wrap: wrap;
}
.topContact a{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(31,95,167,.16);
  background: rgba(255,255,255,.9);
  box-shadow: 0 8px 18px rgba(2,6,23,.06);
}
.icon{
  width: 18px;
  height: 18px;
  display:inline-block;
  flex: 0 0 auto;
}

.burger{
  display:none;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(31,95,167,.16);
  background: rgba(255,255,255,.9);
  font-weight: 850;
  color: var(--brand2);
}

.card{
  background: var(--panel);
  border: 1px solid rgba(31,95,167,.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero{
  padding: 26px 0 18px;
}
.heroCard{
  overflow: hidden;
  position: relative;
  border-radius: 28px;
}
.heroBackdrop{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(90deg, rgba(11,61,120,.84) 0%, rgba(11,61,120,.56) 44%, rgba(11,61,120,.24) 70%, rgba(11,61,120,.08) 100%),
    url("assets/img/scaffold-1.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  filter: saturate(1.05);
}
.heroContent{
  position: relative;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  padding: 40px;
  min-height: 640px;
  align-items: center;
}
.heroLeft{
  color: #ffffff;
  padding: 10px 6px 10px 6px;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.20);
  font-weight: 800;
  letter-spacing: .2px;
  font-size: 13px;
}
.kicker b{ color: #dbeafe; }
h1{
  margin: 14px 0 10px;
  font-size: clamp(34px, 4.5vw, 52px);
  line-height: 1.08;
}
.lead{
  margin: 0 0 16px;
  font-size: 16px;
  max-width: 62ch;
  color: rgba(255,255,255,.92);
}
.heroCTA{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.14);
  color: #ffffff;
}
.btn:hover{ text-decoration:none; filter: brightness(1.04); }
.btn.primary{
  background: rgba(11,61,120,.96);
  border: 1px solid rgba(11,61,120,.68);
}
.btn.secondary{
  background: rgba(22,163,74,.92);
  border: 1px solid rgba(22,163,74,.62);
}
.heroRight{
  display:flex;
  align-items: stretch;
  justify-content: end;
}
.heroRight img{
  width: 100%;
  max-width: 720px;
  height: 540px;
  object-fit: cover;
  border-radius: 34px;
  border: none;
  box-shadow: 0 18px 50px rgba(2,6,23,.18);
}

.section{ padding: 18px 0; }
.section h2{
  margin: 0 0 10px;
  font-size: 26px;
  color: var(--brand2);
}
.section p{ margin: 0 0 14px; color: var(--muted); }

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service{
  padding: 16px;
}
.service h3{
  margin: 10px 0 6px;
  font-size: 18px;
  color: var(--brand2);
}
.service p{ margin: 0; color: var(--muted); font-size: 14px; }
.thumb{
  border-radius: 18px;
  overflow:hidden;
  border: none;
  background: transparent;
}
.thumb img{
  width: 100%;
  height: 190px;
  object-fit: cover;
  display:block;
}

.band{
  background: linear-gradient(135deg, rgba(31,95,167,.10), rgba(11,61,120,.06));
  border: 1px solid rgba(31,95,167,.16);
  border-radius: var(--radius);
  padding: 18px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
}
.band strong{ color: var(--brand2); }
.band .actions{ display:flex; gap: 10px; flex-wrap: wrap; }
.band .actions .btn{
  background: rgba(11,61,120,.96);
  border-color: rgba(11,61,120,.68);
}
.band .actions .btn.secondary{
  background: rgba(22,163,74,.92);
  border-color: rgba(22,163,74,.62);
  color: #ffffff;
}

.twoCol{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pad{ padding: 18px; }

.form{
  display:grid;
  gap: 10px;
}
.field label{
  display:block;
  font-weight: 800;
  color: var(--brand2);
  font-size: 13px;
  margin-bottom: 6px;
}
.field input, .field textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(31,95,167,.16);
  background: #ffffff;
  color: var(--text);
}
.field textarea{ min-height: 130px; resize: vertical; }

.note{
  font-size: 13px;
  color: var(--muted);
  background: rgba(241,245,249,.9);
  border: 1px solid rgba(31,95,167,.16);
  border-radius: 14px;
  padding: 12px;
}

.footer{
  margin-top: 18px;
  padding: 22px 0 34px;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.65);
}
.footerGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
  align-items: start;
}
.footer small{ color: var(--muted); }
.footerLinks{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.footerLinks a{
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(31,95,167,.16);
  background: #ffffff;
  color: var(--brand2);
  font-weight: 800;
  font-size: 13px;
}

@media (max-width: 980px){
  .topContact{ display:none; }
}
@media (max-width: 920px){
  .heroContent{
  position: relative;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  padding: 40px;
  min-height: 640px;
  align-items: center;
}
  .heroRight{
  display:flex;
  align-items: stretch;
  justify-content: end;
}
  .heroRight img{
  width: 100%;
  max-width: 720px;
  height: 540px;
  object-fit: cover;
  border-radius: 34px;
  border: none;
  box-shadow: 0 18px 50px rgba(2,6,23,.18);
}
  .grid3{ grid-template-columns: 1fr; }
  .twoCol{ grid-template-columns: 1fr; }
  .menu{ display:none; }
  .burger{ display:inline-flex; }
  .menu.mobile{
    display:flex;
    flex-direction: column;
    align-items:flex-start;
    gap: 6px;
    padding: 10px 0 12px;
  }
  .footerGrid{ grid-template-columns: 1fr; }
  .footerLinks{ justify-content: flex-start; }
}

.heroCard{ border: none !important; }
