.development-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 790px;
  padding: 84px 24px 58px;
  background: linear-gradient(180deg, #030304 0%, #070708 100%);
  text-align: center;
}

.development-title {
  margin: 0 24px 56px;
  color: #fffaf0;
  font-size: clamp(42px, 4.9vw, 64px);
  font-weight: 300;
  line-height: 1;
}

.development-title strong {
  font-weight: 800;
}

.development-title span {
  color: var(--gold-2);
  font-weight: 800;
}

.development-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  width: min(100%, 980px);
}

.development-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 440px;
  padding: 34px 26px 24px;
  border: 1px solid rgba(77, 218, 2, 0.16);
  border-radius: 34px;
  background:
    radial-gradient(circle at 30% 14%, rgba(255, 255, 255, 0.16), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.012));
  box-shadow: inset 0 -62px 78px rgba(255, 255, 255, 0.045);
}

.development-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
  color: #fffaf0;
  font-size: 44px;
  line-height: 1;
}

.development-card h3 {
  margin-top: 20px;
  color: #fffaf0;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.development-card p {
  max-width: 260px;
  margin: 18px auto 28px;
  color: rgba(248, 245, 237, 0.52);
  font-size: 15px;
  line-height: 1.18;
}

.development-button {
  width: 100%;
  min-height: 46px;
  margin-top: auto;
  border-radius: 20px;
  box-shadow: 0 0 42px rgba(77, 218, 2, 0.24);
}

.development-chevron {
  position: relative;
  width: 66px;
  height: 46px;
  margin-top: 58px;
}

.development-chevron span {
  position: absolute;
  left: 50%;
  display: block;
  width: 34px;
  height: 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  transform: translateX(-50%) rotate(45deg);
}

.development-chevron span:first-child {
  top: 0;
}

.development-chevron span:last-child {
  top: 15px;
}

html[data-theme="light"] .development-section {
  background: linear-gradient(180deg, #fbf7ef 0%, #f4ecde 100%);
}

html[data-theme="light"] .development-title,
html[data-theme="light"] .development-card h3 {
  color: #1b1b1d;
}

html[data-theme="light"] .development-card {
  background:
    radial-gradient(circle at 30% 14%, rgba(77, 218, 2, 0.16), transparent 30%),
    rgba(255, 255, 255, 0.62);
  box-shadow: 0 26px 58px rgba(74, 54, 23, 0.12);
}

html[data-theme="light"] .development-card p {
  color: rgba(27, 27, 29, 0.64);
}

@media (max-width: 980px) {
  .development-section {
    min-height: 1500px;
    padding: 72px 18px 54px;
  }

  .development-title {
    margin-bottom: 36px;
    font-size: 42px;
  }

  .development-cards {
    grid-template-columns: 1fr;
    width: min(100%, 370px);
    gap: 18px;
  }

  .development-card {
    min-height: 390px;
    padding: 30px 24px;
    border-radius: 26px;
  }
}
