.services-bento-section {
  padding: 90px 0;
  background: #f9fbf9;
}

.services-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.services-badge {
  display: inline-block;
  background: #e6f6ef;
  color: #1b7f5c;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 12px;
}

.services-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 14px;
}

.services-header p {
  color: #6b7280;
  font-size: 1.05rem;
}

/* GRID */
.services-bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* CARD */
.bento-card {
  background: #fff;
  border-radius: 22px;
  padding: 26px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
}

.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.bento-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.bento-card p {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.5;
}

/* ICON */
.bento-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: #fff;
  font-size: 20px;
}

/* COLOR TOKENS */
.bg-green { background: #1fbf8f; }
.bg-blue { background: #3b82f6; }
.bg-purple { background: #8b5cf6; }
.bg-pink { background: #ec4899; }
.bg-orange { background: #f59e0b; }
.bg-indigo { background: #6366f1; }
.bg-teal { background: #14b8a6; }
.bg-slate { background: #64748b; }
.bg-yellow { background: #eab308; }

/* SIZES */
.bento-large { grid-column: span 2; grid-row: span 2; }
.bento-tall { grid-row: span 2; }
.bento-wide { grid-column: span 2; }

/* CTA */
.services-cta {
  text-align: center;
  margin-top: 50px;
}

.btn-primary {
  background: #1b5fd9;
  color: #fff;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}
