.oy-why {
  background: var(--oy-color-primary);
}

.oy-why .oy-section__inner {
  text-align: center;
}

.oy-why__title {
  color: var(--oy-color-white);
  display: inline-flex;
  justify-content: center;
}

.oy-why__title-icon {
  background: none;
  background-color: var(--oy-color-white);
  -webkit-mask: url("../images/patterns/from-logo-orange.svg") center / contain no-repeat;
  mask: url("../images/patterns/from-logo-orange.svg") center / contain no-repeat;
}

@supports not ((-webkit-mask: url("x") center / contain no-repeat) or (mask: url("x") center / contain no-repeat)) {
  .oy-why__title-icon {
    background: url("../images/patterns/from-logo-orange.svg") center / contain no-repeat;
  }
}

.oy-why__grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 281.19px);
  gap: 24px;
  justify-content: center;
  justify-items: center;
  align-items: stretch;
}

.oy-why__item {
  height: 100%;
}

.oy-whybox {
  width: 281.19px;
  position: relative;
  padding-top: 38.51px;
  height: 100%;
}

.oy-whybox__badge-outer {
  width: 73.43px;
  height: 73.43px;
  left: 103.88px;
  top: 0px;
  position: absolute;
  background: #F49128;
  border-radius: 9999px;
  z-index: 3;
}

.oy-whybox__badge-inner {
  width: 60.90px;
  height: 60.90px;
  left: 110.15px;
  top: 6.27px;
  position: absolute;
  background: var(--oy-color-white);
  border-radius: 9999px;
  z-index: 4;
  box-shadow: -15px 10px 11px rgba(23, 49, 89, 0.14);
}

.oy-whybox__badge-pattern {
  width: 29.55px;
  height: 30.45px;
  left: 126.27px;
  top: 21.49px;
  position: absolute;
  background: url("../images/patterns/from-logo-orange.svg") center / contain no-repeat;
  z-index: 5;
}

.oy-whybox__card {
  width: 281.19px;
  background: var(--oy-color-white);
  border-radius: 15px;
  box-shadow: -15px 10px 11px rgba(23, 49, 89, 0.14);
  padding-top: 45.67px;
  padding-left: 13.43px;
  padding-right: 18.80px;
  padding-bottom: 22px;
  text-align: right;
  color: var(--oy-color-navy);
  height: 100%;
  transition: transform .18s ease, box-shadow .18s ease;
}

.oy-whybox__card:hover {
  transform: translateY(-2px);
  box-shadow: -18px 14px 16px rgba(23, 49, 89, 0.18);
}

.oy-whybox__text {
  margin: 0;
  color: var(--oy-color-navy);
  font-size: 18px;
  font-family: var(--oy-font-base);
  font-weight: 600;
  line-height: 26.40px;
  word-wrap: break-word;
  text-align: center;
}

@media (max-width: 1024px) {
  .oy-why__grid {
    grid-template-columns: repeat(2, 281.19px);
    gap: 22px;
  }
}

@media (max-width: 768px) {
  .oy-why__grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 40px;
  }

  .oy-whybox {
    margin: 0 auto;
  }
}
/* ===========================================================
   Scroll Reveal (same style as other pages)
=========================================================== */
.oy-reveal {
  opacity: 0;
  transform: translateY(30px);
  visibility: hidden;
  transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s ease;
  will-change: transform, opacity;
}

.oy-reveal.oy-reveal--visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

/* Stagger delays */
.oy-delay-1 { transition-delay: 0.06s; }
.oy-delay-2 { transition-delay: 0.12s; }
.oy-delay-3 { transition-delay: 0.18s; }
.oy-delay-4 { transition-delay: 0.24s; }
.oy-delay-5 { transition-delay: 0.30s; }
.oy-delay-6 { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  .oy-reveal,
  .oy-reveal.oy-reveal--visible {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    transition: none !important;
  }
}
/* =========================================================== */
