/* Four separate feature cards in place of the hero's pill-shaped bar. */
.benefit-card{transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease}
.benefit-card .benefit-icon{transition:transform .25s ease,box-shadow .25s ease}
@media(hover:hover) and (pointer:fine){
  .hero-benefits .benefit-card:hover{transform:translateY(-6px);border-color:#afc7ed;box-shadow:0 14px 28px #183b6330}
  .benefit-card:hover .benefit-icon{transform:scale(1.09) rotate(-3deg);box-shadow:0 6px 15px #5475a525}
}
@media(prefers-reduced-motion:reduce){
  .hero-benefits .benefit-card:hover,.benefit-card:hover .benefit-icon{transform:none}
}
.hero-benefits {
  position: absolute;
  z-index: 3;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.benefit-card {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 102px;
  padding: 18px 15px;
  background: linear-gradient(120deg, #fffffffa, #fafafff5);
  border: 1px solid #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px #24457012;
}
.benefit-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 53px;
  height: 59px;
  border-radius: 13px;
  color: #6450b4;
  background: linear-gradient(135deg, #e8e1fb, #f7f4ff);
  box-shadow: 0 5px 14px #7961b80a;
}
.benefit-icon svg { width: 32px; height: 32px; }
.benefit-icon.violet { color: #7b42b5; background: linear-gradient(135deg, #efdcf9, #fcf6ff); }
.benefit-icon.blue { color: #365abd; background: linear-gradient(135deg, #dcedfd, #f3f8ff); }
.benefit-icon.peach { color: #8b5197; background: linear-gradient(135deg, #ffe3d8, #fff6ed); }
.benefit-card strong { display: block; font-size: 12px; line-height: 1.4; font-weight: 750; color: #17243a; }
.benefit-card small { display: block; margin-top: 6px; font-size: 10px; line-height: 1.5; color: #637087; }
@media (min-width: 761px) and (max-width: 1100px) {
  .hero-benefits { left: 16px; right: 16px; gap: 9px; }
  .benefit-card { padding: 14px 10px; gap: 9px; }
  .benefit-icon { width: 38px; height: 48px; }
  .benefit-icon svg { width: 27px; height: 27px; }
  .benefit-card strong { font-size: 10px; }
  .benefit-card small { font-size: 9px; }
}
@media (max-width: 760px) {
  .hero { min-height: 940px; }
  .hero-benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); left: 14px; right: 14px; bottom: 17px; gap: 10px; }
  .benefit-card { min-height: 97px; padding: 12px 10px; gap: 9px; }
  .benefit-icon { width: 35px; height: 46px; border-radius: 10px; }
  .benefit-icon svg { width: 25px; height: 25px; }
  .benefit-card strong { font-size: 10px; }
  .benefit-card small { font-size: 9px; }
  .art-label { bottom: 240px; }
}
@media (max-width: 360px) {
  .benefit-card { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero { min-height: 1020px; }
  .art-label { bottom: 320px; }
}
