.peers-hero {
  background: linear-gradient(135deg, #f3e5f5, #fff);
  padding: 40px;
  border-radius: var(--radius);
  border-left: 5px solid #9c27b0;
  margin-bottom: 40px;
  box-shadow: var(--shadow-md);
}
.peers-hero h2 { color: #7b1fa2; margin-top: 0; }
.peers-hero p { font-size: 1.1rem; color: #444; line-height: 1.6; margin-bottom: 10px; }

.definition-section {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 40px;
  border: 1px solid rgba(0,0,0,0.05);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
  align-items: center;
}
.def-text h3 { margin-top: 0; color: #4a148c; }
.def-text p { color: #555; line-height: 1.6; }

.def-img {
  height: 250px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.def-img img { width: 100%; height: 100%; object-fit: cover; }

.bpr-status-box {
  background: #e8eaf6;
  border-left: 5px solid #3f51b5;
  padding: 25px;
  border-radius: var(--radius);
  margin-bottom: 40px;
  font-weight: 500;
  color: #283593;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 25px;
}

.peer-card {
  background: #fff;
  padding: 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  border-top: 4px solid var(--accent1);
  transition: var(--transition);
  height: 100%;
}
.peer-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.peer-icon { font-size: 2rem; margin-bottom: 15px; display: block; }
.peer-card h4 { margin: 0 0 10px; color: #333; font-size: 1.15rem; }
.peer-card p { color: var(--muted); line-height: 1.5; margin: 0; }

.final-quote {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent1);
  margin: 50px 0 30px;
  padding: 20px;
  background: linear-gradient(90deg, rgba(111,4,233,0.05), transparent);
  border-radius: var(--radius);
}

@media (max-width: 900px) {
  .definition-section { grid-template-columns: 1fr; }
  .def-img { order: -1; height: 200px; }
}
