.pricing.four {
  grid-template-columns: repeat(4, 1fr);
}

.status.available {
  background: #eaf8f1;
  color: #14734c;
}

.status.planned {
  background: #eef2ff;
  color: var(--blue);
}

.status.future {
  background: #f3efff;
  color: #6940bf;
}

.section-head h2 {
  margin-top: 14px;
}

.section-actions {
  margin-top: 28px;
}

.future-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 36px;
  border: 1px solid #d9d6ff;
  border-radius: 22px;
  background: linear-gradient(135deg, #f7f9ff, #f5efff);
}

.future-panel h2 {
  margin: 14px 0 10px;
}

.future-panel p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
}

.future-disclosure {
  margin-top: 22px;
  padding: 16px 18px;
  border-left: 4px solid var(--violet);
  border-radius: 8px;
  background: #f8f6ff;
  color: #4f5364;
}

.availability-banner {
  margin: 0 0 34px;
  padding: 18px 20px;
  border: 1px solid #ccebdc;
  border-radius: 12px;
  background: #f1fbf6;
  color: #155e43;
}

.plan-list {
  margin: 22px 0 0;
  padding-left: 21px;
  color: #353b4e;
}

.plan-list li {
  margin: 10px 0;
  line-height: 1.5;
}

.plan-list li::marker {
  color: var(--blue);
}

.text-link {
  display: inline-block;
  margin-top: 22px;
  color: var(--blue);
  font-weight: 750;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.muted-action {
  display: inline-block;
  margin-top: 22px;
  color: #696f81;
  font-weight: 700;
}

.spec-grid,
.warning-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.spec,
.warning {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(29, 36, 66, .06);
}

.spec h3 {
  margin: 0 0 10px;
}

.spec p,
.warning p {
  margin: 0;
  color: var(--muted);
}

.disclosure {
  margin-top: 30px;
  padding: 24px;
  border: 1px solid #d7d3ff;
  border-radius: 14px;
  background: #f8f7ff;
}

.disclosure p {
  margin: 0;
  color: #4d5366;
}

.warning span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 1.35rem;
  font-weight: 850;
}

@media (max-width: 1000px) {
  .pricing.four {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 800px) {
  .pricing.four,
  .spec-grid,
  .warning-grid {
    grid-template-columns: 1fr;
  }

  .future-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}
