/* ============================================
   Services Detail Page — Romanware.net
   ============================================ */

.rw-services-page {
  color: #b8c5d6;
}

.rw-services-hero {
  text-align: center;
  padding: 60px 20px 40px;
}

.rw-services-hero h1 {
  font-size: 2.2em;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 12px;
}

.rw-services-hero p {
  color: #64748b;
  font-size: 1.05em;
}

/* Detail Cards Grid */
.rw-services-detail {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 20px 60px;
}

.rw-services-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.rw-detail-card {
  background: linear-gradient(160deg, rgba(17, 24, 39, 0.8), rgba(30, 41, 59, 0.4));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 36px 28px;
  transition: all 0.4s ease;
}

.rw-detail-card:hover {
  border-color: rgba(56, 189, 248, 0.12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.rw-detail-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.3em;
  font-weight: 700;
  font-family: 'IBM Plex Mono', monospace;
}

.rw-detail-icon.web {
  background: rgba(56, 189, 248, 0.12);
  color: #38bdf8;
}

.rw-detail-icon.iot {
  background: rgba(129, 140, 248, 0.12);
  color: #818cf8;
}

.rw-detail-icon.app {
  background: rgba(52, 211, 153, 0.12);
  color: #34d399;
}

.rw-detail-icon.consulting {
  background: rgba(251, 191, 36, 0.12);
  color: #fbbf24;
}

.rw-detail-card h2 {
  font-size: 1.3em;
  font-weight: 600;
  color: #f1f5f9;
  margin-bottom: 12px;
}

.rw-detail-card p {
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 16px;
}

.rw-detail-card ul {
  list-style: none;
  padding: 0;
}

.rw-detail-card li {
  color: #94a3b8;
  padding: 5px 0 5px 20px;
  position: relative;
  font-size: 0.92em;
}

.rw-detail-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}

/* Process Section */
.rw-process {
  padding: 60px 20px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.rw-process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 10px;
}

.rw-process-step {
  padding: 28px 24px;
  background: linear-gradient(160deg, rgba(17, 24, 39, 0.6), rgba(30, 41, 59, 0.3));
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  position: relative;
}

.rw-step-number {
  font-size: 2em;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  line-height: 1;
}

.rw-process-step h3 {
  color: #f1f5f9;
  font-size: 1.15em;
  font-weight: 600;
  margin-bottom: 8px;
}

.rw-process-step p {
  color: #94a3b8;
  font-size: 0.92em;
  margin: 0;
  line-height: 1.7;
}
