:root{
  --hw-bg:#FDFEFF;
  --hw-soft:#F1F3FA;
  --hw-text:#1E2238;
  --hw-muted:#5B6482;
  --hw-cyan:#00CFE8;
  --hw-indigo:#3F51B5;
  --hw-line:rgba(63,81,181,.10);
  --hw-shadow:0 18px 55px rgba(30,34,56,.12);
  --hw-shadow-soft:0 10px 30px rgba(30,34,56,.08);
  --hw-grad:linear-gradient(135deg,#00CFE8,#3F51B5);
  --hw-radius:24px;
}
.hw-wrap{
  width:min(100% - 28px,1380px);
  margin:auto;
}
.hw-section{
  padding:28px 0;
}
.hw-title{
  max-width:860px;
  margin:0 0 18px;
}
.hw-title h2{
  margin:0 0 10px;
  font-size:clamp(1.7rem,3vw,2.8rem);
  color:var(--hw-text);
  line-height:1.1;
}
.hw-title p{
  margin:0;
  color:var(--hw-muted);
}
.hw-grid-4{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}
.hw-grid-3{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}
.hw-grid-2{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:22px;
}
@media(max-width:1150px){
  .hw-grid-4{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:900px){
  .hw-grid-3,.hw-grid-2{grid-template-columns:1fr}
}
@media(max-width:640px){
  .hw-grid-4{grid-template-columns:1fr}
}

.hw-card,.hw-kpi,.hw-testimonial,.hw-brand,.hw-service,.hw-support-box{
  background:rgba(255,255,255,.92);
  border:1px solid var(--hw-line);
  border-radius:var(--hw-radius);
  box-shadow:var(--hw-shadow-soft);
}

.hw-card,.hw-kpi,.hw-testimonial,.hw-service,.hw-support-box{
  padding:22px;
}

.hw-icon{
  width:58px;
  height:58px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,rgba(0,207,232,.18),rgba(63,81,181,.18));
  font-size:1.35rem;
  margin-bottom:14px;
}

.hw-kpi strong{
  display:block;
  font-size:2rem;
  line-height:1;
  color:var(--hw-indigo);
  margin-bottom:8px;
}
.hw-kpi span{
  color:var(--hw-muted);
  font-weight:700;
}

.hw-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(0,207,232,.10);
  color:var(--hw-indigo);
  font-weight:800;
  margin-bottom:14px;
}

.hw-cta-band{
  padding:28px;
  border-radius:30px;
  background:var(--hw-grad);
  color:#fff;
  box-shadow:0 18px 55px rgba(63,81,181,.24);
}
.hw-cta-band h2,.hw-cta-band p{
  color:#fff;
  margin:0 0 12px;
}
.hw-btn-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:16px;
}
.hw-btn{
  min-height:48px;
  padding:0 18px;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  text-decoration:none;
}
.hw-btn-light{
  background:#fff;
  color:var(--hw-indigo);
}
.hw-btn-dark{
  background:rgba(255,255,255,.18);
  color:#fff;
  border:1px solid rgba(255,255,255,.30);
}

.hw-testimonial p{
  margin:0 0 12px;
}
.hw-testimonial .who{
  font-weight:800;
  color:var(--hw-indigo);
}

.hw-brand-row{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:14px;
}
@media(max-width:950px){
  .hw-brand-row{grid-template-columns:repeat(3,minmax(0,1fr))}
}
@media(max-width:640px){
  .hw-brand-row{grid-template-columns:repeat(2,minmax(0,1fr))}
}
.hw-brand{
  min-height:92px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  color:var(--hw-indigo);
  background:linear-gradient(135deg,rgba(0,207,232,.07),rgba(63,81,181,.07));
  padding:12px;
}

.hw-list{
  list-style:none;
  padding:0;
  margin:0;
}
.hw-list li{
  position:relative;
  padding-left:24px;
  margin:0 0 10px;
  color:var(--hw-text);
  font-weight:600;
}
.hw-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--hw-cyan);
  font-weight:900;
}

.hw-local{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:18px 20px;
  border-radius:20px;
  background:linear-gradient(135deg,rgba(0,207,232,.10),rgba(63,81,181,.10));
  border:1px solid var(--hw-line);
}
.hw-local strong{
  color:var(--hw-indigo);
}

.hw-mini-visual{
  width:100%;
  aspect-ratio:16/10;
  object-fit:cover;
  border-radius:20px;
  border:1px solid var(--hw-line);
  background:#fff;
}
