.uaeh-support-zone{
  position:relative;
  overflow:hidden;
  margin:28px auto;
  border-radius:30px;
  border:1px solid rgba(15,23,42,.10);
  background:
    radial-gradient(circle at 88% 18%, rgba(216,173,38,.16), transparent 28%),
    linear-gradient(180deg,#ffffff 0%,#f8fafc 100%);
  box-shadow:0 18px 42px rgba(15,23,42,.09);
}

.uaeh-support-zone *{
  box-sizing:border-box;
}

.uaeh-support-zone.uaeh-support-dems{
  --main:#8f0028;
  --main2:#b00032;
  --accent:#d8ad26;
  --dark:#17213f;
}

.uaeh-support-zone.uaeh-support-dies{
  --main:#007c84;
  --main2:#0098a3;
  --accent:#d8ad26;
  --dark:#17213f;
}

.uaeh-support-inner{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:minmax(0,1fr) 260px;
  gap:26px;
  align-items:center;
  padding:32px;
}

.uaeh-support-kicker{
  display:inline-flex;
  width:max-content;
  max-width:100%;
  padding:8px 13px;
  border-radius:999px;
  background:#fff7d7;
  color:var(--main);
  border:1px solid rgba(216,173,38,.55);
  font-size:12px;
  font-weight:900;
  letter-spacing:.02em;
}

.uaeh-support-title{
  margin:14px 0 8px;
  color:var(--dark) !important;
  font-size:clamp(28px,3.1vw,42px);
  line-height:1.02;
  letter-spacing:-.045em;
  font-weight:1000;
}

.uaeh-support-text{
  max-width:780px;
  margin:0;
  color:#475569 !important;
  font-size:15.5px;
  line-height:1.55;
}

.uaeh-support-actions{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-top:22px;
}

.uaeh-support-card{
  display:flex;
  flex-direction:column;
  min-height:158px;
  padding:18px;
  border-radius:22px;
  text-decoration:none !important;
  background:#ffffff;
  border:1px solid rgba(15,23,42,.09);
  box-shadow:0 10px 22px rgba(15,23,42,.055);
  transition:transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.uaeh-support-card:hover{
  transform:translateY(-2px);
  border-color:rgba(216,173,38,.65);
  box-shadow:0 18px 32px rgba(15,23,42,.095);
}

.uaeh-support-icon{
  width:46px;
  height:46px;
  margin-bottom:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  color:#ffffff;
  background:linear-gradient(135deg,var(--main),var(--dark));
  box-shadow:0 10px 22px rgba(15,23,42,.16);
  font-size:21px;
}

.uaeh-support-card strong{
  display:block;
  margin:0 0 6px;
  color:var(--dark) !important;
  font-size:16px;
  line-height:1.22;
  font-weight:1000;
}

.uaeh-support-card span{
  display:block;
  color:#64748b !important;
  font-size:13.5px;
  line-height:1.45;
}

.uaeh-support-link{
  margin-top:auto;
  padding-top:14px;
  color:var(--main) !important;
  font-style:normal;
  font-weight:1000;
  font-size:13.5px;
}

.uaeh-support-visual{
  min-height:250px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.uaeh-support-visual-card{
  position:relative;
  width:230px;
  height:230px;
  border-radius:34px;
  overflow:hidden;
  background:#ffffff;
  box-shadow:0 24px 46px rgba(15,23,42,.13);
}

.uaeh-support-visual-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  opacity:.82;
}

.uaeh-support-badge{
  position:absolute;
  left:14px;
  bottom:14px;
  padding:10px 13px;
  border-radius:16px;
  color:#ffffff;
  background:linear-gradient(135deg,var(--main),var(--dark));
  box-shadow:0 14px 28px rgba(15,23,42,.18);
  font-size:12px;
  font-weight:1000;
}

@media(max-width:980px){
  .uaeh-support-inner{
    grid-template-columns:1fr;
  }

  .uaeh-support-visual{
    display:none;
  }

  .uaeh-support-actions{
    grid-template-columns:1fr;
  }
}

@media(max-width:620px){
  .uaeh-support-inner{
    padding:22px;
  }

  .uaeh-support-zone{
    border-radius:24px;
  }
}