.intro-block {
  margin-bottom: 22px;
}

.intro-block .subtitle {
  margin-top: 12px;
}

.tools-section {
  margin-bottom: 22px;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.tool-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: 0.16s ease;
}

.tool-card:hover {
  border-color: var(--accent-dark);
  box-shadow: 0 12px 32px rgba(244, 123, 32, 0.12);
}

.tool-card h3 {
  margin: 0;
  font-size: 17px;
  color: var(--accent);
  text-transform: uppercase;
}

.tool-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.tool-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 6px;
  border: 0;
  background: var(--accent);
  color: #090909;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.24);
  justify-self: start;
  transition: 0.16s ease;
}

.tool-card-link:hover,
.tool-card-link:focus-visible {
  background: #ff8f3d;
  outline: none;
}

.support-section {
  padding: 18px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.support-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: 0.16s ease;
}

.support-card:hover,
.support-card:focus-visible {
  border-color: var(--accent);
  outline: none;
}

.support-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--input-bg);
  border: 1px solid var(--line);
  color: var(--accent);
}

.support-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.support-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
  color: var(--text);
}

.support-card span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.support-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}
