
:root{
  --bg:#f6f9fc;
  --white:#ffffff;
  --text:#25313f;
  --muted:#667385;
  --line:#dce6ef;
  --blue:#4d88d8;
  --blue-dark:#2d5fa8;
  --soft:#eef5fb;
  --hero1:#66798a;
  --hero2:#7b8b9a;
  --shadow:0 10px 30px rgba(21,45,80,0.07);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.55;
}
a{color:var(--blue-dark); text-decoration:none}
a:hover{text-decoration:underline}
.container{width:min(1120px, calc(100% - 48px)); margin:0 auto}

.site-header{
  background:rgba(255,255,255,0.96);
  border-bottom:1px solid var(--line);
  position:sticky;
  top:0;
  z-index:30;
  backdrop-filter:blur(10px);
}
.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding:18px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
}
.brand-logo{
  width:52px;
  height:52px;
  object-fit:contain;
}
.brand-name{
  font-weight:700;
  font-size:1.3rem;
}
.brand-tag{
  color:var(--muted);
  font-size:.95rem;
  margin-top:2px;
}
.menu{
  display:flex;
  gap:26px;
  flex-wrap:wrap;
}
.menu a{
  color:var(--text);
  font-weight:600;
}

.hero{
  background:linear-gradient(135deg, var(--hero1), var(--hero2));
  color:#fff;
  padding:88px 0 110px;
}
.hero-inner{
  max-width:860px;
}
.pill{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(255,255,255,.12);
  font-size:.9rem;
  font-weight:700;
}
.hero h1{
  font-size:clamp(2.5rem, 5vw, 4.8rem);
  line-height:1.08;
  margin:20px 0 16px;
}
.hero p{
  font-size:1.12rem;
  color:rgba(255,255,255,.92);
  max-width:720px;
}
.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:28px;
}

.btn{
  display:inline-block;
  padding:13px 20px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.65);
  font-weight:700;
  cursor:pointer;
}
.btn-primary{
  background:var(--blue);
  border-color:var(--blue);
  color:#fff;
}
.btn-primary:hover{
  background:var(--blue-dark);
  text-decoration:none;
}
.btn-secondary{
  background:#fff;
  color:var(--text);
}
.btn-secondary:hover{
  background:#f7fbff;
  text-decoration:none;
}
.full{width:100%}

.feature-wrap{
  margin-top:-42px;
}
.features{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
}
.feature-card,.service-card,.info-card,.person-card,.contact-form{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:20px;
  box-shadow:var(--shadow);
}
.feature-card{
  padding:22px;
}
.feature-card h3,
.service-card h3,
.info-card h3,
.person-card h4{
  margin:0 0 10px;
}
.feature-card p,
.service-card p,
.person-card p,
.info-card p{
  margin:0;
  color:var(--muted);
}

.section{
  padding:72px 0;
}
.alt{
  background:var(--soft);
}
.eyebrow{
  color:var(--blue-dark);
  text-transform:uppercase;
  font-size:.82rem;
  font-weight:800;
  letter-spacing:.12em;
  margin-bottom:10px;
}
.section h2{
  font-size:clamp(2rem, 3.8vw, 3.4rem);
  margin:0 0 16px;
  line-height:1.15;
}
.section-intro{
  max-width:760px;
  color:var(--muted);
  margin-bottom:28px;
}
.two-col,
.lower-grid,
.contact-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:28px;
  align-items:start;
}
.about-copy p{
  color:var(--muted);
  max-width:760px;
}
.info-card{
  padding:26px;
}
.info-card ul{
  margin:14px 0 0;
  padding-left:18px;
  color:var(--muted);
}
.info-card li{margin:8px 0}

.service-grid{
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:18px;
}
.service-card{
  padding:24px 20px;
  min-height:190px;
}

.contact-section{
  background:linear-gradient(180deg, #f4f8fc 0%, #edf4fb 100%);
}
.contact-block{
  margin:22px 0 28px;
}
.people-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:18px;
}
.person-card{
  padding:20px;
}
.contact-form{
  padding:24px;
}
.contact-form label{
  display:block;
  font-weight:700;
  margin-bottom:14px;
}
.contact-form input,
.contact-form textarea{
  width:100%;
  margin-top:8px;
  padding:12px 14px;
  border:1px solid #cfdbe6;
  border-radius:12px;
  background:#fff;
  font:inherit;
}
.contact-form textarea{
  min-height:150px;
  resize:vertical;
}

.site-footer{
  background:#fff;
  border-top:1px solid var(--line);
  padding:34px 0 42px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:28px;
}
.footer-title{
  font-weight:700;
  margin-bottom:10px;
}
.site-footer p{
  color:var(--muted);
  margin:8px 0;
}

@media (max-width: 1024px){
  .features{grid-template-columns:repeat(2,1fr)}
  .service-grid{grid-template-columns:repeat(2,1fr)}
  .two-col,.lower-grid,.contact-grid,.footer-grid{grid-template-columns:1fr}
}

@media (max-width: 720px){
  .container{width:min(1120px, calc(100% - 28px))}
  .nav{flex-direction:column; align-items:flex-start}
  .hero{padding:62px 0 82px}
  .features{grid-template-columns:1fr}
  .service-grid{grid-template-columns:1fr}
  .people-grid{grid-template-columns:1fr}
  .section{padding:52px 0}
}
