
.rf-mesh-page {
  --rf-ink: #0f403f;
  --rf-muted: #5d6b67;
  --rf-line: #dbe5e0;
  --rf-soft: #f5f8f6;
  --rf-panel: #ffffff;
  --rf-accent: #0f403f;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  color: var(--rf-ink);
  line-height: 1.65;
}
.rf-mesh-page * {
  box-sizing: border-box;
}
.rf-mesh-page a {
  color: var(--rf-ink);
}
.rf-mesh-section {
  margin: 34px 0;
}
.rf-mesh-hero {
  background: var(--rf-soft);
  padding: 44px 32px;
  text-align: center;
  border-radius: 6px;
}
.rf-mesh-hero h2,
.rf-mesh-section h2 {
  margin: 0 0 16px;
  color: var(--rf-ink);
  font-size: 28px;
  line-height: 1.25;
  text-align: center;
  font-weight: 700;
}
.rf-mesh-hero p,
.rf-mesh-section p {
  margin: 0 0 14px;
}
.rf-mesh-hero p {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
}
.rf-mesh-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}
.rf-mesh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 2px solid var(--rf-accent);
  border-radius: 5px;
  background: var(--rf-accent);
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 700;
}
.rf-mesh-btn.rf-mesh-btn-secondary {
  background: transparent;
  color: var(--rf-accent) !important;
}
.rf-mesh-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.rf-mesh-card,
.rf-mesh-case,
.rf-mesh-rfq {
  background: var(--rf-panel);
  border: 1px solid var(--rf-line);
  border-radius: 6px;
  padding: 24px;
}
.rf-mesh-card h3,
.rf-mesh-case h3 {
  margin: 0 0 10px;
  color: var(--rf-ink);
  font-size: 20px;
  line-height: 1.35;
  font-weight: 700;
}
.rf-mesh-card ul,
.rf-mesh-rfq ul {
  margin: 0;
  padding-left: 22px;
}
.rf-mesh-card li,
.rf-mesh-rfq li {
  margin: 8px 0;
}
.rf-mesh-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border: 1px solid var(--rf-line);
}
.rf-mesh-table th,
.rf-mesh-table td {
  border: 1px solid var(--rf-line);
  padding: 14px;
  text-align: left;
  vertical-align: top;
}
.rf-mesh-table th {
  background: #edf4f1;
  color: var(--rf-ink);
  font-weight: 700;
}
.rf-mesh-case-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, .9fr);
  gap: 22px;
  align-items: start;
}
.rf-mesh-case figure {
  margin: 0;
}
.rf-mesh-case img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}
.rf-mesh-image-placeholder {
  min-height: 240px;
  border: 1px dashed var(--rf-line);
  border-radius: 6px;
  background: #f8faf9;
  color: var(--rf-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  font-weight: 700;
}
.rf-mesh-case figcaption {
  margin-top: 8px;
  color: var(--rf-muted);
  font-size: 13px;
}
.rf-mesh-note {
  border-left: 4px solid var(--rf-accent);
  background: var(--rf-soft);
  padding: 16px 18px;
  margin-top: 18px;
}
.rf-mesh-rfq-list {
  columns: 2;
  column-gap: 30px;
}
.rf-mesh-guides {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.rf-mesh-guide {
  display: block;
  padding: 20px;
  border: 1px solid var(--rf-line);
  border-radius: 6px;
  background: #ffffff;
  color: var(--rf-ink);
  text-decoration: none;
}
.rf-mesh-guide strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.35;
}
@media (max-width: 760px) {
  .rf-mesh-hero {
    padding: 30px 18px;
  }
  .rf-mesh-hero h2,
  .rf-mesh-section h2 {
    font-size: 24px;
  }
  .rf-mesh-hero p {
    font-size: 16px;
  }
  .rf-mesh-grid,
  .rf-mesh-case-grid,
  .rf-mesh-guides {
    grid-template-columns: 1fr;
  }
  .rf-mesh-rfq-list {
    columns: 1;
  }
  .rf-mesh-table {
    font-size: 14px;
  }
  .rf-mesh-table th,
  .rf-mesh-table td {
    padding: 10px;
  }
  .rf-mesh-btn {
    width: 100%;
    text-align: center;
  }
}
