.rewards-system-content {
  width: 100%;
}

.rewards-system-wrap {
  margin: 0;
  width: 100%;
}

.rewards-system {
  padding: 72px 0;
  margin: 0 auto;
  color: #f5f7fb;
  width: 86%;
  position: relative;
  z-index: 1;
}

.rewards-system-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  grid-template-areas:
    "copy showcase"
    "support support";
  gap: 34px;
  align-items: stretch;
  padding: 38px;
  border-radius: 28px;
  border: 1px solid rgba(26, 26, 26, 0.06);
  background: linear-gradient(90deg, #fd5701 0%, #fd9101 100%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}

.rewards-system-copy {
  grid-area: copy;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.rewards-system-tag {
  display: inline-block;
  color: #ffd5b2;
  font-size: 0.9rem;
  margin-bottom: 16px;
  font-weight: 700;
  padding: 10px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  width: 24%;
  text-align: center;
}

.rewards-system-title {
  margin: 0 0 14px;
  color: var(--color-surface);
  font-size: 2.8rem;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.rewards-system-description {
  margin: 0;
  color: #ffffff;
  font-size: 1.04rem;
  line-height: 1.8;
  max-width: 680px;
}

.rewards-system-showcase {
  grid-area: showcase;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 75%;
  margin: 0 auto;
}

.rewards-system-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  padding: 18px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 24px 48px rgba(36, 28, 20, 0.08);
}

.rewards-system-visual img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
  object-position: top center;
  animation: rewards-system-scroll 12s ease-in-out infinite;
  will-change: object-position;
}

.rewards-system-visual:hover img {
  animation-play-state: paused;
}

@keyframes rewards-system-scroll {
  0%,
  12% {
    object-position: top center;
  }

  50%,
  62% {
    object-position: bottom center;
  }

  100% {
    object-position: top center;
  }
}

.rewards-system-support {
  grid-area: support;
  display: grid;
  gap: 16px;
  padding-top: 6px;
}

.rewards-system-support-text {
  margin: 0;
  padding: 0 2px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  line-height: 1.7;
}

.rewards-system-cta {
  display: inline-block;
  padding: 16px 24px;
  color: #e8610a;
  background: #ffffff;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(240, 130, 20, 0.25);
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.3s ease;
}

.rewards-system-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 97, 10, 0.35);
  opacity: 0.85;
}

.rewards-system-cta--secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #fff;
  box-shadow: none;
}

.rewards-system-cta--secondary:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.rewards-system-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10%;
}

.rewards-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-auto-rows: 1fr;
}

.rewards-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  text-align: center;
  min-height: 170px;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.rewards-card:hover {
  transform: translateY(-4px);
  background: #fafafa;
  border-color: rgba(232, 97, 10, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.rewards-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff9d5c 0%, #e8610a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
  color: #ffffff;
  font-size: 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.rewards-card-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 0;
}

.rewards-card-title {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.25;
}

.rewards-card-description {
  margin: 0;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.55;
  font-size: 0.9rem;
}

@media screen and (max-width: 1024px) {
  .rewards-system {
    padding: 0;
    max-width: 90%;
  }

  .rewards-system-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "showcase"
      "support";
    padding: 30px 24px;
  }

  .rewards-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 760px) {

  .rewards-system-showcase {
    width: 100%;
  }

  .rewards-system-tag {
    width: 60%;
  }

  .rewards-system {
    padding: 0;
  }

  .rewards-system-title {
    font-size: 1.85rem;
  }

  .rewards-system-grid {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .rewards-system-visual {
    padding: 12px;
    border-radius: 20px;
  }

  .rewards-card {
    min-height: auto;
  }

  .rewards-cards {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rewards-card {
    transition: none;
  }

  .rewards-card:hover {
    transform: none;
  }

  .rewards-system-visual img {
    animation: none;
  }
}