.system-page {
  --system-green: #0b6e44;
  --system-mint: #dff3e8;
  --system-blue: #dfeef2;
}

.system-offer-card {
  background:
    radial-gradient(circle at 88% 10%, rgba(77, 202, 144, 0.24), transparent 30%),
    linear-gradient(145deg, #092f24, #0e4935);
}

.system-offer-card .fix-offer-head b {
  color: #9ee6bc;
}

.system-offer-card .fix-price {
  font-size: clamp(2.65rem, 5.2vw, 4rem);
}

.system-offer-card .fix-price span {
  display: block;
  white-space: nowrap;
}

.system-offer-card .fix-price small {
  white-space: normal;
}

.system-component-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2.4rem;
  border: 1px solid var(--guide-line);
  background: var(--guide-line);
}

.system-component-grid article {
  min-width: 0;
  min-height: 240px;
  padding: 1.6rem;
  background: #fbfaf6;
}

.system-component-grid article:last-child {
  grid-column: 1 / -1;
  min-height: 210px;
  background: var(--system-mint);
}

.system-component-grid span {
  color: var(--system-green);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.system-component-grid h3 {
  margin: 3rem 0 0.75rem;
  font-size: 1.25rem;
  line-height: 1.2;
}

.system-component-grid p {
  margin: 0;
  color: var(--guide-muted);
  line-height: 1.62;
}

.system-cta {
  background:
    radial-gradient(circle at 90% 20%, rgba(111, 225, 169, 0.18), transparent 31%),
    #0a3426;
}

.system-final {
  background:
    linear-gradient(135deg, rgba(223, 243, 232, 0.95), rgba(251, 250, 246, 0.98));
}

@media (max-width: 760px) {
  .system-component-grid {
    grid-template-columns: 1fr;
  }

  .system-component-grid article:last-child {
    grid-column: auto;
  }

  .system-component-grid article {
    min-height: 0;
  }

  .system-component-grid h3 {
    margin-top: 1.8rem;
  }
}
